  /* --- リセット --- */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, h1, h2, p, ul, li, form, input, button, select, textarea {
      font-family: 'Noto Sans JP', sans-serif;
    }

    /* --- ベース設定 --- */
    body {
      background-color: #fff;
      color: #333;
      line-height: 1.6;
      font-size: 16px;
      padding: 0 1em;
      padding-top: 100px;
      max-width: 500px;
      margin: 0 auto;
    }


    img {
      width: 100%;
      height: auto;
      display: block;
    }

    ul {
      list-style: none;
    }

    ul li {
      margin: 0.5em 0;
    }

    /* --- 固定ヘッダー --- */
 
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #F383CC;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; /* ← これで中央寄せ */
  padding: 0 1em;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-direction: column;       /* ロゴ画像とテキストを縦並びに */
  text-align: center;           /* テキストも中央に */
}

.logo img {
  height: 32px;
  width: auto;
}



.logo-text .main-text {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  letter-spacing: 0.5;
line-height: 1.1; /* ← 追加 */
}

.logo-text .sub-text {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: 0.9em;
  color: white;
  letter-spacing: 0.5;
}


    /* --- ヒーローセクション --- */
 
    .hero h1 {
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 0.5em;
      font-size: 1.5em;
      margin-top: -3em;
      position: relative;
      z-index: 1;
    }

/* ヒーローとイントロ画像の間をゼロに */
.no-margin {
  margin: 0 !important;
  padding: 0 !important;
}



.hero {
  padding-top: 100px;  /* ← ヘッダーと重ならないよう押し出す */
  margin: 0;
  text-align: center;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}



    /* --- 共通セクションスタイル --- */
    .intro, .pain, .solution, .income, .qa, .footer-banner {
      margin:  0;
      text-align: center;
    }


.solution {
  background: linear-gradient(to bottom, #d0f8e8, #b2f2d0);
  text-align: center;
  padding: 3em 1em;
	font-family:  'Yu Mincho', serif;
}

.solution h2 {
  font-size: 2em;
  color: #e91e63;
  margin-bottom: 1em;
  line-height: 1.4;	
 font-family:  'Yu Mincho', serif;
	 font-weight:600;
}

.solution-list {
  display: grid;
  gap: 2em;
  max-width: 600px;
  margin: 0 auto;
}

.solution-item {
  background: #ffffffcc; /* 半透明白でもOK */
  border: 1px solid #333;
  padding: 2em 1em;
  border-radius: 10px;
}

.solution-item h3 {
  position: relative;
  font-size: 1.4em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-item h3::before,
.solution-item h3::after {
  content: \"\";
  flex: 1;
  height: 2px;
  background: #333;
  margin: 0 0.5em;
}

.solution-item h3 span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  background: linear-gradient(transparent 60%, #fff59d 60%);
}

.solution-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

.income {
  background: url('image/黒皮.jpg') repeat center center / cover;
  color: #fff; /* テキストは白にして目立たせる */
  text-align: center;
  padding: 4em 1em;
}


.income img {
  width: 200px;
  height: 200px;
  object-fit: cover; /* 画像をトリミングして美しく正方形に */
  border-radius: 10px;
  margin: 1em auto;
  display: block;
}


.gold-price {
  white-space: nowrap;
  
  align-items: flex-end; /* ← ここがポイント！ */
  font-size: 4.5em;
  font-weight: bold;
  font-family: 'Yu Mincho', serif;
  background: linear-gradient(90deg, #ffd700, #f9a602);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-price .yen {
  font-size: 0.4em;
	margin-left: 0.1em;
  vertical-align: baseline;
  line-height: 1;
}

.overlap-cta-wrapper {
  position: relative;
  margin-top: 5em;  /* ← これで上に少しかぶせる */
  text-align: center;
  z-index: 20;
}

.overlap-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff7e5f, #ff6ec4);
  color: white;
  padding: 1em 2.5em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 110, 196, 0.3);
  transition: all 0.3s ease;
}

.overlap-cta:hover {
  background: linear-gradient(90deg, #ff6ec4, #ff7e5f);
  transform: translateY(-2px);
}


.store-button-list {
  max-width: 500px;
  margin: 2em auto;
}

.store-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.2em;
  margin-bottom: 0.5em;
  background: linear-gradient(to right, #ffe4f0, #ffd6e8);
  border-radius: 8px;
  text-decoration: none;
  color: #d81b60;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.store-button::after {
  content: "▶";
  font-size: 1.2em;
  color: #d81b60;
  transition: transform 0.2s ease;
}

.store-button:hover {
  background: linear-gradient(to right, #ffd6e8, #ffc1de);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ten{
	text-align: center;
	
}


.qa h2 {
  background: url('image/—Pngtree—high-resolution close-up of a crystal_16006653.jpg')no-repeat center center / cover;
  color: #303030;
  padding: 1em;
  border-radius: 8px;
  font-size: 1.5em;

}

.worry-list {
  margin: 2em 0;
  padding: 0;
  list-style: none;
}

.worry-list li {
  border-bottom: 1px dotted #fff;
  padding: 0.5em 0;
  font-size: 1em;
  color: #fff;
}

.worry-list li.red {
  color: #f44336;
}

.big-white {
  font-size: 1.5em;
  margin: 2em 0;
  font-weight: bold;
}

 

    /* --- アコーディオン --- */
    .accordion-item {
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      background: linear-gradient(135deg, #a8e6cf, #dcedc1);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .accordion-btn {
      width: 100%;
      background: transparent;
      border: none;
      text-align: left;
      padding: 15px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      color: #2e7d32;
      position: relative;
    }

    .accordion-btn::after {
      content: '+';
      position: absolute;
      right: 1em;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2em;
    }

    .accordion-btn.active::after {
      content: '−';
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      transition: max-height 0.4s ease;
      padding: 0 15px;
    }

    .accordion-content p {
      padding: 1em 0;
    }

    /* --- フォームエリア --- */

.entry-form h2{
	text-align: center;
	font-size: 1.4em;
      margin-bottom: 1em;
	font-family: 'Noto Serif JP', 'Yu Mincho', serif;
	 font-weight: bold;
    }


    .entry-form {
      background: #fff5f9;
      padding: 2em;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      max-width: 500px;
      margin: 2em auto;
    }

    
    .entry-form label {
      display: block;
      margin-bottom: 1.2em;
      font-weight: bold;
    }

    .entry-form input,
    .entry-form select,
    .entry-form textarea {
      width: 100%;
      padding: 0.8em;
      margin-top: 0.5em;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1em;
    }

    .entry-form button {
      display: block;
      margin: 2em auto 0;
      background: linear-gradient(135deg, #ff66a5, #ff4081);
      color: #fff;
      border: none;
      padding: 1em 2.5em;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(255, 105, 135, 0.3);
      transition: all 0.3s ease;
    }

    .entry-form button:hover {
      background: linear-gradient(135deg, #ff4081, #ff66a5);
      box-shadow: 0 12px 20px rgba(255, 64, 129, 0.4);
      transform: translateY(-3px);
    }

 

    .submit-message {
      margin-top: 1em;
      font-weight: bold;
      color: #009688;
      text-align: center;
    }

    /* --- フッターバナー --- */
    .fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  border-top: 1px solid #ccc;
  z-index: 9999;
}

.footer-btn {
  flex: 1;
  text-align: center;
  padding: 1em 0;
  font-size: 0.9em;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-right: 1px solid #eee;
}

.footer-btn:last-child {
  border-right: none;
}

/* 個別カラー */
.footer-btn.line {
  background: #87DC63;
  color: #fff;
}

.footer-btn.mail {
  background: #FFB866;
  color: #fff;
}

.footer-btn.tel {
  background: #FF9DDF;
  color: #fff;
}

    /* --- CTAボタン --- */
     .cta-button {
      position: relative;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 2em auto;
    }

    .cta-label {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: #ffeb3b;
      color: #00c300;
      font-weight: bold;
      padding: 0.2em 0.8em;
      border-radius: 5px;
      font-size: 0.8em;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .cta-main {
      background: linear-gradient(90deg, #ff7e5f, #ff6ec4);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 1em 2.5em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 110, 196, 0.4);
      align-items: center;
      justify-content: center;
      gap: 0.5em;
      width: 90%;
      max-width: 400px;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .cta-main:hover {
      background: linear-gradient(90deg, #ff6ec4, #ff7e5f);
      transform: translateY(-3px);
    }

    .cta-main .arrow {
      font-size: 1.5em;
    }

.store-map-wrapper {
    position: relative;
    max-width: 500px;
    margin: auto;
  }

  .store-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .store-link {
    position: absolute;
    left: 5%;
    width: 90%;
    height: 5%;
    display: block;
  }


   .store-link.kamisu     { top: 10%; }
  .store-link.mito       { top: 23.5%; }
  .store-link.nishifuna  { top: 31%; }
  .store-link.chiba      { top: 42%; }
  .store-link.narita     { top: 51%; }
  .store-link.kisarazu   { top: 60%; }
  .store-link.kinshicho  { top: 70%; }
  .store-link.numazu     { top: 80%; }
 
 /* ▼ 新規：丸妻店舗リンク */
  .store-link.maruduma-kinshicho    { top: 90%; height: 5%; }
  .store-link.maruduma-nishifuna    { top: 95%; height: 5%; }




 /*   /* --- レスポンシブ対応（タブレット以上） --- */
/*    @media (min-width: 768px) {
      body {
        padding-top: 64px;
      }

      .fixed-header {
        height: 64px;
        padding: 0 2em;
      }

      .fixed-header .logo img {
        height: 40px;
      }
		
	  .hero {
        margin-top: 64px; /* PC用ヘッダー高さ */
 /* }
		
	 .store-map-wrapper {
      max-width: 700px;
    }
		
		
/* --- レスポンシブ対応（PC） --- */
/*	@media (min-width: 1024px) {
  .logo img {
    height: 48px;
  }
		
  .logo-text .main-text {
    font-size: 1.6em;
    line-height: 1.05;
  }
}
.hero img {
  max-width: 1200px;
  margin: 0 auto;
}

		
	.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
	}	
		
.solution, .income, .entry-form {
  max-width: 960px;
  margin: 0 auto;
}

.solution-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
  }

  .solution-item {
    width: 45%;
  }

  .income {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
  }

  .syunyu {
    width: 30%;
  }
	*/	
  
    