@charset "utf-8";
/*===========================
add
===========================*/
.footAdress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
/* ===== セクション ===== */
.target-section {
    background: url("../img/content/5.jpg") center/cover no-repeat;
    padding: 80px 20px;
    position: relative;
}
/* 白オーバーレイ */
.target-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(255,255,255,0.9);*/
}
/* 中身 */
.target-section .wrapper {
    position: relative;
}
/* タイトル */
/*.target-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
  letter-spacing: 0.08em;
}*/
/* リード */
.target-lead {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}
/* ===== グリッド ===== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* ボックス */
.target-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
/* 見出し */
.target-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    border-left: 4px solid #c9a96e; /* 和風ゴールド */
    padding-left: 8px;
    text-align: left;
}
.target-box h3::after {
    height: 0px;
}
/* リスト */
.target-box ul {
    padding-left: 15px;
}
.target-box li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    list-style: disc;
}
/* 注意書き */
.target-note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #666;
}
/* ===== スマホ ===== */
@media screen and (max-width: 768px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}
.target-visual {
    margin-bottom: 40px;
}
.target-visual img {
    width: 50%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width: 480px) {
.target-visual img {
    width: 100%;
}
}

.greeting {
  background: url(../img/content/8.jpg) center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  color: #fff;
}

/* 黒グラデで読みやすく */
.greeting::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.greeting-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* タイトル */
.greeting-title {
text-shadow:none;
}

/* 本文 */
.greeting-text {
  line-height: 2;
  font-size: 15px;
}

/* 導入 */
.greeting-text .lead {
  font-size: 17px;
  margin-bottom: 25px;
}

/* 強調（使命） */
.mission {
  font-size: 18px;
  text-align: center;
  margin: 30px 0;
  font-weight: bold;
  letter-spacing: 1px;
}

/* 引用 */
.quote {
  text-align: center;
  font-style: italic;
  margin: 25px 0;
  opacity: 0.9;
}

/* 締め */
.closing {
  margin-top: 30px;
}

/* 署名 */
.sign {
  margin-top: 40px;
  text-align: right;
  line-height: 1.8;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .greeting {
    padding: 60px 15px;
  }

  .greeting-title {
    font-size: 24px;
  }

  .greeting-text {
    font-size: 14px;
  }
}


.fortune-detail {
  padding: 80px 20px;
  background: #f7f7f7;
}

.fortune-detail .inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
/*.sec-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}*/

/* 導入文 */
.lead {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* BOX共通 */
.info-box,
.period-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* 見出し */
/*.info-box h3,
.period-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-left: 4px solid #8b6f47;
  padding-left: 10px;
}*/

/* 2カラム */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* カード */
.info-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
}

/*.info-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}*/

/* リスト */
.info-card ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.info-card li {
	margin-bottom: 6px;
	line-height: 1.6;
	list-style-type: disc;
}

/* 注意 */
.note {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* 期間 */
.period-box p {
  line-height: 1.8;
}

/* 強調 */
.period-box strong {
  font-size: 18px;
  color: #8b6f47;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .sec-title {
    font-size: 22px;
  }
}


.delivery-method {
  background: url(../img/content/14.jpg) center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  /*color: #fff;*/
}

/* オーバーレイ */
.delivery-method::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.6);*/
}

.delivery-method .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
/*.delivery-method .sec-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}*/

/* リード */
.delivery-method .lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
}

/* 3カラム */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* カード */
.method-card {
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 25px;
  border-radius: 10px;
  line-height: 1.8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* 見出し */
/*.method-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}*/

/* おすすめ強調 */
.method-card.highlight {
  /*border: 2px solid #c9a86a;*/
  transform: scale(1.05);
}

/* ホバー */
/*.method-card:hover {
  transform: translateY(-5px);
}*/

/* スマホ */
@media screen and (max-width: 768px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card.highlight {
    transform: none;
  }
}



.fortune-price {
  padding: 100px 20px;
  background: #f9f9f9;
}

.fortune-price .inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
/*.sec-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
}*/

/* メインタイトル */
/*.price-main-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: #666;
}*/

/* カード共通 */
.price-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  line-height: 1.8;
}

/* メインカード */
.price-card.main {
  /*border: 2px solid #c9a86a;*/
  text-align: center;
  margin-bottom: 50px;
}

/* メニュー名 */
.menu-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 価格 */
.price {
  font-size: 28px;
  font-weight: bold;
  color: #c9a86a;
  margin-bottom: 15px;
}

.price.small {
  font-size: 20px;
}

/* 説明 */
.desc {
  font-size: 14px;
  margin-bottom: 10px;
}

/* 本文 */
.text {
  font-size: 14px;
  margin-top: 15px;
}

/* 注意 */
.note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* サブ */
.price-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .price-sub {
    grid-template-columns: 1fr;
  }

  .sec-title {
    font-size: 24px;
  }

  .price {
    font-size: 22px;
  }
}


.apply-section {
  background: url(../img/content/15.jpg) center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  /*color: #fff;*/
}

/* オーバーレイ */
.apply-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.6);*/
}

.apply-section .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
/*.sec-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}*/

/* 注意 */
.apply-note {
  background: rgba(255,255,255,0.9);
  color: #333;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  line-height: 1.8;
  border-left: 4px solid #c9a86a;
}

/* 3カラム */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* カード */
.apply-card {
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 25px;
  border-radius: 10px;
  line-height: 1.8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* 見出し */
/*.apply-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}*/

/* 価格 */
.apply-card .price {
  font-size: 22px;
  font-weight: bold;
  color: #c9a86a;
  margin-bottom: 10px;
}

/* おすすめ */
.apply-card.highlight {
  border: 2px solid #c9a86a;
  transform: scale(1.05);
}

/* ホバー */
/*.apply-card:hover {
  transform: translateY(-5px);
}*/

/* スマホ */
@media screen and (max-width: 768px) {
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .apply-card.highlight {
    transform: none;
  }

  .sec-title {
    font-size: 24px;
  }
}