@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

@font-face {
    font-style: normal;
    font-weight: normal;
    font-family: "Material Icons";
    font-display: block;
    src: url("icomoon.woff2") format("woff2");
}

/***variables***/
:root {
    --primary: #E0538E;
    --radius: 20px;
    --transition: all 0.3s;
    --shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    --light: #fff;
    --light_mutted: rgba(255, 255, 255, 0.8);
    --icon-font: "Material Icons";
    --icon-left: "\e96b";
    --icon-right: "\e9a2";
    --icon-bottom: "\e91a";
}

/***mixins less***/
/***basic styles***/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    width: 30%;
    height: auto;
    display: block;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

body {
    min-width: 320px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--light);
    background: #000000;
    font-family: 'Noto Sans JP', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

.wrapper {
    overflow: hidden;
    background: linear-gradient(170.85deg, rgba(255, 8, 68, 0.22) 3.01%, rgba(161, 164, 238, 0.07) 34.96%, rgba(47, 137, 202, 0.08) 56.35%, rgba(255, 31, 125, 0) 83.62%, rgba(240, 194, 198, 0.17) 102.55%);
}

.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: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    transition: var(--transition);
}

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

p {
    color: rgba(255, 255, 255, 0.8);
}

p+p {
    margin-top: 20px;
}

/***header styles***/
.header-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-block .center {
    padding: 0 10px;
}

.header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.navigation-list {
    position: relative;
    display: none;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    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: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.navigation-list-inner a:hover {
    color: var(--primary);
}

.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: #fff;
    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 20px;
}

.section-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
}

.main-section {
    padding: 80px 0;
}

.main-section .center {
    display: flex;
    flex-direction: column;
}
.img-box{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}
.img-box img{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.img-box:before{
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: -2;
}
.img-box:after{
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  border-radius: 10px;
}

.img-box.box-1,
.img-box.box-2{
  height: 180px;
}
.img-box.box-1 img{
  width: 248px;
  height: 200px;
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .img-box.box-1 img {
    width: 248px;
    height: 400px;
     margin-bottom: -1px;
  }
}

.img-box.box-2 img{
  width: 266px;
  height: 200px;
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .img-box.box-2 img {
    width: 248px;
    height: 400px;
     margin-bottom: -1px;
  }
}
@media (max-width: 768px) {
  .img-box img{
    object-fit: cover;
    width: 302px!important; 
    height: 180px!important;
    border-radius: 10px;
  }
}

.img-box.box-1:before{
  height: 346px;
  background: url(l-2.svg) center center no-repeat;
  background-size: contain;
}
.img-box.box-2:before{
  height: 346px;
  background: url(l-3.svg) center center no-repeat;
  background-size: contain;
}

.img-box.box-3{
  width: 230px;
  height: 430px;
  margin: 60px auto 25px;
  transform: rotate(7deg);
}
.img-box.box-3 img{
  width: 216px;
  margin-bottom: 12px;
}
.img-box.box-3:before{
  height: 605px;
  background: url(l-1.svg) center center no-repeat;
  background-size: contain;
}
.img-box.box-3:after{
  background: url(phone.svg) center center no-repeat;
  background-size: contain;
  border: none;
  border-radius: 0;
}

.img-box.box-4{
  height: 350px;
  margin-bottom: 20px;
}
.img-box.box-4 img{
  width: 231px;
  margin-bottom: -1px;
}
.img-box.box-4:before{
  height: 350px;
  background: url(l-4.svg) center center no-repeat;
  background-size: contain;
}


.slogan-block {
    margin: 40px 0 117px;
    text-align: center;
}

.slogan-title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.slogan-block .btn {
    max-width: 300px;
    margin: 0 auto;
}

.second-section {
    background: rgba(255, 255, 255, 0.1);
    border-width: 1px 0px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
}

.third-section .center,
.four-section .center {
    position: relative;
}
.third-section{
  padding-bottom: 115px;
}
.four-section{
  background: #000;
  padding-top: 33px;
}
.slider-section {
    padding-top: 80px;
}
.slider-section .center {
    padding: 0 10px;
}

.banner-block {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 210px 10px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.banner-block:before {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 12px;
    position: absolute;
    right: 20px;
    top: -20px;
    background: url(s4.png) center top no-repeat;
    background-size: cover;
}

.banner-content {
    max-width: 415px;
}

.banner-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
}

.banner-content .btn {
    margin-top: 20px;
}


/***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: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    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: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 10px;
}

.arrow-prev:after,
.arrow-next:after {
    color: var(--light);
    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 8px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.slider-pagination-item.is-active {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(224, 83, 142, 0.5);
}


/***footer styles***/
.footer {
    padding: 20px 0;
    color: var(--light_mutted);
    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: var(--light_mutted);
    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);
}
.footer-text a::first-letter {
  text-transform: uppercase;
  font-size: 1.2em;
}

.copyright {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(255,255,255,.6);
}


@media (min-width: 920px) {
    .center {
        padding: 0 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: #000;
        z-index: 6;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        padding: 30px 20px;
        text-align: left;
        width: 240px;
        margin-top: 5px;
    }
    .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 30px;
    }

  .img-box:after{
    backdrop-filter: blur(37px);
    -webkit-backdrop-filter: blur(37px);
  }
  
  .img-box.box-1,
  .img-box.box-2{
    width: 340px;
    height: 465px;
  }
  .img-box.box-1 img{
    width: 297px;
    margin-bottom: -1px;
  }
  .img-box.box-2 img{
    width: 305px;
    margin-bottom: -1px;
  }
  .img-box.box-1:before,
  .img-box.box-2:before{
    height: 771px;
  }
  
  .third-section{
    padding: 20px 0 20px;
  }
  .third-section .center{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  .img-box.box-3{
    width: 360px;
    height: 580px;
    margin: 0 0 0 40px;
  }
  .img-box.box-3 img{
    width: 301px;
    margin-bottom: 18px;
  }
  .img-box.box-3:before{
    width: 222px;
    height: 1175px;
    background: url(l-1.svg) center center no-repeat;
    background-size: contain;
    left: 21%;
  }

  
  .four-section .center{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .img-box.box-4{
    width: 400px;
    height: 600px;
    margin: 0 40px 0 0;
  }
  .img-box.box-4 img{
    width: 397px;
    margin-bottom: -1px;
  }
  .img-box.box-4:before{
    height: 870px;
    width: 530px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }



    .section-title {
        font-weight: 400;
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .main-section{
      padding: 30px 0 50px;
    }
    .main-section .center {
        flex-direction: row;
        align-items: center;
        max-width: 1400px;
    }

    .slogan-block {
        max-width: 640px;
        margin: 0 40px;
    }

    .slogan-title {
        margin-bottom: 40px;
        font-size: 60px;
        line-height: 70px;
    }

    .second-section .center{
      max-width: 760px;
    }
    .second-section .section-title{
      max-width: 640px;
      margin: 0 auto 20px;
    }

    .content {
        max-width: 640px;
        width: 80%;
    }

    .four-section .content {
        margin-left: auto;
    }

    .slider-section{
      padding-top: 180px;
    }
    .slider-title {
      margin: 20px 0 40px;
    }
    .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;
    }

    .slider {
        padding: 0 0 80px;
    }

    .slider-wrapper {
        margin: 0 -1%;
    }

    .slider-nav {
        margin: 40px 0;
    }
    .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;
    }
}