@charset "UTF-8";


.site-header {
  text-align: center;
  margin-bottom: 40px;
}

.site-logo {
  max-width: 200px; 
  height: auto;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
  letter-spacing: 0.05em; 
}

.section-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}

.description {
  text-align: center;
  margin-bottom: 40px;
}

.form-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.select-group select {
  padding: 8px;
  margin: 0 4px;
}

.gold-button {
  background-color: #d8ae4e;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 20px auto !important;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.gold-button:hover {
  opacity: 0.9;
}

.note {
  text-align: center;
  font-size: 12px;
}

.profile-section {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
}

.profile-image {
  width: 200px;
  margin-right: 20px;
  margin-top: 20px;
}

.profile-content h3 {
  display: flex;
  align-items: baseline;
  gap: 0.25em; 
  font-size: 18px;
  margin: 0;
}

.profile-content h3 .furigana {
  font-size: 12px;
}

.profile-content h3 .title {
  font-size: 16px;
}

/* pickup-title に罫線 */
.pickup-title {
  font-weight: bold;
  text-align: center;
  margin: 80px 0 30px; /* 上下余白を調整 */
  font-size: 30px;
  display: flex;              /* フレックスで罫線とテキストを横並び */
  align-items: center;        /* 垂直方向を中央揃え */
  justify-content: center;    /* 中央寄せ */
  gap: 12px;                  /* テキストと罫線の間隔を適度に */
}

.pickup-title::before,
.pickup-title::after {
  content: "";
  flex: 1;                    /* 画面幅に応じて伸縮する罫線 */
  height: 1px;
  background: #ccc;
}

.pickup-title::before {
  right: 100%;
  margin-right: 20px;
}

.pickup-title::after {
  left: 100%;
  margin-left: 20px;
}


.item-section {
  margin-top: 30px;
}

.item-section img {
  max-width: 100%;
  height:auto;
  display: block;
  margin: 0 auto;
}

/* item-section 内のロゴ画像だけ中央寄せ */
.item-section > img[alt="ロゴ"] {
  display: block;
  margin: 0 auto;
  height: auto;
}

.item-name {
  font-size: 1.3rem;
  font-weight: bold;
  background: #f4f4f4;
  padding: 5px 10px;
  display: block;      /* ブロック要素にする */
  width: fit-content;  /* 内容幅に合わせる（対応外ブラウザなら max-content でも可） */
  margin: 10px auto;   /* 左右 auto で中央寄せ */
  letter-spacing: 0.1em;
  text-align: center;
}

.item-desc {
  margin: 40px 0;
  text-align: center;  /* 中央寄せ */
}

.product-section {
  display: flex;
  align-items: stretch;
  margin-top: 20px;
  gap: 0;
}



/* coord-boxes の交互寄せ */
.coord-boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.coord-boxes .coord-box:nth-child(odd) {
  align-items: flex-start;
  text-align: left;
}

.coord-boxes .coord-box:nth-child(even) {
  align-items: flex-end;
  text-align: left;
}

.coord-box {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.coord-box:nth-child(odd) {
  align-self: flex-start;
  text-align: left;
}

.coord-box:nth-child(even) {
  align-self: flex-end;
  text-align: left; /* テキストは画像の左端に揃える */
}

.coord-box img {
  display: block;
  margin: 0;       /* 左寄せに戻す */
  width: 100%;
  max-width: 500px;
  height: auto;
}

.coord_text {
  text-align: center;
  font-size: 22px;
  margin: 80px auto 60px;
  font-weight: bold;
}


.coord-caption {
  font-size: 12px;
  text-align: left;
  margin: 2px 0; /* 上下余白を詰める */
}

.coord-caption a,.product-item a{
  color: #4d4d4d;
  text-decoration: none;
}


/* 商品一覧 */
.product-list-section {
  margin-top: 80px;
}

.product-list-title {
  font-size: 1.3em;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-item {
  text-align: center;
}

.product-item img {
  max-width: 100%;
  height: auto;
}

.product-name {
  font-weight: normal;
  margin: 3px 0;
}


.product-price {
  color: #b8860b;
  font-weight: bold;
    margin: 3px 0;
}


/* --- mobile responsive --- */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
  }

  .profile-image {
    margin: 0 0 20px 0;
    width: 80%;
    max-width: 240px;
  }

  .profile-content {
    text-align: left; /* 左寄せに固定 */
  }

  .item-name {
    font-size: 1.4rem;
  }

  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}