/* 共通スタイル: すべてのデバイスに適用されるスタイル */
.sld-brand-box {
  background: #fff;
  border: 2px solid #111;
  padding: 30px 20px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  text-align: center;
  border-radius: 12px;
}
.sld-brand-box h2 {
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.sld-subtitle {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #444;
}
.sld-brand-box p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.sld-btn-wrap {
  margin-top: 20px;
}
.sld-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  margin: 5px 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  z-index: 0;
  color: #fff;
}

.sld-btn span {
  position: relative;
  z-index: 2; /* これが重要：テキストを最前面に */
}

.sld-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  z-index: 1; /* 擬似要素はテキストの後ろに */
  transition: all 0.4s ease;
}

.sld-btn.black {
  background: #333;
}

.sld-btn.black::after {
  background: #000;
}

.sld-btn.black:hover::after {
  left: 0;
}

.sld-btn.black:hover {
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.sld-btn.insta {
  background: #E1306C;
}

.sld-btn.insta::after {
  background: #C12E5D;
}

.sld-btn.insta:hover::after {
  left: 0;
}

.sld-btn.insta:hover {
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}





img.center-image {
    margin: 0 auto;
    display: block;
}

.bx-wrapper img {
    margin: 0 auto;
    width: 100%;
}
ul.bxslider {
    margin: 0 0 10px 0;
}

div#product-srh {
    /* padding: 115px 0 0 0; */
}

@media screen and (max-width: 768px) {
div#product-srh {
    /* padding: 145px 0 0 0; */
}
}

/* モバイルデバイス用スタイル: 画面幅が480ピクセル以下のデバイスに適用されるスタイル */
@media screen and (max-width: 480px) {
  
div#product-srh {
    padding: 0px 0 0 0;
}
    .bx-viewport {
    overflow: hidden !important;
}

ul.bxslider {
    margin: auto;
}
    
    img.center-image {
         /* スマートフォンの画面幅に合わせて画像の幅を100%に設定 */
        /* 必要に応じて、他のスタイルプロパティをここに追加 */
         margin-top: 75px;
    }

    .bx-wrapper {width: 100%;}


}

.slider {
    position: relative;
    width: 300px; /* 画像の幅に合わせます */
    height: 200px; /* 画像の高さに合わせます */
    overflow: hidden;
}

.slides {
    display: flex;
    width: 900px; /* 3枚の画像の幅の合計です (3 x 300px) */
}

.slide {
    width: 300px;
    transition: all 0.3s;
}

input[type="radio"] {
    display: none;
}

input#slide1:checked ~ .slides {
    margin-left: 0;
}

input#slide2:checked ~ .slides {
    margin-left: -300px;
}

input#slide3:checked ~ .slides {
    margin-left: -600px;
}

.navigation label {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #aaa;
    margin: 10px 5px;
    border-radius: 50%;
    cursor: pointer;
}

input#slide1:checked ~ .navigation label:nth-child(1),
input#slide2:checked ~ .navigation label:nth-child(2),
input#slide3:checked ~ .navigation label:nth-child(3) {
    background-color: #333;
}
