@charset "UTF-8";
/*---------------------------------------------
00. reset
---------------------------------------------*/

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  margin: 0;
   padding: 0; 
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0; }

a {
  background-color: transparent;
  text-decoration: none;
  text-decoration: none;
  color: inherit; }

p{
margin:0;
padding:0;
}

img {
    border-style: none;
    vertical-align: bottom;
    width: 100%;
    height: auto; }

video{
    max-width: 100%;
}

li {
	text-decoration: none!important;
	list-style: none!important;
}
/*---------------------------------------------
common
---------------------------------------------*/
body{
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    line-height: 1.8;
    font-size: 1.4rem;
    letter-spacing: .05em;
    font-feature-settings: "palt";
    font-family: "Noto Sans JP", "new-atten", "Segoe UI", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, sans-serif;
 /* font-family: "Noto Sans JP", Avenir, "Segoe UI", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, 游明朝, 游明朝体, "Yu Mincho", YuMincho, sans-serif; */
	color: #4a2c21;
	font-weight: 400;
    letter-spacing: 1.5px;
}

.serif {
    font-family: "source-han-serif-japanese",serif;
	letter-spacing: 0.5px;
}

.seasons {
    font-family: "the-seasons", serif;  
}

.color_f {
	color: #f75959!important;
}

  @media screen and (max-width: 389px) {
      html {
          font-size: 61%;
      }
  }
  
  @media screen and (max-width: 720px) {
      html {
          font-size: 62.5%;
      }
  }
  
@media screen and (min-width: 1024px) and (min-height: 767px){
      html {
          font-size: 100%;
      }
}

@media screen and (min-width: 1024px) and (max-height: 768px){
      html {
          font-size: 60%;
      }
}

@media screen and (min-width: 1200px) {
      html {
          font-size: 60%;
      }
}


.v-top {
    vertical-align: text-top
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.fix {
    position: fixed !important;
    width: 100%;
    overflow: hidden
}
.text-small {
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 0.05em
}

.relative {
    position: relative;
}

.center {
	text-align: center;
}

.sp {
    display: block!important;
}
.pc {
    display: none!important;
}
.ipad {
    display: none!important;
}
.text-right{
	text-align: right;
}

.sp_wrap{
    overflow: clip;
/*	position: relative;
	z-index: 3;*/
    background: #fbcaa8;
}

@media screen and (max-width: 760px){
/*.lp_wrap {
    overflow: hidden;
}*/
}

@media screen and (min-width: 760px){

body {
  background: linear-gradient(45deg, #e7b292, #e78076);
	background-attachment: fixed;
}

.lp_wrap {
	height: 100vh;
    width: 100%;
}

.inner {
  /*height: 100vh;*/
  overflow: hidden;
  /*overflow-y: scroll;*/
}

.sp_wrap{
    max-width: 650px;
    margin: auto;
	position: relative;
}
.sp {
    display: none!important;
}
.ipad {
    display: block!important;
}

.pc_flex {
    display: -webkit-box;
    display: -ms-flexbox !important;
    display: flex !important;
}

}

@media screen and (min-width: 1025px){
.sp {
    display: none!important;
}
.ipad {
    display: none!important;
}
.pc {
    display: block!important;
}

.sp_wrap{
    max-width: 30%;
}

}

@media screen and (min-width: 1024px) and (max-height: 768px){
.sp {
    display: none!important;
}
.ipad {
    display: none!important;
}
.pc {
    display: block!important;
}
}
/*---------------------------------------------
animation
---------------------------------------------*/
/*--------------スクロールアニメーション---------------*/
.scroll_up {
  transition: 1s ease-out;
  opacity: 0;
}
.scroll_up.on {
  opacity: 1.0;
}


.scroll_up2 {
  transition: 0.5s ease-out;
  transform: translateY(50px);
  opacity: 0;
}
.scroll_up2.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up3 {
  transition: 0.5s ease-out;
  transform: translateY(-50px);
  opacity: 0;
}
.scroll_up3.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up4 {
  transition: 0.5s ease-out;
  transform: translateX(-50px);
  opacity: 0;
}
.scroll_up4.on {
  transform: translateX(0);
  opacity: 1.0;
}

.scroll_up5 {
  transition: 0.5s ease-out;
  transform: translateX(50px);
  opacity: 0;
}
.scroll_up5.on {
  transform: translateX(0);
  opacity: 1.0;
}

.scroll_up6 {
  transition: 1s ease-out;
  opacity: 0;
}
.scroll_up6.on {
  transform: translateY(0);
  animation: pulseEffect 1.5s linear 1s;
  opacity: 1.0;
  perspective: 1000;
}

.scroll_up7 {
  transition: 0.6s ease-out;
  opacity: 0;

}
.scroll_up7.on {
  transform: translateZ(0);
  transform: translateY(0);
  opacity: 1.0;
  animation: spin1 0.6s;
}

.scroll_up8 {
  transition: 0.6s ease-out;
  opacity: 0;
}
.scroll_up8.on {
  transform: translateZ(0);
  transform: translateY(0);
  opacity: 1.0;
  animation: spin2 0.6s;
}

@keyframes pulseEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes spin1 {
  from {
    transform: rotate(10deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes spin2 {
  from {
    transform: rotate(50deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.timing01 {transition-delay: .1s;}
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
.timing06 {transition-delay: 2s;}
.timing07 {transition-delay: 1.4s;}
.timing08 {transition-delay: 1.6s;}

/*--------------縮小---------------*/
.sa {
  opacity: 0;
  transition: all 1.8s ease;
  transition-delay: 0s;
}
 
.sa.show {
  opacity: 1;
  transform: none;
  
}

.sa--scaleDown {
  transform: scale(1.2);
}

.m_img{
  /* 縦横300pxにがっちり固定 */
  width: 100%;
  height: auto;
  /* 固定した幅からはみ出たものは隠してしまう */
  overflow: hidden;
}
/*--------------縮小---------------*/
/*--------------スクロールアニメーション---------------*/

/*--------------fvのアニメーション---------------*/
/*-----------ロード時-------------*/
.lp_wrap .start {
	position: fixed;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 9000;
}
.lp_wrap .start >div {
    background-image: url(../img/seni.jpg?33);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    width: 100vw;
    /* height: 100vh; */
    height: 100dvh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    z-index: 9900;
}
.lp_wrap .counter {
    position: fixed;
    left: 22%;
    top: 21%;
    z-index: 9999;
    width: 180px;
    font-size: 3.8rem;
    color: #4a2c21;
}
.lp_wrap .counter::after {
  	content: "%";
	color: #4a2c21;
	font-size: 4rem;
}

@media screen and (max-width: 389px){
.lp_wrap .start >div {
    background-image: url(../img/seni_min.jpg?33);
}
.lp_wrap .counter {
    top: 19%;
}
}

@media screen and (min-width: 760px){
.lp_wrap .start >div {
	width: 1000px;
	height: 100vh;
	max-height: 750px;
    background-image: url(../img/seni_pc.jpg?33);
}
}

@media screen and (min-width: 1025px){

    .lp_wrap .counter {
        left: 27%;
        font-size: 4.3rem;
        top: 22%;
    }

}

/*-----------ロード時-------------*/
/*-----------グラデーション-------------*/
.lp_wrap .start {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, #e7b292, #e78076);
}
/*-----------グラデーション-------------*/

.lp_wrap{
  position:relative;
}

 .box{
  opacity: 0;
}

 .fadeUp {
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

 .fadeUp2 {
animation-name:fadeUpAnime2;
animation-duration:2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime2{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

 .delay-time01{
animation-delay: 0s;
}
.delay-time02{
animation-delay: 0.5s;
}
 .delay-time03{
animation-delay: 3.5s;
}
 .delay-time04{
animation-delay: 3.7s;
}

 .fv_scale {
animation-name:fv_scale;
animation-duration:1.8s;
animation-fill-mode:forwards;
animation-timing-function: ease;	 
animation-delay: 3.1s;
opacity: 0;
}
@keyframes fv_scale{
  from {
    opacity: 0;
  	transform: scale(1.2);
  }

  to {
    opacity: 1;
  	transform: scale(1);
  }
}

/*--------------fvのアニメーション---------------*/



/*---------------------------------------------
layout
---------------------------------------------*/

/*--------------メニュー---------------*/

.header--bg{
background-color: #ddcec4b5;
}

@media screen and (min-width: 1040px){

.header-flex {
	background-color: transparent;
}
	

}

.header-sp-btn{
    position: fixed;
    z-index: 99;
    background-color: #4a2c214a;
    border: none;
    color: #fff;
    padding: 0 3.5%;
    border-radius: 50px;
    letter-spacing: 0.2rem;
    font-size: 1.4rem;
    right: 3.5%;
    top: 2.5%;
    font-weight: 400;
    line-height: 2.2;
}
.header-inner{
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    display: none;
}
.header-sp-btn--close {
    position: absolute;
    right: 5%;
    top: 5%;
    width: 35px;
    height: 35px;
}
.header-sp-btn--close span{
    width: 35px;
    height: 1px;
background-color: #4a2c21;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    top: 3%;
    left: 0;
}
.header-sp-btn--close span:first-child{
    right: 0;
    left: 0;
    margin: auto;
}
.header-sp-btn--close span:last-child{
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(135deg);
}
.header-inner-wrap{
height: calc(var(--vh,1vh) * 100);
    width: var(--inner-width);
    flex-direction: column;
    padding-top: var(--contents-margin);
    margin: 0 auto;
    background-color: #fcefed;
    padding: 15% 10% 0;
}
.header-inner-menu{
    flex-direction: column;
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    text-align: center;
    color: #f75959;
}
.header-inner-menu_li{
    margin-bottom: 16%;
}
.menu_logo {
    margin: 7% auto 0;
    width: 80%;
}

@media screen and (max-width: 380px){
.header-inner{
    overflow-x: scroll;
}
}



.header-inner-menu_li .name{
    font-weight: 500;
    font-size: 0.8rem;
	line-height: 1.6;
}


@media screen and (min-width: 1200px){

.header-inner-wrap {
        padding: 0;
        width: 35%;
        position: fixed;
        height: 100vh;
        right: 0;
        background: linear-gradient(45deg, #e7b292, #e78076);
}
.header-inner-menu {
    flex-direction: column;
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    text-align: center;
    color: #fff;
    margin: auto; 
        padding: 30% 10%;
}

.header-inner-menu_li {
        margin-bottom: 15%;
}
}
/*--------------メニュー---------------*/

/*--------------ファーストビュー---------------*/

.fv {
    width: 100%; 
    position: relative;
	overflow: hidden;
    height: 100vh;
    background: linear-gradient(45deg, #e7b292, #e78076);
}

.fv_glad {
    margin-top: -61vh;
    padding-bottom: 22%;
    background: linear-gradient(transparent 73%, #ecab89 73%, #edb08c);
}

.fv_txt {
	width: 100%;
	position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
}
.fv_logo1 {
    width: 60%;
    margin: 0 auto;
    filter: drop-shadow(1px 1px 1px #420f1733);
}

.reserv {
    background-color: #ffffffc7;
    padding: 1% 0 1.5%;
    width: 61%;
    text-align: center;
    margin: -5% auto 0;
    position: relative;
    color: #ecab89;
    letter-spacing: 0.15rem;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1.3;
}
.reserv span:first-of-type {
    font-size: 1.5rem;
    margin: 0 2% 0 2%;
}
.reserv span:last-of-type {
    font-size: 1.9rem;
    margin-left: -1%;
}

.fv_bg, .look_bg {
    padding-top: 20%;
    background: linear-gradient(#edb08c, #d49493 60%);
    margin-top: -1%;
    position: sticky;
    top: 0;
    z-index: 1;
}
.fv_bg div {
    position: relative;
    margin-top: -70vh;
    text-align: right;
}
.fv_bg div img {
    width: 60%;
}
.fv_bottom_p {
    position: relative;
    margin-top: -14%;
    padding-bottom: 45%;
    margin-left: 5%;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 30;
}


@media screen and (min-width:760px){

.fv.pc {
    width: 35%;
    position: fixed;
    height: 100vh;
}

.fv_txt {
        width: 70%;
        bottom: 15%;
        top: auto;
}
.reserv {
        bottom: 8%;
        width: 46%;
}
.fv .fv_img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.fv_logo1 {
    width: 66%;
}


}


@media screen and (min-width: 1025px) {
.fv_txt {
        width: 70%;
        bottom: 18%;
        top: auto;
}
.reserv {
        bottom: 10%;
        font-size: 1.9rem;
}
}



@media screen and (min-width:1200px){

}

@media screen and (min-width:1300px){


}

@media screen and (min-width:1500px){


}

@media screen and (min-width:1900px){


}
/*--------------ファーストビュー---------------*/

/*--------------ファーストビュー下---------------*/

/*-----------アイテムアンカーリンク-------------*/
.item_anchor_wrap {
    background: linear-gradient(transparent 0%, #fbcaa8 12%, #edb08c, #e9877e);
    padding-top: 50%;
    position: relative;
    margin-top: -76%;
    padding-bottom: 70%;
    z-index: 20;
}
.item_anchor{
    width: 95%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
}
.item_anchor >div {
    width: 49%;
    margin-top: 7%;
    text-align: center;
    position: relative;
    width: 50%;
    margin-bottom: 5%;
}
.item_anchor >div >img {
    height: 110%;
}
.item_anchor a {
    position: absolute;
    width: 100%;
    top: 22%;
    right: 0;
    bottom: auto;
    left: 0;
    margin: auto;   
}
.anchor_flex {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    width: 100%;
}
.anchor_flex img {
    width: 54%;
    margin: auto;
    padding-left: 4%;   
}
.a_credit {
    margin: auto;
    width: 72%; 
}
.a_credit >p {
    margin-top: 6%;
}
.a_item_name {
    letter-spacing: -0.03rem;
    font-size: 1.3rem;
    line-height: 1.2;
}
.a_border {
    padding: 2% 0 3%;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    background: #ea9985;
    font-size: 1.2rem;
}
.a_price {
    margin-top: 4% !important;
}
.arrow{
    text-align: center;
    margin-top: 5%;
}
.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 2px solid rgb(234 153 133);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.anchor_icon, .main_icon {
    position: absolute;
    top: 9%;
    right: 3%;
    background-color: #f75959d9;
    border-radius: 50%;
    padding: 1.5%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 10;
}
.anchor_icon.renewal {
     background-color: #c187af;   
}
.anchor_icon p, .main_icon p {
    color: #fff;
    font-size: 1rem;
    width: 100%;
    line-height: 1.4;
}
.anchor_img {
	width: 100%;
}

.anchor1 a {
    top: 13%;
}
.anchor1_flex img {
    width: 65%;
}

.anchor2_flex img {
    margin-bottom: 4%;
}

.anchor3_flex img {
    width: 60%;
}

.anchor4 a {
    top: 17%;
}
.anchor4_flex img {
    width: 32%;
}

.anchor1, .anchor3 {
    margin-top: 43% !important;
    margin-bottom: -30% !important;
}

@media screen and (min-width:760px){
.anchor_icon, .main_icon {
    width: 100px;
    height: 100px;
}
}

@media screen and (min-width: 1024px) and (min-height: 768px) {
.anchor_icon, .main_icon {
    width: 100px;
    height: 100px;
}
}

@media screen and (min-width: 1025px) {
.anchor_icon, .main_icon {
    width: 65px;
    height: 65px;
}
}

/*-----------アイテムアンカーリンク-------------*/

/*-----------キャンペーン-------------*/




/*-----------キャンペーン-------------*/

/*--------------ファーストビュー下---------------*/


/*-----------------------メイン------------------------*/

.midashi {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh; 
    min-height: 480px;
    z-index: 10;
}

.midashi::before {
    content: '';
    display: block;
    background-image: url(../img/midashi_before.jpg?3);
    background-size: cover;
    background-repeat: no-repeat;
    -ms-transform: translate(-50%, -50%);
    transition: 1s;
    min-height: 480px;
    height: 65vh; 
    width: 100%;
}
.midashi.change-bg::before {
    background-image: url(../img/midashi1.jpg?5);  
}
.midashi.midashi2.change-bg::before {
    background-image: url(../img/midashi2.jpg?5);  
}

.main_icon {
    width: 75px;
    height: 75px;
    top: 4%;
    right: 4%;
}
.main_icon p {
    font-size: 1.2rem;
}
.m_item_wrap  {
    z-index: 20;
    background: linear-gradient(#fcccb4 40%, #ffdfca 60%, #f8c9c3);
    padding-bottom: 16%;
}
.m_item_wrap h1 {
    font-size: 3.2rem;
    line-height: 1.4 !important;
    position: absolute;
    top: 52%;
    left: 7%;
}
.color_v_wrap {
    margin-top: -33%;
    z-index: 21;
}
.color_v_wrap h2:last-of-type {
    background-color: #c187af;
}
.m_item_wrap h2 {
    text-align: center;
    margin: 4% 5% 7%;
    background-color: #f76363;
    color: #fff;
}
.color_v {
    padding: 0;
    margin: 5%;
    justify-content: space-between;
}
.color_v li {
    background-color: #fbe6e1b0;
    padding: 4% 8% 3% 5%;
    width: 35%;
}
.color_v li .plus-icon {
  position: relative;
  width: 20px;
  height: 20px;
    margin: -11% -14% 0 auto;
}
/* 横線 */
.color_v li .plus-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #4a2c21;
  transform: translate(-50%, -50%);
}
/* 縦線 */
.color_v li .plus-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #4a2c21;
  transform: translate(-50%, -50%);
}
.txt_box {
    letter-spacing: 1.5px;
    margin: 12% auto 5%;
}
.txt_box p {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 500;
}
.txt_box .color_f {
    font-size: 1.7rem;
    font-weight: 600;
}

@media screen and (min-width: 1024px) {

.midashi {
    min-height: 530px;
    height: 70vh;
}
.midashi::before {
    min-height: 530px;
    height: 70vh;
}
}

@media screen and (min-width: 1600px) {

.midashi {
    min-height: 590px;
    height: 80vh;
}
.midashi::before {
    min-height: 590px;
    height: 80vh;
}
}

/*-----------各商品-------------*/
.m_item_wrap.item2 {
    background: linear-gradient(#fbbfa5 45%, #ffdfca 60%, #f8c9c3);    
}
.m_item_wrap.item2 h1 {
    top: 56%;
}
.item2 .main_icon {
    background-color: #c187afc7;
}
.item2_img {
    width: 80%;
    margin: 0 10% 5%;
}
.item2 .color_v_wrap {
    margin-top: -28%;
}
.item2 .txt_box p span {
    font-size: 5rem;
    letter-spacing: 0;
}
.item2 .color_v:first-of-type {
    justify-content: center;
}
/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
/* スライド3枚のグループ */
.multi_img {
animation: scroll-left 15s infinite linear 0.5s both;
  display: flex; /* スライド3枚を横並び */
    padding: 0;
}
/* スライド */
.multi_img li {
    width: calc(100vw / 1.7);
    padding: 4px;
    background: linear-gradient(#f6c7c1, #ffdfc9);
    margin: 0 3px;
}
/* スライドの画像 */
.multi_img li img {
  display: block;
  width: 100%;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* hover(マウスオーバー)で一時停止 */
.slider-wrapper:hover .multi_img {
  animation-play-state: paused;
}

.item3 .main_icon {
    background-color: #989fcfd4;
}
.m_item_wrap.item3 h1 {
    top: 36%;
}
.m_item_wrap.item3 {
    color: #4c4948;
    background: linear-gradient(#d2def2 60%, #f2f7fc);
}
.item3 .txt_box {
    margin-top: -17%;
    z-index: 30;
    position: relative;
}
.item3 .color_f {
    color: #989fcf !important;
}
.item3 .txt_box .color_f {
    margin-top: 3%;
}
.item3 .btn a {
    background: linear-gradient(90deg, #cdcfe8, #989fcf)!important;
}
.hinyari {
    width: 80%;
    margin: 10% auto; 
}
.hinyari >img:first-of-type {
    width: 38%;
}
.hinyari >img:last-of-type {
    width: 80%;
    margin: -20% 8% 0 12%;
}

.m_item_wrap.item4 {
    background: linear-gradient(#f8d8cb 40%, #ffdfca 60%, #f8c9c3);
}
.item4 .txt_box {
    margin-top: -15%;
    z-index: 30;
    position: relative; 
}
.item4_m {
    width: 78%;
    background: linear-gradient(#f6c7c1, #ffdfc9);
    padding: 2%;
    margin: 10% auto;
}

.posi_ab {
	position: absolute;
	z-index: 2;
}

@media screen and (min-width:389px){
.maru_ex >div {
transform: scale(1.05)   
}
}

@media screen and (min-width:760px){
.new_icon {
    padding: 6% 5% 5%;
}
.multi_img li {
    width: calc(100vw / 6); 
}
}



/*---------クレジット----------*/
.m_credit {
    margin: 5% auto;
    font-size: 1.8rem;
    width: 75%;
    line-height: 1.5;
    letter-spacing: 1.5px;
}
.m_credit .price {
    margin: 2% auto 10%;
}
.m_credit .price .color_f, .popup_slide_wrap .color_f {
    border: 1px solid;
    font-size: 1.3rem;
    padding: 0 3% 1%;
    margin-right: 3%;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: 500;
}
.popup_slide_wrap .color_f {
    padding-bottom: 0.5%;
}
.btn {
    margin: 5% auto 0;
}
.btn a, .look_btn {
    display: block;
    padding: 6% 0;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    -webkit-text-stroke: 0.1px #fff;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #ecb08c, #ea837c);
    letter-spacing: 2.5px;
}

@keyframes image{
  from {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}
.btn a:after {
    content: "";
    position: absolute;
    top: 40%;
    right: 10%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #fff;
    border-top: 1.5px solid #fff;
    transform: translateX(5px) rotate(45deg);
}

@media screen and (min-width:760px){
.btn a, .look_btn {
    font-size: 1.7rem;
}
.btn a:after {
    width: 10px;
    height: 10px; 
}
}


/*---------クレジット----------*/

/*---------LOOK----------*/
/*背景固定*/
.color_btn:hover {
	cursor: pointer;
}
.color_btn li{
    position: absolute;
    width: 16%;
	list-style-type:none;
}
.color_btn li::after {
    content: "";
    position: absolute;
    right: 36%;
    top: 100%;
    width: 1px;
    height: 55px;
    background-color: #e8b592;
    transform: rotate(-53deg);
    transform-origin: top left;
}

.item_wrap {
    background: #fcefed;
    padding: 5% 0 11%;
    margin-top: -11%;
    border-top-left-radius: 22px;
    position: relative;
}
.item_wrap p {
    margin-left: 5%;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    color: #e5af89;
}


@media screen and (max-width:389px){

}
@media screen and (min-width:430px){

}

@media screen and (max-width:759px){

}

@media screen and (min-width:760px){

}


/*---------モーダルウィンドウ----------*/
.modal-window {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #a7775a85;
    z-index: 99;
    overflow-y: scroll;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

 .modal-wrap {
    overflow: hidden;
    position: relative;
    top: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    background-image: url(../img/slide_bk.png);
    background-size: cover;
    background-repeat: no-repeat;
}
 .modal-window-open {
  height: 100vh;
  overflow-y: hidden;
}
 .popup_slide_wrap {
  position: relative;
}
 .popup_slide_wrap ul {
    padding: 15% 10% 16%;
 }
  .popup_slide_wrap ul li img {
    width: 60%;
    margin: 5% auto;
    padding-right: 10%;
 }
 .item2 .popup_slide_wrap ul li img{
    width: 44%;
    margin: 5% auto;
    padding-right: 0;
 }
.popup_slide_wrap ul li >p:first-of-type {
    margin-top: 8%;
}
.popup_slide_wrap .btn a {
    background: linear-gradient(-90deg, #ea837c, #ecb08c);
}
.popup_slide_wrap .modal_item {
	font-weight: 500;	
}
.popup_slide_wrap .modal_color {
    margin: 3% 0 4%;
    font-size: 1.25rem;
}
.popup_slide_wrap .item_icon {
    width: 88%;
    letter-spacing: 0.2rem;
    padding-top: 3%;
    border: 1px solid;
    color: #e0b394;
}
.pink_look .popup_slide_wrap .item_icon {
    color: #dd86a4;
}
.modal_model {
    width: 80%;
    margin: 7% auto;
}
.img_notes {
    margin-top: -5%;
    font-size: 1.1rem;
    color: #e1ad8a;
    margin-bottom: 3%;
}
.modal_txt {
    padding: 0 5%;
   line-height: 1.8;
    font-size: 1.2rem;
}
.modal_txt >p {
	letter-spacing: 0;	
}
.modal_txt .price {
    font-size: 2rem;
    margin: 5% 0 0;
    letter-spacing: 1px;
}
.modal_txt .btn{
    padding: 3% 3% 10%;
}
.free_icon {
	padding: 0.5% 2% 0;
    border: solid 0.5px;
    margin-left: 2%;
    vertical-align: middle;
}
.popup_slide_wrap .slick-prev,.popup_slide_wrap .slick-next {
    top: 36%;	
}
.popup_slide_wrap .slick-prev::before, .popup_slide_wrap .slick-next::before {
    border-right: 2px solid #f75959;
    border-top: 2px solid #f75959;
}
.popup_slide_wrap .slick-prev {
    left: 14%!important;	
}
.popup_slide_wrap .slick-next {
    right: 14% !important;	
    top: 37% !important;
}

.close_position {
    position: absolute;
    top: 13%;
    z-index: 5;
    right: 12%;
    text-align: center;
}
 .slide_close, .look_modal-close span {
    display: inline-block;
    vertical-align: middle;
    background: #4a2c21;
    border-radius: 0.1em;
    position: relative;
    transform: rotate(45deg);
    line-height: 1;
    width: 2em;
    height: 0.1em;
}
 .slide_close::before, .look_modal-close span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
 .slide_close:hover, .look_modal-close span:hover {
  opacity: 0.6;
  cursor: pointer;
}
.close_bottom {
    bottom: 7%;
    top: auto!important;
    left: 50%;
    transform: translateX(-50%);
}
.close_bottom span {
    width: 1.6rem;
} 


.slick-prev, .slick-next {
    z-index: 20!important;
}

.slick-prev:before,
.slick-next::before{
    position:absolute;
    content: ""!important;
    width:10px;
    height:10px;
    border-right: 2px solid #f75959;
    border-top: 2px solid #f75959;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.slick-prev {
    transform: rotate(180deg)!important;
}

.look_wrap .slick-prev {
    left: -8%;
}
.look_wrap .slick-next {
    right: -8%; 
    top: 52%;
}

@media screen and (max-width:389px){
.close_position {
    top: 15%;
}
}
@media screen and (min-width:760px){
.modal-wrap {
    width: 30%;
}

.popup_slide_wrap ul {
    padding: 22% 10% 26%;
}
}
/*---------モーダルウィンドウ----------*/
.look_wrap {
    padding: 10% 7%;
}

.look_bg {
    padding-top: 0;
    background: #f8c9c3;
}

.container {
    margin: -4% auto 0;
  position: relative;
    padding: 1.5%;
    background: linear-gradient(#ea837c, #efaf89);
}
.thumbnail {
    position: absolute !important;
    top: -20%;
    right: 0;
    width: 50%;  
}
.thumbnail .slick-track {
  transform: unset !important;
}
.thumbnail-img {
  opacity: 1;
  transition: opacity .3s linear;
  margin-right: 3%;
}
.thumbnail .thumbnail-img:nth-last-of-type {
    margin-right: 0;;
}
.thumbnail .slick-current {
  opacity: 0.3;
}
.look_wrap {
    z-index: 20;
    background-color: #f9ebe9;
}
.look_wrap >p {
    font-size: 2.5rem;
}
.look_wrap >p span {
    font-size: 6rem;
    font-weight: 100!important;
}

.tap{
    width: 56px;
    height: 56px;
    line-height: 56px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    bottom: 5%;
    right: 5%;
    z-index: 3;
    letter-spacing: 0.3rem;
    padding: 1% 0 0 1%;
}
.look_wrap .txt_box {
    margin-top: 5%;
}
.look_btn {
    font-weight: 300;
    width: 80%;
    margin-bottom: 10%;
    font-size: 2.2rem;
    padding: 2% 0;
    position: relative;
}

.look_btn .plus-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 31%;
    right: 9%;
}
/* 横線 */
.look_btn .plus-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
/* 縦線 */
.look_btn .plus-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}


.look_modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #a7775a85;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 99;
}
/*モーダル本体の擬似要素の指定*/
.look_modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.look_modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.look_modal-body{
position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    width: 98.5%;
    background-image: url(../img/look_bk.png?10000);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 10% 0;
    top: 0;
}
/*モーダルを閉じるボタンの指定*/
.look_modal-close{
  position: absolute;
    top: 9%;
    z-index: 5;
    right: 12%;
    text-align: center;
}

.look_modal-content {
    padding: 15% 13%;
}

.look_modal-content >ul:last-of-type {
    border-bottom:0;   
}

.look_modal-content ul{
    padding: 0;
    margin: 0;
    justify-content: center;
    border-bottom: 1px solid #4a2c2182;
}
.look_modal-content ul li {
    margin: 5% 2%;
}
.look_modal-content ul li img {
    height: 140px;
    width: auto;
}
.look_modal-content ul:nth-of-type(2) li img {
    height: 250px;

}
.look_modal-content ul:nth-of-type(3) li img {
    height: 200px;
}

.look2_txt {
    font-size: 1.6rem!important;
    text-align: center;
}

@media screen and (max-width:389px){
.look_modal-content {
    padding: 15% 10%;
}
}

@media screen and (min-width:1054px){
.look_modal-body {
    width: 30%;
    padding: 5% 0;
}

}


/*---------LOOK----------*/
.end {
    z-index: 10;
}

.posi_ab.end_logo {
    z-index:10;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*-----------------------メイン------------------------*/




/* ETVOS HEADER */
/* line 591, ../sass/css_18lp.scss */
#logo {
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
	    z-index: 5;
    position: relative;
}

/* line 599, ../sass/css_18lp.scss */
#logo img {
    width: 120px;
    margin-top: 8px;
}

/* line 603, ../sass/css_18lp.scss */
#logo a {
display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
}

@media screen and (max-width: 450px) {
  /* line 610, ../sass/css_18lp.scss */
  #logo img {
      width: 100px;
    padding-top: 0;
    margin-top: 0;
  }
}
/*////////////////*/
/* ETVOS FOOTER */
/* line 619, ../sass/css_18aw_lp.scss */
footer {
  padding-top: 40px !important;
  text-align: center !important;
background-color: #dcd6d8;!important;
position: relative;
z-index: 1;
}

/* line 625, ../sass/css_18aw_lp.scss */
footer a {
  color: #000!important;
}

/* line 629, ../sass/css_18aw_lp.scss */
footer a:link {
  color: #000!important;
}

/* line 633, ../sass/css_18aw_lp.scss */
footer a:visited {
  color: #000!important;
}

/* line 637, ../sass/css_18aw_lp.scss */
footer a:hover {
  color: #000!important;
}

/* line 641, ../sass/css_18aw_lp.scss */
footer a:active {
  color: #000!important;
}

/* line 645, ../sass/css_18aw_lp.scss */
footer .sns_area {
  width: auto;
  overflow: hidden;
  margin: 0 auto 20px auto;
  text-align: center;
}

/* line 652, ../sass/css_18aw_lp.scss */
footer .sns_area .twitter-btn {
  display: inline-block;
  width: 100px;
}

/* line 657, ../sass/css_18aw_lp.scss */
footer .sns_area .fb-share-button {
  display: inline-block;
  width: 100px;
}

footer .sns_area .line-share-button{
  display: inline-block;
  width: 100px;
}


/* line 662, ../sass/css_18aw_lp.scss */
footer .f_list {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
    padding: 0;
}

/* line 669, ../sass/css_18aw_lp.scss */
footer .f_list li {
  display: -moz-inline-box;
  display: inline-block;
  padding-right: 10px;
}

@media screen and (max-width: 450px) {
  /* line 676, ../sass/css_18aw_lp.scss */
  footer .sns_area {
    width: auto;
    overflow: hidden;
    margin: 0 auto 20px auto;
    text-align: center;
  }

  /* line 684, ../sass/css_18aw_lp.scss */
  footer .sns_area .line-share-button {
    display: inline-block;
    width: 82px;
  }

  /* line 688, ../sass/css_18aw_lp.scss */
  footer .f_list {
    font-size: 1.2rem !important;
  }

  /* line 693, ../sass/css_18aw_lp.scss */
  #copyright {
    font-size: 0.5rem !important;
  }
}
/*////////////////*/




