}

/***variables***/
:root {
    --primary: #000;
    --radius: 20px;
    --transition: all 0.3s;
    --shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    --light: #000;
    --light_mutted: rgba(0, 0, 0, 0.85);

}

/***mixins less***/
/***basic styles***/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  font-family:tahoma;
}

img {
    width:300px;height:300px;object-fit:cover;
    display: block;border-radius:50%;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

body {
    min-width: 320px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--light);
    background: cyan;
    font-family: 'Noto Sans JP', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}
.icon{
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  display: inline-block;
}
.icon-closes {
  background-image: url(i-closes.svg);
}
.icon-closes-w {
  background-image: url(i-closes-w.svg);
}
.icon-closes-2 {
  background-image: url(i-closes2.svg);
}

.icon-dots {
  background-image: url(i-dots.svg);
}
.icon-smile {
  background-image: url(i-smile.svg);
}
.icon-smile-2 {
  background-image: url(i-smile-2.svg);
}
.icon-smile-3 {
  background-image: url(i-smile-3.svg);
}
.icon-yes {
  background-image: url(i-yes.svg);
}



.wrapper {
    overflow: hidden;
    background: linear-gradient(170.58deg, rgba(255, 8, 68, 0.22) 3.02%, rgba(41, 218, 91, 0.2) 34.86%, rgba(202, 47, 177, 0.08) 55.14%, rgba(0, 26, 255, 0.14) 70.3%, rgba(243, 239, 129, 0.57) 100.78%);
}

.center {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    width: 100%;
    max-width: 240px;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    transition: var(--transition);
}
.btn:hover{
    background: darkblue;
    color: white;
}

.text-center {
    text-align: center;
}

p {
    color: var(--light_mutted);
}

p+p {
    margin-top: 20px;
}

/***header styles***/
.header-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
}

.header-block .center {
    padding: 10px 15px;
    background: grey;
    border-radius: 500px;
}

.header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width:100px;
  height:100px;
  object-fit:cover;
  border-radius:50%;
}

.navigation-list {
    position: relative;
    display: none;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 5;
    transition: var(--transition);
    overflow: scroll;
}

.navigation-list.is-active {
    display: flex;
}

.navigation-list-header {
    display: none;
}

.navigation-list.is-active .navigation-list-header {
    display: block;
    padding: 10px;
    background: rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 30px;
}

.navigation-dropdown {
    position: relative;
}

.navigation-dropdown span:after {
    margin-left: 10px;
    font-family: var(--icon-font);
    content: var(--icon-bottom);
    position: relative;
    top: 2px;
}

.navigation-dropdown.hover .navigation-list-inner {
    display: flex;
    flex-direction: column;
}

.navigation-list-inner {
    display: none;
}

.navigation-list-inner a {
    margin-top: 25px;
    color: var(--light_mutted);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.navigation-list-inner a:hover {
    color: #E0538E;
}

.navigation-link {
    flex-direction: column;
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 0 10px;

}

.navigation-link+.navigation-link {
    margin-top: 25px;
}

.navigation-link span {
    display: block;
    transition: var(--transition);
}
.navigation-link span:hover{
  color: #E0538E;
}

.navigation-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 18px;
    height: 12px;
    border: none;
    background: transparent;
    z-index: 5;
}

.navigation-btn.is-active:before {
    transform: rotate(45deg);
}

.navigation-btn.is-active:after {
    transform: rotate(-45deg);
}

.navigation-btn.is-active span {
    display: none;
}

.navigation-btn span,
.navigation-btn::before,
.navigation-btn::after {
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 1px;
    transition: var(--transition);
    transform-origin: 11%;
}

.navigation-btn::before,
.navigation-btn::after {
    content: "";
}

.navigation .btn {
    max-width: 300px;
    margin: 30px auto 0;
}

/***main styles***/
.section {
    padding: 20px 0;
}

.section-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
}

.main-section {
    padding-bottom: 60px;
  
}

.main-section .center {
    display: flex;
    flex-direction: column;
    position: relative;
}

.slogan-block {
  margin: 40px auto 60px;
  text-align: center;
  max-width: 280px;
}

.m-1{
  display: none;
      width: 400px;
    height: 500px;
    object-fit: cover;
}
.m-3{
      width: 400px;
    height: 500px;
    object-fit: cover;
  margin: 0 auto;
}
.m-4,
.m-2{
      width: 400px;
    height: 500px;
    object-fit: cover;
  display: inline-block;
}
.m-2{
  vertical-align: top;    width: 400px;
    height: 500px;
    object-fit: cover;
}
.m-4{
  margin-top: 16px;
  margin-left: 20px;    width: 400px;
    height: 500px;
    object-fit: cover;
}
.main-section .center:before{
  content: '';
  position: absolute;
  bottom: -20px;
  left: 80px;
  background:;
  background-size: contain;
  width: 78px;
  height: 59px;
  transform: rotateY(180deg);
}
.main-section .center:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -17px;
    width: 110%;
    height: 74%;
    transform: translate(-50%,0);
    background: white;
    background-size: contain;
    z-index: -1;
}
.slogan-title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.slogan-block .btn {
    max-width: 300px;
    margin: 0 auto;
  background:black;
  transition:0.4s;
}
.slogan-block .btn:hover{background:red;}

.second-section {
    background: rgba(255, 255, 255, 1);
}
.second-section .icon-block{
  display: flex;
  justify-content: space-between;
   align-items: center;
   margin-top: 5px;
}
.second-section .icon-closes-2{
  width: 140px;
  height: 40px;
}
.second-section .icon-smile-2{
  width: 87px;
  height: 75px;
}

.third-section {
    padding-bottom: 110px;
}


.slider-section {
    padding-top: 80px;
}
.slider-section .center {
    padding: 0 10px;
}

.banner-block {
    background: deeppink;
    padding: 210px 10px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: #fff;
  border-radius:30px;
  align-items:center;
  
}
.banner-block p{
  color: #fff;
}
.banner-block .icon-yes{
    position: absolute;
    width: 85px;
    height: 65px;
    left: 40px;
    top: -65px;
    transform: rotateY(180deg);
}
.banner-block:before {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 12px;
    position: absolute;
    right: 20px;
    top: -20px;
    background: url(s4.jpg) center top no-repeat;
    background-size: cover;
}

.banner-content {text-align:center;
    max-width: 415px;
    position: relative;
}

.banner-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
}

.banner-content .btn {
    margin-top: 20px;
  background:grey;
  transition:0.4s;
}
.banner-content .btn:hover{background:black;}


/***slider block styles***/
.slider {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    padding: 0 0 40px;
}

.slider-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.slider-view {
    display: flex;
    height: 100%;
    transition: all 0.4s ease-out;
}

.slider-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    user-select: none;
    background: #fff;
    border-radius: 10px;
}

.slider-view img {
    user-select: none;
    pointer-events: none;
    border-radius: 15px;
}

.slider-title {
    margin: 10px 0 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.slider-arrow {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    width: 50px;
    height: 50px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.arrow-prev:after,
.arrow-next:after {
    color: #fff;
    content: var(--icon-left);
    font-size: 20px;
    font-family: var(--icon-font);
}

.arrow-next:after {
    content: var(--icon-right);
}

.slider-pagination {
    display: flex;
    justify-content: center;
}

.slider-pagination-item {
    opacity: 0.12;
    transition: var(--transition);
    width: 6px;
    height: 6px;
    margin: 0 4px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.slider-pagination-item.is-active {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5);
}

.slider .icon-smile-3{
  width: 80px;
  height: 75px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/***footer styles***/
.footer img{width:100px;height:100px;object-fit:cover;border-radius:50%;}
.footer {
    padding: 20px 0;
    color: #fff;
    background: #000;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.footer-links li+li {
    margin-top: 30px;
}

.footer-text {
    padding: 30px 0 20px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(255,255,255,.6);
}


@media (min-width: 960px) {
  .center {
    padding: 0 20px;
  }
  .header-block{
    padding: 20px;
  }
  .header-block .center{
    padding: 10px 20px;
  }
    .navigation-list {
        display: flex;
        position: relative;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        overflow: inherit;
        background: transparent;
    }

    .navigation-link span {
        display: block;
        cursor: pointer;
        white-space: nowrap;
    }

    .navigation-list-inner {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: #fff;
        z-index: 6;
        border-radius: 10px;
        padding: 30px 20px;
        text-align: left;
        width: 240px;
        margin-top: 5px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    }
    .navigation-list-inner a {
        margin: 0;
    }

    .navigation-list-inner a+a {
        margin-top: 25px;
    }

    .navigation-link {
        min-width: 152px;
        min-height: 0;
        padding: 12px 12px;
        color: var(--dark);
        border-radius: var(--radius);
        font-weight: 500;
        transition: var(--transition);
        text-align: center;
    }

    .navigation-link+.navigation-link {
        margin: 0 0 0 40px;
    }

    .navigation-link:hover {
        background: var(--button-bg-hover);
    }

 .navigation-btn {
        display: none;
    }

    .navigation .btn {
        margin: 0 0 0 40px;
        width: 120px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-weight: 400;
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .main-section{
      padding: 60px 0 140px;
    }
    .main-section .center {
        flex-direction: row;
        align-items: center;
        
      
    }
  .main-section .center:before {
    
    
      width: 167px;
      height: 127px;
  }
  .main-section .center:after {
      left: 50%;
      top: 50%;
      width: 130%;
      height: 100%;
     
      background: url(bg-line-1.svg) center center no-repeat;
      background-size: contain;
      z-index: -1;
  }
    .slogan-block {
        max-width: 640px;
        margin: 0 60px 0 0;
        text-align: left;
    }

    .slogan-title {
        margin-bottom: 40px;
        font-size: 60px;
        line-height: 70px;
    }
    .m-2,
    .m-3,
    .m-4{
      display: none;    width: 400px;
    height: 500px;
    object-fit: cover;
    }
    .m-1{
      display: block;    width: 400px;
    height: 500px;
    object-fit: cover;
    }

   
    
   

  
    .slider-section{
      padding-top: 180px;
    }
    .banner-block {
        padding: 95px 0 95px 7vw;
        margin-bottom: 120px;
    }

    .banner-title {
        font-weight: 400;
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner-content .btn {
        margin-top: 40px;
    }

    .banner-block:before {
        content: '';
        width: 400px;
        height: 400px;
        position: absolute;
        right: 60px;
        top: -60px;
    }
    .banner-block .icon-yes {
        position: absolute;
        width: 120px;
        height: 91px;
        left: 100%;
        top: 100%;
    }

    .slider {
        padding: 0 0 80px;
    }

    .slider-wrapper {
        margin: 0 -1%;
    }

    .slider-nav {
        margin: 40px 0;
    }
    
    .slider .icon-smile-3 {
        width: 175px;
        height: 180px;
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(120%, -120%);
    }


    .footer {
      padding: 40px 0;
    }
    .footer-links {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-links li:first-child {
        margin-right: auto;
    }

    .footer-links li+li {
        margin: 0 0 0 50px;
    }

    .footer-text {
        padding: 40px 0;
        max-width: 800px;
    }
}