@charset "utf-8";@charset "utf-8";

/* 1. ページ全体の背景色を #EBE3CC に設定 */
body {
  background-color: #EBE3CC;
}

.image {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.image img {
  display: block;
  width: 100%;
  height: auto;
}

.background {
  background-color: #EBE3CC;
  padding: 2px;
  width: 100px;
  text-align: center;
  font-size: 1px;
}

/* 2. 背景画像を無効化し、背景色を指定（必要に応じて調整してください） */
.backcolor {
  background-color: #EBE3CC;
  /* background-image:url("/photo/page/20251029/background-gry2.jpg"); */
}

#Area {
  margin: 0 auto 100px;
  display: block;
}

#Area .btn-area1 ul li a {
  display: block;
  font-size: 18px;
  line-height: 350%;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  background-color: #544238; /* ボタンの背景色をブラウンに変更 */
  font-family: 'Optima', 'Yu Gothic Medium', '游ゴシック Medium', 'Franklin Gothic Medium', 'Osaka', 'Roboto', sans-serif;
}

#Area .btn-area1 ul li a:hover {
  opacity: 0.8;
  display: block;
  font-size: 18px;
  line-height: 350%;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #544238; /* ホバー時の背景色を少し明るいブラウンに */
  font-family: 'Optima', 'Yu Gothic Medium', '游ゴシック Medium', 'Franklin Gothic Medium', 'Osaka', 'Roboto', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a.anchor {
  display: block;
}

.pc_only {
  display: block;
}

.pc-br {
  display: inline-block;
}

.sp-br {
  display: none;
}

.text02 {
  position: absolute;
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  color: #544238; /* ブラウンに変更 */
  font-family: 'Optima', "Arial", "游ゴシック", sans-serif;
  margin-top: 20px;
  margin-bottom: 30px;
}

.text03 {
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #544238; /* ブラウンに変更 */
  font-family: 'Optima', "Arial", "游ゴシック", sans-serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 50px;
}

.text04 {
  margin: 0 auto;
  font-size: 15px;
  font-family: 'Optima', Arial, sans-serif;
  text-align: center;
  color: #544238; /* ブラウンに変更 */
  margin-bottom: 10%;
}

.text04 span {
  padding: 0 30px;
}

.text05 {
  font-family: 'Optima', "Arial", "游ゴシック", sans-serif;
  font-size: 15px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 40px;
  color: #544238; /* ブラウンに変更 */
}

.ttl-area {
  max-width: 1020px;
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 各スライド画像のスタイル */
.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeInOut 5s infinite;
}

/* 最初の画像だけ親要素の高さを確保させる */
.slideimg:nth-child(1) {
  position: relative;
  animation-delay: 0s;
}

/* 2枚目の画像のアニメーション遅延 */
.slideimg:nth-child(2) {
  animation-delay: 2s;
}

/* 3枚目の画像のアニメーション遅延 */
.slideimg:nth-child(3) {
  animation-delay: 5s;
}

/* フェードイン・アウトのアニメーション */
@keyframes fadeInOut {
  0% { opacity: 0; }
  36% { opacity: 1; }
  63% { opacity: 1; }
  100% { opacity: 0; }
}

/* 画像の表示調整 */
.slideimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.box1029 ul {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

li {
  list-style: none;
}

.box1029 li:nth-child(2) {
  margin: 0 0 0 10px;
}

.box1029 {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 200px;
  position: relative;
}

.line1219 {
  border-top: 2px solid #8C6F5E; /* ブラウンに変更 */
  width: 100%;
  margin-top: 50px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* クレジット部分 */
.style-credit {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #544238; /* ブラウンに変更 */
  font-family: 'Optima', "Arial", "游ゴシック", sans-serif;
  font-weight: bold;
}

.credit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  border-bottom: 1px solid #D9CDC6; /* 薄いベージュブラウンに変更 */
  padding-bottom: 5px;
}

.buy-btn {
  background: #544238 !important; /* ボタン背景色をブラウンに変更 */
  color: #fff !important;
  text-decoration: none !important;
  padding: 2px 15px;
  font-size: 10px;
  display: inline-block;
  font-family: 'Optima', sans-serif;
}

@media screen and (max-width:767px) {

  /* 3. スマホ表示で背景色をブラウンではなく #EBE3CC に統一する場合 */
  .background {
    background-color: #EBE3CC; 
    padding: 2px;
    width: 100%;
    margin: 50px 0;
    text-align: center;
    font-size: 17px;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline-block;
  }

  .ttl-area {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .text02 {
    margin: 0 auto;
    text-align: left;
    font-size: 11px;
    font-family: 'Optima', "Arial", "游ゴシック", sans-serif;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .text03 {
    font-size: 20px;
    text-align: center;
    margin-top: 50px;
  }

  .text04 {
    font-size: 15px;
  }

  .text05 {
    font-size: 13px;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-top: 10px;
    line-height: 20px;
  }

  .box1029 {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 70px;
  }

  .line1219 {
    border-top: 1px solid #D9CDC6; /* 薄いベージュブラウンに変更 */
    width: 100%;
    margin-top: 50px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .style-credit {
    font-size: 12px;
    font-weight: normal;
  }
}

.text04 {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

/* PC表示の切り替え */
@media screen and (min-width: 768px) {
  .text04 {
    flex-direction: row; /* PCでは横並び */
    justify-content: center;
    gap: 30px;
  }
}

/* ==========================================
   リード文（中央寄せ）＆ 商品説明（左寄せ）設定
========================================== */

/* 1. リード文エリア：中央寄せ ＆ Optimaフォント適用 */
#Area .main {
  text-align: center !important; /* 中央寄せ */
  font-family: 'Optima', "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", sans-serif;
  line-height: 1.8;
  color: #544238;
}

/* 2. 各商品説明文（.text05）：PC・スマホともに左寄せ */
.text05 {
  text-align: left !important; /* 左寄せ */
  font-family: 'Optima', "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", sans-serif;
  line-height: 1.8;
  color: #544238;
}