@charset "utf-8";

/* ---------------------------------------------------------
font-face
----------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald|Oswald:lighter|Oswald:medium');

@font-face {
  font-family:UniqloProBold;
  src:url(/ines18fw/common/fonts/UniqloProBold.woff);
}
@font-face {
  font-family:UniqloProRegular;
  src:url(/ines18fw/common/fonts/UniqloProRegular.woff);
}
@font-face {
  font-family:UniqloProLight;
  src:url(/ines18fw/common/fonts/UniqloProLight.woff);
}

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
img{vertical-align: bottom;}

body{
  color: #333333;
  font-family: UniqloProLight, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', meiryo, sans-serif;
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------
Common parts
----------------------------------------------------------*/
span.arrow:before {
  content: '';
  background: url(/ines18fw/common/sp/images/arrow.png) left center no-repeat;
  background-size: 14px 14px;
  display: inline-block;
  height: 14px;
  width: 14px;
  padding-right: 3px;
  position: absolute;
  top: -2px;
  left: -18px;
}
#main .arrow{
  display: inline-block;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
#main .dot{
  width: 15px;
}
/* ---------------------------------------------------------
layout
----------------------------------------------------------*/
#content{
  overflow: hidden;
  padding-top: 45px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
#content img{
  vertical-align: top;
}
#main{
  padding: 0;
  background-color: #fff;
}
a{
  color: #333333;
  display: inline-block;
  text-decoration: none;
}
/* clearfix */
.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/* ---------------------------------------------------------
intro
----------------------------------------------------------*/
.intro{
  margin-top: 45px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5000;
}
.introWrap div{
  position: relative;
}
.introWrap div > img{
  width: 100%;
  height: auto;
  opacity: 0.1;
  vertical-align: bottom;
  transition: opacity 1s;
}
.introWrap .txtWrap{
  padding: 30px;
  box-sizing: border-box;
  display: table;
}
.introWrap .txtWrap>*{
  display: table-cell;
  vertical-align: middle;
}
.introWrap .txtWrap>*:last-child{
  padding-left: 30px;
}
.introWrap h2 img{
  width: 105px;
  height: auto;
}
.introWrap .lead{
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 13px;
}
.introWrap .txt{
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: lighter;
}
.introWrap .animationWrap{
  width: 1px;
  height: 0;
  background-color: #ff0000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
.nav-INES{
  font-family: 'Oswald', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-size: 0;
  text-align: center;
  background-color: #f4f4f4;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.nav-INES h1{
  vertical-align: middle;
  display: inline-block;
  width: 33%;
  min-width: 120px;
  text-align: left;
}
.nav-INES h1 img{
  height: 15px;
  width: auto;
}
.nav-INES h2{
  display: inline-block;
  font-size: 12px;
  color: #333333;
  width: 33%;
}
/* title */
.nav-INES .title{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px;
  transform: translate(-50%, -50%);
}
.nav-INES nav{
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 50;
  width: 100%;
  padding-bottom: 7px;
  font-size: 14px;
  text-align: center;
  background-color: rgba(244,244,244,.95);
  display: none;
}
.nav-INES nav a{
  width: 100%;
  padding: 20px 0 17px;
  color: #333333;
  font-weight: 500;
}
.nav-INES .navTrigger{
  position: absolute;
  top: 3px;
  right: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 11px 10px;
  box-sizing: border-box;
}
.nav-INES .icon-hamburger{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
  box-sizing: border-box;
  transition: all 0.3s;
}
.nav-INES .icon-hamburger:before{
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
.nav-INES .icon-close{
  position: absolute;
  top: 19px;
  left: 8px;
  opacity: 0;
  transition: all 0.3s;
}
.nav-INES .icon-close:before,
.nav-INES .icon-close:after{
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 23.5px;;
  height: 2px;
  background-color: #333333;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.nav-INES .icon-close:before{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-INES .icon-close:after{
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nav-INES nav span{
  position: relative;
  display: inline-block;
}
/* underline */
.nav-INES nav span:before{
  content: '';
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background-color: #ff0000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav-INES nav a.current span{
  color: #b5b6b6;
}
.nav-INES nav a.current span:before{
  width: 100%;
  background-color: #b5b6b6;
}

/* nav is opened*/
.navTrigger.is-active .icon-hamburger{
  opacity: 0;
}
.navTrigger.is-active .icon-close{
  opacity: 1;
}
.globalnav{
  height: 70px;
}
.globalnav img{
  padding: 10px;
}
/* ---------------------------------------------------------
top-mainImg
----------------------------------------------------------*/
.top-mainImg > img{
  width: 100%;
  height: auto;
}
.top-mainImg .txtWrap{
  padding: 30px;
  box-sizing: border-box;
  display: table;
}
.top-mainImg .txtWrap>*{
  display: table-cell;
  vertical-align: middle;
}
.top-mainImg .txtWrap>*:last-child{
  padding-left: 30px;
}
.top-mainImg h2 img{
  width: 105px;
  height: auto;
}
.top-mainImg .lead{
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 13px;
}
.top-mainImg .txt{
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
/* ---------------------------------------------------------
Looling for comfort in my size
----------------------------------------------------------*/
.lookingfor{
  display: table;;
  margin-bottom: 40px; /*　XXX */
  background-color: #fff;
  width: 100%;
}
.lookingfor .imgWrap{
  padding-right: 30px;
  margin-bottom: 20px;
}
.lookingfor .imgWrap img{
  width: 100%;
}
.lookingfor .txtWrap{
  padding: 0 30px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}
.lookingfor h2{
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
}
.lookingfor .txt{
  margin-top: 10px;
  line-height: 1.4;
}
/* ---------------------------------------------------------
TOP: INES DE LA FRESSANGE / Lookbook
----------------------------------------------------------*/
.sec {
  margin-bottom: 60px;
  background-color: #fff;
}
.sec .imgWrap{
  vertical-align: middle;
  margin-bottom: 30px;
  position: relative;
}
.sec .imgWrap > img{
  width: 100%;
}
.sec .imgWrap .switch-02{
  position: absolute;
  top: 0;
  left: 0;
  animation-name: switchAnimation;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes switchAnimation {
  0%{
    opacity: 0;
  }
  5%{
    opacity: 1;
  }
  50%{
    opacity: 1;
  }
  55%{
    opacity: 0;
  }
}

.sec .txtWrap{
  padding: 0 30px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}
.sec h2{
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1.2;
}
.sec h3{
  font-family: "UniqloRegularLight", -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif !important;
  margin-top: 25px;
  margin-bottom: 45px;
  font-size: 23px;
  line-height: 1.2;
}
  /* TOP INES section only */
.sec.sec55to45 h2{
  font-size: 14px;
}
.sec.sec55to45 .imgWrap{
  padding-left: 30px;
}
.sec.sec55to45 {
  margin-bottom: 40px;
}
.sec .txt{
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.5;
}
/* Lookbook / Product Linuup / Store top */
.sec.mainImg {
  width: 100%;
  margin-bottom: 60px;
}
.sec.mainImg .imgWrap{
  width: auto;
}
.sec.mainImg .txtWrap{
  padding: 0 30px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}
/* Lookbook top */
.sec.lookbook-mainImg .imgWrap{
  width: auto;
}
.sec.lookbook-mainImg .txtWrap{
  padding: 0 50px 0 10px;
  box-sizing: border-box;
  text-align: left;
}
#main .model-copytext {
  font-family: "UniqloRegular", -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif !important;
}
.sec .model-caption .product-position{
  font-size: 12px;
  margin-bottom: 12px;
}
.sec .model-caption a{
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  text-decoration: underline;
  color: #7f7f7f;
}
/* underline */
.sec .model-caption a > span{
  color: #000;
}
.sec .model-caption a + .product-position{
  margin-top: 24px;
}

/* ---------------------------------------------------------
TOP: Product Lineup / Lookbook
----------------------------------------------------------*/
.lineupLookbook{
  margin-bottom: 64px;
  background-color: #fff;
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0;
}
.lineupLookbook > .lineup,
.lineupLookbook > .lookbook{
  position: relative;
  background-color: #f4f4f4;
  padding: 0;
}
.lineupLookbook h2{
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lineupLookbook .lineup{
  vertical-align: middle;;
  text-align: center;
  margin: 0 15px 15px;
}
.lineupLookbook > .lineup .txtWrap {
  margin-bottom: 30px;
}
.lineupLookbook > .lineup .txtWrap img{
  margin: 20px 0;
  width: 54px;
  height: auto;
}
.lineupLookbook > .lineup > img,
.lineupLookbook > .lookbook > img{
  width: 100%;
}
.lineupLookbook > .lookbook .lead{
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  margin: 30px 0 10px;
}
.lineupLookbook > .lookbook{
  vertical-align: top;
  margin: 0 15px;
}
.lineupLookbook > .lookbook .txtWrap{
  padding: 50px 30px;
}
.lineupLookbook .txt{
  margin-top: 20px;
  padding: 0 30px;
  line-height: 1.4;
}

/* ---------------------------------------------------------
Available Stores / Check for updates
----------------------------------------------------------*/
.storesUpdates{
  margin: 50px auto;
  padding: 0 30px;
}
#main .storesUpdates .arrow{
  margin-top: 18px;
}
.storesUpdates .stores,
.storesUpdates .updates{
  position: relative;
  padding: 0;
  text-align: center;
  vertical-align: top;
}
.storesUpdates .updates-inner{
  margin: 50px auto 0;
}
.storesUpdates .txtWrap img{
  width: 100%;
  height: auto;
}
.icon-box{
  width: 40%;
  display: inline-block;
  vertical-align: top;
}
.icon-box .icon-wrap{
  display: block;
  width: 90px;
  height: 90px;
  border-radius:65px;
  background-color: #f4f4f4;
  position: relative;
  margin-bottom: 20px;
}
.icon-box .serviceName{
  line-height: 1.2;
}
.icon-box .icon-wrap > img{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0; margin: auto;
}
.icon-box .icon-wrap > img[src*=icon-email]{
  width: 35px;
  height: auto;
}
.icon-box .icon-wrap > img[src*=icon-app]{
  width: 23px;
  height: auto;
}
.storesUpdates h2{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
}
/* ---------------------------------------------------------
Follow us
----------------------------------------------------------*/
.followus{
  background-color: #f4f4f4;
  position: relative;
  border-bottom: none;
  overflow: hidden;
  text-align: center;
}
.followus h2{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
}
.followus-inner {
  margin: 50px auto;
}
.followus .linkList{
  display: inline-block;
  vertical-align: middle;
}
/* sns*/
.followus .linkList{
  padding-top: 0;
}
.followus .linkList li {
  width: 45px;
  display: inline-block;
}
.followus .linkList li:not(:first-child) {
  margin-left: 30px;
}
.serviceName{
  position: relative;
}
.followus .linkList img{
  width: 33px;
  height: auto;
  margin-bottom: 10px;
}

/*colorChip*/
.colorChip{
  width: 100%;
  margin-bottom: 5px;
  font-size: 0;
  line-height: 1;
}
.colorChip li{
  display: inline-block;
  width: 15.2%;
  height: 10px;
  margin-right: 3%;
}
.colorChip .color-beige{
  background-color: #e6e3d4;
}
.colorChip .color-black{
  background-color: #23241f;
}
.colorChip .color-red{
  background-color: #fa2c30;
}
.colorChip .color-blue{
  background-color: #17334b;
}
/*colorChip over 5*/
.colorChip.is-more{
  position: relative;
  text-align: left;
}
.colorChip.is-more:before,
.colorChip.is-more:after{
  content: '';
  position: absolute;
  display: block;
  background-color: #808080;
}
.colorChip.is-more:before{
  top: 4px;
  right: 3px;
  width: 8px;
  height: 2px;
}
.colorChip.is-more:after{
  top: 1px;
  right: 6px;
  width: 2px;
  height: 8px;
}
.products .colorChip li:nth-child(n+6){
  display: none;
}

/*modal*/
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 100;
  background-color: #fff;
  display: none;
}
.modal-close{
  position: fixed;
  top: 3px;
  right: 5px;
  display: block;
  width: 40px;
  height: 40px;
  transform: translate3d(0, 0, 0);
}
.modal-close:before,
.modal-close:after{
  position: absolute;
  top: 19px;
  left: 8px;
  content: '';
  display: block;
  width: 23.5px;;
  height: 2px;
  background-color: #000;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.modal-close:before{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal-close:after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .product-img{
  width: 100%;
  margin-bottom: 10px;
}
.modal .colorChip{
  text-align: left;
  padding: 0 7.5px;
  margin-bottom: 7.5px;
  box-sizing: border-box;
}
.modal .colorChip li{
  width: 30px;
  height: 30px;
  margin: 0 7.5px 7.5px;
  cursor: pointer;
}
.modal .modal-txt{
  margin: 0 15px;
  text-align: left;
}
.modal .name{
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;

}
.modal .detail{
  margin-bottom: 5px;
}
.modal .priceUnit{
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal .price{
  font-size: 20px;
}
.modal .size{
  margin-bottom: 12px;
}
.modal .available{
  text-align: right;
  margin-left: 30px;
  color: #808080;
}
.modal .annotation{
  padding-bottom: 12px;
  font-size: 10px;
  line-height: 1.1;
}
.modal .btn-linkProduct{
  padding: 3.5px 16px;
  font-size: 14px;
  border: 1px solid #000;
}
.modal .btn-linkProduct.is-hide{
  display: none;
}
.noteTxt{
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
.noteTxt2{
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
.footer {
  margin: auto 16px;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
}
.footer > a {
  text-decoration: underline;
  text-decoration-color: #999999;
}
.footer > a > img {
  width: 25px;
  height: 25px;
  margin-bottom: 10px;
}
/* color of underline */
.footer > a > p >span {
  color: #333333;
}
.footer > p {
  margin-top: 25px;
}

/* ---------------------------------------------------------
back-top
----------------------------------------------------------*/
.pagetop{
  position: fixed;
  right: 15px;
  bottom: 15px;
}
.pagetop a {
  padding: 10px;
  margin: -10px;
}
.pagetop img{
  width: 42px;
  height: 42px;
}

/* ---------------------------------------------------------
in view animation
----------------------------------------------------------*/
.navPlaceholder {
  content: '';
}
.invisible{
  opacity: 0;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
  transition-delay: 0.2s;
}
.visible {
  opacity: 1;
}
.toLeft.invisible{
transform: translate(50px,0);
}
.toLeft.visible{
transform: translate(0,0);
}
.toRight.invisible{
transform: translate(-50px,0);
}
.toRight.visible{
transform: translate(0,0);
}
.toUp.invisible{
transform: translate(0, 50px);
}
.toUp.visible{
transform: translate(0, 0);
}
.toDown.invisible{
transform: translate(0, -50px);
}
.toDown.visible{
transform: translate(0, 0);
}
.modal .available.is-hide,
.modal .btn-linkProduct.is-hide{
  display: none;
}
