@charset "UTF-8";

:root {
  --color-brand: #202c44;
  --color-header: #fff;
  --color-text: #4c638c;
  --color-bar: #202c44;
  --color-arrow: #32364d
}


body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 320px;
  color: var(--color-brand);
}


/* ヘッダー */

.l-header {
  background-color: var(--color-header);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto;



}

.l-header.is-fixed {
  animation: appear 0.8s forwards;
  position: fixed;
  z-index: 100;
  width: 100%;
}


.l-header.is-fixed .l-header__inner {
  position: relative;
}

.l-header.is-fixed .l-header__nav--global {
  margin-bottom: 0;
}

.c-logo {
  width: 300px;
}


.c-logo a {
  display: block;
  text-align: center;
}






/* 画面外に消える */
.l-header.is-hide {
  animation: disappear 0.8s forwards;
  height: 0px;
}

.l-header.is-hide .l-header__nav--type {
  opacity: 0;
}


@keyframes appear {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes disappear {
  from {
    transform: translateY(0%);
    opacity: 0;

  }

  to {
    transform: translateY(-100%);
    opacity: 0;

  }
}



/* ハンバーガーボタン */

.c-btn__hamburger {
  text-align: center;
  height: 51px;
}

.c-btn__hamburger button {
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 58px;
  height: 51px;
  cursor: pointer;
  position: relative;
}

.c-btn__hamburger .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--color-bar);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 20;
}

/* 等間隔配置 */
.bar--top {
  top: 0;
}

.bar--middle {
  top: 50%;
  transform: translateY(-50%);
}

.bar--bottom {
  bottom: 0;
}

/* アクティブ時：×に変形 */
.is-active .bar--top {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.is-active .bar--bottom {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.is-active .bar--middle {
  opacity: 0;
}

/* ハンバーガーメニュー */

.c-nav__hamburger {
  display: none;
  position: absolute;
  top: 134px;
  width: 100%;
  z-index: 10;

}

.l-header.is-active .c-nav__hamburger {
  display: block;
  height: calc(100vh - 60px);
  opacity: 1;
  overflow-y: scroll;
}



.c-nav__hamburger ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #97999b;

}

.c-nav__hamburger li {
  list-style-type: none;
  margin-bottom: 0;
}

.c-nav__hamburger li a {
  background-color: #fff;
  border-bottom: 1px solid #97999b;
  display: block;
  font-size: 1rem;
  padding: 15px;
  position: relative;
  color: #202c44;
  text-decoration: none;

}

.c-nav__hamburger li a:after {
  border-right: 2px solid var(--color-arrow);
  border-top: 2px solid var(--color-arrow);
  box-sizing: border-box;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

}






/*メイン*/
.c-picture__main {
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 80px;
}



.c-picture__main h1 {
  position: absolute;
  top: 5%;
  right: 5%;
}


.c-picture__main img {
  max-width: 100%;
  width: 100%;
  max-height: 50%;
}

.p-top__concept picture {
  margin-bottom: 20px;
}



section {
  max-width: 1200px;
  margin: 0 auto 60px;

  box-sizing: border-box;
}

section h2 {
  font-size: 1.125rem;
  margin-bottom: 30px;
}


/* 商品リスト */

.c-item {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.c-item__detail {
  width: 48%;
  margin-bottom: 80px;
}


.c-list__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}


.c-list__item li {
  list-style: none;
  width: 48%;
  margin-bottom: 4%;
  position: relative;
}

.c-list__item li a {
  text-decoration: none;
  color: var(--color-brand);
  display: block;
  
}

.c-list__item li a::before {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 88px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}

.c-list__item li.c-icon--new a::before {
  content: "NEW";
  background-color: #cc7272;
  color: #fff;

}

.c-list__item li.c-icon--resale a::before {
  content: "再販売";
  background-color: #545b89;
  color: #fff;

}

.c-list__item li a:hover {
  opacity: 0.8;
}

.c-list__item li img {
  margin-bottom: 20px;
}


.l-main .swiper-slide dl {
  padding-top: 5%;

}

.c-list__item li a dt,
.l-main .swiper-slide dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.c-item__detail dt {
  margin-bottom: 24px;
  font-weight: bold;
}

.c-item__detail dd {
  line-height: 2em;
}

.c-item__detail figcaption {
  margin-top: 5px;
  text-align: right;
  margin-bottom: 0px;
}


/* フッター */

.c-copyright {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 20px;
  color: var(--color-brand);
}




.round_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  /*border: 2px solid #fff;
  border-radius: 50%; */
  background: transparent;
  /* ボタンの背景色 */
}

.round_btn::before,
.round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 22px;
  /* 棒の高さ */
  background: #fff;
  /* バツ印の色 */
}

.round_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-btn__close {
  width: 30px;
  margin: 30px auto;
}

.c-list__sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 0;
  align-items: center;
}

.c-list__sns li {
  list-style-type: none;
  margin: 0 10px;
}

.c-list__sns li a {
  width: 40px;
  display: block;
}

.c-list__policy {
  text-align: center;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  padding: 30px 5% 0;
}

.c-list__policy li {
  list-style-type: none;
  margin: 0 5px;
}

.c-list__policy li a {
  color: #959595;
  font-size: 0.65rem;
}

.c-list__policy li a:hover {
  text-decoration: none;
}


.c-icon__instagram {
  max-width: 86px;
  margin: 0 auto 30px;
}

.c-icon__youtube {
  max-width: 96px;
  margin: 0 auto 30px;
}


.c-link__box {
  max-width: 800px;
  box-sizing: border-box;
  margin: 0 auto 140px;

}

.c-link__box a {
  border: 8px solid #7e7e7e;
  box-sizing: border-box;
  background-color: #ececec;
  padding: 30px;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--color-brand);
  font-weight: bold;
  color: #7e7e7e;

}

.c-link__box a:hover {
  background-color: #000;
  color: #fff;
}

.c-link__box a:hover i {
  color: #fff;
}


.c-link__box i {
  font-style: normal;

}



.l-footer h3 {
  color: #717171;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;

}



/* 商品スライド */
.swiper-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.swiper-wrapper {
  display: flex;
  margin: 0;
  padding: 0 0 26px 0;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

/* 👇 swiper-pagination を画像下に見せかける */
.swiper-pagination {
  position: relative;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #333;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
}


/* youtube */

.c-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.c-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



@media (max-width: 1200px) {

  .l-header__inner {
    padding: 0 5%;
  }

  section {
    padding: 0 5%;
  }

  .c-btn__hamburger {

    right: 5vw;

  }

.c-link__box {
  max-width: 66%;
}

.c-link__box a {
  padding: 3% 0;
}


}


@media (max-width: 768px) {

  .l-header__inner {
    margin: 23px 0;
    position: relative;
  }

  .c-logo {
    width: 164px;
    margin: 0 auto;

  }


  /* ハンバーガーボタン */

  .c-nav__hamburger {
    top: 66px;
  }

  .c-btn__hamburger {
    text-align: center;
    height: 30px;
    position: absolute;
    top: 0;
  }

  .c-btn__hamburger button {
    padding: 0;
    outline: none;
    border: none;
    background: none;
    width: 34px;
    height: 30px;
    cursor: pointer;
    position: relative;
  }

  .c-btn__hamburger .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-bar);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 20;
  }

  .c-list__item li {
    list-style: none;
    width: 48%;
    margin-bottom: 40px;
  }

  main h1 {
    font-size: 1.5rem;

  }

  section h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .c-item {
    display: block;

  }

  .c-item__detail {
    width: auto;

  }


  .p-top__concept p {
    font-size: 0.85rem;
    line-height: 1.6em;
  }

  .c-list__policy {
    display: block;
  }

  .c-link__box {
    max-width: 300px;


  }

  .c-link__box a {
    border: 4px solid #7e7e7e;
    font-size: 0.85rem;


  }

}



@media (max-width: 640px) {

  .c-list__item {
    display: block;
  }

  .c-list__item li {
    width: 100%;
  }
}