@font-face {
    font-family: 'Roboto Slab';
    src: url('robotoslab-regular.woff2') format('woff2'),
        url('robotoslab-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Slab';
    src: url('robotoslab-light.woff2') format('woff2'),
        url('robotoslab-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Slab';
    src: url('robotoslab-medium.woff2') format('woff2'),
        url('robotoslab-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Slab';
    src: url('robotoslab-bold.woff2') format('woff2'),
        url('robotoslab-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Gotham';
    src: url('gotham-bold.woff2') format('woff2'),
        url('gotham-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('gotham-medium.woff2') format('woff2'),
        url('gotham-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('gotham-light.woff2') format('woff2'),
        url('gotham-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




body {
  font-size: 1.111vw;
  line-height: 1.4;
  color: #000000;
  font-family: 'Roboto Slab';
  font-weight: 300;
  letter-spacing: -0.008vw;
}
h1,h2,h3,h4,h5,h6{
    letter-spacing: normal;
    font-family: 'Gotham';
    font-weight: 500;
}
h1 {
  font-size: 8.611vw;
  line-height: 0.935;
  letter-spacing: -0.222vw;
  color: #000000;
}

h2 {
  font-size: 5.208vw;
  line-height: 1.2;
  letter-spacing: -0.118vw;
}

h3 {
  font-size: 4.167vw;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.069vw;
  color: #000000;
}

h4 {
  font-size: 2.014vw;
  font-weight: normal;
  line-height: 0.96;
  letter-spacing: 0.035vw;
}

h5 {
  font-size: 1.389vw;
  line-height: 1.44;
}

a:hover { }


input[type="submit"] {
    display: inline-block;
    font-stretch: normal;
    font-style: normal;
    border: 0;
    cursor: pointer;
    position: relative;
    background-color: #588791;
}

input[type="submit"]::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.site_button:hover:before,
input[type="submit"]::before {
    width: 100%;
}

p {
    margin-top: 0;
    margin-bottom: 1.389vw;
}

p:last-child {
    margin-bottom: 0;
}

mark {
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(120deg, #E4DBDC 0%, #E4DBDC 100%);
    background-repeat: no-repeat;
    background-size: 100% 24%;
    background-position: 0 88%;
    color: inherit;
}

.mobile_only {
    display: none;
}

.m {
    display: none !important;
}

section {
  position:relative;
  /* padding-top: 296px; */
}
.section_inner {
  width: 100%;
  margin: 0px auto;
  position: relative;
  box-sizing: border-box;
  /* padding-top: 67px; */
}


.g_button {
    font-size: 0.833vw;
    text-transform: uppercase;
    color: #232021;
    /* transition: .3s ease all; */
    border: solid 1px #E0FE68;
    position: relative;
    background-color: #E0FE68;
    display: inline-block;
    transition: all .3s;
    font-family: 'Gotham';
    font-weight: bold;
    padding: 0.686vw 1.697vw 0.617vw 1.667vw;
    letter-spacing: 0.174vw;
    z-index: 1;
}
.g_button:before{
    content:"";
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    background-color: #388DA6;
    height: 100%;
    z-index: -1;
}
.g_button:hover { border: solid 1px #388DA6; color:#FFF; }
.g_button:hover:before{
    width:100%;
}

@-webkit-keyframes anime_button {
  0% { padding-left: 5px; padding-right:0px; }
  20% { padding-left:4px; padding-right:1px;}
  40% {padding-left: 3px; padding-right:2px;}
  60% {padding-left: 2px; padding-right:3px;}
  80% {padding-left: 1px; padding-right:4px;}
  100% {padding-left: 0px; padding-right:5px;}
}
@-moz-keyframes anime_button {
  0% { padding-left: 5px; padding-right:0px; }
  20% { padding-left:4px; padding-right:1px;}
  40% {padding-left: 3px; padding-right:2px;}
  60% {padding-left: 2px; padding-right:3px;}
  80% {padding-left: 1px; padding-right:4px;}
  100% {padding-left: 0px; padding-right:5px;}
}
@keyframes anime_button {
  0% { padding-left: 5px; padding-right:0px; }
  20% { padding-left:4px; padding-right:1px;}
  40% {padding-left: 3px; padding-right:2px;}
  60% {padding-left: 2px; padding-right:3px;}
  80% {padding-left: 1px; padding-right:4px;}
  100% {padding-left: 0px; padding-right:5px;}
}
@keyframes rotation2 {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}


@media (max-width: 1440px) { }
@media (max-width: 1280px) {
    .g_button {
        font-size: 0.938vw;
        padding: 0.547vw 1.797vw 0.469vw 1.875vw;
        letter-spacing: 0.195vw;
    }
    .g_button:hover { }
}
@media (max-width: 1140px) { 
    .g_button {
        font-size: 1.053vw;
        padding: 0.614vw 2.018vw 0.526vw 2.105vw;
        letter-spacing: 0.219vw;
    }
    .g_button:hover { }
}
@media (max-width: 1024px) {
    body {
      font-size: 1.4vw;
      line-height: 1.33;
      letter-spacing: 0.012vw;
    }
    h1,h2,h3,h4,h5,h6{ }
    h1 { }

    h2 { }

    h3 { }

    h4 { }

    h5 {  }

    a:hover { }


    input[type="submit"] { }

    input[type="submit"]::before { }

    .site_button:hover:before,
    input[type="submit"]::before {
        width: 100%;
    }

    p { }

    p:last-child { }

    mark { }

    .mobile_only {  }

    .m { }

    section {  }
    .section_inner { }
    
    .g_button {
        font-size: 1.172vw;
        padding: 0.684vw 2.246vw 0.586vw 2.344vw;
        letter-spacing: 0.244vw;
    }
    .g_button:hover {  }
}
@media (max-width: 768px) {
    body {
      font-size: 1.7vw;
      line-height: 1.33;
      letter-spacing: 0.012vw;
    }
    h1,h2,h3,h4,h5,h6{ }
    h1 { }

    h2 { }

    h3 { }

    h4 { }

    h5 {  }

    a:hover { }


    input[type="submit"] { }

    input[type="submit"]::before { }

    .site_button:hover:before,
    input[type="submit"]::before {
        width: 100%;
    }

    p { }

    p:last-child { }

    mark { }

    .mobile_only {  }

    .m { }

    section {  }
    .section_inner { }


    .g_button {
        font-size: 1.563vw;
        padding: 0.911vw 2.995vw 0.781vw 3.125vw;
        letter-spacing: 0.326vw;
    }
    .g_button:hover { }
}
@media (max-width: 550px) {
    body {
      font-size: 3.5vw;
      line-height: 1.36;
      letter-spacing: 0vw;
    }
    h1,h2,h3,h4,h5,h6{ }
    h1 {
      font-size: 15.8vw;
      line-height: 0.93;
      letter-spacing: -0.4vw;
    }

    h2 {
      font-size: 10.5vw;
      letter-spacing: -0.27vw;
      line-height: 0.98;
    }

    h3 {
      font-size: 9.3vw;
      letter-spacing: 0.01vw;
      line-height: 1.01;
    }

    h4 {
      font-size: 5.2vw;
      letter-spacing: 0.288px;
      line-height: 1.02;
    }

    h5 {
      font-size: 4.2vw;
      letter-spacing: 0.2vw;
      line-height: 1.2;
    }

    a:hover { }


    input[type="submit"] { }

    input[type="submit"]::before { }

    .site_button:hover:before,
    input[type="submit"]::before {
        width: 100%;
    }

    p {
        margin-bottom: 1.389vw;
    }

    p:last-child { }

    mark { }

    .mobile_only {  }

    .m { }

    section {  }
    .section_inner {
      /* width: 100vw; */
    }


    .g_button {
        font-size: 3.2vw;
        padding: 1.9vw 7.2vw 1.8vw 7.2vw;
        letter-spacing: 0.4vw;
    }
    .g_button:hover { }
}


html{
  background-color: #0D0D0D;
  margin: 0px !important;
  padding: 0px !important;
}
@keyframes rotation2 {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}


/*
    Header
------------------------------*/
.lp_header{
    position: fixed;
    width: 100%;
    z-index: 99;
}
.lp_header .section_inner {
    display: flex;
    width: 100%;
    padding-top: 1.944vw;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-bottom: 2.708vw;
    padding-left: 3.958vw;
    padding-right: 3.819vw;
}
.lp_header_left {
    width: 18%;
    padding-top: 0vw;
}
.lp_logo_image {
    width: 7.153vw;
}
.lp_header_right {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    /* justify-content: center; */
    width: 82%;
    text-align: right;
    padding-top: 0.486vw;
    padding-left: 0.278vw;
}
.lp_header_right ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
.lp_header_right li {
    display: inline-block;
    margin: 0;
    margin-right: 2.222vw;
}
.lp_header_right li a {
    display: block;
    margin: 0 0vw;
    padding: 0 1.181vw;
    position: relative;
    font-size: 0.903vw;
    font-weight: 500;
    line-height: 2;
    letter-spacing: -0.028vw;
    text-align: left;
    color: #315C65;
    font-family: 'Gotham';
    text-transform: uppercase;
}
.responsive-menu ul li a:after,
.lp_header_right li a:after {
    content: " ";
    width: 100%;
    height: 1.181vw;
    background-image: url(lp_nav-hover.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    opacity: 0;
    position: absolute;
    bottom: 0.972vw;
    left: -0.139vw;
    z-index: -1;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
}

.responsive-menu ul li a:after {
    height: 1.389vw;
    bottom: 0.417vw;
}

.responsive-menu ul li a:hover:after,
.lp_header_right li a:hover:after {
    opacity: 1;
}
.lp_header_right li a:hover{
    text-decoration:underline;
}
.responsive-menu ul li a {
    display: inline-block;
    padding: 0 1.528vw;
}
.responsive-menu ul li.pf4_user_menu_item {
    margin-bottom: 0px;
}
.responsive-menu ul li.pf4_user_menu_item .user img.user__avatar {
    display: none;
}
.responsive-menu ul li.pf4_user_menu_item .user .user__dropdown a {
    display: block;
    margin-bottom: 1.736vw;
}


.lp_header.active{
    background-color: #FFF;
}
.lp_header.active .section_inner{
    padding-bottom: 0.694vw;
    padding-left: 3.958vw;
    padding-right: 3.819vw;
    padding-top: 0.764vw;
}
.lp_header.active .lp_header_right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 82%;
    /* text-align: right; */
    padding-top: 0vw;
}

@media (max-width: 1440px) { }

@media (max-width: 1140px) {}

@media (max-width: 1024px) {
    .lp_header_left {
        padding-left: 0vw;
    }
    .lp_header_right {
        padding-left: 0;
        padding-top: 0vw;
    }
    .lp_header_right li a {
        font-size: 1.2vw;
    }
}

@media (max-width: 768px) {
    .lp_header {
      padding-top: 1.944vw;
      padding-bottom: 1.944vw;
      padding-left: 3.958vw;
      padding-right: 3.819vw;
      /* background-color: #FFF; */
    }
    .lp_header .section_inner,
    .lp_header.active .section_inner {
        position: relative;
        padding-top: 0vw;
        flex-wrap: wrap;
        box-sizing: border-box;
        padding-bottom: 0vw;
        padding-left: 0vw;
        padding-right: 0vw;
    }
    .lp_header_right {
        text-align: right;
    }

    .lp_logo_image {
        width: 11.153vw;
    }
    .lp_header2 {
      padding-top: 1.944vw;
      padding-bottom: 18vw;
      padding-left: 3.958vw;
      padding-right: 3.819vw;
  }
}

@media (max-width: 550px) {
    .lp_header .section_inner,
    .lp_header.active .section_inner{padding-bottom: 0vw;padding-left: 0vw;padding-right: 0vw;padding-top: 0vw;}
    .lp_header_left {
        width: 60%;
    }
    .lp_logo_image {
        width: 19.4vw;
    }
    .lp_header_right {
        width: 40%;
    }
    .lp_header.active .lp_header_right{      
        width: 40%;      
        display: block;      
        flex-wrap: unset;      
        flex-direction: unset;      
        justify-content: unset;
    }


    .lp_header2{
        padding-top: 5vw;
        padding-bottom: 37.5vw;
        padding-left: 7.6vw;
        padding-right: 8.3vw;
        width: 100%;
        z-index: 99;
        left: 0;
        top: 0;
        /* background-color: #FFF; */
    }
    .lp_header2 .section_inner {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        box-sizing: border-box;
    }
}





/*
    Responsive Header
------------------------------*/
.responsive-menu-hand {
    display: none;
}

.responsive-menu-hand svg {
    width: 100%;
    height: 100%;
}

.responsive-menu-close {
    clear: both;
    display: block;
    width: 23px;
    height: 24px;
    margin-right: 0vw;
    margin-top: 0px;
    background-image: url(close-menu.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0vw;
    position: absolute;
    z-index: 24;
    top: 2vw;
}
.responsive-menu:before{
    content:"";
    width:100%;
    display:block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(res_bg.png);
    position: absolute;
    bottom: 0vw;
    height: 89px;
}

.responsive-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -110%;
    background: #F4F0EC;
    z-index: 999999;
    overflow: scroll;
    overflow-y: auto;
    overflow-x: auto;
    transition: right 0.5s ease;
    padding-top: 0vw;
    padding-bottom: 50vw;
}

.responsive-menu.active {
    right: 0;
}

.responsive-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    border-bottom: 0;
}

.responsive-menu ul li {
    margin: 0;
    padding: 0 1.25vw;
    list-style-type: none;
    position: relative;
    margin-bottom: 5.4vw;
    text-align: center;
}

.responsive-menu ul li a,
.responsive-menu .pf4_header_userarea span a {
    display: inline-block;
    text-decoration: none;
    font-size: 23px !important;
    letter-spacing: 0.021vw;
    position: relative;
    text-align: center;
    line-height: 1.52;
    border: 0;
    margin: 0;
    color: #315C65;
    font-family: 'Gotham';
    text-transform: uppercase;
    font-weight: 500;
}

.responsive-menu ul li:hover {
    text-decoration: none;
}

@media (max-width: 1440px) {}

@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
    .lp_header_right ul {
        display: none;
    }

    a.responsive-menu-hand {
        width: 28px;
        height: 24px;
        margin-right: 0vw;
        margin-top: 0px;
        background-image: url(m-menu.svg);
        background-position: center;
        background-size: 31px;
        background-repeat: no-repeat;
        right: 0vw;
        position: absolute;
        z-index: 24;
        top: 1.2vw;
    }

    .responsive-menu-hand {
        display: block;
    }
}

@media (max-width: 550px) {
    .lp_header {
        padding-top: 5vw;
        padding-bottom: 5vw;
        padding-left: 7.6vw;
        padding-right: 8.3vw;
        width: 100%;
        z-index: 99;
        left: 0;
        top: 0;
        /* background-color: #FFF; */
    }

    a.responsive-menu-hand {
        /* margin-right: -0.7vw; */
        /* margin-top: 0vw; */
        /* top: 1vw; */
    }
}


.lp_header .user {
    /*============================================================================
      #User Avatar
    ==============================================================================*/
    /*============================================================================
      #User Dropdown
    ==============================================================================*/
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: -13px;
}

.lp_header .user .dropdown>:before {
    content: " ";
    position: absolute;
    z-index: 0;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #F2D0C4;
    opacity: 1;
    height: 14px;
    width: 2px;
    top: 17px;
    left: -10px;
}

.lp_header .user__avatar {
    height: 40px;
    max-height: 40px;
    margin: 0 0 0 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.lp_header .user__dropdown {
    position: absolute;
    z-index: 2000;
    top: 50px;
    right: 0;
    display: none;
    padding: 20px 30px;
    text-align: left;
    white-space: nowrap;
    border-top: 1px solid #f9f9f9;
    background: #f9f9f9;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.05);
}

.lp_header .user__dropdown--light a {
    color: #0a2338;
}
.lp_header .user__dropdown--dark a {
    color: #fff;
}
.lp_header .user__dropdown span {
    display: block;
}
.lp_header .user__dropdown a {
    line-height: 40px !important;
    display: block;
    color: #000;
    padding-right: 7px;
    padding-left: 7px;
}
.lp_header--center .user {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.lp_header--center .user__dropdown {
    top: 50px;
}
.lp_header--center .user__dropdown a {
    line-height: 40px;
    margin: 0 0 0 0;
}

@media (max-width: 767px) {
    .lp_header .user {
        position: static;
        display: block;
        width: 100%;
    }

    .lp_header .user__avatar {
        display: none;
    }

    .lp_header .user__dropdown {
        position: static;
        display: block !important;
        padding: 0 0 0 0;
        text-align: left;
        border-top: 0;
        background: transparent !important;
        box-shadow: none;
    }

    .lp_header--light .user__dropdown a { color: #0a2338; }
    .lp_header--dark .user__dropdown a { color: #fff; }
}


@media (max-width: 768px) {}




















/* Section 1
==================================*/
.wms1{
    background-color: #f4f0ec;
}
.wms1 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.wms1_left{
    width: 59.62%;
    padding-top: 14.236vw;
    padding-left: 6.111vw;
    padding-bottom: 5.972vw;
    padding-right: 7.639vw;
}
.wms1_left h1{}
.wms1_left h1 br{}
.wms1_left h1 span{
    display: inline-block;
    position: relative;
    padding-left: 1.389vw;
}
.wms1_left h1 span:before{
    content:"";
    height: 2px;
    background-color: #000;
    width: 27.778vw;
    position: absolute;
    top: -2.708vw;
    left: 0.764vw;
    transition: all 3s ease;
}
.not_in_viewport .wms1_left h1 span:before{
    width:0vw;
}
.wms1_left article{
    color: #388DA6;
    font-family: 'Gotham';
    font-weight: 300;
    font-size: 2.222vw;
    padding-top: 1.389vw;
    padding-left: 0.833vw;
    letter-spacing: -0.047vw;
}
.wms1_left p{}

.wms1_art{
    display: block;
    text-align: right;
    padding-top: 10vw;
    padding-right: 0vw;
}
.wms1_art.mobile_only{
    display:none;
}
@keyframes anime_button2 {
  from {top: 0px;}
  to {top: 10px;}
}
.wms1_art span{
    display: inline-block;
    width: 4.514vw;
    height: 4.514vw;
    -webkit-animation: anime_button2 0.4s infinite alternate;
    -moz-animation: anime_button2 0.4s infinite alternate;
    animation: anime_button2 0.4s infinite alternate;
    position: relative;
}
.wms1_art span svg{
    width: 100%;
    display: block;
    height: 100%;
}
.wms1_art span svg path{}

.wms1_right{
    width: 40.38%;
    background-color: #FFFFFF;
}
.wms1_right .img{
    height: 36.944vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 1;
}
.wms1_right .img img{
    width: 10%;
    opacity: 0;
}
.wms1_right .content{
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding-left: 5.486vw;
    padding-top: 4.375vw;
    padding-bottom: 1.319vw;
    padding-right: 8.681vw;
    padding-bottom: 4.792vw;
}
.wms1_right .content article{
    font-size: 1.2vw;
    letter-spacing: 0.003vw;
    line-height: 1.32;
    padding-bottom: 1.667vw;
}
.wms1_right .content article p{
    /* font-size: 1.181vw; */
}
.wms1_right .content article p br{}
.wms1_right .content article p strong{ font-weight: bold; }
.wms1_right .content article p b{ font-weight: 500; }

.wms1_right .content .link{}
.wms1_right .content .link a.g_button{}


@media (max-width: 1140px) {
    .wms1{}
    .wms1 .section_inner{}

    .wms1_left{}
    .wms1_left h1{}
    .wms1_left h1 br{}
    .wms1_left h1 span{}
    .wms1_left h1 span:before{}

    .wms1_left article{}
    .wms1_left p{}

    .wms1_right{}
    .wms1_right .img{}
    .wms1_right .img img{}
    .wms1_right .content{}
    .wms1_right .content article{}
    .wms1_right .content article p{}
    .wms1_right .content article p br{}
    .wms1_right .content article p strong{}

    .wms1_right .content .link{}
    .wms1_right .content .link a.g_button{}
}
@media (max-width: 1024px) {
    .wms1{}
    .wms1 .section_inner{}

    .wms1_left{}
    .wms1_left h1{}
    .wms1_left h1 br{}
    .wms1_left h1 span{}
    .wms1_left h1 span:before{}

    .wms1_left article{}
    .wms1_left p{}

    .wms1_right{}
    .wms1_right .img{}
    .wms1_right .img img{}
    .wms1_right .content{}
    .wms1_right .content article{
        font-size: 1.4vw;
        letter-spacing: 0.012vw;
        line-height: 1.33;
        padding-bottom: 1.667vw;
    }
    .wms1_right .content article p{}
    .wms1_right .content article p br{
        display: none;
    }
    .wms1_right .content article p strong{}

    .wms1_right .content .link{}
    .wms1_right .content .link a.g_button{}
}
@media (max-width: 768px) {
    .wms1{
        padding-top: 8vw;
    }
    .wms1 .section_inner{}

    .wms1_left{}
    .wms1_left h1{}
    .wms1_left h1 br{}
    .wms1_left h1 span{}
    .wms1_left h1 span:before{}

    .wms1_left article{}
    .wms1_left p{}

    .wms1_right{}
    .wms1_right .img{}
    .wms1_right .img img{}
    .wms1_right .content{
        padding-right: 4.681vw;
        padding-bottom: 4.792vw;
        padding-left: 4.681vw;
    }
    .wms1_right .content article{
        font-size: 1.7vw;
    }
    .wms1_right .content article p{}
    .wms1_right .content article p br{}
    .wms1_right .content article p strong{}

    .wms1_right .content .link{}
    .wms1_right .content .link a.g_button{}
}
@media (max-width: 550px) {
    .wms1{
        padding-top: 17vw;
    }
    .wms1 .section_inner{}

    .wms1_left{
        width: 100%;
        padding-top: 8.9vw;
        padding-left: 7.4vw;
        padding-bottom: 15vw;
        padding-right: 7.8vw;
    }
    .wms1_left h1{
        margin-bottom: 0px;
    }
    .wms1_left h1 br{}
    .wms1_left h1 span{
        height: 2.1vw;
    }
    .wms1_left h1 span:before{
        left: 3vw;
        width: 102.778vw;
        background-color: rgb(35 32 33 / 74%);
    }

    .wms1_left article{
        padding-top: 2vw;
        font-size: 4.6vw;
        padding-left: 1.1vw;
        letter-spacing: -0.15vw;
    }
    .wms1_left p{}

    .wms1_right{
    width: 100%;
}
    .wms1_right .img{
        display: none;
    }
    .wms1_right .img.mobile_only{
        display: block;
        height: 50.6vw;
    }
    .wms1_art{
    display: none;
}
    .wms1_art.mobile_only{
    display: block;
    position: absolute;
    bottom: 41.6vw;
    right: 8.5vw;
}
    .wms1_art span{
    width: 11.514vw;
    height: 11.514vw;
}
    .wms1_art span svg{}
    .wms1_right .img img{}
    .wms1_right .content{
    padding-right: 15.681vw;
    padding-bottom: 42.792vw;
    padding-left: 11.5vw;
    padding-top: 10.8vw;
}
    .wms1_right .content article{
    font-size: 3.5vw;
    letter-spacing: -0.056vw;
    line-height: 1.4;
    padding-bottom: 6.2vw;
}
    .wms1_right .content article p{}
    .wms1_right .content article p br{}
    .wms1_right .content article p strong{}

    .wms1_right .content .link{
    padding-left: 0.1vw;
}
    .wms1_right .content .link a.g_button{}
}


/* Section 2
==================================*/
.wms2{
    background-image: url(s2_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFF;
}
.wms2 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.wms2_left{
    width: 52%;
    padding-left: 8.472vw;
    padding-right: 9.514vw;
    padding-bottom: 17.639vw;
}
.wms2_left .wms2_img{
    margin-top: -17.083vw;
    height: 52.569vw;
}

.wms2_right{
    width: 48%;
    padding-right: 8.958vw;
    padding-top: 6.458vw;
    padding-bottom: 8.403vw;
}
.wms2_right h2{
    margin-bottom: 0vw;
    padding-bottom: 3.194vw;
    color: #232021;
}

.wms2_lists{
    padding-left: 3.819vw;
}
.wms2_col{
    width: 100%;
    display: block;
    position: relative;
    padding-left: 6.389vw;
    padding-bottom: 2.222vw;
}
.wms2_col .art{
    position: absolute;
    top: 0.347vw;
    left: 0vw;
}

.wms2_col .art img{}
.wms2_col h4{
    color: #1c1819;
    font-family: 'Roboto Slab';
    font-weight: 500;
    margin-bottom: 0.903vw;
}
.wms2_col article{
    color: #101819;
}
.wms2_col article p{}
.wms2_col article p br{}

.wms2_right .link{
    padding-left: 10.278vw;
    padding-top: 0vw;
}
.wms2_right .link a.g_button{}


.wms2_col.style1 .art{
    width: 2.847vw;
    left: 1.042vw;
}
.wms2_col.style1 .art img{}

.wms2_col.style2 .art{
    width: 4.236vw;
    top: -0.139vw;
    left: 0.347vw;
}
.wms2_col.style2 .art img{}

.wms2_col.style3 .art{
    width: 4.931vw;
    top: 0.278vw;
    left: 0.069vw;
}
.wms2_col.style3 .art img{}

@media (max-width: 1140px) {
    .wms2{}
    .wms2 .section_inner{}

    .wms2_left{}
    .wms2_left .wms2_img{}
    .wms2_left .wms2_img span{}
    .wms2_left .wms2_img span img{}

    .wms2_right{}
    .wms2_right h2{}

    .wms2_lists{}
    .wms2_col{}
    .wms2_col .art{}
    .wms2_col .art img{}
    .wms2_col h4{}
    .wms2_col article{}
    .wms2_col article p{}
    .wms2_col article p br{}

    .wms2_right .link{}
    .wms2_right .link a.g_button{}

    .wms2_col.style1 .art{}
    .wms2_col.style1 .art img{}

    .wms2_col.style2 .art{}
    .wms2_col.style2 .art img{}

    .wms2_col.style3 .art{}
    .wms2_col.style3 .art img{}
}
@media (max-width: 1024px) {
    .wms2{}
    .wms2 .section_inner{}

    .wms2_left{}
    .wms2_left .wms2_img{}
    .wms2_left .wms2_img span{}
    .wms2_left .wms2_img span img{}

    .wms2_right{}
    .wms2_right h2{}

    .wms2_lists{}
    .wms2_col{}
    .wms2_col .art{}
    .wms2_col .art img{}
    .wms2_col h4{}
    .wms2_col article{}
    .wms2_col article p{}
    .wms2_col article p br{
    display: none;
}

    .wms2_right .link{}
    .wms2_right .link a.g_button{}

    .wms2_col.style1 .art{}
    .wms2_col.style1 .art img{}

    .wms2_col.style2 .art{}
    .wms2_col.style2 .art img{}

    .wms2_col.style3 .art{}
    .wms2_col.style3 .art img{}
}
@media (max-width: 768px) {
    .wms2{}
    .wms2 .section_inner{}

    .wms2_left{
        width: 47%;
        padding-left: 8.472vw;
        padding-right: 3.514vw;
        padding-bottom: 17.639vw;
    }
    .wms2_left .wms2_img{}
    .wms2_left .wms2_img span{}
    .wms2_left .wms2_img span img{}

    .wms2_right{
        width: 53%;
        padding-right: 6.958vw;
    }
    .wms2_right h2{}

    .wms2_lists{}
    .wms2_col{}
    .wms2_col .art{}
    .wms2_col .art img{}
    .wms2_col h4{}
    .wms2_col article{}
    .wms2_col article p{}
    .wms2_col article p br{}

    .wms2_right .link{}
    .wms2_right .link a.g_button{}

    .wms2_col.style1 .art{}
    .wms2_col.style1 .art img{}

    .wms2_col.style2 .art{}
    .wms2_col.style2 .art img{}

    .wms2_col.style3 .art{}
    .wms2_col.style3 .art img{}
}
@media (max-width: 550px) {
    .wms2{
        background-image: url(s2_bgm.png);
    }
    .wms2 .section_inner{}

    .wms2_left{
        width: 100%;
        padding-left: 12.472vw;
        padding-right: 12.514vw;
        padding-bottom: 15.7vw;
    }
    .wms2_left .wms2_img{
        margin-top: -29.4vw;
        height: 119.569vw;
    }
    .wms2_left .wms2_img img{
        display: none;
    }
    .wms2_left .wms2_img img.mobile_only{
        display: block;
    }

    .wms2_right{
        width: 100%;
        padding-right: 12vw;
        padding-top: 1vw;
        padding-left: 11.1vw;
        padding-bottom: 23.2vw;
    }
    .wms2_right h2{
        padding-bottom: 8.5vw;
    }

    .wms2_lists{
        padding-left: 0vw;
    }
    .wms2_col{
        padding-left: 12.5vw;
        padding-bottom: 6.7vw;
    }
    .wms2_col .art{}
    .wms2_col .art img{}
    .wms2_col h4{
        margin-bottom: 2.903vw;
    }
    .wms2_col article{
        padding-left: 0.4vw;
        padding-top: 0.3vw;
        letter-spacing: -0.08vw;
    }
    .wms2_col article p{}
    .wms2_col article p br{}

    .wms2_right .link{
        padding-left: 12.5vw;
        padding-top: 1.56vw;
    }
    .wms2_right .link a.g_button{}

    .wms2_col.style1 .art{
        width: 6.847vw;
        left: 1.042vw;
        top: 0.8vw;
    }
    .wms2_col.style1 .art img{}

    .wms2_col.style2 .art{
        width: 9.9vw;
        left: -1.4vw;
        top: 0vw;
    }
    .wms2_col.style2 .art img{}

    .wms2_col.style3 .art{
        width: 10.9vw;
        left: -1.1vw;
        top: 1.7vw;
    }
    .wms2_col.style3 .art img{}
}


/* Section 3
==================================*/
.wms3{
    background-color: #F4F0EC;
}
.wms3 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.wms3_left{
    width: 44.7%;
    padding-top: 7.014vw;
    /* padding-left: 6.111vw; */
    /* padding-right: 5.972vw; */
}
.wms3_top{
    padding-left: 6.111vw;
    padding-right: 5.972vw;
    padding-bottom: 6.944vw;
}
.wms3_top h2{
    font-size: 5.764vw;
    letter-spacing: -0.153vw;
    width: 149%;
    z-index: 1;
    position: relative;
    line-height: 1.1;
    margin-bottom: 0vw;
    padding-bottom: 4.028vw;
    color: #000;
}
.wms3_top h2 br{}
.wms3_top article{
    padding-left: 5.903vw;
}
.wms3_top article p{}
.wms3_top article p br{}
.wms3_top article p strong{} 

.wms3_limg{
    width: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 16.389vw;
}
.wms3_limg.mobile_only{
    display:none;
}
.wms3_limg img{
    width: 10%;
    opacity: 0;
}

.wms3_right{
    width: 55.3%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.wms3_right .content{
    position: absolute;
    right: 0vw;
    bottom: 0vw;
    background-color: #232021;
    width: 31.25vw;
    padding-bottom: 3.264vw;
    padding-left: 5.764vw;
    padding-top: 3.194vw;
    padding-right: 3.819vw;
    border-radius: 6.042vw 0vw 0vw 0vw;
}
.wms3_right .content article{
    font-family: 'Gotham';
    font-weight: 300;
    color: #FFFFFF;
    font-size: 1.597vw;
    padding-bottom: 1.042vw;
    line-height: 1.21;
    letter-spacing: 0.039vw;
}
.wms3_right .content article p{}
.wms3_right .content article p br{}
.wms3_right .content article p strong{
    font-weight: 500;
}
.wms3_right .content .link{}
.wms3_right .content .link a.g_button{
    padding: 0.686vw 2.014vw 0.617vw 2.014vw;
}


@media (max-width: 1140px) {
    .wms3{}
    .wms3 .section_inner{}

    .wms3_left{}
    .wms3_top{}
    .wms3_top h2{}
    .wms3_top h2 br{}
    .wms3_top article{}
    .wms3_top article p{}
    .wms3_top article p br{}
    .wms3_top article p strong{} 

    .wms3_limg{}
    .wms3_limg img{}

    .wms3_right{}
    .wms3_right .content{}
    .wms3_right .content article{}
    .wms3_right .content article p{}
    .wms3_right .content article p br{}
    .wms3_right .content article p strong{}
    .wms3_right .content .link{}
    .wms3_right .content .link a.g_button{}
}
@media (max-width: 1024px) {
    .wms3{}
    .wms3 .section_inner{}

    .wms3_left{}
    .wms3_top{}
    .wms3_top h2{}
    .wms3_top h2 br{}
    .wms3_top article{}
    .wms3_top article p{}
    .wms3_top article p br{
        display: none;
    }
    .wms3_top article p strong{} 

    .wms3_limg{}
    .wms3_limg img{}

    .wms3_right{}
    .wms3_right .content{}
    .wms3_right .content article{}
    .wms3_right .content article p{}
    .wms3_right .content article p br{}
    .wms3_right .content article p strong{}
    .wms3_right .content .link{}
    .wms3_right .content .link a.g_button{}
}
@media (max-width: 768px) {
    .wms3{}
    .wms3 .section_inner{}

    .wms3_left{}
    .wms3_top{}
    .wms3_top h2{}
    .wms3_top h2 br{}
    .wms3_top article{
        padding-left: 3vw;
    }
    .wms3_top article p{}
    .wms3_top article p br{}
    .wms3_top article p strong{} 

    .wms3_limg{}
    .wms3_limg img{}

    .wms3_right{}
    .wms3_right .content{}
    .wms3_right .content article{}
    .wms3_right .content article p{}
    .wms3_right .content article p br{}
    .wms3_right .content article p strong{}
    .wms3_right .content .link{}
    .wms3_right .content .link a.g_button{}
}
@media (max-width: 550px) {
    .wms3{}
    .wms3 .section_inner{}

    .wms3_left{
        width: 100%;
        padding-top: 17vw;
    }
    .wms3_top{
        padding-left: 0vw;
        padding-right: 0vw;
        padding-bottom: 6.944vw;
    }
    .wms3_top h2{
        font-size: 10.5vw;
        letter-spacing: -0.3vw;
        width: 100%;
        line-height: 1.08;
        padding-left: 7vw;
        padding-right: 7vw;
        padding-bottom: 11vw;
    }
    .wms3_top h2 br{
        display: none;
    }
    .wms3_top article{
        padding-left: 11.7vw;
        padding-right: 8.3vw;
        padding-top: 13.8vw;
        letter-spacing: -0.07vw;
        padding-bottom: 7.1vw;
    }
    .wms3_top article p{}
    .wms3_top article p br{}
    .wms3_top article p strong{} 

    .wms3_limg{
        height: 59.389vw;
        display: none;
    }

    .wms3_limg.mobile_only{
        display: block;
    }
    .wms3_limg img{}

    .wms3_rimg.mobile_only{
        display: block;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        height: 73.8vw;
    }
    .wms3_rimg.mobile_only img{
        width: 10%;
        opacity: 0;
    }

    .wms3_right{
        width: 100%;
        background-image: none !important;
        margin-top: -21.4vw;
    }
    .wms3_right .content{
        position: relative;
        width: 100%;
        padding-bottom: 11.3vw;
        padding-left: 18.4vw;
        padding-top: 10.1vw;
        padding-right: 3.819vw;
        border-radius: 20.042vw 0vw 0vw 0vw;
    }
    .wms3_right .content article{
        font-size: 5.1vw;
        padding-bottom: 4.64vw;
        line-height: 1.15;
        letter-spacing: -0.02vw;
    }
    .wms3_right .content article p{}
    .wms3_right .content article p br{}
    .wms3_right .content article p strong{}
    .wms3_right .content .link{
        padding-left: 0.2vw;
    }
    .wms3_right .content .link a.g_button{
        padding: 1.8vw 6.2vw 1.8vw 6.6vw;
    }
}


/* Section 4
==================================*/
.wms4{
    background-color: #FFFFFF;
    padding-bottom: 9.028vw;
    padding-top: 5.694vw;
}
.wms4 .section_inner{}

.wms4_slider{
    /* padding-top: 5.694vw; */
    /* padding-bottom: 5.694vw; */
}
.wms4_col{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.wms4_left{
    width: 52%;
    padding-right: 9.861vw;
    padding-left: 10vw;
}
.wms4_left .wms4_img{
    width: 32.083vw;
    height: 34.306vw;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.wms4_left .wms4_img span{
    width: 100%;
    display: block;
    height: 100%;
    background-image: url(s4_2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display:none;
}

.wms4_left .wms4_img em{
  z-index: 1;
  background-size: 33vw;
  background-position: center;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.wms4_left .wms4_img strong{
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    border: 0.139vw solid #F4F0EC;
    left: 2.847vw;
    right: 2.847vw;
    top: 4.028vw;
    bottom: 4.028vw;
    border-radius: 4.583vw 0 4.583vw 0;
    background: rgb(255 255 255 / 0%);
    background-size: 33vw;
    background-position: center;
    background-repeat: no-repeat;
}

.wms4_left .wms4_img span img{
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 10%;
}

.wms4_right{
    width: 48%;
    padding-right: 7.639vw;
    padding-top: 4.722vw;
    padding-bottom: 4.861vw;
}
.wms4_right h3{
    position: relative;
    color: #000;
    font-family: 'Roboto Slab';
    font-weight: 300;
    margin-bottom: 2.083vw;
}
.wms4_right h3 span{
    position: absolute;
    top: -0.417vw;
    left: -1.667vw;
}
.wms4_right h3 br{}
.wms4_right article{
    width: 100%;
    display: block;
    padding-left: 0.208vw;
    letter-spacing: -0.009vw;
    padding-bottom: 2.014vw;
}
.wms4_right article p{}
.wms4_right article p br{}
.wms4_right .name{
    font-family: 'Gotham';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.007vw;
    font-size: 1.181vw;
    padding-left: 0.139vw;
    color: #388DA6;
}


.wms4_slider ul.slick-dots{ }
.wms4_slider ul.slick-dots li{ }
.wms4_slider ul.slick-dots li.slick-active{ }

.wms4_slider .slick-dots li .slm{}
.wms4_slider .slick-dots li .slm .sl1{}
.wms4_slider .slick-dots li .slm .sl2{}
.wms4_slider .slick-dots li .slm .sl3{}

.wms4_slider .slick-arrow{
    position: absolute;
    bottom: 0vw;
    right: 0vw;
    text-indent: -694.375vw;
    border: 0vw;
    background-color: transparent !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 3.333vw;
    height: 3.333vw;
    cursor: pointer;
    z-index: 2;
}
.wms4_slider .slick-arrow:hover{
    opacity:0.7;
}
.wms4_slider .slick-arrow:before{ }
.wms4_slider .slick-prev{
    background-image: url(left_arrow.svg);
    right: 14.028vw;
}
.wms4_slider .slick-next{
    background-image: url(right_arrow.svg);
    right: 8.264vw;
}


@media (max-width: 1140px) {
    .wms4{}
    .wms4 .section_inner{}

    .wms4_slider{}
    .wms4_col{}
    .wms4_left{}
    .wms4_left .wms4_img{}
    .wms4_left .wms4_img span{}
    .wms4_left .wms4_img span img{}

    .wms4_right{}
    .wms4_right h3{}
    .wms4_right h3 span{}
    .wms4_right h3 br{}
    .wms4_right article{}
    .wms4_right article p{}
    .wms4_right article p br{}
    .wms4_right .name{}


    .wms4_slider ul.slick-dots{ }
    .wms4_slider ul.slick-dots li{ }
    .wms4_slider ul.slick-dots li.slick-active{ }

    .wms4_slider .slick-dots li .slm{}
    .wms4_slider .slick-dots li .slm .sl1{}
    .wms4_slider .slick-dots li .slm .sl2{}
    .wms4_slider .slick-dots li .slm .sl3{}

    .wms4_slider .slick-arrow{ }
    .wms4_slider .slick-arrow:before{ }
    .wms4_slider .slick-prev{ }
    .wms4_slider .slick-next{ }
}
@media (max-width: 1024px) {
    .wms4{}
    .wms4 .section_inner{}

    .wms4_slider{}
    .wms4_col{}
    .wms4_left{}
    .wms4_left .wms4_img{}
    .wms4_left .wms4_img span{}
    .wms4_left .wms4_img span img{}

    .wms4_right{}
    .wms4_right h3{}
    .wms4_right h3 span{}
    .wms4_right h3 br{}
    .wms4_right article{}
    .wms4_right article p{}
    .wms4_right article p br{
        display: none;
    }
    .wms4_right .name{}


    .wms4_slider ul.slick-dots{ }
    .wms4_slider ul.slick-dots li{ }
    .wms4_slider ul.slick-dots li.slick-active{ }

    .wms4_slider .slick-dots li .slm{}
    .wms4_slider .slick-dots li .slm .sl1{}
    .wms4_slider .slick-dots li .slm .sl2{}
    .wms4_slider .slick-dots li .slm .sl3{}

    .wms4_slider .slick-arrow{ }
    .wms4_slider .slick-arrow:before{ }
    .wms4_slider .slick-prev{ }
    .wms4_slider .slick-next{ }
}
@media (max-width: 768px) {
    .wms4{}
    .wms4 .section_inner{}

    .wms4_slider{}
    .wms4_col{}
    .wms4_left{
        padding-top: 6vw;
    }
    .wms4_left .wms4_img{}
    .wms4_left .wms4_img span{}
    .wms4_left .wms4_img span img{}

    .wms4_right{}
    .wms4_right h3{}
    .wms4_right h3 span{}
    .wms4_right h3 br{}
    .wms4_right article{}
    .wms4_right article p{}
    .wms4_right article p br{}
    .wms4_right .name{
        font-size: 1.7vw;
    }


    .wms4_slider ul.slick-dots{ }
    .wms4_slider ul.slick-dots li{ }
    .wms4_slider ul.slick-dots li.slick-active{ }

    .wms4_slider .slick-dots li .slm{}
    .wms4_slider .slick-dots li .slm .sl1{}
    .wms4_slider .slick-dots li .slm .sl2{}
    .wms4_slider .slick-dots li .slm .sl3{}

    .wms4_slider .slick-arrow{width: 4.333vw;height: 4.333vw;}
    .wms4_slider .slick-arrow:before{ }
    .wms4_slider .slick-prev{ }
    .wms4_slider .slick-next{ }
}
@media (max-width: 550px) {
    .wms4{
        padding-bottom: 15.4vw;
        padding-top: 12.694vw;
    }
    .wms4 .section_inner{
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .wms4_slider{}
    .wms4_col{}
    .wms4_left{
        width: 100%;
        padding-right: 3.861vw;
        padding-left: 3.861vw;
    }
    .wms4_left .wms4_img{
        width: 100%;
        height: 82.1vw;
    }
    .wms4_left .wms4_img span{
        background-image: url(s4_2m.svg);
    }
    .wms4_left .wms4_img span img{}

    .wms4_left .wms4_img em{
      background-size: 80vw;
    }
    .wms4_left .wms4_img strong{
      background-size: 80vw;
      border-radius: 13.333vw 0 13.333vw 0;
      top: 12%;
        left: 10%;
        right: 10%;
        bottom: 12%;
    }

    .wms4_right{
        width: 100%;
        padding-right: 4.639vw;
        padding-top: 14.1vw;
        padding-bottom: 11.861vw;
        padding-left: 2.9vw;
    }
    .wms4_right h3{
        line-height: 1.16;
        font-size: 8.1vw;
        letter-spacing: 0.18vw;
        padding-bottom: 3.6vw;
    }
    .wms4_right h3 span{}
    .wms4_right h3 br{}
    .wms4_right article{
        padding-left: 0.7vw;
        letter-spacing: -0.044vw;
        padding-right: 1vw;
        padding-bottom: 5.4vw;
    }
    .wms4_right article p{}
    .wms4_right article p br{}
    .wms4_right .name{
        font-size: 3.7vw;
        letter-spacing: 0.1vw;
        padding-left: 0.7vw;
    }


    .wms4_slider ul.slick-dots{ }
    .wms4_slider ul.slick-dots li{ }
    .wms4_slider ul.slick-dots li.slick-active{ }

    .wms4_slider .slick-dots li .slm{}
    .wms4_slider .slick-dots li .slm .sl1{}
    .wms4_slider .slick-dots li .slm .sl2{}
    .wms4_slider .slick-dots li .slm .sl3{}

    .wms4_slider .slick-arrow{width: 10.333vw;height: 10.333vw;}
    .wms4_slider .slick-arrow:before{ }
    .wms4_slider .slick-prev{right: 23.028vw;}
    .wms4_slider .slick-next{right: 6vw;}
}


/* Section 5
==================================*/
.wms5{
    background-color: #388DA6;
}
.wms5 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.wms5_left{
    width: 55.4%;
}
.wms5_top{
    padding-top: 5.625vw;
    padding-left: 6.458vw;
    padding-right: 11.111vw;
    padding-bottom: 5.833vw;
}
.wms5_top h2{
    color: #FFFFFF;
    letter-spacing: -0.132vw;
}
.wms5_top article{
    color: #ffffff;
    font-family: 'Gotham';
    font-weight: 300;
    font-size: 1.875vw;
    padding-top: 0.208vw;
    padding-left: 5.625vw;
    letter-spacing: 0vw;
    line-height: 1.24;
}
.wms5_top article p{}
 
.wms5_limg{
    width: 100%;
    display: block;
    height: 25.556vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.wms5_limg img{
    width: 10%;
    opacity: 0;
}

.wms5_right{
    width: 44.6%;
    background-color: #F4F0EC;
    padding-top: 6.667vw;
    padding-left: 6.597vw;
    padding-right: 8.611vw;
    padding-bottom: 6.389vw;
}
.wms5_rightin{}
.wms5_list{
    position: relative;
    padding-left: 5.694vw;
    padding-bottom: 2.569vw;
    /* display: none; */
}
.wms5_list .art_line{
    position: absolute;
    top: 0.278vw;
    height: 100%;
    width: 3.75vw;
    left: 0vw;
    /* display: none; */
    transition: all 5s ease;
}
.wms5_list .art_line:before{
    content:"";
    width: 2px;
    height: 100%;
    display: block;
    background-color: #000;
    margin: 0vw auto;
}
.wms5_list span{
    width: 3.681vw;
    height: 3.681vw;
    display: block;
    position: absolute;
    top: 0.139vw;
    left: 0vw;
    border: 0.139vw solid rgb(0 0 0 / 50%);
    border-radius: 50%;
    color: rgb(0 0 0 / 50%);
    text-align: center;
    font-size: 1.944vw;
    padding-top: 0.278vw;
    font-weight: 500;
    z-index: 2;
    background-color: #f4f0ec;
}
.wms5_list h4{
    font-family: 'Roboto Slab';
    font-weight: 500;
    padding-top: 0.139vw;
    color: rgb(0 0 0 / 50%);
}
.wms5_list article{
    padding-top: 0.347vw;
    padding-left: 0.347vw;
    color: rgb(0 0 0 / 50%);
}
.wms5_list article p{}
.wms5_list article p br{}

.wms5_list.active{
    /* display: block; */
}
.wms5_list.active .art_line{
    /* display: block; */
}
.wms5_list:last-child .art_line{
    display:none;
}

.wms5_list:hover span,
.wms5_list.active2 span{
    border-color: #000;
    background-color: #232021;
    color: #FFF;
    /* text-align: center; */
}
.wms5_list.active h4{}
.wms5_list:hover article,
.wms5_list.active2 article{
    color: #000000;
}
.wms5_list:hover h4,
.wms5_list.active2 h4{
    color: #161E2A;
}
.wms5_list.active article p{}
.wms5_list.active article p br{}

.wms5_right .link{
    padding-left: 6.042vw;
    padding-top: 0.278vw;
}
.wms5_right .link a.g_button{
    padding: 0.686vw 2.083vw 0.617vw 2.083vw;
    letter-spacing: 0.167vw;
}



.not_in_viewport .wms5_list .art_line{
  height: 0%;
}

@media (max-width: 1140px) {
    .wms5{}
    .wms5 .section_inner{}

    .wms5_left{}
    .wms5_top{}
    .wms5_top h2{}
    .wms5_top article{}
    .wms5_top article p{}

    .wms5_limg{}
    .wms5_limg img{}

    .wms5_right{}
    .wms5_rightin{}
    .wms5_list{}
    .wms5_list .art_line{}
    .wms5_list .art_line:before{}
    .wms5_list span{}
    .wms5_list h4{}
    .wms5_list article{}
    .wms5_list article p{}
    .wms5_list article p br{}

    .wms5_list.active{}
    .wms5_list.active .art_line{}
    .wms5_list.active span{}
    .wms5_list.active h4{}
    .wms5_list.active article{}
    .wms5_list.active article p{}
    .wms5_list.active article p br{}

    .wms5_right .link{}
    .wms5_right .link a.g_button{}
}
@media (max-width: 1024px) {
    .wms5{}
    .wms5 .section_inner{}

    .wms5_left{}
    .wms5_top{}
    .wms5_top h2{}
    .wms5_top article{}
    .wms5_top article p{}

    .wms5_limg{}
    .wms5_limg img{}

    .wms5_right{
        padding-right: 3.611vw;
    }
    .wms5_rightin{}
    .wms5_list{}
    .wms5_list .art_line{}
    .wms5_list .art_line:before{}
    .wms5_list span{}
    .wms5_list h4{}
    .wms5_list article{}
    .wms5_list article p{}
    .wms5_list article p br{
        display: none;
    }

    .wms5_list.active{}
    .wms5_list.active .art_line{}
    .wms5_list.active span{}
    .wms5_list.active h4{}
    .wms5_list.active article{}
    .wms5_list.active article p{}
    .wms5_list.active article p br{
        /* display: none; */
    }

    .wms5_right .link{}
    .wms5_right .link a.g_button{}
}
@media (max-width: 768px) {
    .wms5{}
    .wms5 .section_inner{}

    .wms5_left{}
    .wms5_top{}
    .wms5_top h2{}
    .wms5_top article{}
    .wms5_top article p{}

    .wms5_limg{}
    .wms5_limg img{}

    .wms5_right{
        padding-left: 3.597vw;
    }
    .wms5_rightin{}
    .wms5_list{}
    .wms5_list .art_line{}
    .wms5_list .art_line:before{}
    .wms5_list span{}
    .wms5_list h4{}
    .wms5_list article{}
    .wms5_list article p{}
    .wms5_list article p br{}

    .wms5_list.active{}
    .wms5_list.active .art_line{}
    .wms5_list.active span{}
    .wms5_list.active h4{}
    .wms5_list.active article{}
    .wms5_list.active article p{}
    .wms5_list.active article p br{}

    .wms5_right .link{}
    .wms5_right .link a.g_button{}
}
@media (max-width: 550px) {
    .wms5{}
    .wms5 .section_inner{}

    .wms5_left{
        width: 100%;
    }
    .wms5_top{
        padding-top: 14.625vw;
        padding-left: 8.1vw;
        padding-right: 11.111vw;
        padding-bottom: 5.833vw;
    }
    .wms5_top h2{
        letter-spacing: -0.3vw;
    }
    .wms5_top article{
        font-size: 3.7vw;
        padding-bottom: 6.64vw;
        line-height: 1.15;
        letter-spacing: 0.02vw;
        padding-top: 0.8vw;
        padding-left: 7.625vw;
    }
    .wms5_top article p{}

    .wms5_limg{
        height: 39.3vw;
    }
    .wms5_limg img{}

    .wms5_right{
        width: 100%;
        padding-top: 16vw;
        padding-left: 10.5vw;
        padding-right: 11.611vw;
        padding-bottom: 17.389vw;
    }
    .wms5_rightin{}
    .wms5_list{
        padding-left: 15.3vw;
        padding-bottom: 8.4vw;
    }
    .wms5_list .art_line{
        width: 11.2vw;
    }
    .wms5_list .art_line:before{
        background-color: #3a3a3a;
    }
    .wms5_list span{
        width: 11.2vw;
        height: 11.2vw;
        font-size: 5.944vw;
        padding-top: 1.1vw;
        top: -0.5vw;
    }
    .wms5_list h4{}
    .wms5_list article{}
    .wms5_list article p{}
    .wms5_list article p br{}

    .wms5_list.active{
        padding-bottom: 6.6vw;
    }
    .wms5_list.active .art_line{}
    .wms5_list.active span{}
    .wms5_list.active h4{
        font-size: 5.1vw;
        letter-spacing: 0.12vw;
        padding-left: 0.3vw;
        padding-bottom: 1vw;
    }
    .wms5_list.active article{
        letter-spacing: -0.07vw;
        padding-left: 0.6vw;
    }
    .wms5_list.active article p{}
    .wms5_list.active article p br{}

    .wms5_right .link{
        padding-left: 15.6vw;
        padding-top: 0.278vw;
    }
    .wms5_right .link a.g_button{
        padding: 2.8vw 7.6vw 2.7vw 7.6vw;
        letter-spacing: 0.4vw;
        line-height: normal;
    }
}


/* Section 6
==================================*/
.wms6{
    background-color: #FFFFFF;
    padding-top: 8.056vw;
    padding-bottom: 10.069vw;
}
.wms6 .section_inner{}

.wms6 h2{
    text-align: center;
    padding-left: 13.889vw;
    padding-right: 15.208vw;
    letter-spacing: 0vw;
    margin-bottom: 0vw;
    padding-bottom: 0.069vw;
    color: #000000;
}
.wms6 h4{
    font-family: 'Gotham';
    font-weight: 300;
    font-size: 2.292vw;
    padding-top: 0.208vw;
    letter-spacing: 0.028vw;
    line-height: 1.24;
    text-align: center;
    padding-left: 13.889vw;
    padding-right: 14.653vw;
    margin-bottom: 0vw;
    color: #000000;
}

.wms6_lists{
    width: 100%;
    padding-top: 4.653vw;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 6.25vw;
    padding-right: 5.694vw;
}
.wms6_col{
    width: 33.33%;
    padding-left: 4.931vw;
    padding-right: 4.931vw;
}
.wms6_colin{
    position: relative;
    padding-bottom: 2.222vw;
    height: 100%;
}
.wms6_colin .art_line{
    height: 19.861vw;
    position: absolute;
    top: 0vw;
    left: 96%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.069vw;
}
.wms6_colin .art_line:before{
    content:"";
    width: 100%;
    height: 2px;
    display: block;
    background-color: #000;
    transition: all 3s ease;
}
.not_in_viewport .wms6_colin .art_line:before{
    width:0%
}
.wms6_colin span{
    width: 100%;
    display: block;
    height: 19.861vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.wms6_colin span img{
    width: 30%;
    opacity: 0;
}
.wms6_colin h5{
    font-size: 2.222vw;
    line-height: 0.96;
    letter-spacing: 0.007vw;
    font-weight: 500;
    font-family: 'Roboto Slab';
    display: block;
    padding-top: 2.847vw;
    padding-left: 0vw;
    text-align: center;
    width: 120%;
    margin-left: -10%;
    color: #000000;
}
.wms6_colin article{
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 0.903vw;
    color: #388DA6;
    letter-spacing: 0vw;
    line-height: 1.24;
    text-align: center;
    padding-top: 0.625vw;
    padding-right: 0.347vw;
    padding-bottom: 1.181vw;
}
.wms6_colin article p{}
.wms6_colin article p br{}

.wms6_colin .link{
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0vw;
    left: 0vw;
}
.wms6_colin .link button.g_button{
    padding: 0.686vw 2.361vw 0.617vw 2.361vw;
    cursor: pointer;
}


.wms6_col:last-child .wms6_colin .art_line{
    display:none;
}


@media (max-width: 1140px) {
    .wms6{}
    .wms6 .section_inner{}

    .wms6 h2{}
    .wms6 h4{}

    .wms6_lists{}
    .wms6_col{}
    .wms6_colin{}
    .wms6_colin .art_line{}
    .wms6_colin .art_line:before{}
    .wms6_colin span{}
    .wms6_colin span img{}
    .wms6_colin h5{}
    .wms6_colin article{}
    .wms6_colin article p{}
    .wms6_colin article p br{}

    .wms6_colin .link{}
    .wms6_colin .link a.g_button{}
}
@media (max-width: 1024px) {
    .wms6{}
    .wms6 .section_inner{}

    .wms6 h2{}
    .wms6 h4{}

    .wms6_lists{}
    .wms6_col{}
    .wms6_colin{}
    .wms6_colin .art_line{}
    .wms6_colin .art_line:before{}
    .wms6_colin span{}
    .wms6_colin span img{}
    .wms6_colin h5{}
    .wms6_colin article{}
    .wms6_colin article p{}
    .wms6_colin article p br{}

    .wms6_colin .link{}
    .wms6_colin .link a.g_button{}
}
@media (max-width: 768px) {
    .wms6{}
    .wms6 .section_inner{}

    .wms6 h2{}
    .wms6 h4{}

    .wms6_lists{
        padding-left: 0vw;
        padding-right: 0vw;
    }
    .wms6_col{
        padding-left: 3.931vw;
        padding-right: 3.931vw;
    }
    .wms6_colin{
        padding-bottom: 4.222vw;
    }
    .wms6_colin .art_line{}
    .wms6_colin .art_line:before{}
    .wms6_colin span{
        height: auto;
        background-image: none !important;
    }
    .wms6_colin span img{
        width: 100%;
        opacity: 1;
    }
    .wms6_colin h5{}
    .wms6_colin article{
        font-size: 1.2vw;
    }
    .wms6_colin article p{}
    .wms6_colin article p br{}

    .wms6_colin .link{}
    .wms6_colin .link a.g_button{}
}
@media (max-width: 550px) {
    .wms6{
        padding-top: 18.4vw;
        padding-bottom: 3.4vw;
    }
    .wms6 .section_inner{}

    .wms6 h2{
        padding-left: 6.889vw;
        padding-right: 6.889vw;
    }
    .wms6 h4{
        padding-left: 8vw;
        padding-right: 6.889vw;
        font-size: 4.45vw;
        padding-top: 2vw;
    }

    .wms6_lists{
        padding-top: 14.1vw;
        padding-left: 11.8vw;
        padding-right: 11.5vw;
    }
    .wms6_col{
        width: 100%;
    }
    .wms6_colin{
        padding-bottom: 17.222vw;
    }
    .wms6_colin .art_line{
        top: unset;
        bottom: 0vw;
        left: 0vw;
    }
    .wms6_colin .art_line:before{
        width: 2px;
        height: 100%;
    }
    .not_in_viewport .wms6_colin .art_line:before{
        width:2px;
        height:0%;
    }
    .wms6_colin span{}
    .wms6_colin span img{}
    .wms6_colin h5{
        font-size: 7.222vw;
        line-height: 0.96;
        padding-top: 10.2vw;
        letter-spacing: 0.2vw;
        padding-bottom: 4.6vw;
        margin-bottom: 0vw;
    }
    .wms6_colin article{
        font-size: 2.7vw;
        letter-spacing: 0.12vw;
        line-height: 1.35;
        padding-bottom: 6.2vw;
    }
    .wms6_colin article p{}
    .wms6_colin article p br{}

    .wms6_colin .link{
        position: relative;
        display: block;
    }
    .wms6_colin .link button.g_button{
        padding: 2.65vw 8.2vw 2.6vw 8.2vw;
    }
}





.wms6_col_popup{
    position: relative;
    display: block;
    width: 100%;
}
.wms6_col_popup_in{
    width: 70%;
    max-width: 50vw;
    margin: 0px auto;
    position: relative;
    background-color: #FFF;
    padding: 0vw;
    min-height: 12vw;
}
.wms6_col_popup_in .wms6_col_content{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    padding: 26px;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_left{
    width: 38%;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_left span{
    height: 100%;
    display: block;
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 3vw 0vw 3vw 0vw;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_left span img{
    width: 10%;
    opacity: 0;
}

.wms6_col_popup_in .wms6_col_content .wms6_col_right{
    width: 62%;
    padding-left: 26px;
    padding-top: 0vw;
    padding-bottom: 0vw;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_right h5{
    font-size: 2vw;
    line-height: 0.96;
    letter-spacing: 0.007vw;
    font-weight: 400;
    font-family: 'Roboto Slab';
    display: block;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 0.5vw;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes{
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 1.1vw;
    color: #388DA6;
    letter-spacing: 0vw;
    line-height: 1.24;
    text-align: left;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p{}
.wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p br{}

.wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content{
    padding-top: 0.5vw;
    font-size: 1.1vw;
}
.wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p{}
.wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p br{
    display: none;
}
.wms6_col_popup_in .close{
    position: absolute;
    top: 0vw;
    right: 0vw;
    font-size: 0;
    width: 2.3vw;
    height: 2.3vw;
    background-color: rgb(123 250 255 / 18%);
    border-radius: 0px 0px 0px 0vw;
    z-index: 9;
}
.wms6_col_popup_in .close a.popup-modal-close{
    background-image: url(close-menu.svg);
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}
@media (max-width: 1140px) {
    .wms6_col_popup{ }
    .wms6_col_popup_in{max-width: 65vw;}
    .wms6_col_popup_in .wms6_col_content{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span img{ }
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right h5{font-size: 3vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes{font-size: 1.4vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p br{}
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content{
    font-size: 1.4vw;
}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p br{}
    .wms6_col_popup_in .close{width: 4vw;height: 4vw;}
    .wms6_col_popup_in .close a.popup-modal-close{ }
}
@media (max-width: 1024px) {
    .wms6_col_popup{ }
    .wms6_col_popup_in{ }
    .wms6_col_popup_in .wms6_col_content{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span img{ }
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right h5{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p br{}
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p br{}
    .wms6_col_popup_in .close{ }
    .wms6_col_popup_in .close a.popup-modal-close{ }
}

@media (max-width: 768px) {
    .wms6_col_popup{ }
    .wms6_col_popup_in{max-width: 80vw;width: 100%;}
    .wms6_col_popup_in .wms6_col_content{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span img{ }
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right h5{font-size: 3.5vw;padding-bottom: 1.5vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes{font-size: 2vw;padding-bottom: 1vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p br{}
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content{
        font-size: 2vw;
    }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p br{}
    .wms6_col_popup_in .close{
        width: 5vw;
        height: 5vw;
     }
    .wms6_col_popup_in .close a.popup-modal-close{ }
}

@media (max-width: 550px) {
    .wms6_col_popup{ }
    .wms6_col_popup_in{ }
    .wms6_col_popup_in .wms6_col_content{ }
    .wms6_col_popup_in .wms6_col_content .wms6_col_left{width: 100%;height: 55vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span{background-size: cover;border-radius: 70px 0px;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_left span img{ }
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right{padding-left: 0px;padding-top: 13px;width: 100%;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right h5{font-size: 6vw;padding-bottom: 2.2vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes{font-size: 3.4vw;padding-bottom: 2.2vw;}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.shotdes p br{
        display: none;
    }
    
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content{
        font-size: 3.9vw;
    }
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p{}
    .wms6_col_popup_in .wms6_col_content .wms6_col_right article.pp_content p br{
        display: none;
    }
    .wms6_col_popup_in .close{width: 9vw;height: 9vw;}
    .wms6_col_popup_in .close a.popup-modal-close{background-size: 13px;}
}






/* Section 7
==================================*/
.wms7{
    background-color: #1ddbd6;
    padding-top: 6.042vw;
    padding-left: 7.639vw;
    padding-right: 7.639vw;
    background-image: url(s7_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 7.5vw;
}
.wms7 .section_inner{}

.wms7 h3{
    color: #FFF;
    font-weight: 500;
    font-size: 5.139vw;
    letter-spacing: 0.039vw;
    line-height: 1.12;
}
.wms7 h3 br{}
.wms7 h3 u{
    position: relative;
    text-decoration: none;
}
.wms7 h3 u:before{
    content:"";
    position: absolute;
    bottom: 0.417vw;
    left: 0.417vw;
    display: block;
    width: 98.5%;
    height: 2px;
    background-color: #FFF;
    transition: all 3s ease;
}
.wms7 .not_in_viewport h3 u:before{
    width:0%
}
.wms7_text{
    width: 100%;
    padding-left: 47.847vw;
    padding-top: 4.931vw;
}
.wms7_text article{
    font-weight: normal;
    font-size: 1.528vw;
    color: #FFFFFF;
    letter-spacing: 0.054vw;
    line-height: 1.34;
    padding-bottom: 2.014vw;
}
.wms7_text article p{}
.wms7_text article p strong{}
.wms7_text article p br{}

.wms7_text .link{
    width: 100%;
    display: block;
    padding-left: 0.347vw;
}
.wms7_text .link a.g_button{}


@media (max-width: 1140px) {
    .wms7{}
    .wms7 .section_inner{}

    .wms7 h3{}
    .wms7 h3 br{}
    .wms7 h3 u{}

    .wms7_text{}
    .wms7_text article{}
    .wms7_text article p{}
    .wms7_text article p strong{}
    .wms7_text article p br{}

    .wms7_text .link{}
    .wms7_text .link a.g_button{}
}
@media (max-width: 1024px) {
    .wms7{}
    .wms7 .section_inner{}

    .wms7 h3{}
    .wms7 h3 br{}
    .wms7 h3 u{}

    .wms7_text{}
    .wms7_text article{}
    .wms7_text article p{}
    .wms7_text article p strong{}
    .wms7_text article p br{}

    .wms7_text .link{}
    .wms7_text .link a.g_button{}
}
@media (max-width: 768px) {
    .wms7{}
    .wms7 .section_inner{}

    .wms7 h3{}
    .wms7 h3 br{}
    .wms7 h3 u{}

    .wms7_text{
        padding-left: 40.847vw;
    }
    .wms7_text article{
        font-size: 2vw;
    }
    .wms7_text article p{}
    .wms7_text article p strong{}
    .wms7_text article p br{}

    .wms7_text .link{}
    .wms7_text .link a.g_button{}
}
@media (max-width: 550px) {
    .wms7{
        background-image: url(s7_bgm.png);
        padding-top: 19.8vw;
        padding-left: 10.639vw;
        padding-right: 7.639vw;
        padding-bottom: 22.7vw;
    }
    .wms7 .section_inner{}

    .wms7 h3{
        font-size: 7.139vw;
        letter-spacing: 0.034vw;
        line-height: 1.12;
    }
    .wms7 h3 br{
        display: none;
    }
    .wms7 h3 br.m{
        display: block !important;
    }
    .wms7 h3 u{}

    .wms7_text{
        padding-left: 12.3vw;
        padding-top: 15.8vw;
    }
    .wms7_text article{
        letter-spacing: 0.09vw;
        line-height: 1.3;
        padding-bottom: 6.3vw;
        font-size: 4.3vw;
    }
    .wms7_text article p{}
    .wms7_text article p strong{}
    .wms7_text article p br{
        display: none;
    }

    .wms7_text .link{
        padding-left: 0.1vw;
    }
    .wms7_text .link a.g_button{
        padding: 2.7vw 6.5vw 2.6vw 6.5vw;
    }
}


/* Section 8
==================================*/
.wms8{
    padding-top: 8.125vw;
    background-color: #FFF;
    padding-bottom: 9.861vw;
}
.wms8 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 11.806vw;
    padding-right: 11.806vw;
}

.wms8_left{
    width: 42%;
    padding-right: 3.472vw;
    padding-left: 0.069vw;
}
.wms8_leftin{
    width: 100%;
    display: block;
    height: 50.764vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0.069vw;
}
.wms8_leftin .video{
    height: 100%;
}
.wms8_leftin .video .video__wrapper{
    height: 100%;
}
.wms8_leftin .video .video__wrapper .kjb-video-responsive{
    height: 100%;
}
.wms8_leftin button{
    width: 100%;
    display: block;
    height: 100%;
    background-image: url(play-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 5.3vw;
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}
.wms8_right{
    width: 58%;
    padding-left: 5.347vw;
    padding-top: 11.181vw;
    padding-bottom: 11.181vw;
}
.wms8_right h2{
    letter-spacing: 0vw;
    line-height: 1.1;
    color: #000000;
}
.wms8_right h2 span{
    position:relative;
    display: inline-block;
    padding-left: 0.694vw;
}
.wms8_right h2 span:before{
    content: "";
    height: 2px;
    background-color: #000;
    width: 18.75vw;
    position: absolute;
    top: -1.875vw;
    left: 2.222vw;
    transition: all 3s ease;
}
.not_in_viewport .wms8_right h2 span:before{
    width:0%
}
.wms8_right h2 br{}

.wms8_right article{
    font-family: 'Gotham';
    font-weight: 300;
    font-size: 2.292vw;
    padding-top: 0.417vw;
    padding-left: 0.139vw;
    letter-spacing: 0.031vw;
    line-height: 1.24;
    color: #388DA6;
    padding-bottom: 2.014vw;
}
.wms8_right article p{}

.wms8_right .link{
    width: 100%;
    display: block;
    padding-left: 0.764vw;
}
.wms8_right .link a.g_button{}




.wms8_popup{
    position: relative;
    display: block;
    width: 100%;
}
.wms8_popup_in{
    width: 80%;
    max-width: 50vw;
    margin: 0px auto;
    position: relative;
    background-color: #FFF;
    padding: 0vw;
    min-height: 12vw;
}
.wms8_popup_in .wms8_popup_content{}
.wms8_popup_in .wms8_popup_content iframe{
    width: 100%;
    height: 34vw;
    margin-bottom: -0.5vw;
}
.wms8_popup_in .close{
    position: absolute;
    top: 0vw;
    right: 0vw;
    font-size: 0;
    width: 3.3vw;
    height: 3.3vw;
    background-color: rgb(123 250 255 / 18%);
    border-radius: 0px 0px 0px 2vw;
    z-index: 9;
}
.wms8_popup_in .close a.popup-modal-close{
    background-image: url(close-menu.svg);
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.3vw;
}

@media (max-width: 1140px) {
    .wms8{}
    .wms8 .section_inner{}

    .wms8_left{}
    .wms8_leftin{}

    .wms8_right{}
    .wms8_right h2{}
    .wms8_right h2 span{}
    .wms8_right h2 span:before{}
    .wms8_right h2 br{}

    .wms8_right article{}
    .wms8_right article p{}

    .wms8_right .link{}
    .wms8_right .link a.g_button{}

    
    .wms8_popup{ }
    .wms8_popup_in{width: 69%;max-width: 70vw;}
    .wms8_popup_in .wms8_popup_content{}
    .wms8_popup_in .close{width: 5.3vw;height: 5.3vw;}
    .wms8_popup_in .close a.popup-modal-close{background-size: 2vw;}
    .wms8_popup_in .wms8_popup_content iframe {
        width: 100%;
        height: 40vw;
        margin-bottom: -0.5vw;
    }
}
@media (max-width: 1024px) {
    .wms8{}
    .wms8 .section_inner{}

    .wms8_left{}
    .wms8_leftin{}

    .wms8_right{}
    .wms8_right h2{}
    .wms8_right h2 span{}
    .wms8_right h2 span:before{}
    .wms8_right h2 br{}

    .wms8_right article{}
    .wms8_right article p{}

    .wms8_right .link{}
    .wms8_right .link a.g_button{}
}
@media (max-width: 768px) {
    .wms8{}
    .wms8 .section_inner{}

    .wms8_left{}
    .wms8_leftin{}

    .wms8_right{}
    .wms8_right h2{}
    .wms8_right h2 span{}
    .wms8_right h2 span:before{}
    .wms8_right h2 br{}

    .wms8_right article{}
    .wms8_right article p{}

    .wms8_right .link{}
    .wms8_right .link a.g_button{}
}
@media (max-width: 550px) {
    .wms8{
        padding-top: 20.4vw;
        padding-bottom: 29.48vw;
    }
    .wms8 .section_inner{
        padding-left: 6.806vw;
        padding-right: 6.806vw;
    }

    .wms8_left{
        width: 100%;
        padding-right: 9vw;
        padding-left: 9.1vw;
    }
    .wms8_leftin{
        height: 121.764vw;
        padding-top: 0.2vw;
    }
    .wms8_leftin button{
      
background-size: 16.3vw;
    }

    .wms8_right{
        width: 100%;
        padding-left: 2.8vw;
        padding-top: 13.1vw;
        padding-bottom: 11.181vw;
    }
    .wms8_right h2{
        letter-spacing: -0.05vw;
    }
    .wms8_right h2 span{}
    .wms8_right h2 span:before{
        top: -2.7vw;
        left: 3.2vw;
        width: 32.75vw;
    }
    .wms8_right h2 br{}

    .wms8_right article{
        font-size: 4.45vw;
        padding-top: 0.7vw;
        padding-left: 0.5vw;
        letter-spacing: 0.16vw;
        padding-bottom: 5.7vw;
    }
    .wms8_right article p{}

    .wms8_right .link{
        padding-left: 0.4vw;
    }
    .wms8_right .link a.g_button{
        padding: 2.7vw 6.8vw 2.6vw 6.8vw;
    }

    .wms8_popup{ }
    .wms8_popup_in{width: 94%;max-width: 94vw;}
    .wms8_popup_in .wms8_popup_content{}
    .wms8_popup_in .close{width: 10.3vw;height: 10.3vw;}
    .wms8_popup_in .close a.popup-modal-close{background-size: 4vw;}
    .wms8_popup_in .wms8_popup_content iframe {
        width: 100%;
        height: 59vw;
        margin-bottom: -1.5vw;
    }
}


/* Section 9
==================================*/
.wms9{
    background-color: #1ddbd6;
    padding-top: 6.042vw;
    padding-left: 9.514vw;
    padding-right: 9.514vw;
    background-image: url(s9_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 7.5vw;
}
.wms9 .section_inner{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.wms9_left{
    width: 60%;
    padding-left: 2.361vw;
    padding-top: 2.361vw;
    padding-right: 8.333vw;
}
.wms9_left h2{
    font-size: 2.917vw;
    color: #FFFFFF;
    letter-spacing: 0vw;
    line-height: 1.09;
    margin-bottom: 0vw;
    padding-bottom: 3.611vw;
}
.wms9_left h2 strong{
    color: #232021;
}
.wms9_left h2 br{}

.wms9_form{
    width: 100%;
    display: block;
}
.wms9_form form{}
.wms9_formin{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.wms9_formin .form-group{
    margin: 0vw;
}
.wms9_formin .email-field{
    width: 70.3%;
    padding-right: 1vw;
}
.wms9_formin .form-group input{
    border: 2px solid #232021;
    border-radius: 0vw;
    height: 2.222vw;
    font-family: 'Gotham';
    font-weight: bold;
    color: #232021;
    padding: 0vw 1.389vw 0.139vw 2.708vw !important;
    text-align: center;
    font-size: 0.903vw;
    letter-spacing: 0.125vw;
    /* border-right: 0vw; */
    background-color: transparent !important;
}
.wms9_formin .form-group input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #232021;
    text-transform:uppercase;
}
.wms9_formin .form-group input::-moz-placeholder { /* Firefox 19+ */
    color: #232021;
    text-transform:uppercase;
}
.wms9_formin .form-group input:-ms-input-placeholder { /* IE 10+ */
    color: #232021;
    text-transform:uppercase;
}
.wms9_formin .form-group input:-moz-placeholder { /* Firefox 18- */
    color: #232021;
    text-transform:uppercase;
}
.wms9_formin .button_middle{
    width: 29.7%;
    padding-right: 0.694vw;
}
.wms9_formin .button_middle button{
    margin: 0vw;
    border: 0vw;
    width: 100%;
    height: 2.222vw;
    padding: 0vw;
    font-family: 'Gotham';
    font-weight: bold;
    text-align: center;
    font-size: 0.903vw;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 0.139vw;
    letter-spacing: 0.118vw;
    padding-left: 0.069vw;
    line-height: 2.222vw;
    -webkit-box-shadow: 0 0vw 0vw rgb(0 0 0 / 10%);
    box-shadow: 0 0vw 0vw rgb(0 0 0 / 10%);
    background: #E0FE68;
    position: relative;
}
.wms9_formin .button_middle button:before {
    content: "";
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    background-color: #388DA6;
    height: 100%;
    z-index: -1;
    display: block;
}
.wms9_formin .button_middle button:hover{
    color:#FFF;
}
.wms9_formin .button_middle button:hover:before{
    width:100%;
}

.wms9_right{
    width: 40%;
    padding-left: 3.958vw;
}
.wms9_right span{
    width: 100%;
    display: block;
    height: 42.292vw;
    /* background-position: center top; */
    /* background-repeat: no-repeat; */
    /* background-size: 100%; */
    margin-top: -22.917vw;
}
.wms9_right span img{
    /* width: 10%; */
    /* opacity: 0; */
}


@media (max-width: 1140px) {
    .wms9{ }
    .wms9 .section_inner{ }

    .wms9_left{ }
    .wms9_left h2{}
    .wms9_left h2 strong{}
    .wms9_left h2 br{}

    .wms9_form{}
    .wms9_form form{}
    .wms9_formin{}
    .wms9_formin .form-group{}
    .wms9_formin .form-group input{}
    .wms9_formin .button_middle{}
    .wms9_formin .button_middle button{}

    .wms9_right{}
    .wms9_right span{}
    .wms9_right span img{}
}
@media (max-width: 1024px) {
    .wms9{ }
    .wms9 .section_inner{ }

    .wms9_left{ }
    .wms9_left h2{}
    .wms9_left h2 strong{}
    .wms9_left h2 br{}

    .wms9_form{}
    .wms9_form form{}
    .wms9_formin{}
    .wms9_formin .form-group{}
    .wms9_formin .form-group input{
    height: 3.222vw;
    font-size: 1.2vw;
}
    .wms9_formin .button_middle{}
    .wms9_formin .button_middle button{
    height: 3.222vw;
    font-size: 1.1vw;
    padding-top: 0.139vw;
}

    .wms9_right{}
    .wms9_right span{}
    .wms9_right span img{}
}
@media (max-width: 768px) {
    .wms9{ }
    .wms9 .section_inner{ }

    .wms9_left{padding-left: 0vw;padding-top: 2.361vw;padding-right: 1.333vw;}
    .wms9_left h2{}
    .wms9_left h2 strong{}
    .wms9_left h2 br{}

    .wms9_form{}
    .wms9_form form{}
    .wms9_formin{}
    .wms9_formin .form-group{
        width: 65%;
    }
    .wms9_formin .form-group input{
        height: 3.5vw;
        font-size: 1.3vw;
    }
    .wms9_formin .button_middle{
        width: 35%;
    }
    .wms9_formin .button_middle button{
        height: 3.5vw;
        font-size: 1.3vw;
    }

    .wms9_right{}
    .wms9_right span{}
    .wms9_right span img{}
}
@media (max-width: 550px) {
    .wms9{padding-top: 6.042vw;padding-left: 9.514vw;padding-right: 7.514vw;background-image: url(s9_bgm.png);padding-bottom: 30.6vw;}
    .wms9 .section_inner{ }

    .wms9_left{width: 100%;order: 2;padding-top: 2vw;padding-right: 0vw;padding-left: 1vw;}
    .wms9_left h2{
        font-size: 9.4vw;
        letter-spacing: 0.1vw;
        line-height: 1.1;
        padding-bottom: 11.1vw;
    }
    .wms9_left h2 strong{}
    .wms9_left h2 br{
        display: none;
    }

    .wms9_form{
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .wms9_form form{}
    .wms9_formin{}
    .wms9_formin .form-group{
        width: 100%;
        padding-bottom: 4vw;
        padding-right: 0vw;
    }
    .wms9_formin .form-group input{
        padding: 0vw 2.708vw 0.139vw 2.708vw !important;
        height: 10vw;
        font-size: 3.3vw;
        border: 2px solid;
        letter-spacing: 0.34vw;
    }
    .wms9_formin .button_middle{
        width: 100%;
        padding-right: 0vw;
    }
    .wms9_formin .button_middle button{
        height: 10vw;
        font-size: 3.3vw;
        padding-right: 3vw;
        letter-spacing: 0.34vw;
    }

    .wms9_right{
        width: 100%;
        order: 1;
        padding-left: 2.7vw;
        padding-right: 4.1vw;
        padding-bottom: 16vw;
    }
    .wms9_right span{
        height: auto;
        margin-top: -30.3vw;
    }
    .wms9_right span img{
        display: none;
    }
    .wms9_right span img.mobile_only{
        display: block;
    }
}

/* Site Footer
*****************************************/
footer{}
.st10{
    padding-left: 6.875vw;
    padding-right: 6.875vw;
    padding-top: 3.611vw;
    background-color: #232021;
    padding-bottom: 3.403vw;
}
.st10 .section_inner{}
.st10 h4{
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 1.181vw;
    padding-top: 0.417vw;
    padding-left: 0vw;
    letter-spacing: 0.09vw;
    line-height: 1.24;
    color: #ffffff;
    padding-bottom: 1.806vw;
    text-transform: uppercase;
    margin-bottom: 0vw;
}
.footer_inst_in{
    border-bottom: 2px solid #FFF;
    padding-bottom: 2.431vw;
}
.footer_inst_in img{}
.footer_inst_in img.mobile_only{}

.footer_mc{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    padding-top: 1.944vw;
    padding-bottom: 2.639vw;
}
.footer_left{
    width: 50%;
    text-transform: uppercase;
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 0.764vw;
    color: #FFF;
    padding-top: 0.208vw;
    letter-spacing: 0.052vw;
}
.footer_right{
    width: 50%;
    text-align: right;
}
.footer_right ul{
    margin: 0vw;
    padding: 0vw;
}
.footer_right ul li{
    list-style: none;
    display: inline-block;
    padding-left: 5.764vw;
}
.footer_right ul li:last-child{ 
    padding-right: 0vw;
}
.footer_right ul li a{
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 0.833vw;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.069vw;
    display: block;
}

.footer_want{
    text-align: center;
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 0.833vw;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.069vw;
    display: block;
    padding-left: 0.347vw;
}
.footer_want .fw_s1{
    letter-spacing: 0.167vw;
}
.footer_want .fw_s2{
    padding-left: 0.903vw;
}
.footer_want .fw_s2 a{
    font-size: 0.833vw;
    text-transform: uppercase;
    color: #232021;
    /* transition: .3s ease all; */
    border: solid 1px #E0FE68;
    position: relative;
    background-color: #E0FE68;
    display: inline-block;
    transition: all .3s;
    font-family: 'Gotham';
    font-weight: bold;
    padding: 0.347vw 1.597vw 0.347vw 1.667vw;
    letter-spacing: 0.174vw;
    position: relative;
    z-index: 1;
}
.footer_want .fw_s2 a:hover{
    color:#FFF;
    border: solid 1px #388DA6;
}
.footer_want .fw_s2 a:before {
    content: "";
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    background-color: #388DA6;
    height: 100%;
    z-index: -1;
    display: block;
}
.footer_want .fw_s2 a:hover:before{
  width:100%
}

@media (max-width: 1140px) {
    footer{}
    .st10{}
    .st10 .section_inner{}
    .st10 h4{}
    .footer_inst_in{}
    .footer_inst_in img{}
    .footer_inst_in img.mobile_only{}

    .footer_mc{}
    .footer_left{}
    .footer_right{}
    .footer_right ul{}
    .footer_right ul li{}
    .footer_right ul li a{}

    .footer_want{}
    .footer_want .fw_s1{}
    .footer_want .fw_s2{}
    .footer_want .fw_s2 a{}
}
@media (max-width: 1024px) {
    footer{}
    .st10{}
    .st10 .section_inner{}
    .st10 h4{}
    .footer_inst_in{}
    .footer_inst_in img{}
    .footer_inst_in img.mobile_only{}

    .footer_mc{}
    .footer_left{}
    .footer_right{}
    .footer_right ul{}
    .footer_right ul li{}
    .footer_right ul li a{}

    .footer_want{}
    .footer_want .fw_s1{}
    .footer_want .fw_s2{}
    .footer_want .fw_s2 a{}
}
@media (max-width: 768px) {
    footer{}
    .st10{}
    .st10 .section_inner{}
    .st10 h4{}
    .footer_inst_in{}
    .footer_inst_in img{}
    .footer_inst_in img.mobile_only{}

    .footer_mc{}
    .footer_left{
        font-size: 1.2vw;
    }
    .footer_right{}
    .footer_right ul{}
    .footer_right ul li{
        padding-left: 2.764vw;
    }
    .footer_right ul li a{
        font-size: 1.2vw;
    }

    .footer_want{
        font-size: 1vw;
    }
    .footer_want .fw_s1{}
    .footer_want .fw_s2{}
    .footer_want .fw_s2 a{
        font-size: 1vw;
        line-height: 1.5;
    }
}
@media (max-width: 550px) {
    footer{}
    .st10{
        padding-left: 8.875vw;
        padding-right: 8.5vw;
        padding-top: 10.4vw;
        padding-bottom: 8.7vw;
    }
    .st10 .section_inner{}
    .st10 h4{
        letter-spacing: 0.45vw;
        line-height: 1.39;
        font-size: 3.9vw;
        padding-bottom: 6.7vw;
    }
    .footer_inst_in{
        padding-bottom: 0vw;
        border-bottom: 0px solid #FFF;
    }
    .footer_inst_in img{
        display: none;
    }
    .footer_inst_in img.mobile_only{
        display: block;
    }

    .footer_mc{
        padding-top: 7.05vw;
    }
    .footer_left{
        order: 2;
        font-size: 2.2vw;
        letter-spacing: 0.17vw;
        width: 100%;
        text-align: center;
        padding-top: 8vw;
    }
    .footer_right{
        order: 1;
        width: 100%;
        text-align: center;
        padding-bottom: 4.8vw;
        border-bottom: 2px solid #FFF;
    }
    .footer_right ul{
        /* display: flex; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
    }
    .footer_right ul li{
        padding-left: 7vw;
    }
    .footer_right ul li:first-child{

    padding-left: 0vw;
    }
    .footer_right ul li a{
        font-size: 2.5vw;
        letter-spacing: 0.2vw;
    }

    .footer_want{
        font-size: 2.5vw;
        letter-spacing: 0.2vw;
        padding-top: 6vw;
        line-height: 2.6;
        padding-right: 1vw;
    }
    .footer_want .fw_s1{
        /* display: block; */
        /* text-align: center; */
        letter-spacing: 0.65vw;
    }
    .footer_want .fw_s1 br.m{
        display: block !important;
    }
    .footer_want .fw_s2{
        padding-left: 0vw;
        display: inline-block;
    }
    .footer_want .fw_s2 a{
        font-size: 2.8vw;
        line-height: 1.5;
        letter-spacing: 0.5vw;
        display: block;
        width: 25vw;
        padding: 0.347vw 2.597vw 0.347vw 2.667vw;
        margin-top: 0.8vw;
        margin-left: 1vw;
    }
}


.lp_header_right li:last-child{
  float: right;
}
.lp_header_right li:last-child a{
  display: inline-block;
  font-family: Gotham;
  font-size: 0.833vw;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 0.167vw;
  text-align: left;
  color: rgb(35, 32, 33);
  text-transform: uppercase;
  padding: 0.625vw 1.875vw 0.469vw 2.135vw;
  background-color: rgb(224, 254, 104);
  border: 0px;
  cursor: pointer;
  transition: inherit;
  position:relative;
  border: solid 1px rgb(224, 254, 104);
}
.lp_header_right li a:last-child:before{
    content:"";
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    background-color: #388DA6;
    height: 100%;
    z-index: 0;
}
.lp_header_right li a:last-child span{
  z-index:2;
  position:relative;
}
.lp_header_right li:last-child a:hover { 
border: solid 1px #388DA6; color:#FFF; text-decoration:none;}
.lp_header_right li:last-child a:hover:before{
    width:100%;
}
.responsive-menu li:last-child a{
  display: inline-block;
  font-family: Gotham;
  font-size: 5vw !important;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 0.167vw;
  text-align: left;
  color: rgb(35, 32, 33);
  text-transform: uppercase;
  padding: 2.5vw 6vw 2vw 6vw;
  background-color: rgb(224, 254, 104);
  border: 0px;
  cursor: pointer;
  transition: inherit;
}
.responsive-menu .lp_logo_image {
  filter: brightness(0);
}