@charset "UTF-8";
/*****************************
Override
******************************/
html {
  /* ページのスクロールをすべてスムーズにする */
  scroll-behavior: smooth;
}

body {
  position: relative;
}

.category-wrapper {
  padding-bottom: 20px;
}

a {
  transition: opacity 0.5s ease;
}

.contents-wrapper {
  padding: 0 4%;
}

/*****************************
Common
******************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.loading__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading__logo {
  max-width: 178px;
  height: auto;
}
.loading--hidden {
  opacity: 0;
  transition: 1s;
  visibility: hidden;
}

.content-width {
  max-width: 100%;
  overflow: hidden;
}

.page-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
}
.page-heading--main {
  margin-bottom: 10px;
}
.page-heading--sub {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.fade-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.fade-target.visible {
  opacity: 1;
  transform: translateY(0);
}

.heading1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  letter-spacing: 1.5px;
}

.heading2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  letter-spacing: 1.5px;
}

.main {
  width: 100%;
  margin-bottom: 120px;
}

.hr {
  margin-bottom: 40px;
}

/*****************************.
Header
******************************/
.header {
  position: sticky;
  width: 100%;
  height: 100px;
  margin-bottom: 50px;
}
.header__inner {
  padding: 20px 13px;
  height: 100%;
}
.header__logowrap {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 210px;
  height: auto;
}
.header__logolink {
  display: block;
}
.header__nav {
  display: none;
}

.header-btn-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 13px;
  cursor: pointer;
  z-index: 10001;
}
.header-btn-menu__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}
.header-btn-menu__bar:nth-child(1) {
  top: 0;
}
.header-btn-menu__bar:nth-child(2) {
  top: 6px;
}
.header-btn-menu__bar:nth-child(3) {
  bottom: 0;
}
.header-btn-menu--active .header-btn-menu__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background-color: #fff;
}
.header-btn-menu--active .header-btn-menu__bar:nth-child(2) {
  opacity: 0;
}
.header-btn-menu--active .header-btn-menu__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background-color: #fff;
}

.header-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: none;
  display: block;
  visibility: hidden;
  opacity: 0;
  padding-top: 50px;
  box-sizing: border-box;
  background-color: #000;
  transition: opacity 0.5s ease, visibility 0.5s ease, height 0.5s ease;
}
.header-menu--visible {
  display: block;
  visibility: visible;
  opacity: 1;
}
.header-menu .header-nav-search {
  display: none;
}
.header-menu .header-nav-category li a {
  color: #fff;
}

.header-nav-category--menu a {
  color: #fff;
}

.header-nav-member {
  justify-content: center;
  padding-right: 40px;
}
.header-nav-member li {
  padding: 0;
  margin: 0 20px;
  max-width: none;
}
.header-nav-member li a {
  color: #fff;
}
.header-nav-member li img {
  width: 20px;
  height: auto;
  max-width: 20px;
  margin-right: 5px;
}
.header-nav-member li.icon-cart a {
  display: flex;
  align-items: center;
  position: relative;
}
.header-nav-member li.icon-cart a .icon-cart-num {
  right: -20px;
}

.header-other-link li {
  width: 100%;
}
.header-other-link li a {
  color: #fff;
}
.header-other-link li:nth-last-child(-n+2) {
  margin: 0 15px 15px 0;
}

.hamburger-close {
  color: #fff;
}
.hamburger-close::before {
  background: url(https://gigaplus.makeshop.jp/ATTRCTReshop/theme/ico-close.svg);
}

/*****************************.
Top
******************************/
.top-items__items-box {
  margin-bottom: 60px;
}

.top-item {
  margin-bottom: 20px;
}
.top-item__link {
  display: block;
}
.top-item__image-wrap {
  margin-bottom: 10px;
}
.top-item__text-wrap {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.top-visual {
  margin-bottom: 60px;
}

.top-visual-box {
  margin-bottom: 40px;
}
.top-visual-box__link {
  display: block;
  text-align: center;
}
.top-visual-box__title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.top-movie {
  margin-bottom: 60px;
}

.top-movie-box__link {
  position: relative;
  display: block;
  text-align: center;
}
.top-movie-box__icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 2;
}
.top-movie-box__icon-play img {
  width: 80px;
  height: 80px;
}
.top-movie-box__movie {
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-movie-modal {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.top-movie-modal.visible {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.top-movie-modal__content {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}
.top-movie-modal__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  background-color: #000;
  z-index: 1;
}
.top-movie-modal__video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-movie-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.top-movie-modal__close-btn {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/*****************************.
Product List
******************************/
.category-operate {
  display: none;
}

.category-item-name {
  text-align: center;
}

.category-item-price {
  text-align: center;
}

.category-item-list {
  display: block;
}
.category-item-list li {
  width: 100%;
}

.category-item-img {
  width: 100%;
  height: auto;
}

.breadcrumb {
  display: none;
}

/*****************************.
Series
******************************/
.series {
  margin-bottom: 40px;
}
.series__image {
  margin-bottom: 60px;
  overflow-x: hidden;
}
.series__items {
  padding-left: 60px;
  padding-right: 60px;
}
.series__title {
  margin-bottom: 40PX;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.series-product {
  margin-bottom: 40px;
}
.series-product__link {
  display: block;
}
.series-product__image-wrap {
  margin-bottom: 15px;
}
.series-product__title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

/*****************************.
Visual
******************************/
.visual-images {
  margin-bottom: 60px;
}
.visual-images__box {
  width: 100%;
}
.visual-images__image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 26px;
}

.visual-description {
  margin-bottom: 40px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
}

/*****************************.
footer
******************************/
.footer-wrapper {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .loading__logo {
    max-width: 178px;
  }
  .content-width--pc {
    max-width: 1220px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .content-width--pc-narrow {
    max-width: 860px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-heading {
    margin-bottom: 60px;
    font-size: 40px;
  }
  .page-heading--main {
    margin-bottom: 20px;
  }
  .page-heading--sub {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .heading1 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .heading2 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .header {
    height: 200px;
  }
  .header__nav {
    display: block;
    position: absolute;
    left: 50%;
    top: 100px;
    width: 100%;
    transform: translateX(-50%);
  }
  .header__navlist {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    gap: 40px;
    justify-content: space-evenly;
  }
  .header-menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: none;
    display: block;
    visibility: hidden;
    opacity: 0;
    padding-top: 50px;
    box-sizing: border-box;
    background-color: #000;
    transition: opacity 0.5s ease, visibility 0.5s ease, height 0.5s ease;
  }
  .header-menu--visible {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .header-menu .header-nav-search {
    display: none;
  }
  .header-menu .header-nav-category {
    display: block;
    width: 200px !important;
    height: 80%;
  }
  .header-menu .header-nav-category li {
    margin-bottom: 40px;
    width: 100% !important;
  }
  .header-menu .header-nav-category li a {
    font-size: 40px;
    color: #fff;
  }
  .header-nav-member {
    display: flex;
  }
  .header-nav-member li {
    margin: 0 40px;
  }
  .header-nav-member li img {
    width: 40px;
  }
  .header-nav-member li.icon-cart a .icon-cart-num {
    right: -20px;
    left: auto;
  }
  .header-other-link {
    justify-content: center;
  }
  .header-other-link li {
    width: auto;
  }
  /*****************************.
  Top
  ******************************/
  .top-items__items-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
  }
  .top-item {
    max-width: 440px;
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
  .top-item__image-wrap {
    margin-bottom: 10px;
  }
  .top-item__title {
    font-size: 15px;
  }
  .top-look {
    margin-bottom: 120px;
  }
  .top-visual {
    margin-bottom: 120px;
  }
  .top-visual-box {
    margin-bottom: 40px;
  }
  .top-visual-box__text-wrap {
    text-align: center;
    margin-bottom: 15px;
  }
  .top-visual-box__title {
    font-size: 20px;
  }
  .top-movie-modal {
    padding: 60px;
  }
  .top-movie-modal__layer {
    aspect-ratio: 16/9;
  }
  .top-movie-modal__video {
    aspect-ratio: 9/16;
    -o-object-fit: none;
       object-fit: none;
  }
  .top-movie-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .top-movie-modal__close-btn {
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  /*****************************.
  Product List
  ******************************/
  .category-item-list {
    display: flex;
  }
  .category-item-list li {
    width: 25%;
  }
  .category-item-img {
    width: 100%;
    height: auto;
  }
  .breadcrumb {
    display: none;
  }
  /*****************************.
  Series
  ******************************/
  .series {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
  }
  .series__image {
    width: calc((100% - 40px) / 2);
  }
  .series__items {
    width: calc((100% - 40px) / 2);
    padding-right: 0;
    padding-left: 0;
  }
  .series__title {
    margin-bottom: 40PX;
    font-size: 40px;
  }
  .series--reverse {
    flex-direction: row-reverse;
  }
  .series-products__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .series-product {
    margin-bottom: 20px;
    width: 50%;
    padding: 0 20px;
  }
  .series-product__image-wrap {
    margin-bottom: 15px;
  }
  /*****************************.
  Visual
  ******************************/
  .visual-images {
    margin-bottom: 40px;
  }
  .visual-images__box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .visual-images__box--col1 .visual-images__image {
    width: 100%;
  }
  .visual-images__box--col2 .visual-images__image {
    width: calc(50% - 10px);
  }
  .visual-images__image {
    margin-bottom: 0;
  }
  .visual-description {
    margin-bottom: 40px;
    padding: 0;
  }
}/*# sourceMappingURL=styles_org.css.map */