@charset "UTF-8";
/*------------------------------------------------------------------
#reset.css
-------------------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
main,
nav,
menu,
figure,
figcaption {
  display: block;
}

span,
small,
strong,
em,
b,
i {
  color: inherit;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='search'],
input[type='submit'],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font: inherit;
  color: inherit;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  width: 100%;
}

/*------------------------------------------------------------------
#カラー
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
#フォント
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
#ブレイクポイント
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
#baseクラス
-------------------------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  color: #000;
  background-color: #eeefef;
  overflow-x: hidden;
  overflow-wrap: break-word;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

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

a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

/*------------------------------------------------------------------
#header
-------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 170px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .header {
    height: 75px;
  }
}

.header__content {
  margin: 0 auto;
  max-width: 1130px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  padding-right: 50px;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__content {
    padding: 0 20px;
  }

}

.header__logo {
  width: clamp(100px, 35vw, 350px);
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 160px;
  }
}

.header__text {
  position: relative;
  margin-left: auto;
  font-size: clamp(18px, 2vw, 24px);
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: 50px;
  cursor: pointer;
}
.header__text.js-active {
  color: #fff;
  border-color: #fff;
}
.header__text.js-active:before {
  position: absolute;
  top: -2.5px;
  left: -10px;
  content: '';
  width: calc(100% + 20px);
  height: calc(100% + 10px);
  background-color: #000;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .header__text {
    margin-bottom: 10px;
    font-size: 12px;
  }
}

.header__text {
  margin-left: auto;
  font-size: clamp(18px, 2vw, 24px);
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .header__text {
    margin-bottom: 10px;
    font-size: 12px;
  }
  
}

.header__menu {
  position: fixed;
  right: calc(-250px + (-100vw + 1185px) * 0.5);
  top: 0;
  width: calc(250px + (100vw - 1185px) * 0.5);
  height: 100vh;
  padding-top: 150px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.75);
  overflow-y: scroll;
  transition: ease right 0.5s;
}
.header__menu.js-open {
  right: 0;
}
.header__menu-lists {
  width: 75%;
  min-width: 300px;
  height: 100%;
  min-height: 500px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.header__menu-list {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #000;
}
.header__menu-number {
  font-weight: bold;
}
.header__menu-text span {
  font-weight: bold;
}
@media screen and (max-width: 1350px) {
  .header__menu {
    right: clamp(-650px, -30%, -375px);
    width: 30%;
    max-width: 650px;
    min-width: 375px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    width: 75%;
    max-width: 650px;
    min-width: unset;
  }
  .header__menu-lists {
    width: 80%;
    min-width: unset;
    margin: 0 auto;
  }
  .header__menu-list {
    font-size: 12px;
  }
}

/*------------------------------------------------------------------
#top
-------------------------------------------------------------------*/
.top__button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .top__button {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
  }
}

/*------------------------------------------------------------------
#footer
-------------------------------------------------------------------*/
.footer {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.footer__logo {
  width: 230px;
  margin: 0 auto;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100px;
    height: 30px;
  }
}

.footer__copyright {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 8px;
  }
}

/*------------------------------------------------------------------
#fv
-------------------------------------------------------------------*/
.fv {
  width: 100%;
  height: 710px;
}

@media screen and (max-width: 767px) {
  .fv {
    height: 500px;
  }
}

.fv__img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .fv__img {
    width: 100%;
  }
}

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

@media screen and (max-width: 767px) {
  .fv__img img {
    object-position: 42% 100%;
  }
}

/*------------------------------------------------------------------
#profile
-------------------------------------------------------------------*/
.profile {
  padding-top: 20px;
}

.profile__inner {
  padding: 0 20px;
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  text-align: center;
}

.profile__title {
  font-size: 20px;
  font-weight: normal;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .profile__title {
    font-size: 18px;
    margin-top: 25px;
  }
}

.profile__name {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .profile__name {
    font-size: 18px;
  }
}

.profile__line {
  position: relative;
  top: 5px;
  width: 2px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .profile__line {
    height: 30px;
  }
}

.profile__line::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: gray;
  animation: line 2s ease-in-out infinite;
}

@keyframes line {
  0% {
    top: 0;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 4vw;
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    top: 4vw;
    opacity: 0;
  }
}

.profile__text01,
.profile__text02,
.profile__text03 {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .profile__text01,
  .profile__text02,
  .profile__text03 {
    font-size: 12px;
    margin-top: 20px;
  }
}

/*------------------------------------------------------------------
#product
-------------------------------------------------------------------*/
.product {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .product02 {
    padding-top: 1px;
  }
}

.product-top {
  width: clamp(400px, 70%, 615px);
  margin: 0 auto;
}

.product03 {
  padding-top: 10vw;
}

.product04 {
  padding-top: clamp(43.75rem, 4.649rem + 81.57vw, 75rem);
}

@media screen and (max-width: 767px) {
  .product03 {
    padding-top: 16vw;
  }
}

@media screen and (max-width: 767px) {
  .product04 {
    padding-top: 11vw;
  }
}

@media screen and (max-width: 767px) {
  .product-top {
    width: 100%;
  }
}

.product-top2 {
  width: clamp(400px, 70%, 615px);
  margin: 0 auto;
  padding-top: 165%;
}

@media screen and (max-width: 767px) {
  .product-top2 {
    width: 60%;
    padding-top: 15vw;
  }
}

.product-top3 {
  width: clamp(400px, 70%, 615px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .product-top3 {
    width: 100%;
    padding-top: 20vw;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.product__img-link {
  display: block;
  transition: opacity 0.3s;
}

.product__img-link:hover {
  opacity: 0.9;
}

.product-top__slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 615/921;
  overflow: hidden;
}

.product-top__slide-img .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 6s ease infinite;
}

.slide-image:nth-child(1) {
  animation-delay: 0s;
}

.slide-image:nth-child(2) {
  animation-delay: 3s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.product__slide-img .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 6s ease infinite;
}

.slide-image:nth-child(1) {
  animation-delay: 0s;
}

.slide-image:nth-child(2) {
  animation-delay: 3s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.product__slide-img .slide-image2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.product-top__slide-img .slide-image3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.product-top__slide-img .slide-image4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.product__links {
  margin-right: auto;
  margin-top: 3px;
  z-index: 1;
  position: absolute;
  top: calc(100% + 10px);
}

@media screen and (max-width: 767px) {
  .product__links {
    margin-top: 3px;
    top: calc(100% + 0px);
  }
}

@media screen and (max-width: 767px) {
  .product__links.multiple {
    padding-left: 15px;
  }
}

.product__link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding-right: 60px;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.product__link::after {
  position: absolute;
  right: 10px;
  top:2px;
  content: "Buy";
  font-size: 12px;
  padding:0 1em 1.2px ;
  color: #000;
  background-color:#cacaca;
  border-radius: 8px;
  text-decoration: none;
}
.product__link.none-bage::after {
  display: none;
}

.product__link2 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding-right: 60px;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.product__link2::after {
  position: absolute;
  right: -41px;
  top:2px;
  content: "Coming soon";
  font-size: 12px;
  padding:0 1em 1.2px ;
  color: #000;
  background-color:#cacaca;
  border-radius: 8px;
  text-decoration: none;
}
.product__link2.none-bage::after {
  display: none;
}


@media screen and (max-width: 767px) {

  .product__link {
    font-size: 11px;
    padding-right: 50px;
  }
  .product__link::after {
    position: absolute;
    right: 5px;
    top:2px;
    font-size: 10px;
    padding:0 0.8em 1px ;
    color: #000;
    background-color:#cacaca;
    border-radius: 8px;
    text-decoration: none;
  }

  .product__link2 {
    font-size: 11px;
    padding-right: 50px;
  }
  .product__link2::after {
    position: absolute;
    right: -34px;
    top:2px;
    font-size: 10px;
    padding:0 0.8em 1px ;
    color: #000;
    background-color:#cacaca;
    border-radius: 8px;
    text-decoration: none;
  }

}

.product__pictures {
  margin: 90px auto 0;
  width: clamp(400px, 70%, 970px);
  position: relative;
  height: clamp(500px, 120vw, 1640px);
}

@media screen and (max-width: 767px) {
  .product__pictures {
    margin: 40px auto 0;
    width: 100%;
    height: clamp(500px, 425vw, 3810px);
  }
}

.product__pictures02 {
  margin: 90px auto 0;
  width: clamp(400px, 70%, 970px);
  position: relative;
  height: clamp(500px, 120vw, 1640px);
}

@media screen and (max-width: 767px) {
  .product__pictures02 {
    margin: 40px auto 0;
    width: 100%;
    height: clamp(500px, 440vw, 3810px);
  }
}


@media screen and (max-width: 767px) {
  .product__pictures01 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.product__pictures03 {
  margin: 140px auto 0;
  height: clamp(500px, 112vw, 1530px);
}

@media screen and (max-width: 767px) {
  .product__pictures03 {
    margin: 40px auto 0;
    height: clamp(146.313rem, 14.822rem + 561.03vw, 283.063rem);
  }
}

.product__pictures04 {
  margin: 50px auto 0;
  height: clamp(500px, 115vw, 1580px);
}

@media screen and (max-width: 767px) {
  .product__pictures04 {
    height: clamp(500px, 400vw, 3070px);
    height: fit-content;
  }
}

.product__picture-img {
  width: 46%;
  position: absolute;
}

.product__picture-img_small {
  width: 23%;
  position: absolute;
}

.product__picture-img.model16 {
  right: 0;
}

.product__picture-img.model17 {
  left: 0;
}

.product__picture-img_small.model_small {
  top: 108%;
}

.product__picture-img_small.model_small2 {
  top: 116%;
  left: 19%;
}

.product__picture-img_small.model_small3 {
  top: 123%;
  left: 40%;
  z-index: 1;
}

.product__picture-img_small.model_small4 {
  top: 132%;
  right: 0;
  width: 39%;
}

@media screen and (max-width: 767px) {
  .product__picture-img_small.model_small {
    top: 5vw;
    width: 23%;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img_small.model_small2 {
    top: -12vw;
    left: 20%;
    width: 23%;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img_small.model_small3 {
    top: -30vw;
    left: 41%;
    width: 23%;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img_small.model_small4 {
    top: -51vw;
    right: -61%;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img {
    width: 100%;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img_small {
    width: 100%;
    position: relative;
    top: 5vw;
  }
}

.product__picture-img.model03 {
  right: 0;
  top: clamp(100px, 13.5vw, 190px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model03 {
    top: 10vw;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img.model02 {
    top: 10vw;
    padding: 0 20px;
  }
}

.product__picture-img.model03 {
  right: 0;
  top: clamp(100px, 18vw, 235px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model03 {
    width: 71%;
    top: 13vw;
  }
}

.product__picture-img.model04 {
  top: clamp(100px, 60vw, 820px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model04 {
    top: 13vw;
    width: 71%;
    right: -29vw;
  }
}

.product__picture-img.model05 {
  top: clamp(100px, 80vw, 1050px);
  right: 0;
}

@media screen and (max-width: 767px) {
  .product__picture-img.model05 {
    top: 10vw;
    width: 60%;
    right: 0;
    margin: 0 auto;
    padding: 63px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img.model12 {
    width: 71%;
  }
}

.product__picture-img.model13 {
  right: 0;
  top: clamp(100px, 16vw, 210px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model13 {
    top: 10vw;
  }
}

..model05.model14 {
  top: clamp(100px, 62vw, 840px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model14 {
    top: 15vw;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .product__picture-img.model16 {
    padding: 0 20px;
  }
}

.product__picture-img.model17 {
  right: 0;
  top: clamp(100px, 20vw, 260px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model17 {
    top: 5vw;
    width: 71%;
  }
}

.product__picture-img.model18 {
  top: clamp(100px, 64vw, 865px);
  width: 40%;
  right: 5%;
}

@media screen and (max-width: 767px) {
  .product__picture-img.model18 {
    top: 10vw;
    width: 71%;
    right: -30vw;
  }
}

.product__picture-img--small {
  width: 39%;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .product__picture-img--small {
    width: 100%;
    position: relative;
  }
}

.product__picture-img--small.model04 {
  top: clamp(100px, 55vw, 755px);
}

@media screen and (max-width: 767px) {
  .product__picture-img--small.model04 {
    width: 71%;
    top: 10vw;
  }
}

@media screen and (max-width: 767px) {
.sp_2_4{
    width: 71%;
    top: 10vw;
}
}

@media screen and (min-width: 768px) {
  .sp{display:none}
}

.product__picture-img--small.model05 {
  right: clamp(50px, 7.5vw, 70px);
  top: clamp(100px, 72vw, 990px);
}

@media screen and (max-width: 767px) {
  .product__picture-img--small.model05 {
    width: 71%;
    top: 15vw;
    right: -29vw;
  }
}

@media screen and (max-width: 767px) {
.oneshot{
    width: 100%;
    margin-top:3rem;
}
}

.product__slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 446/669;
  overflow: hidden;
}

.spacer50{
  height:50px;
}


.product__slide-img .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

@media screen and (max-width: 767px) {
.product__slide-img .slide-image {
  position: absolute;
  top: 10vw;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
}

.product__slide-img .slide-image2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.product__slide-img .slide-image3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}


.product-middle {
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .product-middle {
    /*padding-top: 25vw;*/
    padding-bottom: 5vw;
  }
}

.product-bottom {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .product-bottom {
    padding-top: 10vw;
    padding-bottom: 5vw;
  }
}

.product-middle__img {
  width: 350px;
  margin: 0 auto;
  margin-top: 12rem;
}

.product-middle__img_style4 {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .product-middle__img {
    width: 60%;
  }
}

.product-middle__img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .product-middle__img_style4 {
    width: 60%;
  }
}

.product-middle__img_style4 img {
  width: 100%;
}

.product-middle2__img {
  position: absolute;
}

.product-middle2__img.middle2_img {
  width: clamp(400px, 70%, 615px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: 82%;
}

@media screen and (max-width: 767px) {
  .product-middle2__img {
    width: 100%;
    padding-top: 10vw;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.logo_top {
  position: relative;
}

.mizuiro_logo {
  width: 30%;
  position: absolute;
  right: -9%;
  top: 5%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mizuiro_logo {
    right: 5%;
  }
}

.number {
  width: 10%;
  top: 3%;
  left: -6%;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .number {
    left: 5%;
  }
}

/*------------------------------------------------------------------
#staff
-------------------------------------------------------------------*/
.product-staff {
  margin: 100px auto 0;
  width: clamp(300px, 70%, 950px);
}

@media screen and (max-width: 767px) {
  .product-staff {
    margin: 30vw 20px 0;
    width: 100%;
  }
}

.product-staff__name {
  font-size: 14px;
  line-height: 1.5;
}

.product-staff__name.name01 {
  font-weight: bold;
  margin-bottom: 17px;
}


@media screen and (max-width: 820px) {
  .product__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
}

/*------------------------------------------------------------------
#coming
-------------------------------------------------------------------*/
.coming {
  width: clamp(300px, 70%, 950px);
  padding-top: 155px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 767px) {
  .coming {
    padding: 40px 20px 0;
    width: 100%;
  }
}

.coming__inner {
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  text-align: center;
}

.coming__title {
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .coming__title {
    font-size: 12px;
  }
}

.coming__img {
  cursor: pointer;
  margin-top: 22px;
  width: 432px;
  margin: 35px auto 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .coming__img {
    margin-top: 10px;
    width: 100%;
  }
}

.coming__img img {
  transition:
    transform 1s,
    opacity 0.5s;
}

.coming__img img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.coming__text {
  font-size: 20px;
  margin-top: 35px;
  line-height: 1.4;
}

p.comingsoon{
  font-size:14px;
}

@media screen and (max-width: 767px) {
p.comingsoon{
  font-size:11px;
}
}

@media screen and (max-width: 767px) {
  .coming__text {
    font-size: 9px;
    margin-top: 10px;
  }
}

/*------------------------------------------------------------------
#sns shop
-------------------------------------------------------------------*/
.sns-shop {
  padding-top: 50px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .sns-shop {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}

.sns-shop__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .sns-shop__inner {
    gap: 10px;
    align-items: normal;
  }
}

.sns__instagram {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .sns__instagram {
    width: 20px;
    height: 20px;
  }
}

.sns__instagram img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sns__instagram:hover {
  opacity: 0.7;
}

.shop__info {
  width: 200px;
}

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

.shop__info:hover {
  opacity: 0.7;
}

.sns__link,
.shop__link {
  display: block;
}

/*------------------------------------------------------------------
#js
-------------------------------------------------------------------*/
.js-fade {
  opacity: 0;
  transition: opacity 2s;
  visibility: hidden;
}

.js-fade.is-fade {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
