@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;
    --accent: #F8D4E0;
    --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;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 100px;
}

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-best {
  background-image: url(i-best.svg);
}
.icon-cool {
  background-image: url(i-cool.svg);
}
.icon-heart {
  background-image: url(i-heart.svg);
}
.icon-smile {
  background-image: url(i-smile.svg);
}
.icon-smile-2 {
  background-image: url(i-smile-2.svg);
}

.wrapper {
    overflow: hidden;
}

.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;
    background: var(--primary);
    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;
}

.header-block .center {
    padding: 10px 15px;
    background: var(--accent);
    border-radius: 500px;
}

.header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    max-width: 135px;
}

.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: 15px 10px;
    background: var(--accent);
    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{
  margin-bottom: 10px;
}

.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: 80px;
    padding-top: 30px;
}

.main-section .center {
    display: flex;
    flex-direction: column;
}

.slogan-block {
  margin: 40px auto 40px;
  text-align: center;
  max-width: 280px;
  position: relative;
}
.slogan-block:before{
  content: '';
  position: absolute;
    bottom: -250px;
    left: 70px;
  width: 63px;
  height: 70px;
  background: url(i-cool.svg) 0 0 no-repeat;
  background-size: contain;
}
.m-1{
  display: none;
}
.m-3{
  max-width: 280px;
  margin: 0 auto;
}
.m-4,
.m-2{
  width: 120px;
  display: inline-block;
}
.m-2{
  vertical-align: top;
}
.m-4{
  margin-top: 16px;
  margin-left: 20px;
}
.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: var(--accent);
}
.second-section .icon-block{
  display: flex;
  justify-content: space-between;
   align-items: center;
   margin-top: 10px;
}
.second-section .icon-heart{
  width: 85px;
  height: 80px;
}
.second-section .icon-smile-2{
  width: 82px;
  height: 90px;
}

.third-section {
    padding-bottom: 110px;
}

.third-section .center,
.four-section .center {
    position: relative;
}

.third-section .center {
    padding-top: 520px;
}

.third-section .center:before {
    content: '';
    width: 300px;
    height: 487px;
    position: absolute;
    top: 30px;
    left: 54%;
    transform: translateX(-50%) matrix(1, 0.07, -0.07, 1, 0, 0);
    background: url(s2-m.png) center top no-repeat;
    background-size: contain;
}

.four-section .center {
  padding-top: 430px;
}

.four-section .center:before {
    content: '';
    width: 320px;
    height: 450px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: url(s3-m.png) center top no-repeat;
    background-size: contain;
}
.four-section .content{
  position: relative;
}
.slider-section {
    padding-top: 80px;
}
.slider-section .center {
    padding: 0 10px;
}

.banner-block {
    background: var(--accent);
    padding: 210px 10px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}
.banner-block:before {
    content: '';
    width: 220px;
    height: 200px;
    border-radius: 12px;
    position: absolute;
    right: 20px;
    top: -20px;
    background: url(s4.jpg) center top no-repeat;
    background-size: cover;
}
.banner-block .icon-best{
  position: absolute;
  right: 200px;
  top: 140px;
  width: 97px;
  height: 60px;
}
.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: #000000;
    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;
    color: #fff;
}
.slider .btn{
  background: #fff;
  color: #000;
}

.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);
}
/***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: 60px 0 140px;
    }
    .main-section .center {
        flex-direction: row;
        align-items: center;
        min-height: 60vh;
        position: relative;
    }
    .slogan-block {
        max-width: 640px;
        margin: 0 60px 0 0;
        text-align: left;
    }
    .slogan-block:before{
      width: 100px;
      height: 100px;
      background-image: url(i-smile.svg);
      left: inherit;
      right: -12vw;
      bottom: -80px;
    }

    .slogan-title {
        margin-bottom: 40px;
        font-size: 60px;
        line-height: 70px;
    }
    .m-2,
    .m-3,
    .m-4{
      display: none;
    }
    .m-1{
      display: block;
    }

    .content {
        max-width: 640px;
        width: 80%;
    }
    
    .second-section .center{
      max-width: 760px;
      position: relative;
    }
    .second-section .section-title{
      max-width: 640px;
      margin: 10px auto 20px 0;
    }
    .second-section .icon-heart {
        width: 120px;
        height: 113px;
        position: absolute;
        left: -190px;
        top: 40px;
    }
    .second-section .icon-smile-2{
        width: 120px;
        height: 131px;
        position: absolute;
        right: -190px;
        top: 40px;
    }

    .third-section .center {
        padding: 200px 20px;
    }

    .third-section .center:before {
        width: 580px;
        height: 600px;
        position: absolute;
        top: 50%;
        left: initial;
        right: -140px;
        transform: translateY(-50%) rotate(4deg);
        background: url(s2.png) center top no-repeat;
        background-size: contain;
    }

    .four-section {
        padding: 140px 0;
        position: relative;
    }

    .four-section .center {
        padding: 0 20px;
    }
    .four-section .content {
        margin-left: auto;
    }
    .four-section .center:before {
        content: '';
        width: 571px;
        height: 510px;
        position: absolute;
        top: -140px;
        left: 0px;
        transform: none;
        background: url(s3.png) center top no-repeat;
        background-size: contain;
    }
    .slider-section{
      padding-top: 180px;
    }
    .banner-block {
        padding: 95px 0 95px 7vw;
        margin-bottom: 120px;
    }
    .banner-block .icon-best {
        position: absolute;
        right: 410px;
        top: 270px;
        width: 137px;
        height: 81px;
    }
    .banner-block:before {
        content: '';
        width: 400px;
        height: 400px;
        right: 50px;
        top: -70px;
    }
    .banner-title {
        font-weight: 400;
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner-content .btn {
        margin-top: 40px;
    }
    .slider {
        padding: 0 0 80px;
    }
    .slider-title {
      margin: 20px 0 40px;
    }
    .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;
    }
}
.second-section ul{
  list-style: disc inside; 
}
.second-section .text-center{
  text-align:justify;
}