@charset "utf-8";

/* 基本 */
body {
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-family: acumin-pro, sans-serif;
    font-family: 'Zen Old Mincho', serif;
}

/* リセット / ノーマライズ / サニタイズ */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}


/* ヘッダー */
.nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: 85%;
  top: 2.3vw;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8vw;
  line-height: 2.5vw;
  letter-spacing: 0.15em;
}

.nav ul li a:hover{
  color: #00C3FD
  }

.nav ul {
    list-style: none;
  }

/* モバイル用ヘッダー非表示 (PC) */
@media (min-width: 871px){
  .mobile {
    display: none;
  }
}


@media (max-width: 870px){
  .nav {
    display: none;
  }

  .mobile {
    display: block;
    height: 65px;
    background-color: #fff;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(255,255,255,0.8);
  }

  .mobile .container {
    display: flex;
    justify-content: space-between;
  }

  .mobile img {
    width: 210px;
    margin: 15px 0 0 20px;
  }

}

/* ナビゲーションボタン */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 40px;
  height: 14px;
  cursor: pointer;
  color: #000;
  margin: 25px 20px 0 0;
}

.nav-button::before,
.nav-button::after {
  content: '';
  display: block;
  height :2px;
  background-color: currentColor;
  transform: translateY(5px);
  transition: 0.3s ease-in-out;
}

.nav-button::before {
  transform: translateY(-5px);
  box-shadow: 0 6px currentColor;
}

/* ナビゲーション （閉じるボタン） */
.open .nav-button {
  z-index: 2000;
  color: #000000;
}

.open .nav-button::before {
  transform:
  translateY(1px) rotate(45deg);
  box-shadow: none;
}

.open .nav-button::after {
  transform:
  translateY(-1px) rotate(-45deg);
}


/* ナビゲーションメニュー:モバイル */
@media (max-width: 870px) {

html.open, .open body {
  height: 100%;
  overflow: hidden;
}

.open .form {
  display: none;
}

.open .nav_mobile {
  left: 0;
}

.header {
  position: relative;
}

.nav_mobile {
  position: absolute;
  display: flex;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.8);
  z-index: 1500;
  list-style: none;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 95px;
  letter-spacing: 0.15em;
  color: #000000;
  justify-content: center;
  align-items: center;
  transition: left 0.5s;
}

html, body {
  overflow-x: hidden;
}

.nav_mobile ul {
 list-style: none;
  }

}


/* ナビゲーションメニュー非表示 (PC) */
@media (min-width: 871px){
.nav-button {
 display: none;
 }

 .nav_mobile {
   display: none;
 }
}


/* 商品紹介 */

/* スライダーのためのcss */
.picture {
  width: 61%;
  margin: 0 2vw 0 0;
}

@media (max-width: 870px) {
  .picture {
    width: 100%;
    margin: 0 0 0 0;
  }
}


/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery{
	margin: 0 0 0.3vw 0;
}

@media (max-width: 870px) {
  .gallery{
  	margin: 0 0 5px 0;
  }
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
    z-index: 3;
    top: 49%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 0.2vw solid #fff;/*矢印の色*/
    border-right: 0.2vw solid #fff;/*矢印の色*/
    height: 1.6vw;
    width: 1.6vw;
}

@media (max-width: 870px) {
  .slick-prev,
  .slick-next {
      border-top: 2px solid #fff;/*矢印の色*/
      border-right: 2px solid #fff;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5% ;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
  cursor: pointer;
  outline: none;
  background:#fff;
  width:33.3%!important;
}

.choice-btn li img{
  opacity: 0.5;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
  opacity: 1;/*選択されているものは透過しない*/
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}


/* 商品説明 */
.description {
  display: block;
  max-width: 33.3vw;
  margin-left: 0;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: -3vw;
}

.description h1 {
  font-size: 1.5vw;
  margin-bottom: 0.6vw;
  font-weight: 300;
  font-family: acumin-pro, sans-serif;
  font-style: normal;
  letter-spacing: 0.05em;
}

.description h2 {
  font-size: 1.6vw;
  font-weight: 400;
  margin-top: 2vw;
  margin-bottom: 2vw;
  line-height: 2.5vw;
  letter-spacing: 0.05em;
}

.description p {
  font-size: 1.2vw;
  line-height: 2.3vw;
  margin-bottom: 2.5vw;
  text-align: justify;
}

.description .spec {
  font-size: 1vw;
  line-height: 1.8vw;
  margin-top: 0.3vw;
}

.product .container {
  display: flex;
  color: #3e3a39;
}

.product {
  width: 80%;
  margin-top: 1.3vw;
  margin-bottom: 6.6vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 66.6vw;
}

@media (max-width: 870px) {
.product .container {
    flex-direction: column;
  }

  .description {
    max-width: 765px;
  }

  .description h1 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 22px;
    margin-bottom: 10px;
  }

  .description h2 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 20px;
    margin-top: 44px;
  }

  .description p {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .description .spec {
    font-size: 15px;
    line-height: 22px;
    margin-top: 5px;
  }

  .description .price {
    font-size: 23px;
    line-height: 20px;
    margin-top: -5px;
    margin-bottom: -7px;
  }

  .price span {
    font-size: 17px;
    margin-bottom: -7px;
  }

  .product {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1000px;
  }
}


/* フッター */
.wrapper {
  position: relative;
  padding-bottom: 2vw;
  box-sizing: border-box;
  min-height: 100vh;
}

.footer {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width:90%;
  max-width: 66.6vw;
}

.footer_logo {
  position: absolute;
  margin-top: 1.3vw;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.footer_logo img {
  display: inline-block;
  width: 16.6vw;
  margin-bottom: 3.3vw;
}

@media (min-width: 871px) {
  .footer_mobile {
    display: none;
  }
}

@media (max-width: 870px) {
  .footer {
    display: none;
  }

  .footer_mobile {
    margin-top: 50px;
    margin-bottom: -30px;
  }

  .footer_logo_mobile {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 40px;
    border-top: solid 1px;
  }

  .footer_logo_mobile img {
    width: 200px;
  }

  .wrapper {
    padding-bottom: 30px;
  }
  }




/* フェードイン */
body {
	animation: fade 2s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
