@charset "utf-8";
/* CSS Document */

/*MVスライドショー*/
/*--------------------------------------------------------*/
.slide_wrapper {
  width: calc(100% - 20%);
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1050px) {
    .slide_wrapper {
    width: 100%;
    height: calc(100svh - 80px);
    position: relative;
    top: 80px;
  }
}

/*左右のボタン*/
.prev {
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 30px;
  bottom: 50%;
  transform: rotate(-135deg) translateY(-50%);
  z-index: 2;
  cursor: pointer;
}

.next {
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: rotate(45deg) translateY(50%);
  z-index: 2;
  cursor: pointer;
}

/*インジケーター*/
.indicator {
  width: 100%;
  display: flex;
  column-gap: 20px;
  z-index: 2;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
}

@media screen and (max-width: 1050px) {
  .indicator {
    bottom: 20px;
  }
}

.i_list {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1050px) {
    .i_list {
    width: 10px;
    height: 10px;
  }
}

.i_list:first-of-type {
  background: #000;
}

.slide {
  width: 400%;
  height: 100svh;
  display: flex;
  transition: all .8s;
}

.slide_item {
  width: 25%;
  height: 100%;
}

.slide_wrapper img {
  width: 100%;
  height: 100%;
  object-position: center;
}

@media screen and (max-width: 767px) {
    .slide_wrapper img {
    object-position: bottom;
  }
}

.slide1 {
  transform: translateX(0);
}

.slide2 {
  transform: translateX(-25%);
}

.slide3 {
  transform: translateX(-50%);
}

.slide4 {
  transform: translateX(-75%);
}

/*ABOUT*/
/*--------------------------------------------------------*/
.about_cont {
  width: 100%;
  padding: 300px 0;
}

.about_cont::before {
  content: '';
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-image: image-set(url("../images/about/pc_about_bg.png") 1x,url("../images/about/pc_about_bg@2x.png") 2x);
  background-imege: -webkit-image-set(url("../images/about/pc_about_bg.png") 1x,url("../images/about/pc_about_bg@2x.png") 2x);
  background-size: cover;
  z-index: -2;
}


@media screen and (max-width: 767px) {
  .about_cont {
  padding: 200px 0;
  }
}

.about_cont .sec_text {
  font-size: 18px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .about_cont .sec_text {
    font-size: 16px;
    line-height: 1.8;
  }
}

/*Works*/
/*--------------------------------------------------------*/
.works_cont {
  color: #fff;
  background:#7C7979;
  padding: 140px 0 200px;
  position: relative;
}

@media screen and (max-width: 1400px) {
    .works_cont {
    padding: 100px 0 200px;
  }
}

@media screen and (max-width: 767px) {
    .works_cont {
    padding: 60px 0 200px;
  }
}

.works_bg {
  width: 100%;
  position: absolute;
  inset: 0;
}

.works_bg img {
  width: 100%;
  object-fit: cover;
}

.sec_title_box {
  padding: 0 20px;
}

.works_cont .sec_title_en {
  color: #fff;
}

.works .sec_text {
  padding: 0 20px;
}

.w_br {
  display: none;
}

@media screen and (max-width: 515px){
  .w_br {
    display: block;
  }
}

.scroll_wrap {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  margin: 80px auto 0;
}

@media screen and (max-width: 1400px) {
    .scroll_wrap {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1050px) {
    .scroll_wrap {
    max-width: 800px;
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
    .scroll_wrap {
    margin-top: 30px;
  }
}

.scroll_track {
  width: max-content;
  display: flex;
  column-gap: 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  animation: infiniteScroll 30s linear infinite;
}

.scroll_track:hover {
  animation-play-state: paused;
}

.scroll_inner {
  width: 100%;
  display: flex;
  column-gap: 30px;
  padding: 20px 0;
}

.scroll_cont {
  width: 300px;
  transition: .5s;
}

@media screen and (max-width: 1050px) {
  .scroll_cont {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .scroll_cont {
    width: 150px;
  }
}

.scroll_cont img {
  width: 100%;
  aspect-ratio: 1/1;
}

@media (hover: hover) and (pointer: fine) {
  .scroll_cont:hover {
    filter: grayscale(100%);
    transform: scale(1.05);
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px / 2));
  }
}

.works_illusts_l {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 868px) {
  .works_illusts_l {
    transform: translateY(50px);
  }
}

@media screen and (max-width: 592px) {
  .works_illusts_l {
    transform: translateY(70px);
  }
}


.works_illusts_l li:first-child {
  position: absolute;
  left: 10%;
}

@media screen and (max-width: 1050px) {
  .works_illusts_l li:first-child {
    width: 110px;
  }
}

@media screen and (max-width: 868px) {
  .works_illusts_l li:first-child {
    width: 80px;
  }
}

.works_illusts_l li:nth-child(2) {
  position: absolute;
  right: 10%;
}

@media screen and (max-width: 1050px) {
  .works_illusts_l li:nth-child(2) {
    width: 110px;
  }
}

@media screen and (max-width: 868px) {
  .works_illusts_l li:nth-child(2) {
    width: 80px;
  }
}

.works_illusts_l li:nth-child(3) {
  position: absolute;
  top: 0;
  left: 5%;
  transform: translate(20px,-50px);
  animation: bmove1 3s linear infinite  alternate; 
}

@media screen and (max-width: 1050px) {
    .works_illusts_l li:nth-child(3) {
    width: 40px;
  }
}

.works_illusts_l li:nth-child(4) {
  position: absolute;
  top: 0;
  right: 5%;
  transform: translate(-20px,-50px);
  animation: bmove2 2s linear infinite  alternate; 
}

@media screen and (max-width: 1050px) {
    .works_illusts_l li:nth-child(4) {
    width: 40px;
  }
}

@keyframes bmove1 {
  0% {
    transform: translate(20px,-50px) rotate(0deg);
  }
  100% {
    transform: translate(40px,-10px) rotate(-10deg);
  }
}

@keyframes bmove2 {
  0% {
    transform: translate(-20px,-50px) rotate(0deg);
  }
  100% {
    transform: translate(-40px,-10px) rotate(10deg);
  }
}

@media screen and (max-width: 767px) {
    .works_illusts_l li:nth-child(3) {
    animation: tb_bmove1 3s linear infinite  alternate; 
  }
}

@keyframes tb_bmove1 {
    0% {
      transform: translate(0px,-50px) rotate(0deg);
    }
    100% {
      transform: translate(20px,-10px) rotate(-10deg);
    }
  }

@media screen and (max-width: 767px) {
    .works_illusts_l li:nth-child(4) {
    animation: tb_bmove2 2s linear infinite  alternate; 
  }
}

  @keyframes tb_bmove2 {
    0% {
      transform: translate(-0px,-50px) rotate(0deg);
    }
    100% {
      transform: translate(-30px,-10px) rotate(10deg);
    }
  }

@media screen and (max-width: 500px) {
   .works_illusts_l li:nth-child(3) {
    animation: sp_bmove1 3s linear infinite  alternate; 
  }
}

 @keyframes sp_bmove1 {
    0% {
      transform: translate(0px,-60px) rotate(0deg);
    }
    100% {
      transform: translate(10px,-20px) rotate(-20deg);
    }
  }

@media screen and (max-width: 500px) {
   .works_illusts_l li:nth-child(4) {
    animation: sp_bmove1 3s linear infinite  alternate; 
  }
}

  @keyframes sp_bmove2 {
    0% {
      transform: translate(-0px,-60px) rotate(0deg);
    }
    100% {
      transform: translate(-10px,-20px) rotate(20deg);
    }
  }

/*works　link_btn_text color*/
.works_cont .link_btn_text {
  color: #fff;
}

/*online shop*/
/*--------------------------------------------------------*/
.online_shop_cont {
  background-image: image-set(url("../images/top/pc_shop_bg.png") 1x,url("../images/top/pc_shop_bg@2x.png") 2x);
  background-image: -webkit-image-set(url("../images/top/pc_shop_bg.png") 1x,url("../images/top/pc_shop_bg@2x.png") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  padding: 180px 0 0;
}

@media screen and (max-width: 767px) {
  .online_shop_cont {
    background-image: image-set(url("../images/top/sp_shop_bg.png") 1x,url("../images/top/sp_shop_bg@2x.png") 2x);
    background-image: -webkit-image-set(url("../images/top/sp_shop_bg.png") 1x,url("../images/top/sp_shop_bg@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 0;
  }
}

.online_shop_cont .sec_text {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .online_shop_cont .sec_text {
    padding: 0 20px;
  }
}

.shop_gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 10px;
  margin-top: 30px;
}

.gallery_item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

@media screen and (max-width: 767px) {
  .shop_gallery {
    grid-template-columns: repeat(2,1fr);
  }
  .shop_gallery .sp_hidden {
    display: none;
  }
}


.gallery_item img {
  width: 100%;
}

.gallery_item {
  transition: .4s;
}

@media (hover: hover) and (pointer: fine) {
  .gallery_item:hover {
    transform: translate(-3px,-3px);
    box-shadow: 5px 5px 5px 3px rgba(0,0,0,.3);
  }
}

.s_illusts_l {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  position: relative;
}

.s_illusts_l .s_illusts_item:nth-child(2) {
  width: 80px;
  position: absolute;
  top: 20%;
  right: 0;
  animation: bmove3 3s linear infinite alternate;
}

.s_illusts_l .s_illusts_item:nth-child(3) {
  width: 80px;
  position: absolute;
  top: 20%;
  left: 0;
  animation: bmove4 2s linear infinite alternate;
}

.s_illusts_l .s_illusts_item:nth-child(4) {
  width: 60px;
  position: absolute;
  top: 35%;
  left: 35%;
  animation: bmove4 4s linear infinite alternate;
}

.s_illusts_l .s_illusts_item:nth-child(5) {
  width: 60px;
  position: absolute;
  top: 35%;
  right: 35%;
  animation: bmove3 5s linear infinite alternate;
}

@keyframes bmove3 {
  0% {
    transform: translate(0%,10%) rotate(-20deg);
  }
  100% {
    transform: translate(-20%,30%) rotate(0deg);
  }
}

@keyframes bmove4 {
   0% {
    transform: translate(0%,10%) rotate(-20deg);
  }
  100% {
    transform: translate(20%,30%) rotate(0deg);
  }
}

@media screen and (max-width: 860px) {
    .s_illusts_l .s_illusts_item:nth-child(2),
    .s_illusts_l .s_illusts_item:nth-child(3) {
    width: 50px;
   }
    .s_illusts_l .s_illusts_item:nth-child(4),
    .s_illusts_l .s_illusts_item:nth-child(5) {
    width: 40px;
   }
  @keyframes bmove3 {
    0% {
      transform: translate(10%,-110%) rotate(-20deg);
    }
    100% {
      transform: translate(-10%,-20%) rotate(0deg);
    }
  }

  @keyframes bmove4 {
     0% {
      transform: translate(10%,-110%) rotate(-20deg);
    }
    100% {
      transform: translate(20%,-20%) rotate(0deg);
    }
  }
}


/*information*/
/*--------------------------------------------------------*/
.infomation_cont {
  padding: 300px 0;
  position: relative;
}

@media screen and (max-width: 860px) {
  .infomation_cont {
    padding: 240px 0;
  }
}

@media screen and (max-width: 592px) {
  .infomation_cont {
    padding: 140px 0;
  }
}

.info_bg {
  position: absolute;
  top: 12%;
  left: 5%;
  z-index: -2;
}

@media screen and (max-width: 1350px) {
    .info_bg {
    top: 14%;
    left: 0%;
  }
}

@media screen and (max-width: 592px) {
    .info_bg {
    top: 10%;
    left: 0%;
  }
}

.info_container {
  padding: 200px 0 200px;
  background: image-set(url("../images/top/pc_info_bg01.png") 1x,url("../images/top/pc_info_bg01@2x.png") 2x);
  background: -webkit-image-set(url("../images/top/pc_info_bg01.png") 1x,url("../images/top/pc_info_bg01@2x.png") 2x);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1050px) {
    .info_container {
    background-image: image-set(url("../images/top/tb_info_bg01.png") 1x,url("../images/top/tb_info_bg01@2x.png") 2x);
    background-image: -webkit-image-set(url("../images/top/tb_info_bg01.png") 1x,url("../images/top/tb_info_bg01@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 767px){
    .info_container {
    padding: 100px 40px;
    background-image: image-pxset(url("../images/top/sp_info_bg.png") 1x,url("../images/top/sp_info_bg@2x.png") 2x);
    background-image: -webkit-image-set(url("../images/top/sp_info_bg.png") 1x,url("../images/top/sp_info_bg@2x.png") 2x);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 592px){
    .info_container {
    padding: 80px 30px;
  }
}

.info_list {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
}

@media screen and (max-width: 860px) {
  .info_list {
    max-width: 400px;
  }
}

.info_list_item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px dotted #9A9898;
}

.info_list_item:not(:first-child) {
  margin-top: 30px;
}

.info_list_item a {
  color: inherit;
  font-weight: 400;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .info_list_item a:hover {
    opacity: .7;
  }
}

.info_cat {
  font-size: 10px;
  color: #fff;
  background: #7C7979;
  border-radius: 5px;
  padding: 3px;
}

.info_title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


