@charset "UTF-8";

/* ページ全体を白背景に */
html,
body {
  background-color: #ffffff !important;
  margin: 0;
  padding: 0;
  font-family: "Poppins", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium",
               "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3,
               "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
               "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue,
               Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
               "Segoe UI Symbol", "Noto Color Emoji";
}

/* PC最小幅制限 */
@media screen and (min-width: 768px) {
  body {
    min-width: 1000px;
  }
}

/* ヘッダーとフッターの背景を白に明示 */
header,
footer {
  background-color: #ffffff !important;
}

/* ▼▼ ここが書き換え箇所 ▼▼ */
.main-contents {
  background-color: transparent;
  position: relative;
}
.main-contents img {
  max-width: 100%;
  height: auto;
}
/* ▲▲ ここまで書き換え ▲▲ */

/* セクション内部の背景解除（透明） */
.main-contents__inner {
  background-color: transparent !important;
}

/* セクションレイアウト */
.sakura-beauty-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.sakura-beauty-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
  gap: 20px;
}

/* 左カラム */
.sakura-left {
  flex: 1;
  min-width: 250px;
  text-align: left;
  padding-right: 20px;
}

.sakura-title {
  font-size: 18px;
  margin: 0 0 8px;
  color: #333;
}

.sakura-highlight {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.sakura-line {
  width: 40px;
  height: 2px;
  background-color: #14747d;
  margin-top: 12px;
}

/* 右カラム */
.sakura-right {
  flex: 1;
  min-width: 280px;
  text-align: right;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

/* 商品セクション */
.product-section {
  background-color: #d9e9ea;
  width: 100%;
  padding: 50px 20px;
  font-family: sans-serif;
  overflow: hidden;
}

.product-section + .product-section {
  margin-top: 80px;
}

/* 商品ブロック（PC横並び） */
.product-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 60px auto;
  background-color: #d9e9ea;
  padding: 20px;
}

/* reverse対応（PC） */
.product-row.reverse {
  flex-direction: row-reverse;
}

/* 商品画像 */
.product-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.product-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

/* 商品テキスト */
.product-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.product-brand {
  color: #14747d;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.product-title {
  color: #14747d;
  font-size: 20px;
  margin: 5px 0 10px;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.product-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #14747d;
  color: white !important;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

/* Pick up ボタン画像 */
.pickup-button-wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .product-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-row.reverse {
    flex-direction: column;
  }

  .product-image,
  .product-text {
    width: 100%;
  }

  .product-text {
    padding: 0 16px;
    text-align: center;
  }

  .product-image img {
    max-width: 100%;
  }
}

.section-gap {
  height: 50px;
  background-color: transparent;
}


.bg-wrapper {
  background-image: url("/freepage/haircare/backcolor.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

