@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: #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);
    --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;
  font-family:"Trebuchet MS";
  font-variant:small-caps;
}

img {
    width: 100%;
    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: #fff;
    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, 118, 68, 0.22) 3.02%, rgba(41, 218, 191, 0.2) 34.86%, rgba(202, 47, 177, 0.08) 55.14%, rgba(100, 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;
}
.cat{font-size:20px;text-align:center;margin-top:30px;padding:30px;}
.cat ul{display:flex;flex-wrap:wrap;gap:10px;}
.cat li{color:white;background:radial-gradient(ellipse at top, deeppink, black);margin-top:10px;padding:10px;font-variant:small-caps;border-radius:30px;box-shadow:10px 0px 10px white;}
.cat a{color:white;text-decoration:none;}
.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;
    background: red;
    color: #fff;
    transition: var(--transition);
}
.btn:hover{
  background: rgba(0,0,0,0.85);
}

.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 10px 0;
}

.header-block .center {
    padding: 10px 15px;
    background: #fff;
    border-radius: 500px;
}

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

.header-logo {
    max-width: 135px;
    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;
}

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

.main-section img {
    max-width: 300px;
    margin: 0 auto;
}
.m-3, .m-4{
  display: none;
}

.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, 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;
}

.third-section .center,
.four-section .center {
    position: relative;
}

.third-section .center {
    padding-top: 550px;
}

.third-section .center:before {
    content: '';
    width: 300px;
    height: 500px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) matrix(1, 0.07, -0.07, 1, 0, 0);
    background: url("https://images.pexels.com/photos/4985451/pexels-photo-4985451.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center top no-repeat;
    background-size: contain;
}

.four-section{
  background: #000;
    color: #fff;
}
.four-section p{
    color: #fff;
}
.four-section .center {
    padding-top: 360px;
}

.four-section .center:before {
    content: '';
    width: 320px;
    height: 410px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: url("https://images.pexels.com/photos/1020053/pexels-photo-1020053.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center top no-repeat;
    background-size: contain;
}

.slider-section {
    padding-top: 80px;
}
.slider-section .center {
    padding: 0 10px;
}

.banner-block {
    background: #393939;
    padding: 210px 10px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: #fff;
}
.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("https://images.pexels.com/photos/10193441/pexels-photo-10193441.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center top no-repeat;
    background-size: cover;
}

.banner-content {
    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;
}


/***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 {
    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-bottom: 140px;
    }
    .main-section .center {
        flex-direction: row;
        align-items: center;
        min-height: 60vh;
        max-width: 1400px;
        position: relative;
    }
    .main-section .center:before{
      content: '';
      position: absolute;
      bottom: -30px;
      left: 400px;
      background: url(i-yes.svg) 0 0 no-repeat;
      background-size: contain;
      width: 141px;
      height: 107px;
    }
    .main-section .m-3,
    .main-section .m-4{
      display: block;
    }
    .main-section .m-3{
      width: 225px;
      height: 225px;
      margin: 100px 0px 0 0;
      position: relative;
      right: -9vw;
    }
    .main-section .m-4{
      width: 260px;
      height: 240px;
      margin: 80px 0 0 -40px;
    }

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

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

    .content {
        max-width: 640px;
        width: 80%;
    }
    
    .second-section .center{
      max-width: 760px;
      position: relative;
    }
    .second-section .section-title{
      max-width: 640px;
      margin: 0 auto 20px;
    }
    .second-section .icon-closes-2 {
        width: 58px;
        height: 170px;
        background-image: url(i-closes-w.svg);
        position: absolute;
        left: -190px;
        top: 40px;
    }
    .second-section .icon-smile-2{
        width: 130px;
        height: 112px;
        position: absolute;
        right: -190px;
        top: 40px;
    }

    .third-section .center {
        padding: 200px 20px;
    }

    .third-section .center:before {
        width: 651px;
        height: 796px;
        position: absolute;
        top: 50%;
        left: initial;
        right: -140px;
        transform: translateY(-50%) rotate(4deg);
        background: url("https://images.pexels.com/photos/1922681/pexels-photo-1922681.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center top no-repeat;
        background-size: contain;
    }

    .four-section {
        padding: 140px 0;
        position: relative;
    }

    .four-section .center {
        padding: 0 20px;
    }
    .four-section:before,
    .four-section:after{
      content: '';
      position: absolute;
      display: block;
      width: 38px;
      height: 98px;
      background: url(i-dots.svg) center top no-repeat;
      background-size: contain;
    }
    .four-section:before{
      bottom: 80px;
      left: 11vw;
    }
    .four-section:after{
      top: 50px;
      right: 11vw;
    }

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

    .four-section .center:before {
        content: '';
        width: 440px;
        height: 660px;
        position: absolute;
        top: -200px;
        left: 0px;
        transform: none;
        background: url("https://images.pexels.com/photos/2648203/pexels-photo-2648203.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center top no-repeat;
        background-size: contain;
    }
    .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;
    }
    .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;
    }
}