@charset "UTF-8";


body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fffdfb;
  color: #3b3b3b;
  letter-spacing: 0.3px;
  line-height: 1.75;
}

/* ============================================
   H1
============================================ */
.h1-top {
  font-size: 2.3rem;
  font-weight: 700;
  color: #9a4e23;
  margin-top: 22px;
  text-align: center;
}

/* ============================================
   H2（大見出し）h2-top
============================================ */
.h2-top {
  position: relative;
  padding: 22px 24px 18px;
  margin: 50px 0 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* 左のアクセントライン */
.h2-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #c6995f 0%, #b7854c 100%);
  border-radius: 10px 0 0 10px;
}


.h2-top::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d07a33;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

/* ============================================
   H2（内容の小見出し）h2-content
============================================ */
.h2-content .h2-border {
  position: relative;
  padding: 18px 22px 18px 26px;
  margin: 40px 0 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a3b2e;
  background: #fff8ef;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(130, 90, 50, 0.08);
}


.h2-content .h2-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#c97f36, #e6a76b);
  border-radius: 6px 0 0 6px;
}


.h2-content .h2-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #e4d5c4;
  border-radius: 2px;
}




.wrap2, .wrap3, .wrap4, .wrap-card {
  background: #fffefc;
  border-top: 1px solid #f2e6db;
  border-bottom: 1px solid #f2e6db;
  padding: 48px 0;
}


.p-top, .w-p {
  font-size: 1.07rem;
}
strong {
  color: #b45c1c;
}


.c-back {
  background: #ffffff;
  border: 1px solid #e7d8c7;
  border-radius: 12px;
  padding: 20px;
  transition: 0.25s ease;
}

.c-back:hover {
  box-shadow: 0 3px 10px rgba(160, 100, 50, 0.12);
  transform: translateY(-1px);
}

.h3-c {
  color: #a55320;
  font-size: 1.32rem;
  font-weight: 700;
}

/* 画像枠 */
.img-border {
  border-radius: 12px;
  border: 1px solid #ecd9c7;
}


.content-box {
  background: #ffffff;
  border: 1px solid #eaded2;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0px 1px 4px rgba(120, 80, 40, 0.06);
}

.y-box .y-border {
  background: #fff6ea;
  border-left: 4px solid #d37a23;
  padding: 13px 14px;
  display: block;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 14px;
}


.top-btn {
  background: #cf6b22;
  color: #fff !important;
  padding: 14px 32px;
  font-size: 1.15rem;
  border-radius: 6px;
  transition: 0.25s ease;
  display: inline-block;
}

.top-btn:hover {
  background: #b45c1c;
}


.ar-box {
  background: #ffffff;
  border: 1px solid #ecd9c7;
  border-radius: 8px;
  padding: 18px;
  margin-top: 12px;
}

.ar-l {
  font-weight: 600;
  color: #a05c26;
}
.promo-spot {
  max-width: 1000px;
  margin: 36px auto;
  padding: 22px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #efebe6;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
  display: flex;
  gap: 20px;
  align-items: center;
}

.promo-spot .spot-text {
  flex: 1;
  padding-left: 6px;
}

.promo-spot .spot-text .title {
  font-size: 1.45rem;
  color: #c41414;
  font-weight: 800;
  margin: 0 0 6px;
}

.promo-spot .spot-text .note {
  color: #666;
  margin: 0;
}

/* 画像を丸パネル化 */
.promo-spot .spot-img {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.promo-spot .spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.n-ul {
  list-style: none;
  counter-reset: n-ul-counter;
  padding-left: 0;
  margin: 20px 0;
}

.n-ul li {
  counter-increment: n-ul-counter;
  margin-bottom: 16px;
  padding-left: 45px;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #4a3b2e;
}

.n-ul li::before {
  content: counter(n-ul-counter); 
  position: absolute;
  left: 0;
  top: 0.15em;

  /* 丸デザイン */
  background: #fff1de;
  color: #c97f36;
  border: 2px solid #e3c4a8;
  border-radius: 50%;
  width: 28px;
  height: 28px;

  font-weight: 700;
  font-size: 0.95rem;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 4px rgba(180, 120, 60, 0.1);
}


  .n-ul li::before {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
}

.faq-area {
  margin-top: 40px;
}


.faq-box {
  border: 2px solid #e3d7c8;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 28px;
  background: #fffdf9;
  box-shadow: 0 2px 6px rgba(180, 140, 100, 0.08);
}

.faq-q {
  font-weight: 700;
  font-size: 1.2rem;
  color: #8a5525;
  margin-bottom: 14px;
  padding-left: 36px;
  position: relative;
}

.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c97f36;
  background: #fff1de;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-a {
  line-height: 1.75;
  font-size: 1.05rem;
  padding-left: 36px;
  position: relative;
  color: #4a3b2e;
}

.faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #c97f36;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.faq-box {
  border: 2px solid #e3d7c8;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 28px;
  background: #fffdf9;
  box-shadow: 0 2px 6px rgba(180, 140, 100, 0.08);
}

.faq-box p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #4a3b2e;
}

.faq-box .marker {
  padding-left: 36px;
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
}

.faq-box .marker::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c97f36;
  background: #fff1de;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-box p {
  padding-left: 36px;
  position: relative;
}

.faq-box p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 38px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: #c97f36;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-box .marker::before {
  top: 2px;
}


/* モーダル部分 */
.zoom-target img {
  cursor: zoom-in;
}

.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 8px;
  cursor: zoom-out;
}


/*　メディアクエリ */

@media (max-width: 768px) {

  /* FAQ Box */
  .faq-box {
    padding: 18px 20px;
  }
  .faq-box p {
    font-size: 1rem;
  }
  .faq-q {
    font-size: 1.1rem;
  }
  .faq-a {
    font-size: 1rem;
  }

  /* Promo Box */
  .promo-box {
    flex-direction: column;
    padding: 26px 22px;
  }

  /* Top Headings */
  .h1-top { 
    font-size: 1.9rem; 
  }
  .h2-top { 
    font-size: 1.55rem; 
  }

  /* Content Heading */
  .h2-content .h2-border {
    font-size: 1.4rem;
    padding: 14px 18px 14px 22px;
  }

  /* List Items */
  .n-ul li {
    padding-left: 42px;
    font-size: 1rem;
  }

  /* Promo Spot */
  .promo-spot { 
    flex-direction: row; 
    gap: 14px; 
    padding: 16px; 
  }
  .promo-spot .spot-img { 
    width: 96px; 
    height: 96px; 
  }
}
