<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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%;
    padding-top: 100px;
    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;
  object-position: top;

}

@media screen and (max-width: 767px) {
  .fv__img img {
    object-position: 59% 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: 0px;
}
.product01 {
  padding-top: 85px;
}
.product_last {
  padding-top: 40px;
  padding-bottom: 97px;
}

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

  .product02 {
    padding-top: 35px;
  }

}


@media screen and (max-width: 767px) {
  .product02 {
    padding-top: 5vw;
  }
  .product03 {
    padding-top: 20vw;
  }
  .product_last {
    padding-top: 50px;
    padding-bottom: 120px;
  }
}

.product03 {
  padding-top: 78px;
}

.product04 {
  padding-top: 78px;
}


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

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

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

.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;
}

.miniphoto1 {
  width: 60%;
  top: 49%;
  left: -41%;
  position: absolute;
  z-index: 1;
}

.miniphoto2 {
  width: 60%;
  top: 59%;
  left: 79%;
  position: absolute;
  z-index: 1;
}

.miniphoto2_1 {
  width: 60%;
  top: 59%;
  left: 79%;
  position: absolute;
  z-index: 1;
}

.miniphoto3 {
  width: 60%;
  top: 47%;
  left: -40%;
  position: absolute;
  z-index: 1;
}

.miniphoto4 {
  width: 60%;
  top: 48%;
  left: -29%;
  position: absolute;
  z-index: 1;
}

.miniphoto5 {
  width: 60%;
  top: 58%;
  left: -30%;
  position: absolute;
  z-index: 1;
}

.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;

}

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

  .miniphoto1 {
    width: 71%;
    top: 31%;
    left: 67%;
    position: absolute;
    z-index: 1;
  }

  .miniphoto2 {
    width: 71%;
    top: 33%;
    left: -38%;
    position: absolute;
    z-index: 1;
  }
  
  .miniphoto2_1 {
    width: 64%;
    top: 38%;
    left: -47%;
    position: absolute;
    z-index: 1;
  }

  .miniphoto3 {
    width: 70%;
    top: 36%;
    left: -43%;
    position: absolute;
    z-index: 1;
  }

  .miniphoto4 {
    width: 70%;
    top: 35%;
    left: -40%;
    position: absolute;
    z-index: 1;
  }
  
  .miniphoto5 {
    width: 71%;
    top: 34%;
    left: -40%;
    position: absolute;
    z-index: 1;
  }

}

.product__picture-img3 {
  width: clamp(400px, 80%, 1200px);
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.product__picture-img4 {
  width: clamp(400px, 80%, 1200px);
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

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

@media screen and (max-width: 767px) {
  .product-top1 {
    width: 100%;
    padding-top: 10vw;
  }
  .product__picture-img3 {
    flex-flow: column;
    width: 65%;
    padding-top: 60px;
  }
  .product__picture-img4 {
    flex-flow: column;
    width: 65%;
    padding-top: 0px;
  }
}

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

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

.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__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;
}

.coming_p {
  padding-left: 48px;
}

.sp {
  display: none;
}

.coming_miz {
  padding-left: 46px;
}

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

  .coming_miz {
    padding-left: 38px;
  }

  .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;
  }

}

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

  .coming_miz {
    padding-left: 0;
  }

}

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

  .coming_p {
    padding-left: 0px;
  }


  .coming_sp {
    padding-left: 43px;
  }

  .sp {
    display: block;
  }

}

.product__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

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

@media screen and (max-width: 767px) {
  .product__pictures {
    margin: 90px auto 0;
    width: 100%;
    height: clamp(54.75rem, 2.96rem + 220.97vw, 108.75rem);
  }
}

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

.product__pictures02 {
  margin: 120px auto 0;
  height: clamp(500px, 120vw, 1640px);
}

@media screen and (max-width: 767px) {
  .product__pictures02 {
    margin: 90px auto 0;
    height: clamp(106.25rem, 5.427rem + 430.18vw, 211.375rem);
  }
}

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

@media screen and (max-width: 767px) {
  .product__pictures03 {
    margin: 90px auto 0;
    height: clamp(106.25rem, 5.427rem + 430.18vw, 211.375rem);
  }
}

.product__pictures04 {
  margin: 35px auto 0;
  height: clamp(37.5rem, 10.032rem + 57.3vw, 63.75rem);
}

@media screen and (max-width: 767px) {
  .product__pictures04 {
    height: clamp(54.75rem, 2.96rem + 220.97vw, 108.75rem);
  }
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  .product__picture-img.model10 {
    top: 10vw;
    width: 71%;
    right: -29vw;
    padding-top: 27px;
  }
  .product__picture-img.model10.center {
    top: 10vw;
    width: 71%;
    right: unset;
    margin: 0 auto;
    padding-top: 27px;
  }
}

.product__picture-img.model11 {
  top: clamp(1650px, 85vw, 1900px);
}

@media screen and (max-width: 767px) {
  .product__picture-img.model11 {
    top: 10vw;
    width: 71%;
  }
  .product__picture-img.model11.center {
    top: 10vw;
    width: 71%;
    margin: 0 auto;
    padding-top: 27px;
  }
}

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

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

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

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

.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%;
    right: -29vw;
  }
}

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

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

.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;
  }
}

.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;
  }
}

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

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

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

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

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

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

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

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

.slide-image2:nth-child(3) {
  animation-delay: 6s;
}

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

@keyframes slider-2 {
  0% {
    opacity: 0;
    }
 
    14% {
    opacity: 1;
    }
 
    36% {
    opacity: 1;
    }
 
    50% {
    opacity: 0;
    }
 
    100% {
    opacity: 0;
    }
}

.product-middle {
  padding-top: 256px;
  padding-bottom: 60px;
}

.product-middle2 {
  padding-top: 160px;
  padding-bottom: 60px;
}

.product-middle3 {
  padding-top: 230px;
  padding-bottom: 60px;
}


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

  .product-middle2 {
    padding-top: 0;
    padding-bottom: 5vw;
  }

  .product-middle3 {
    padding-top: 23px;
  }
}

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

.product-middle__img2 {
  width: 350px;
  margin: 0 auto;
  padding-top: 200px;
}

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

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

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

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

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

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


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

@media screen and (max-width: 767px) {
.product-staff {
  margin: 0 auto;
  padding-top: 100px;
  width: 100%;
  padding: 60px 20px 50px;
}
}

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

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

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

@media screen and (max-width: 767px) {
  .coming {
    padding-top: 40px;
    padding-bottom: 0px;
    padding: 0 20px;
    width: 100%;
  }
  .coming__text {
    font-size: 11px;
  }
}

.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: 100%;
  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;
}

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

.shop-contents{
  width: clamp(400px, 70%, 970px);
  margin:150px auto 0;
}

.shop-contents h2{
  font-size:25px;
  text-align:center;
  vertical-align: middle;
  margin-bottom:50px;
}

.shop-contents h2 img{
  height:30px;
  vertical-align: baseline;
}

.shop-contents p{
  margin:20px auto 50px;
  text-align: center;
  line-height:2em;
}

@media screen and (max-width: 767px) {
  .shop-contents{
    margin: 30px auto 80px;
    width: 100%;
    }
  
  .shop-contents h2{
    font-size:15px;
    margin-bottom: 0;
  }
  
  .shop-contents h2 img{
    height:15px;
    vertical-align: baseline;
  }
  
  .shop-contents p {
    font-size: 12px;
    margin: 20px auto;
  }
  
  a.link-design {
    font-size:14px;
   }
  
  }

  .shop-photo {
    display: flex;
  }
  
  .shop-photo img {
    width: 50%;
  }

  .link-design{
    width:80%;
    margin:50px auto 0px;
    padding:10px;
    border:1px solid #000;
    text-align:center;
  
  }
  
  .link-design a{
    text-decoration: none;
  }
  
  a.link-design{
    display:block;
    color:#000;
    font-size:15px;
    padding:10px;
    box-sizing:border-box;
    border:1px solid #000000;
    text-decoration: none;
    text-align:center;
    margin:0 auto;
   }

/*------------------------------------------------------------------
#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;
}

/*------------------------------------------------------------------
#swiper
-------------------------------------------------------------------*/ 
.swiper {
  margin-top: 20px;
  z-index: 0;
  overflow-y: unset;
}
.swiper-slide {
  position: relative;
}
.card {
  width: 100%;
  height: 100%;
}
.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.swiper-pagination-bullet {
  /*ドットの色を変更*/
  background-color: white ;
  width: 5px;
  height: 5px;
  cursor: pointer;
  z-index: 1;
  opacity: 1;

}

  
  .swiper-pagination-bullet-active {
    /*アクティブなドットの透過度を1にする*/
    background-color: #767777;
    
  }
  .swiper-pagination {
    
    width: initial !important;
    left: initial !important;
    right: 10px !important;
  }

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

</pre></body></html>