@charset "UTF-8";

/* ===== reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== header ===== */
header {
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #D8C7B8;
}

/* ロゴ */
header img {
  width: 140px;
  height: auto;
}

/* TOPリンク */
header a {
  font-size: 14px;
  color: #5E524A;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

/* ホバー */
header a:hover {
  border: 1px solid #5E524A;
  background: rgba(255,255,255,0.3);
}
body {
  font-family: "Noto Sans JP", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  background: #FAF8F6;
  color: #5E524A;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/* ===== header ===== */
header {
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  background: #D8C7B8;
}

header img {
  width: 150px;
  height: auto;
}

/* ===== hero ===== */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  overflow: hidden;
}

.hero h1 {
  display: none;
}

.hero > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 246, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.hero .logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 80%);
  height: auto;
  z-index: 2;
}

.catchcopy {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #5E524A;
  text-align: center;
  white-space: nowrap;
}

/* ===== explanation ===== */
.explanation {
  padding: 110px 24px;
  text-align: center;
  background: #FAF8F6;
}

.section-title {
  font-size: 42px;
  letter-spacing: 0.12em;
  color: #8F7B73;
  margin-bottom: 32px;
}

.explanation p {
  font-size: 17px;
  color: #5E524A;
}

/* ===== shop ===== */
.shop {
  padding: 90px 24px 120px;
  background: #F2EDE8;
}

.items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.item {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(94, 82, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(94, 82, 74, 0.14);
}

.item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.item-title {
  font-size: 20px;
  color: #5E524A;
  padding: 22px 22px 4px;
}

.price {
  padding: 0 22px 24px;
  color: #B89F8A;
  font-size: 18px;
  font-weight: 600;
}

.item a {
  display: block;
  width: calc(100% - 44px);
  margin: 0 22px 24px;
  padding: 14px 18px;
  text-align: center;
  background: #B89F8A;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.3s ease;
}

.item a:hover {
  background: #A68E79;
  transform: translateY(-2px);
}


.shop > a {
  display: block;
  width: fit-content;
  margin: 56px auto 0;
  padding: 16px 42px;
  background: transparent;
  border: 1px solid #B89F8A;
  color: #5E524A;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
}

.shop > a:hover {
  background: #B89F8A;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== footer ===== */
footer {
  background: #CBB9AA;
  padding: 56px 24px 36px;
  text-align: center;
  color: #5E524A;
}

footer img {
  width: 150px;
  margin: 0 auto 28px;
}

footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 14px;
}

footer a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 1;
}

/*特定商取引*/
.legal {
  background: #FAF8F6;
  padding: 100px 24px 120px;
  color: #5E524A;
}

.legal-inner {
  max-width: 920px;
  margin: 0 auto;
}

.legal h1 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #8F7B73;
  margin-bottom: 28px;
}

.legal-lead {
  text-align: center;
  margin-bottom: 56px;
  font-size: 15px;
  line-height: 1.9;
}

.legal-list {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(94, 82, 74, 0.08);
}

.legal-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid #E8DDD5;
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-row dt {
  background: #E7DDD4;
  padding: 24px 26px;
  font-weight: 500;
  color: #5E524A;
}

.legal-row dd {
  padding: 24px 30px;
  line-height: 1.9;
  color: #5E524A;
}

.legal-note {
  margin-top: 28px;
  font-size: 13px;
  color: #8F7B73;
  text-align: right;
}

/* ===== privacy ===== */
.privacy {
  background: #FAF8F6;
  padding: 100px 24px 120px;
  color: #5E524A;
}

.privacy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.privacy h1 {
  text-align: center;
  font-size: 34px;
  color: #8F7B73;
  margin-bottom: 28px;
}

.privacy-lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.9;
}

.privacy-section {
  background: #fff;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(94, 82, 74, 0.06);
}

.privacy-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6E5F54;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.9;
}

.privacy-section ul {
  padding-left: 18px;
  margin-top: 8px;
}

.privacy-section li {
  margin-bottom: 6px;
  font-size: 15px;
}

.privacy-date {
  text-align: right;
  margin-top: 30px;
  font-size: 13px;
  color: #8F7B73;
}

/* ===== 利用規約 ===== */
.terms {
  background: #FAF8F6;
  padding: 100px 24px 120px;
  color: #5E524A;
}

.terms-inner {
  max-width: 900px;
  margin: 0 auto;
}

.terms h1 {
  text-align: center;
  font-size: 34px;
  color: #8F7B73;
  margin-bottom: 28px;
}

.terms-lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.9;
}

.terms-section {
  background: #fff;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(94, 82, 74, 0.06);
}

.terms-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6E5F54;
}

.terms-section p {
  font-size: 15px;
  line-height: 1.9;
}

.terms-section ul {
  padding-left: 18px;
  margin-top: 8px;
}

.terms-section li {
  margin-bottom: 6px;
}

.terms-date {
  text-align: right;
  margin-top: 30px;
  font-size: 13px;
  color: #8F7B73;
}

/* ===== contact ===== */
.contact {
  background: #FAF8F6;
  padding: 100px 24px 120px;
  color: #5E524A;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact h1 {
  text-align: center;
  font-size: 34px;
  color: #8F7B73;
  margin-bottom: 28px;
}

.contact-lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 50px;
}

.contact-form {
  background: #fff;
  padding: 46px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(94, 82, 74, 0.08);
}

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #5E524A;
}

.form-group label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  color: #fff;
  background: #B89F8A;
  border-radius: 999px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0D3C8;
  border-radius: 12px;
  background: #FAF8F6;
  color: #5E524A;
  font-family: inherit;
  font-size: 15px;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B89F8A;
  box-shadow: 0 0 0 3px rgba(184, 159, 138, 0.18);
}

.form-check {
  margin: 30px 0;
  font-size: 14px;
}

.form-check a {
  color: #8F7B73;
  text-decoration: underline;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: #B89F8A;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #A68E79;
  transform: translateY(-2px);
}

/* ===== product detail ===== */
.product-detail {
  background: #FAF8F6;
  padding: 100px 24px 120px;
}

.product-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 画像 */
.product-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(94, 82, 74, 0.12);
}

/* テキスト */
.product-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #5E524A;
}

.product-price {
  font-size: 22px;
  color: #B89F8A;
  margin-bottom: 24px;
}

.product-desc {
  line-height: 1.9;
  margin-bottom: 26px;
}

/* メタ情報 */
.product-meta {
  margin-bottom: 36px;
}

.product-meta li {
  margin-bottom: 8px;
  font-size: 15px;
}

.product-meta span {
  color: #8F7B73;
  font-weight: 500;
}

/* ボタン */
.buy-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #B89F8A;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #A68E79;
  transform: translateY(-2px);
}

/* ===== purchase ===== */
.purchase {
  background: #FAF8F6;
  padding: 100px 24px;
}

.purchase-inner {
  max-width: 720px;
  margin: 0 auto;
}

.purchase h1 {
  text-align: center;
  font-size: 32px;
  color: #8F7B73;
  margin-bottom: 20px;
}

.purchase-lead {
  text-align: center;
  margin-bottom: 40px;
}

/* 振込ID */
.payment-id-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(94, 82, 74, 0.08);
}

#payment-id {
  font-size: 36px;
  letter-spacing: 0.2em;
  color: #B89F8A;
  margin: 10px 0;
  font-weight: bold;
}

/* フォーム */
.purchase-form {
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(94, 82, 74, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: #B89F8A;
  color: #fff;
  font-size: 16px;
}

.thanks {
  background: #FAF8F6;
  padding: 100px 24px;
  color: #5E524A;
}

.thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks h1 {
  font-size: 32px;
  color: #8F7B73;
  margin-bottom: 24px;
}

.thanks p {
  line-height: 1.9;
}

.thanks-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  margin-top: 24px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(94, 82, 74, 0.08);
}

.thanks-box h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #6E5F54;
}

.thanks-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 15px 36px;
  background: #B89F8A;
  color: #fff;
  border-radius: 999px;
}

/* ===== 商品一覧ページ ===== */
.shouhin {
  background: #FAF8F6;
  padding: 100px 24px 120px;
  color: #5E524A;
}

.shouhin h1 {
  text-align: center;
  font-size: 36px;
  color: #8F7B73;
  letter-spacing: 0.12em;
  margin-bottom: 56px;
}

.shouhin .items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.shouhin .item {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(94, 82, 74, 0.08);
  transition: 0.3s ease;
}

.shouhin .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(94, 82, 74, 0.14);
}

.shouhin .item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shouhin .item-title {
  padding: 22px 22px 4px;
  font-size: 20px;
  color: #5E524A;
}

.shouhin .price {
  padding: 0 22px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #B89F8A;
}

.shouhin .item a {
  display: block;
  width: calc(100% - 44px);
  margin: 0 22px 24px;
  padding: 14px 18px;
  text-align: center;
  background: #B89F8A;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: 0.3s ease;
}

.shouhin .item a:hover {
  background: #A68E79;
  transform: translateY(-2px);
}



@media (max-width: 900px) {
  .items {
    grid-template-columns: repeat(2, 1fr);
  }

  .catchcopy {
    font-size: 18px;
  }
  .shouhin .items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  header {
    height: 70px;
    padding: 0 20px;
  }

  header img {
    width: 125px;
  }

   header {
    height: 70px;
    padding: 0 20px;
  }

  header img {
    width: 120px;
  }

  header a {
    font-size: 13px;
    padding: 6px 12px;
  }

  .hero {
    height: calc(100vh - 70px);
    min-height: 520px;
  }

  .hero .logo {
    width: 90%;
    top: 45%;
  }

  .catchcopy {
    top: 65%;
    font-size: 14px;
    white-space: normal;
    width: 90%;
  }

  .explanation {
    padding: 80px 22px;
  }

  .section-title {
    font-size: 34px;
  }

  .explanation p {
    font-size: 15px;
    text-align: left;
  }

  .shop {
    padding: 70px 20px 90px;
  }

    .item a {
    padding: 13px 16px;
    font-size: 14px;
  }

  .shop > a {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px 20px;
    margin-top: 40px;
  }

  .items {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer ul {
    flex-direction: column;
    gap: 12px;
  }

  /*特定商取引*/
    .legal {
    padding: 70px 18px 90px;
  }

  .legal h1 {
    font-size: 26px;
    line-height: 1.5;
  }

  .legal-lead {
    text-align: left;
    margin-bottom: 36px;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row dt {
    padding: 18px 20px;
  }

  .legal-row dd {
    padding: 18px 20px 24px;
  }

  .legal-note {
    text-align: left;
  }

  /*プライバシーポリシー*/
  .privacy {
    padding: 70px 18px;
  }

  .privacy h1 {
    font-size: 26px;
  }

  .privacy-lead {
    text-align: left;
  }

  .privacy-section {
    padding: 20px;
  }

  /*利用規約*/
   .terms {
    padding: 70px 18px;
  }

  .terms h1 {
    font-size: 26px;
  }

  .terms-lead {
    text-align: left;
  }

  .terms-section {
    padding: 20px;
  }
  /*お問合せ*/
  .contact {
    padding: 70px 18px 90px;
  }

  .contact h1 {
    font-size: 26px;
  }

  .contact-lead {
    text-align: left;
  }

  .contact-form {
    padding: 28px 20px;
  }
  /*商品詳細*/
   .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-title {
    font-size: 26px;
  }

  .product-price {
    font-size: 20px;
  }
  /*商品一覧*/
   .shouhin {
    padding: 70px 20px 90px;
  }

  .shouhin h1 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .shouhin .items {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}