@charset "UTF-8";
/*=======================================
 	             SMACSS  base
 ========================================*/

/*=======================================
	         SMACSS  layout　　　　　　　       ( style.scss ) ( header.scss / main.scss / footer.scss ...) 
========================================*/
/*=======================================
 	        animation
 ========================================*/

.inview {
    transform: scale(1.4);

}
.inview.active {
    transform: scale(1);
}

.fadein {
    -webkit-transition-duration: 13s;
    transition-duration: 13s;
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity 2s;
    transition: opacity 2s;
}
.fadein.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 2s;
    transition: all 2s;
}
.imgniji {
    opacity: 0;
    transition: -webkit-transform 1.2s linear;
    -webkit-transition: -webkit-transform 1.2s linear;
    transition: transform 1.2s linear;
    transition: transform 1.2s linear, -webkit-transform 1.2s linear;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.img-blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    -webkit-transition: 1.5s;
    transition: 1.5s;
}

@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #F3ECE6;
    text-align: center;
  }
  #loading_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #loading .kvArea {
    width: 100%;
  }
  #loading .kvArea .img_box {
    text-align: center;
  }
  #loading .kvArea .img_box img {
    max-width: 100%;
    height: auto;
  }
  .fadeUp {
    transition-duration: .5s;
    transition-delay: 1.2s;
    animation-fill-mode: forwards;
    opacity: 1;
    transform: translateY(0);
  }
  .fadeUp.active {
    transform: translateY(-100px);
    opacity: 0;
  }
  #loading_text{
    position: relative;
  }
  .progressbar-text{
    font-size: 2.2rem!important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600!important;
    z-index: 2;
  }
  #loading_text::before{
    content: "";
    position: absolute;
    width: 15.9rem;
    height: 15.9rem;
    border-radius: 50%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
  }

#mask-bg.load{
    position: relative;
    -webkit-mask-image: url(../img/mask_en.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 100vh;
    -webkit-mask-size: 200%;
    mask-image: url(../img/mask_en.svg);
    mask-repeat: no-repeat;
    mask-size: 200%;
    animation-name: no-mask;
    animation-delay: 1s;
    animation-duration: 3s;
}
@keyframes no-mask {
    from {
        -webkit-mask-position: 50% 100vh;
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
    }
    to {
        -webkit-mask-position: 50% -300px;
        -webkit-transition: 1.4s all;
        transition: 1.4s all;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}
#mask-bg.active{
    -webkit-mask-image: none !important;
        mask-image: none !important;
}

svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade {
    transition: all 2s;
    visibility: hidden;
    opacity: 0;
}

.fade.active {
    visibility: visible;
    opacity: 1;
}

#mainview .movie #btn {
    width: 12.1rem;
    position: absolute;
    bottom: 6.1rem;
    right: 6.2rem;
}

#mainview .movie #btn02 {
    width: 10.8rem;
    position: absolute;
    bottom: 6.1rem;
    right: 6.8rem;
    visibility: hidden;
    opacity: 0;
}

#mainview .movie #btn02.active {
    visibility: visible;
    opacity: 1;
}

#mainview .movie #btn02.active2 {
    opacity: 0;
}

#mainview .movie #btn.active {
    opacity: 0;
}

#mainview .movie #btn.active2 {
    opacity: 1;
}

/*=======================================
                  PC   
========================================*/
/* ===================
	　　 General
=================== */
html {
    font-size: 62.5%;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    position: fixed;
}
body.active{
    position: relative;
}


#mainLP_Contents {
    /* background-image: url(../img/pc.jpg); */
    /* background-image: url(../img/pc2.jpg); */
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-x: center;
    background-position-y: 0;
    /* background-position-y: 1097.5rem; */
    position: relative;
    /* overflow: hidden; */
}

#wrapper {
    margin: 0 auto;
    padding-bottom: 12.5rem;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #F3ECE6;
    position: relative;
}

.header {
    display: none;
}

    /* ===================
	　　  slick
=================== */
    .slider_wrap .slick-arrow {
        display: none !important;
    }
    
    .slider_wrap .slider-dots {
        width: 10.6rem;
        padding-top: 1.3rem;
        margin-left: auto;
    }
    
    .slider_wrap li {
        display: inline-block;
        width: 5rem;
        height: 0.5rem;
        background: #f4ebe4;
        border: solid 0.03rem #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap li:nth-child(2) {
        margin-left: 0.5rem;
    }
    
    .slider_wrap button {
        position: relative;
        width: 100%;
        height: 0.5rem;
        border: 0;
        /* background: #C6C6C6; */
        font-size: 0;
    }
    
    .slider_wrap button:after {
        position: absolute;
        top: -0.7rem;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }
    
    .slider_wrap .slider-dots .slick-active button:after {
        background-color: #000;
        animation: progress 4s linear forwards;
    }

    .slider_wrap02 .slick-arrow {
        display: none !important;
    }
    
    .slider_wrap02 .slider-dots {
        width: 10.6rem;
        padding-top: 1.3rem;
        margin-left: auto;
    }
    
    .slider_wrap02 li {
        display: inline-block;
        width: 5rem;
        height: 0.5rem;
        background: #f4ebe4;
        border: solid 0.03rem #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap02 li:nth-child(2) {
        margin-left: 0.5rem;
    }
    
    .slider_wrap02 button {
        position: relative;
        width: 100%;
        height: 0.5rem;
        border: 0;
        /* background: #C6C6C6; */
        font-size: 0;
    }
    
    .slider_wrap02 button:after {
        position: absolute;
        top: -0.7rem;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }
    
    .slider_wrap02 .slider-dots .slick-active button:after {
        background-color: #000;
        animation: progress 4s linear forwards;
    }

    .slider_wrap03 .slick-arrow {
        display: none !important;
    }
    
    .slider_wrap03 .slider-dots {
        width: 10.6rem;
        padding-top: 1.3rem;
        margin-left: auto;
    }
    
    .slider_wrap03 li {
        display: inline-block;
        width: 5rem;
        height: 0.5rem;
        background: #f4ebe4;
        border: solid 0.03rem #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap03 li:nth-child(2) {
        margin-left: 0.5rem;
    }
    
    .slider_wrap03 button {
        position: relative;
        width: 100%;
        height: 0.5rem;
        border: 0;
        /* background: #C6C6C6; */
        font-size: 0;
    }
    
    .slider_wrap03 button:after {
        position: absolute;
        top: -0.7rem;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }
    
    .slider_wrap03 .slider-dots .slick-active button:after {
        background-color: #000;
        animation: progress 4s linear forwards;
    }

    .slider_wrap04 .slick-arrow {
        display: none !important;
    }
    
    .slider_wrap04 .slider-dots {
        width: 10.6rem;
        padding-top: 1.3rem;
        margin-left: auto;
    }
    
    .slider_wrap04 li {
        display: inline-block;
        width: 5rem;
        height: 0.5rem;
        background: #f4ebe4;
        border: solid 0.03rem #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap04 li:nth-child(2) {
        margin-left: 0.5rem;
    }
    
    .slider_wrap04 button {
        position: relative;
        width: 100%;
        height: 0.5rem;
        border: 0;
        /* background: #C6C6C6; */
        font-size: 0;
    }
    
    .slider_wrap04 button:after {
        position: absolute;
        top: -0.7rem;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }
    
    .slider_wrap04 .slider-dots .slick-active button:after {
        background-color: #000;
        animation: progress 4s linear forwards;
    }
    
    @keyframes progress {
        from {
            width: 0%;
        }
    
        to {
            width: 100%;
        }
    }

/* ===================
	　　  common
=================== */
#wrapper img {
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
#wrapper video {
    vertical-align: bottom;
}

.sp_only {
    display: none!important;
}

.pc_only {
    display: block;
}

.Crimson_Text {
    font-family: 'Crimson Text', serif;
    letter-spacing: 0.025em;
    font-feature-settings: "palt";
}

/* .zoom a{
    pointer-events: none;
} */

#wrapper section .zoom a:hover {
    opacity: 1;
}

#wrapper section .img08 a:hover {
    opacity: 1;
}

#wrapper section .img08 .price a:hover {
    opacity: 0.7;
}

#wrapper .flex {
    display: flex;
}

.row-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.zoom {
    overflow: hidden;
}

.zoom img {
    -webkit-transition: all ease 1500ms;
    transition: all ease 1500ms;
}
.zoom video {
    -webkit-transition: all ease 1500ms;
    transition: all ease 1500ms;
}

.zoom:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.ovh {
    overflow: hidden;
}
#wrapper .number {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-end;
}
#wrapper .number .number-txt {
    font-size: 1.43rem;
    font-family: linotype-sabon, sans-serif;
    font-weight: 400;
    font-style: italic;
}
#wrapper .number .look {
    position: relative;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: -0.05em;
}
#wrapper .number .look::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.1rem;
    bottom: 0;
    background-color: #000;
}
#wrapper .credit-wrapper {
    /* width: 114rem;
    margin: 0 auto; */
}
#wrapper .credit {
    font-size: 1.2rem;
    font-family: linotype-sabon, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}
#wrapper h4 {
    margin-bottom: 1.5rem;
    font-size: 2.67rem;
    font-family: linotype-sabon, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
#wrapper .txt_02{
    font-family: sawarabi-mincho, sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* ===================
	　 mainview
=================== */
#mainview {
    position: relative;
    margin-bottom: 17.3rem;
}
.main_visual a:hover {
    opacity: 1;
}
.main_visual-image {
    width: 100%;
    margin: 0 auto;
}
#mainview a {
    width: 100%;
    height: 100%;
    /* display: block; */
}
#mainview .movie {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    object-fit: cover;
}
#mainview .movie video {
    width: 100%;
}
#mila_catalog-ss1st210128 .logo.onView {
    opacity: 1;
}
#mainview h2 {
    width: 100%;
    margin: 0 auto 3.8rem;
}
#mainview .img01 {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
#mainview .img01 .zoom:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

#wrapper #mainview .number {
    margin-left: 50px;
    margin-top: 2.4rem;
}
#wrapper #mainview .credit {
    margin-left: 50px;
}
#wrapper .mv-img .zoom:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
#wrapper .mv-img a:hover {
    opacity: 1;
}

/* ===================
	　　 section01
=================== */
#sec01 {
    width: 114rem;
    margin: 0 auto 7.7rem;
    position: relative;
}
#sec01 .look01 {
    display: flex;
    align-items: flex-end;
}
#sec01 .img01 {
    width: 60.9rem;
    margin-left: 7.2rem;
    border-radius: 50%;
}
#sec01 .credit-wrapper02 {
    margin-left: -2.6rem;
    margin-bottom: 5.2rem;
}

/* ===================
	　　 section02
=================== */
#sec02 {
    width: 114rem;
    margin: 0 auto 19.1rem;
}
#sec02 .img01 {
    width: 48.2rem;
    margin-left: 52.7rem;
}
#sec02 .look02 {
    margin-top: -37.3rem;
    margin-left: 13.1rem;
    display: flex;
    align-items: flex-end;
}
#sec02 .img02 {
    width: 35rem;
}
#sec02 .credit-wrapper02 {
    margin-bottom: -0.4rem;
    margin-left: 4.6rem;
}

/* ===================
	　　 section03
=================== */
#sec03 {
    width: 114rem;
    margin: 0 auto 28.9rem;
}
#sec03 .look01,
#sec03 .look02 {
    display: flex;
    justify-content: center;
}
#sec03 .look01 {
    margin-bottom: 4.5rem;
}
#sec03 .img01,
#sec03 .img02,
#sec03 .img03,
#sec03 .img04 {
    width: 43rem;
}
#sec03 .img02,
#sec03 .img04 {
    margin-left: 2rem;
}
#sec03 .credit-wrapper02 {
    margin-top: -0.5rem;
    margin-left: 0.2rem;
}

/* ===================
	　　  section04
=================== */
#sec04 {
    width: 49rem;
    margin: 0 auto 11.5rem;
}

/* ===================
	　　  section05
=================== */
#sec05 {
    margin-bottom: 17.2rem;
    display: flex;
    justify-content: center;
}
#sec05 .look01 {
    width: 30.4rem;
}
#sec05 .look02 {
    width: 52.4rem;
    margin-top: 11.1rem;
    margin-left: 5rem;
}
#sec05 .credit-wrapper02 {
    margin-top: 2.3rem;
    margin-right: -0.1rem;
    text-align: right;
}
#wrapper #sec05 .number {
    justify-content: flex-end;
}

/* ===================
	　　  section06
=================== */
#sec06 {
    width: 114rem;
    margin: 0 auto 24.6rem;
}
#sec06 .look01 {
    width: 52rem;
    margin: 0 auto;
}
#sec06 .img01 {
    border-radius: 50%;
}
#sec06 .credit-wrapper02 {
    margin-top: 3.2rem;
    margin-left: 0.7rem;
    text-align: center;
}
#wrapper #sec06 .number {
    justify-content: center;
}

/* ===================
	　　  section07
=================== */
#sec07 {
    margin-bottom: 13.9rem;
}
#sec07 .img01 {
    width: 100%;
}
#sec07 .credit-wrapper01 {
    /* width: 114rem; */
    margin: 2.5rem auto 0;
}
#wrapper #sec07 .number {
    margin-left: 50px;
}
#wrapper #sec07 .credit {
    margin-left: 50px;
}
#wrapper #sec07 .img01 .zoom:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
#wrapper #sec07 .img01 a:hover {
    opacity: 1;
}

/* ===================
	　　  section08
=================== */
#sec08 {
    margin-bottom: 27rem;
}
#sec08 .look01,
#sec08 .look02,
#sec08 .look03 {
    display: flex;
    justify-content: center;
}
#sec08 .look01 {
    margin-bottom: 4.5rem;
}
#sec08 .look02 {
    margin-bottom: 4.6rem;
}
#sec08 .img01,
#sec08 .img02,
#sec08 .img03,
#sec08 .img04,
#sec08 .img05,
#sec08 .img06 {
    width: 43rem;
}
#sec08 .img02 {
    margin-left: 2rem;
}
#sec08 .credit-wrapper02 {
    margin-top: -0.5rem;
    margin-left: 0.2rem;
}
#sec08 .credit-wrapper01 {
    margin-top: 1.8rem;
    margin-left: 0.2rem;
}
#wrapper #sec08 .number .look {
    margin-left: 1rem;
}
#sec08 .contents:nth-of-type(2) {
    margin-left: 2rem;
}

/* ===================
	　　  section09
=================== */
#sec09 {
    margin-bottom: 28.8rem;
}
#sec09 .img01 {
    width: 38rem;
    margin: 0 auto;
}
#sec09 .credit-wrapper02 {
    width: 114rem;
    margin: 1.8rem auto 0;
}
#wrapper #sec09 .credit,
#wrapper #sec09 .number {
    margin-left: 38.1rem;
}
#wrapper #sec09 .number .look {
    margin-left: 1rem;
}

#sec10 {
    margin-bottom: 20.3rem;
}
#sec10 .txt-title {
    width: 9.9rem;
    margin: 0 auto 4.6rem;
}
#sec10 .check {
    font-size: 1.43rem;
    font-family: linotype-sabon, sans-serif;
    font-weight: 400;
    font-style: italic;
    text-align: center;
}

#sec11 {
    width: 88rem;
    margin: 0 auto 13.7rem;
}
#sec11 .credit-wrapper02 {
    margin-top: 2rem;
    text-align: right;
}

#wrapper .staff {
    width: 114rem;
    margin: 0 auto;
    font-size: 1.2rem;
    font-family: linotype-sabon, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.83333;
}
#wrapper .staff p {
    margin-left: 13.1rem;
}

/* ===================
	　　  button
=================== */

/* for PC */
@media screen and (min-width: 767px) {
    #wrapper .slider_wrap li, #wrapper .slider_wrap02 li, #wrapper .slider_wrap03 li, #wrapper .slider_wrap04 li{
        display: none;
    }
}

/*=======================================
               Responsive   
========================================*/
@media screen and (max-device-width: 767px) {
    #wrapper .sp_only {
        display: block;
    }
}

/* for SP */
@media screen and (max-width: 767px) {

    /*=======================================
                    SP    
  ========================================*/

    /* ===================
	　　 General
=================== */

    .header {
        display: block;
    }

    .btn-search {
        display: none;
    }

    .htest.open .btn-search {
        display: block;
    }

    .btn-cart {
        display: none;
    }

    .htest.open .btn-cart {
        display: block;
    }

    .header .header-logo img {
        display: none;
        margin: auto;
    }

    .htest.open .header-logo img {
        display: block;
    }

    .header .header-logo a {
        display: inline-block;
    }

    main {
        padding: 0 !important;
    }

    .header .btn-menu.open .border::before {
        background: #000;
    }

    .header .btn-menu.open .border::after {
        background: #000;
    }

    .header .btn-menu .border {
        background: #231815;
    }

    .header .btn-menu .border::before {
        background: #231815;
    }

    .header .btn-menu .border::after {
        background: #231815;
    }

    .header .btn-menu {
        will-change: transform;
        -webkit-transition: ease-in, -webkit-transform 1000ms;
        transition: ease-in, -webkit-transform 1000ms;
        transition: ease-in, transform 1000ms;
        transition: ease-in, transform 1000ms, -webkit-transform 1000ms;
        transform: translate3d(0, -10rem, 0);
    }

    .header .btn-menu.hide {
        transform: translate3d(0, -6px, 0);
    }

    .header .btn-menu .border {
        width: calc(40 *(100vw / 750));
    }

    .header .btn-menu .border::before,
    .header .btn-menu .border::before {
        width: calc(40 *(100vw / 750));
        top: calc(-17 *(100vw / 750));
    }

    .header .btn-menu .border::after,
    .header .btn-menu .border::before {
        width: calc(40 *(100vw / 750));
        bottom: calc(-17 *(100vw / 750));
    }

    #breadcrumb .cateList {
        margin: 0 auto !important;
    }

    .header.js-header-background {
        background-color: transparent;
    }

    .header .btn-menu {
        left: calc(50 *(100vw / 750));
        top: calc(40 *(100vw / 750));
    }

    .main-area {
        /* background-image: url("../img/SP_1.jpg"); */
        background-repeat: no-repeat;
        background-size: calc(750* (100vw / 750));
        background-position-x: center;
        position: relative;
        overflow: hidden;
    }

    .progressbar-text{
        font-size: calc(40*(100vw / 750))!important;
      }
      #loading_text::before{
        width: calc(283*(100vw / 750));
        height: calc(283*(100vw / 750));
      }

      #mask-bg.load{
        position: relative;
        -webkit-mask-image: url(../img/mask_en.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: 50% 100vh;
        -webkit-mask-size: 500%;
        mask-image: url(../img/mask_en.svg);
        mask-repeat: no-repeat;
        mask-size: 500%;
        animation-name: no-mask;
        animation-delay: 1s;
        animation-duration: 3s;
    }
    @keyframes no-mask {
        from {
            -webkit-mask-position: 50% 100vh;
            -webkit-transition: 1.4s all;
            transition: 1.4s all;
        }
        to {
            -webkit-mask-position: 50% -300px;
            -webkit-mask-image: none !important;
            mask-image: none !important;
        }
    }
    #mask-bg.active{
        -webkit-mask-image: none !important;
            mask-image: none !important;
    }

    .main-area {
        /* background-image: url("../img/SP_1.jpg"); */
        /* background-image: url(../img/sp_credit.jpg); */
        background-repeat: no-repeat;
        background-size: calc(750* (100vw / 750)); 
        background-position-x: center; 
        background-position-y: 0;
        /* background-position-y: calc(1604* (100vw / 750));  */
        position: relative;
        }

    /* .main-area::before {
        position: absolute;
        content: "";
        background-image: url("../img/SP_2.jpg");
        background-repeat: no-repeat;
        width: calc(750* (100vw / 750));
        height: calc(16045* (100vw / 750));
        top: calc(12287* (100vw / 750));
        background-position-x: center;
        background-size: inherit;
        z-index: -1;
    }

    .main-area::after {
        position: absolute;
        content: "";
        background-image: url("../img/SP_3.jpg");
        background-repeat: no-repeat;
        width: calc(750* (100vw / 750));
        height: calc(16045* (100vw / 750));
        top: calc(24333* (100vw / 750));
        background-position-x: center;
        background-size: inherit;
        z-index: -1;
    } */

    .main-area .main-inner {
        width: 100%;
    }

    #wrapper {
        width: calc(750* (100vw / 750));
        margin: 0 auto;
        padding-bottom: calc(93.5* (100vw / 750));
        -webkit-font-feature-settings: "palt";
        font-feature-settings: "palt";
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* ============================= ▼ slick ▼ == */

    .slider_wrap .slider-dots {
        width: calc(187* (100vw / 750));
        padding-top: calc(20* (100vw / 750));
        margin-left: auto;
    }
    
    .slider_wrap li {
        display: inline-block;
        width: calc(90* (100vw / 750));
        height: calc(7* (100vw / 750));
        border: solid calc(0.3* (100vw / 750)) #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap li:nth-child(2) {
        margin-left: calc(7* (100vw / 750));
    }
    
    .slider_wrap button {
        position: relative;
        width: 100%;
        height: calc(7* (100vw / 750));
        border: 0;
        font-size: 0;
    }
    
    .slider_wrap button:after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }

    .slider_wrap02 .slider-dots {
        width: calc(187* (100vw / 750));
        padding-top: calc(20* (100vw / 750));
        margin-left: auto;
    }
    
    .slider_wrap02 li {
        display: inline-block;
        width: calc(90* (100vw / 750));
        height: calc(7* (100vw / 750));
        border: solid calc(0.3* (100vw / 750)) #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap02 li:nth-child(2) {
        margin-left: calc(7* (100vw / 750));
    }
    
    .slider_wrap02 button {
        position: relative;
        width: 100%;
        height: calc(7* (100vw / 750));
        border: 0;
        font-size: 0;
    }
    
    .slider_wrap02 button:after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }

    .slider_wrap03 .slider-dots {
        width: calc(187* (100vw / 750));
        padding-top: calc(20* (100vw / 750));
        margin-left: auto;
    }
    
    .slider_wrap03 li {
        display: inline-block;
        width: calc(90* (100vw / 750));
        height: calc(7* (100vw / 750));
        border: solid calc(0.3* (100vw / 750)) #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap03 li:nth-child(2) {
        margin-left: calc(7* (100vw / 750));
    }
    
    .slider_wrap03 button {
        position: relative;
        width: 100%;
        height: calc(7* (100vw / 750));
        border: 0;
        font-size: 0;
    }
    
    .slider_wrap03 button:after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }

    .slider_wrap04 .slider-dots {
        width: calc(187* (100vw / 750));
        padding-top: calc(20* (100vw / 750));
        margin-left: auto;
    }
    
    .slider_wrap04 li {
        display: inline-block;
        width: calc(90* (100vw / 750));
        height: calc(7* (100vw / 750));
        border: solid calc(0.3* (100vw / 750)) #000;
        /* プログレスバーの横幅はスライドの枚数に合わせて調整してください */
    }
    
    .slider_wrap04 li:nth-child(2) {
        margin-left: calc(7* (100vw / 750));
    }
    
    .slider_wrap04 button {
        position: relative;
        width: 100%;
        height: calc(7* (100vw / 750));
        border: 0;
        font-size: 0;
    }
    
    .slider_wrap04 button:after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        display: block;
        width: 0%;
        height: 100%;
    }

    

    /* ===================
　　  common
  =================== */
    #wrapper .sp_only {
        display: block!important;
    }

    .pc_only {
        display: none;
    }

    .yugothic {
        font-size: calc(28* (100vw / 750));
    }

    .yumincho {
        font-size: calc(26* (100vw / 750));
        font-weight: 600;
        line-height: 1.95;
    }

    .Crimson_Text {
        letter-spacing: 0.025em;
    }

    .KudryashevDisplay {
        font-weight: normal;
        font-style: normal;
        letter-spacing: 0.075em;
    }

    #wrapper .flex {
        display: flex;
        flex-wrap: wrap;
    }

    #mainview .movie #btn03 {
        width: calc(213* (100vw / 750));
        bottom: calc(42* (100vw / 750));
        right: calc(14* (100vw / 750));
        position: absolute;
    }

    #mainview .movie #btn04 {
        width: calc(191* (100vw / 750));
        bottom: calc(42* (100vw / 750));
        right: calc(31* (100vw / 750));
        position: absolute;
        opacity: 0;
        visibility: hidden;
    }

    #mainview .movie #btn04.active3 {
        visibility: visible;
        opacity: 1;
    }

    #mainview .movie #btn04.active4 {
        opacity: 0;
    }

    #mainview .movie #btn03.active3 {
        opacity: 0;
    }

    #mainview .movie #btn03.active4 {
        opacity: 1;
    }

    #wrapper .number {
        margin-bottom: calc(22* (100vw / 750));
    }
    #wrapper .number .number-txt {
        font-size: calc(27* (100vw / 750));
    }
    #wrapper .number .look {
        margin-left: calc(29* (100vw / 750));
        font-size: calc(16* (100vw / 750));
        letter-spacing: -0.04em;
    }
    #wrapper .number .look::before {
        height: calc(2* (100vw / 750));
        bottom: 0;
    }
    #wrapper .credit-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    #wrapper .credit {
        font-size: calc(20* (100vw / 750));
        line-height: 1.7;
    }
    #wrapper h4 {
        margin-bottom: calc(19* (100vw / 750));
        font-size: calc(35* (100vw / 750));
    }

    /* ===================
	　 mainview
=================== */
    #mainview {
        margin-bottom: calc(272* (100vw / 750));
    }
    .main_visual-image {
        width: 100%;
        margin: 0 auto;
    }
    #mainview a {
        width: 100%;
        height: 100%;
        /* display: block; */
    }
    #mainview .movie {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
    #mainview .movie video {
        width: 100%;
    }
    #mila_catalog-ss1st210128 .logo.onView {
        opacity: 1;
    }
    #mainview h2 {
        width: 100%;
        margin: 0 auto 3.8rem;
    }
    #mainview .text {
        font-family: 'Libre Caslon Text', serif;
        font-size: 1.8rem;
        margin-bottom: 10.8rem;
    }
    #mainview .img01 {
        width: 100%;
        margin: 0 auto;
        position: relative;
    }
    #mainview .img01 .zoom:hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #wrapper #mainview .number {
        margin-left: calc(30* (100vw / 750));
        margin-top: calc(36* (100vw / 750));
    }
    #wrapper #mainview .credit {
        margin-left: calc(30* (100vw / 750));
    }

    /* ===================
	　　 section01
=================== */
    #sec01 {
        width: 100%;
        margin: 0 auto calc(208* (100vw / 750));
    }
    #sec01 .look01 {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    #sec01 .img01 {
        width: 100%;
        margin-left: 0;
        border-radius: 0;
    }
    #sec01 .credit-wrapper02 {
        margin: calc(80* (100vw / 750)) calc(33* (100vw / 750)) 0 0;
        text-align: right;
    }
    #wrapper #sec01 .number {
        justify-content: flex-end;
    }

    /* ===================
	　　 section02
=================== */
    #sec02 {
        width: 100%;
        margin: 0 auto calc(190* (100vw / 750));
    }
    #sec02 .img01 {
        width: calc(650* (100vw / 750));
        margin: 0 auto calc(70* (100vw / 750));
    }
    #sec02 .look02 {
        margin-top: 0;
        margin-left: 0;
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #sec02 .img02 {
        width: 100%;
    }
    #sec02 .credit-wrapper02 {
        margin-bottom: 0;
        margin-top: calc(20* (100vw / 750));
        margin-left: calc(30* (100vw / 750));
    }

    /* ===================
	　　 section03
=================== */
    #sec03 {
        width: 100%;
        margin: 0 auto calc(141* (100vw / 750));
    }
    #sec03 .look01,
    #sec03 .look02 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #sec03 .look01 {
        margin-bottom: 0;
    }
    #sec03 .img01,
    #sec03 .img02,
    #sec03 .img03,
    #sec03 .img04 {
        width: calc(650* (100vw / 750));
        margin-bottom: calc(131* (100vw / 750));
    }
    #sec03 .img02,
    #sec03 .img04 {
        margin-left: 0;
    }
    #sec03 .credit-wrapper02 {
        margin-top: calc(9* (100vw / 750));
        margin-left: 0;
    }
    #sec03 .img04 .credit-wrapper02 {
        margin-top: calc(9* (100vw / 750));
    }

    /* ===================
	　　  section04
=================== */
    #sec04 {
        width: 100%;
        margin: 0 auto calc(310* (100vw / 750));
    }

    /* ===================
	　　  section05
=================== */
    #sec05 {
        margin-bottom: calc(151* (100vw / 750));
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #sec05 .look01 {
        width: calc(355* (100vw / 750));
        margin-bottom: calc(310* (100vw / 750));
    }
    #sec05 .look02 {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
    #sec05 .credit-wrapper02 {
        margin-top: calc(37* (100vw / 750));
        margin-left: calc(30* (100vw / 750));
        margin-right: 0;
        text-align: left;
    }
    #wrapper #sec05 .number {
        justify-content: flex-start;
    }

    /* ===================
	　　  section06
=================== */
    #sec06 {
        width: 100%;
        margin: 0 auto calc(192* (100vw / 750));
    }
    #sec06 .look01 {
        width: 100%;
        margin: 0 auto;
    }
    #sec06 .img01 {
        border-radius: 0;
    }
    #sec06 .credit-wrapper02 {
        margin-top: calc(37* (100vw / 750));
        margin-left: calc(30* (100vw / 750));
        text-align: left;
    }
    #wrapper #sec06 .number {
        justify-content: flex-start;
    }

    /* ===================
	　　  section07
=================== */
    #sec07 {
        margin-bottom: calc(131* (100vw / 750));
    }
    #sec07 .img01 {
        width: 100%;
        margin: 0 auto;
    }
    #sec07 .img01 .slider_wrap {
        width: calc(650* (100vw / 750));
        margin: 0 auto;
    }
    #wrapper #sec07 .img01 .number {
        margin-left: calc(50* (100vw / 750));
    }
    #wrapper #sec07 .number {
        margin-left: 0;
    }
    #wrapper #sec07 .img01 .credit {
        margin-left: calc(50* (100vw / 750));
    }
    #wrapper #sec07 .credit {
        margin-left: 0;
    }
    #sec07 .credit-wrapper02 {
        margin-top: calc(11* (100vw / 750));
        margin-left: 0;
    }
    #sec07 .slider_wrap .slider-dots {
        margin-left: calc(482* (100vw / 750));
    }

    /* ===================
	　　  section12
=================== */
    #sec12 {
        margin-bottom: calc(244* (100vw / 750));
    }
    #sec12 .img01 {
        width: 100%;
        margin: 0 auto;
    }
    #wrapper #sec12 .number {
        margin-left: 0;
    }
    #wrapper #sec12 .credit {
        margin-left: 0;
    }
    #sec12 .credit-wrapper02 {
        margin-top: calc(3* (100vw / 750));
        margin-left: calc(30* (100vw / 750));
    }
    #sec12 .slider_wrap .slider-dots {
        margin-left: calc(533* (100vw / 750));
        padding-top: calc(14* (100vw / 750));
    }
    #sec12 .img03 .credit-wrapper02 {
        margin-top: calc(9* (100vw / 750));
    }

    /* ===================
	　　  section13
=================== */
    #sec13 {
        width: 100%;
        margin: 0 auto calc(293* (100vw / 750));
    }
    #sec13 .look01 {
        width: calc(618* (100vw / 750));
        margin-left: auto;
    }
    #sec13 .img01 {
        border-radius: 0;
    }
    #sec13 .credit-wrapper02 {
        margin-top: calc(81* (100vw / 750));
        margin-left: 0;
        margin-right: calc(33* (100vw / 750));
        text-align: right;
    }
    #wrapper #sec13 .number {
        justify-content: flex-end;
    }

    /* ===================
	　　  section14
=================== */
    #sec14 {
        margin-bottom: calc(181* (100vw / 750));
    }
    #sec14 .img01 {
        width: 100%;
    }
    #sec14 .credit-wrapper01 {
        margin-top: calc(37* (100vw / 750));
        margin-left: calc(30* (100vw / 750));
    }

    /* ===================
	　　  section08
=================== */
    #sec08 {
        margin-bottom: calc(280* (100vw / 750));
    }
    #sec08 .look01,
    #sec08 .look02,
    #sec08 .look03 {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    #sec08 .look01 {
        margin-bottom: calc(48* (100vw / 750));
    }
    #sec08 .look02 {
        margin-bottom: 4.6rem;
    }
    #sec08 .img01,
    #sec08 .img02,
    #sec08 .img03,
    #sec08 .img04,
    #sec08 .img05,
    #sec08 .img06 {
        width: calc(650* (100vw / 750));
        margin: 0 auto;
    }
    #sec08 .img02 {
        margin-left: 0;
    }
    #sec08 .img01 {
        margin-top: calc(132* (100vw / 750));
        margin-bottom: calc(131* (100vw / 750));
    }
    #sec08 .img05 {
        width: calc(750* (100vw / 750));
    }
    #sec08 .credit-wrapper01 {
        margin-top: calc(37* (100vw / 750));
        margin-left: calc(50* (100vw / 750));
    }
    #sec08 .credit-wrapper02 {
        margin-top: calc(9* (100vw / 750));
        margin-left: 0;
    }
    #wrapper #sec08 .number .look {
        margin-left: calc(29* (100vw / 750));
    }
    #sec08 .contents:nth-of-type(2) {
        margin-left: 0;
    }
    #sec08 .img05 .credit-wrapper01 {
        margin-top: calc(11* (100vw / 750));
    }
    #sec08 .img05 .slider_wrap04 .slider-dots {
        margin-left: calc(534* (100vw / 750));
    }

    /* ===================
	　　  section09
=================== */
    #sec09 {
        margin-bottom: calc(192* (100vw / 750));
    }
    #sec09 .img01 {
        width: calc(444* (100vw / 750));
        margin: 0 auto;
    }
    #sec09 .credit-wrapper02 {
        width: 100%;
        margin: calc(39* (100vw / 750)) auto 0;
    }
    #wrapper #sec09 .credit,
    #wrapper #sec09 .number {
        margin-left: calc(156* (100vw / 750));
    }
    #wrapper #sec09 .number .look {
        margin-left: calc(29* (100vw / 750));
    }

    #sec10 {
        margin-bottom: calc(206* (100vw / 750));
    }
    #sec10 .txt-title {
        width: calc(131* (100vw / 750));
        margin: 0 auto calc(20* (100vw / 750));
    }
    #sec10 .check {
        font-size: calc(26* (100vw / 750));
    }

    #sec11 {
        width: 100%;
        margin: 0 auto calc(152* (100vw / 750));
    }
    #sec11 .credit-wrapper02 {
        margin-top: calc(22* (100vw / 750));
        margin-right: calc(30* (100vw / 750));
    }

    #wrapper .staff {
        width: 100%;
        margin: 0 auto;
        font-size: calc(17* (100vw / 750));
        line-height: 1.8823;
    }
    #wrapper .staff p {
        margin-left: calc(50* (100vw / 750));
    }

    /* ===================
	　　  button
=================== */

    .footer {
        position: relative;
        z-index: 999;
        margin-top: 0;
    }
}

/* for Tablet */
@media screen and (min-width: 768px) and (max-width: 1140px) {

    /*=======================================
                    Tablet    
  ========================================*/
    /* ===================
	　　 General
=================== */
    html {
        font-size: calc(10* (100vw / 1140)) !important;
    }

    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

}

/*# sourceMappingURL=style.css.map */
