@charset "UTF-8";
/* CSS Document */
main {
  color: #191816;
}
.bar {
  background-color: #fff;
}


/* main_img
--------------------------------------------------------------------*/
#main_img {
  background-image: url("../img/top/top_main_img.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
}
#main_img h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.3em;
  position: absolute;
  width: 100%;
  top: 50%;
  right: 15%;
  text-align: right;
  transform: translateY(-50%);
}
#main_img .scroll_animation {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
#main_img .scroll_animation a {
  padding-bottom: 30px;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
}
#main_img .scroll_animation a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  margin-left: -12px;
  border-bottom: 1px solid #ffffff;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@keyframes sdb {
  0% {
    transform: rotate(90deg) translate(30px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(90deg) translate(50px, 0px);
    opacity: 0;
  }
}

@media screen and (max-width:768px) {
  #main_img {
    background: url("../img/top/top_main_img_sp.jpg") center center / cover no-repeat;
  }
  #main_img h2 {
    text-align: center;
    letter-spacing: 0.25em;
    line-height: 1.4;
    left: 50%;
    top: 76%;
    transform: translateX(-50%) translateY(-50%);
  }
  #main_img .scroll_animation {
    bottom: 40px;
  }
}


/* about
--------------------------------------------------------------------*/
#about {
  width: 100%;
  margin-top: 92px;
}
#about .inner {
  width: 100%;
  max-width: calc(1200px + (24px * 2));
  margin: 0 auto;
  padding: 0 24px;
}
#about .txt_box {
  text-align: center;
}
#about .txt_box .sub_ttl {
  font-size: 14px;
  letter-spacing: 0.25em;
  line-height: 1.4;
}
#about .txt_box .ttl {
  width: 274px;
  margin: 28px auto 0;
}
#about .bnr_box {
  width: 100%;
  margin: 120px auto 0;
}
#about .comment {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 12px auto 0;
}
#about .comment .ttl {
  width: fit-content;
  margin-right: 24px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
#about .comment .txt {
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (max-width:768px) {
  #about {
    margin-top: 72px;
  }
  #about .txt_box .ttl {
    width: 240px;
  }
  #about .bnr_box {
    width: 100%;
    margin-top: 92px;
  }
  #about .comment {
    flex-direction: column;
  }
  #about .comment .ttl {
    width: 100%;
    margin-right: 16px;
  }
  #about .comment .txt {
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
  }
}


/* product_list
--------------------------------------------------------------------*/
#product_list {
  width: 100%;
  margin-top: 146px;
}
#product_list ul {
  display: flex;
  transition-timing-function: linear;
}
#product_list li {
  width: 260px;
  height: 260px;
  margin-left: 7%;
}
#product_list li:first-of-type {
  margin-left: 0;
}
#product_list li a img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
}

/* 発売前対応 */
#product_list li a[href=""] {
  pointer-events: none;
}

@media screen and (max-width:768px) {
  #product_list {
    margin-top: 92px;
  }
  #product_list li {
    width: 200px;
    height: 200px;
  }
}


/* menus
--------------------------------------------------------------------*/
#menus {
  width: 100%;
  margin-top: 120px;
}

#menus .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#menus article {
  display: flex;
  width: 100%;
  margin-top: 92px;
  padding: 30px 0;
  position: relative;
}
#menus article::after {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: #191816;
  z-index: -1;
}
#menus article:first-of-type {
  margin-top: 0;
}
#menus article:nth-of-type(odd)::after {
  left: 195px;
}
#menus article:nth-of-type(even)::after {
  right: 195px;
}
#menus article::after {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: #191816;
  z-index: -1;
}
#menus article .img_box {
  width: 63%;
}
#menus article .txt_box {
  width: 47%;
  padding: 0 60px;
  align-self: center;
}
#menus article:nth-of-type(odd) .img_box { order: 1; }
#menus article:nth-of-type(even) .img_box { order: 2; }

#menus article:nth-of-type(odd) .txt_box {
  order: 2;
  text-align: right;
}
#menus article:nth-of-type(even) .txt_box {
  order: 1;
  text-align: left;
}
#menus article .txt_box .btn {
  display: inline-block;
  width: 168px;
  margin: 0;
  padding: 16px;
  border: rgba(255, 255, 255, .7) solid 1px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .25em;
  color: #ffffff
}
@media screen and (max-width:768px) {
  #menus {
    margin-top: 144px;
  }
  #menus article {
    flex-direction: column;
    margin-top: 0;
    padding: 0 0 72px;
    position: relative;
    background: #191816;
  }
  #menus article::after {
    content: none;
  }
  #menus article .img_box {
    width: 100%;
  }
  #menus article .txt_box {
    width: 100%;
    padding: 0 24px;
  }
  #menus article .txt_box .btn {
    width: 52%;
    margin-top: 72px;
    padding: 23px 0;
  }
  #menus article:nth-of-type(odd) .img_box,
  #menus article:nth-of-type(even) .img_box {
    order: 1;
  }
  #menus article:nth-of-type(odd) .txt_box,
  #menus article:nth-of-type(even) .txt_box {
    order: 2;
    text-align: center;
  }
}


/* topics
--------------------------------------------------------------------*/
#topics {
  width: 100%;
  margin-top: 144px;
  margin-bottom: 168px;
}
#topics .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: calc(1200px + (24px * 2));
  margin: 0 auto;
  padding: 0 24px;
}
#topics .insta_box {
  width: 53%;
}
#topics .insta_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
}
#topics .insta_box ul li {
  width: calc((100% - (4% * 2)) / 3);
  margin-top: 4%;
  margin-right: 4%;
}
#topics .insta_box ul li:nth-child(3n) {
  margin-right: 0;
}
#topics .insta_box ul li:nth-child(-n + 3) {
  margin-top: 0;
}

#topics .news_box {
  width: 35%;
}
#topics .news_box figure {
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-top: 14px;
}
#topics .news_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#topics .insta_box .ttl,
#topics .news_box .ttl {
  font-size: 14px;
  letter-spacing: .25em;
}
@media screen and (max-width:768px) {
  #topics {
    margin-bottom: 144px;
  }
  #topics .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #topics .insta_box {
    width: 100%;
  }
  #topics .insta_box ul li {
    width: calc((100% - (4%)) / 2);
  }
  #topics .insta_box ul li:nth-child(3n),
  #topics .insta_box ul li:nth-child(-n + 3) {
    margin-top: 4%;
    margin-right: 4%;
  }

  #topics .insta_box ul li:nth-child(2n) {
    margin-right: 0;
  }
  #topics .insta_box ul li:nth-child(-n + 2) {
    margin-top: 0;
  }
  #topics .news_box {
    width: 100%;
    margin-top: 60px;
  }
}
