  <style>

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
 font-family: sans-serif; 
 line-height: 1.6; 
 color: #333; 
 padding: 20px; 
}



/* お供え花について */
.osonae-banner {
  background: none;
  text-align: center;
  margin: 7rem 0 0 0;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #3572b0;
}

.osonae-banner__title {
  font-size: 2rem;
  color: #333;
  margin: 0;
  font-weight: bold;
}

.osonae-intro {
 font-size: 1.5rem; 
 color: #666; 
 margin-bottom: 1em; 
 text-align: left;

}




/* お供えテーブル */
.osonae {
  margin: 2em 0;
  overflow-x: auto;
}

.osonae-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #3572b0;
}

.osonae-table th,
.osonae-table td {
  border: 1px solid #3572b0;
  padding: 0.5em 1em;
  font-size: 1.4rem;
  vertical-align: top;
  white-space: nowrap; /* PC用はすべて nowrap に */
}

.osonae-table th {
  width: 4em;
  text-align: center;
  font-weight: normal;
  color: #333;
  background-color: #d0e3f0;
}

.osonae-table td {
  color: #333;
}

.osonae-table td a {
  color: #06c;
  text-decoration: underline;
}






/* おすすめコンテンツ */

.related-posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 2rem;
  margin: 0;
  list-style: none;
}

.related-post-item {
  margin: 0;
  padding: 0;
}

.related-post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-post-card:hover {
  background-color: #f5f5f5;
}

.related-post-card a,
.related-post-card a:link,
.related-post-card a:visited,
.related-post-card a:hover,
.related-post-card a:active,
.related-post-card a:focus {
  color: inherit !important;
  text-decoration: none !important;
}

.related-post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.related-post-body {
  padding: 15px;
  flex-grow: 1;
}

.related-post-title-text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: normal;
}

/* Q&A */

    .accordion {
      max-width: 800px;
      margin: 0 auto;
    }

    .accordion-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .accordion-header {
      background: #e9f0f7;
      padding: 1rem;
      font-weight: bold;
      cursor: pointer;
      position: relative;
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 1rem;
      font-size: 1.2rem;
    }

    .accordion-item.active .accordion-header::after {
      content: '−';
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fdfdfd;
      padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
      max-height: 300px;
      padding: 1rem;
    }



</style>




