/* ===== priceセクション全体 ===== */
.price {
  background-color: #fff;
  padding: 60px 0;
  margin-bottom: 50px;
}

/* 内側コンテナ */
.price-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.price--contents {
  max-width: 755px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.price-contents.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== SP調整（768px以下） ===== */
@media (max-width: 768px) {
    .price {
        padding: 20px 0; 
    }
  .price-inner {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* ============================
   price-default セクション
============================ */
.price-default {
  font-family: "Yu Mincho", "游明朝", serif;
  font-size: 1.2rem;
  margin-top: 50px;
}

/* h3 共通 */
.price-default h3 {
  margin-bottom: 12px;
  padding-bottom: 6px;
  padding-left: 20px;
  border-bottom: 2px solid var(--color-pink);
  font-weight: 600;
  line-height: 1.4;
}

/* h3 内の小文字（説明） */
.price-default h3 span {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 4px;
}

/* ============================
   table 共通
============================ */
.price-default table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

/* th：サービス名（左側） */
.price-default th {
  font-family: "Yu Mincho", "游明朝", serif;
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px dashed var(--color-pink);
  font-weight: 600;
  vertical-align: middle;
  line-height: 1.5;
}

/* td：時間・価格（右寄せ） */
.price-default td {
  text-align: right;
  padding: 12px 10px;
  border-bottom: 1px dashed var(--color-pink);
  font-family: "Yu Mincho", "游明朝", serif;
  line-height: 1.5;
}

/* ============================
   price-default スマホ調整
   （画面幅 768px 以下）
============================ */
@media (max-width: 768px) {

  .price-default h3 {
    padding-bottom: 4px;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .price-default h3 span {
    margin-top: 2px;
  }

  .price-default table {
    margin-bottom: 28px;
  }

  .price-default th,
  .price-default td {
    padding: 10px 6px;
  }

  .price-default th {
    line-height: 1.4;
  }
}

/* ============================
   Price Herb Block
============================ */
.price-herb {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  border: 1px solid #c4c4c4;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
}

/* 左側テキスト */
.price-herb-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
}

/* 右側写真エリア */
.price-herb-photo {
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center;
  flex-shrink: 0;
}

.price-herb-photo img {
  width: 230px;
  max-width: 100%;
  border-radius: 1rem;
  display: block;
}

/* ============================
   SP（スマホ）レイアウト
============================ */
@media (max-width: 768px) {
  .price-herb {
    flex-direction: column;
    text-align: left;
  }

  .price-herb-photo {
    justify-content: flex-start;
  }

  .price-herb-photo img {
    width: 100%;
    margin-top: 0;
  }
}

/* ============================
   Price Card
============================ */
.price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  background: #fff;
}

/* 左：テキスト */
.price-card-text {
  flex: 1;
}

.price-card-text h3 {
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.2em;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    #FFD3D3 60%
  );
}

.price-card-text p {
  margin-top: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

/* 右：写真 */
.price-card-photo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center; /* 縦中央 */
}

.price-card-photo img {
  width: 350px;
  max-width: 100%;
  display: block;
}

/* ============================
   SP レスポンシブ
============================ */
@media (max-width: 768px) {
  .price-card {
    flex-direction: column;
    text-align: left;
    padding: 0 0.5rem;
      gap: 0;
  }
  .price-card-text h3 {
    text-align: center;
  }

  .price-card-photo img {
    width: 100%;
    margin-top: 1rem;
  }
}

/* ===== attentionセクション全体 ===== */
.attention {
  background-color: #E5D6CD;
  padding: 60px 0;
  margin-bottom: 50px;
}

.attention-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 20px;
  box-sizing: border-box;
  
}

.attention-title{
  font-family: "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  font-size: 1.78rem;
  color: var(--color-brown);
  margin: 0 0 12px 0;
  line-height: 1.15;
}

.attention-item {
  font-family: "Yu Mincho", "游明朝", serif;
  display: flex;
  gap: 2rem;              /* カラム間の余白 */
  border: 1px solid #ddd; /* 全体を薄い枠で囲む場合（任意） */
  padding: 1.5rem;
  border-radius: 8px;
}

.attention-item > div {
  flex: 1;                /* 均等幅の2カラムにする */
}

/* h3 見出し少し大きめ */
.attention-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* リスト少し詰め気味 */
.attention-item ul {
  list-style-type: disc; 
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.attention-item ul li {
  margin-bottom: 0.4rem;    /* 行間の調整 */
}

/* 注釈を小さくしたい場合 */
.attention-small {
  font-size: 0.85rem;
  text-align: center;
}

/* ===== SP調整（768px以下） ===== */
@media (max-width: 768px) {
  .attention {
    padding: 50px 0;
  }
  .attention-inner {
    max-width: 100%;
    padding: 0 10px;
  }
    .attention-item {
    flex-direction: column;
  }
  .attention-small {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

}