@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}


html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}

body{
  color: #111;
  line-height: 1.8em;
  font-size: 13px;
  font-family: 'fot-matisse-pron', sans-serif; 
}

img{
  max-width: 100%;
  border: 0;
}

ul,ol{
  list-style-type: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

img, input, select, textarea { 
  vertical-align: middle;
}

a {
  color: #111;
  text-decoration: none;
}
a:hover {
  color: #111;
}



/*
視覚的に隠しつつスクリーンリーダーでは読み上げられる。
display:none, visibility:hidden, height:0, width:0 ではうまく機能しない（視覚・聴覚両方で該当要素は利用できない）
（インクルーシブHTML P.75より）
*/

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/*
=========================================
  common
=========================================
*/
/*-----body-----*/
.container{
  max-width: 1000px;
  margin: 0 20px;
}


/*-----header-----*/
.header-inner{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#header-logo img{
  width: 20%;
  height: 12%;
  margin: 17px auto;
  display: none;
}

.mainvisual::before{
position: absolute;
top: .7em;
left: 35%;
background: url('../images/iwasa-sp-mv-logo.png') no-repeat;
width: 50%;
height: 12%;
content: "";
display: block;
z-index: 999;
}

/*-----navigation-----*/
#g-nav img{
  display: block;
  width: 35px;
  margin: 10px 0 0 10px;
}

#g-nav{
  position: absolute;
  top:0;
  left: 0;
  z-index: 99;
}

#g-nav ul li{
  display: block;
  margin-top: 50px;
}

#g-nav ul li a{
  font-size: 1.4em;
  letter-spacing: 0.03em;
  font-family: 'futura-pt', sans-serif;
  font-weight: 500;
}

#g-nav ul.subs{
  display: block;
  background-color: rgba(255, 255, 255, 0);
}

#g-nav ul.subs a{
  font-size: 1.4em;
}


.g-nav-btn::before{
position: absolute;
top: 6px;
left: 35%;
background: url('../images/iwasa-sp-logo.png') no-repeat;
width: 100%;
height: 12%;
content: "";
display: block;
z-index: 999;
}





/* -----g-nav animation----- */
.top-page .g-nav-list{
  background-color: rgba(255, 255, 255, 0.9);
  width: 315px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 60px;
  transform: translateX(-375px);
  transition: 0.3s ease-out;
  position: fixed;
}


.g-nav-list{
  background-color: rgba(255, 255, 255, 0.9);
  width: 315px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 60px;
  transform: translateX(-375px);
  transition: 0.3s ease-out;
}

.g-nav-list.open {
  transform: translate(0);
  transition: 0.3s ease-out;
} 


/* -----menu-btn----- */
.top-page .g-nav-btn{
    width: 30px;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 999;
  position: fixed;
}



.g-nav-btn {
  width: 30px;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 999;
}
.g-nav-btn:hover {
  cursor: pointer;
}

.top-page .g-nav-btn span{
  background: #686b6b;
  width: 25px;
  height: 2px;
  position: absolute;
  transition: 0.3s ease-out;
}

.g-nav-btn span {
  background: #111;
  width: 25px;
  height: 2px;
  position: absolute;
  transition: 0.3s ease-out;
}
.g-nav-btn span:nth-of-type(1) {
  top: 15px;
}
.g-nav-btn span:nth-of-type(3) {
  bottom: 15px;
} 

.g-nav-btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
  transition: 0.3s ease-out;
}
.g-nav-btn.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
  transition: 0.3s ease-out;
}
.g-nav-btn.active span:nth-of-type(2) {
  opacity: 0;
} 

/*-----page title-----*/
.title{
  font-family: 'minion-pro', serif;
  font-size: 2em;
  letter-spacing: 0.1em;
  text-align: center;
}

/*-----footer-----*/
#footer-inner{
 display: none;
}

#footer small{
  max-width: 375px;
  background-color: #333;
  color: #ddd;
  letter-spacing: 0.1em;
  font-size: 0.8em;
  font-family: "Arial";
  font-weight: bold;
  text-align: center;
  padding: 10px;
  display: block;
}

#footer small span{
  letter-spacing: 0;
}

/* -----top btn----- */
.back-top img{
  text-align: right;
}

.back-top a{
    position: fixed;
    right:0;
    bottom:10px;
    transition: 1s;
}
.back-top a:hover{ 
    opacity: 0.75;
}


/*-----pc hide-----*/
.pc-hide{
  display: block;
}

.sp-hide{
  display: none;
}

/*
=========================================
  loading
=========================================
*/
.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 100px;
}

/*
=========================================
  base
=========================================
*/


.mainvisual{
  display: block;
  position: relative;
  margin-bottom:100px;
}

.swiper-container{
  position: relative;
  overflow: hidden;
}

.pc-hide img{
  display: block;
  width: 100vw;
  height: 80vh;
}

.catch-sp-text{
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 2em;
  font-weight: normal;
  color: #111;
  text-align: center;
  margin-top: 100px;
  font-family: 'dnp-shuei-mincho-pr6n', sans-serif;
  opacity: 1;
}


/* -----mv slideshow----- */
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img { /* 10秒かけて拡大させる */
  -webkit-animation: zoomUp 5s linear 0s;
  animation: zoomUp 5s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


/*-----title js-----*/

 .fadein{
transition: .7s ease-in-out ;
}


/*-----about-----*/
.about-sec{
  margin: 0 auto;
  text-align: center;
}

.about-sec img{
  width:25%;
  margin-bottom: 30px;
}

.about-sec h2{
  font-size: 1.4em;
  letter-spacing: 0.09em;
  padding-bottom: 30px;
  font-weight: normal;
  font-family: 'dnp-shuei-mincho-pr6n', sans-serif
}

.about-sec-text{
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 2em;
  text-align: left;
  padding: 0 6%;
}

.readmore{
  padding-left: 70%;
  font-size: 0.8em;
  letter-spacing: 0.01em;
  margin-top: 10px;
  position: relative;
}

/*-----top collection-----*/
.top-collection-sec{
  position: relative;
  padding-bottom: 60px;
  margin-top: 80px;
  margin-bottom: 80px;
}


.top-collection-bg{
  position: absolute;
  top: 0;
  left: 50%;
  width: 49.95%;
  height: 87%;
  display: block;
  background-color: #f4ece8;
  z-index: -1;
}

.top-collection-sec h2{
  font-family: 'minion-pro', serif;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  font-weight: normal;

}

.slick-slide {
  transition: .3s ease;
  transform: scale(.85);
}
.slick-slide.slick-current ,
.slick-slide.is-active-next, .slick-current {
  transform: scale(1);
}

.slick-slide:not(.slick-current) {
  opacity: 0.7;
}
/*
=========================================
  COLLECTION drasticcrazy cava
=========================================
*/
.swiper-container{
  position: relative;
}

.sp-insta-icon{
  padding: .7em;
  padding-left: 88%;
}

.sp-insta-icon img{
width: 32px;
height: 32px;
}

.collection-mv img{
  width: 100vw;
}

.collection-sec{
  margin: 40px 20px;
}

.collection-sec h2{
  font-family: 'minion-pro', serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  padding-bottom: 20px;
  font-weight:  normal;

}

.collection-sec h2::first-line{
  font-size: 1.5em;
  letter-spacing: 0.03em;
  text-indent: 1em;
}

.collection-sec p{
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

.collection-sec p + p{
  padding-top: 1em;
}

.collection-item h3{
  font-family: 'minion-pro', serif;
  font-size: 1.4em;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.item-list ul li{
  padding-bottom: 15px;
}

.item-list ul li:nth-child(even){
  padding-right: 0;
}

.item-list ul li:last-child{
  margin-bottom: 150px;
}

/*ホバーエフェクト*/
.item-list img {
  transition: .3s ease-in-out;
}
.item-list a:hover img {
  filter: grayscale(100%);
}

/*
=========================================
  COMPANY
=========================================
*/
#company img{
  padding-top: 50px;
  text-align: center;
}

#company h2{
  margin: 40px 0;
}


.company-sec{
  position: relative;
  text-align: center;
}

.company-sec-title{
  padding: 0 1em;
  font-family: 'minion-pro', serif;
  font-size: 1.2em;
  letter-spacing: 0.1em;
}

.section-heading{
  position: relative;
}

.company-sec-title::after{
content: "";
background: #f4ece8;
display: inline-block;
width: 65%;
height: .4em;
position: absolute;
top: 0.5em;
left: 50%;
transform: translateX(-50%);
}

.section-heading span{
  position: relative;
  z-index: 1;
  opacity: 0;
}

.company-sec-inner h3{
  font-size: 1.4em;
  letter-spacing: 0.05px;
  padding-bottom: 25px;
  font-weight:  normal;
}

.company-sec-inner p{
  font-size: .9em;
  letter-spacing: 0.1em;
  line-height: 2em;
  text-align: left;
  padding: 0 8%;
}


.history-list{
  font-size: .9em;
  letter-spacing: 0.1em;
  padding: 0 8%;
}

.history-list dt{
  float: left;
}

.history-list dd{
  padding-left:30%;
  text-align: left;
  margin-left: 30px; 
}

.history-list dt, .history-list dd{
  margin-bottom: 10px;
  font-size: .9em;
}

.history-list:last-of-type{
  margin-bottom: 0;
}

#information{
  margin-bottom: 100px;
}

.map{
 position: relative;
 padding-top: 100%;
}

.map iframe{
  position: absolute;
  left:0;
  top: 0;
  width: 100%;
  height: 100%;
}

.info-list{
  font-size: .9em;
  letter-spacing: 0.1em;
  padding: 0 8%;
}

.info-list dt{
  float: left;

}

.info-list dd{
  padding-left: 40%;
  text-align: left;
}

.info-list dt, .info-list dd{
  padding-bottom: 30px;
}

.info-list:first-of-type{
  padding-top:40px;
}

/*
=========================================
  STORES
=========================================
*/
#stores h2{
  margin: 80px auto;
}

#stores section{
  width: 62%;
  margin: 0 auto;
  border-bottom: 1px solid #999;
}

#stores section:last-child{
  border-bottom: none;
  margin-bottom: 100px;
}

#stores section + section{
  margin-top: 45px;
}

#stores section > p:last-child{
  margin-bottom: 50px;
}

#stores section h3{
  font-size: 1.2em;
  letter-spacing: 0.1em;
  line-height: 2em;
  font-weight:  normal;
}

#stores section p{
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 2em;
}

#stores a {
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(101,101,101,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: 0.5s;
}

#stores a:hover {
  background-position: -100% 0;
  color: #fff;
}


/*
=========================================
  CONTACT
=========================================
*/
#contact h2{
  margin: 80px auto;
}

#contact h3{
  font-size: 1.3em;
  letter-spacing: 0.1em;
  line-height: 2em;
}

#contact p{
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 2em;
}

#contact section{
  width: 62%;
  margin: 0 auto;
  border-bottom: 1px solid #999;
}

#contact section:last-child{
  border-bottom: none;
  margin-bottom: 100px;
}

#contact section + section{
  margin-top: 40px;
}

#contact section > p:last-child{
  margin-bottom: 30px;
}

.contact-btn{
  position: relative;
  font-size: 1em;
  letter-spacing: 0.1em;
  margin: 50px 0;
  text-align: center;
}


.contact-btn a::after{
  position: absolute;
  content: "";
  top: -50%;
  left: 0;
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  background: #EBECF0;
  box-shadow: 5px 5px 20px #c8c9cc, -5px -5px 20px #ffffff;
  z-index: -1;
}

.contact-btn a:hover::after{
  position: absolute;
  content: "";
  top: -50%;
  left: 0;
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  background: #EBECF0;
  box-shadow: inset 5px 5px 20px #c8c9cc,
  inset -5px -5px 20px #ffffff;
}

/*
=========================================
  COLLECTION ITEM
=========================================
*/
#drasticcrazy-item h2{
  font-family: 'minion-pro', serif;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  margin-top: 50px;
}

.topicpath ul{
  display: flex;
  margin-bottom: 60px;
}

.topicpath ul li{
  padding-right: 50px;
}

.topicpath ul li a{
  font-size: 1em;
  letter-spacing: 0.03em;
}

.topicpath ul li:first-child{
  position: relative;
}

.topicpath ul li:first-child::after{
  position: absolute;
  content: ">";
  top: 0;
  left: 80%;
}

.item-contents{
  padding-bottom: 100px;
}

.item-inner-left{
  margin-bottom: 100px;
}


#drasticcrazy-item h3{
  font-family: 'minion-pro', serif;
  font-size: 1.5em;
  letter-spacing: 0.08em;
  padding-top: 15px;
}

.item-inner-right p{
  font-size: .98em;
  letter-spacing: 0.03em;
}

.item-inner-right p + p{
  padding-bottom: 10px;
}

.item-color-list ul li{
  margin-top: 10px;
}


.back-btn{
  font-family: 'minion-pro', serif;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 100px;
  position: relative;
}

.back-btn a::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #111;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 45%;
  -webkit-transition: .4s ease 0s;
  transition: .4s ease 0s;
}

.back-btn a:hover::before {
  width: 10%;
}

.item-color-list ul{
  display: flex;
  justify-content: flex-start;
}

