@charset "UTF-8";

/* ========================================
  CSS Custom Properties
======================================== */
:root {
  --color-text: #1f1f1f;
  --color-page-bg: rgba(255, 255, 255, 0.08);
  --color-surface: #fdfcf9;
  --color-placeholder: #c8cbc6;
  --color-placeholder-border: #aeb2ac;
  --color-button: #b4b5b3;
  --color-button-hover: #9fa19e;
  --color-focus: #4f4771;
  --color-frame-line: rgba(183, 165, 124, 0.55);

  --wrapper-width: 430px;
  --content-padding: 20px;

  --radius-small: 4px;
  --radius-medium: 12px;
  --radius-large: 26px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 56px;
  --space-xl: 88px;

  --shadow-wrapper: 0 0 30px rgba(49, 42, 72, 0.16);

  --font-sans:
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
--font-heading: "Shippori Mincho", serif;
--font-body:
"Yu Mincho",
"Hiragino Mincho ProN",
"HGS明朝E",
serif;
}


/* ========================================
  Reset
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body p, h3{
    color:var(--color-text);
    font-family:var(--font-body);
    font-size:14px;
    line-height:1.9;
}

body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
  
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.75;
  
    background-color: #d9d1e6;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* ========================================
  Page Wrapper
  スマホでは画面幅いっぱい、PCでは中央430px
======================================== */
.page-wrapper {
    width: 100%;
    max-width: var(--wrapper-width);
    min-height: 100vh;
    margin-inline: auto;
    overflow: hidden;
  
    background-color: #d9d1e6;
  
    background-image: url("images/background.jpg");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    background-repeat:
      repeat-y,
      repeat-y;
    background-position:
      center top,
      center top;
  
    background-size:
      100% auto,
      100% auto;
  }

.section-inner {
  width: 100%;
  padding-inline: var(--content-padding);
}

.section-title {
  margin-bottom: var(--space-md);
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.04em;
    font-family: var(--font-heading);
    font-weight:700;
}



/* ========================================
  Hero
  CSSで簡易フレームを表現
  将来は hero-frame.png（860×1180px）に差し替え可能
======================================== */
.hero {
  padding: 18px 12px var(--space-xl);
}

.hero__title-image{
    display:block;
    width:min(80%,320px);
    height:auto;
    margin:0 auto;
}
.hero__main-image{
    display:block;
    width:min(75%,280px);
    aspect-ratio:750/1050;
    object-fit:cover;
    margin:34px auto 0;
}
/* ========================================
  Introduction
======================================== */
.introduction {
  padding: 24px 0 var(--space-xl);
  background: transparent;
}

.introduction__text {
    max-width: 36em;
    margin-inline: auto;
    line-height: 1.95;
    letter-spacing: 0.02em;
    text-align: center;
  }
  
  .introduction__text + .introduction__text {
    margin-top: 1.5em;
  }
/* ========================================
  Products
======================================== */
.products {
  padding: 28px 0 var(--space-xl);
}

.product-list {
  display: grid;
  gap: 56px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__image{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.product-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  width: min(100%, 330px);
  margin: 12px auto 0;
}

.product-card__name,
.pickup-card__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.product-card__detail,
.pickup-card__detail {
  font-size: 12px;
  line-height: 1.45;
  font-family:var(--font-heading);
}

.product-card__price,
.pickup-card__price {
  flex: 0 0 auto;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.product-card__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
  }

/* ========================================
  Pickup
  商品7はここで初登場
  将来は pickup-frame.png（860×1240px）に差し替え可能
======================================== */
.pickup {
  padding: 18px 0 var(--space-lg);
}

.pickup-card {
  position: relative;
  width: 100%;
  padding: 54px 24px 36px;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--color-frame-line);
  clip-path: polygon(
    8% 0,
    92% 0,
    92% 4%,
    96% 7%,
    100% 8%,
    100% 92%,
    96% 93%,
    92% 96%,
    92% 100%,
    8% 100%,
    8% 96%,
    4% 93%,
    0 92%,
    0 8%,
    4% 7%,
    8% 4%
  );
}

.pickup-card__image-link {
  display: block;
  width: min(74%, 250px);
  margin-inline: auto;
}

.pickup-card__text {
  margin-top: 28px;
  line-height: 1.85;
}

.pickup-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: 22px;
}
.pickup__image{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}
/* ========================================
  Buttons
======================================== */
.button {
    position: relative;
    overflow: hidden;
  
    display: inline-flex;
    justify-content: center;
    align-items: center;
  
    min-height: 46px;
    padding: 0 22px;
  
    color: #6b5f88;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-align: center;
  
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 999px;
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    box-shadow:
      0 6px 18px rgba(82,73,109,.10),
      inset 0 1px 0 rgba(255,255,255,.85);
  
    transition:
      background-color .25s ease,
      transform .25s ease,
      box-shadow .25s ease;
  }
.button::before {
    content: "";
    position: absolute;
    inset: 2px;
  
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.35);
  
    pointer-events: none;
  }
  .button--small {
    min-width: 96px;
    height: 42px;
  }

  .button--large {
    width: min(100%, 330px);
    min-height: 56px;
    margin-inline: auto;
    font-size: 16px;
  }

.button:hover {
    background: rgba(255,255,255,.78);
  
    box-shadow:
      0 10px 22px rgba(82,73,109,.16),
      inset 0 1px 0 rgba(255,255,255,.95);
  
    transform: translateY(-2px);
  }

  .button:active {
    transform: translateY(1px);
  }

.button:focus-visible,
.product-card__image-link:focus-visible,
.pickup-card__image-link:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

/* ========================================
  CTA
======================================== */
.cta {
  padding: 18px 0 var(--space-xl);
}

.cta__inner {
  display: grid;
  gap: 18px;
}

/* ========================================
  Footer
======================================== */
.footer {
  padding: 28px var(--content-padding) 48px;
  text-align: center;
}

.footer__copyright {
  display: block;
  margin-top: 66px;
  font-size: 10px;
  line-height: 1.5;
}
.footer__logo{
    display:block;
    width:180px;
    max-width:70%;
    height:auto;
    margin:0 auto;
}
.footer__text {
    margin-top: 24px;
  
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
  
    color: rgba(31,31,31,.78);
  }
  
  .footer__link {
    display: inline-block;
  
    margin-top: 20px;
  
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    font-weight: 600;
  
    color: #ffffff;
  
    transition: opacity .2s ease;
  }
  
  .footer__link:hover {
    opacity: .7;
  }
/* ========================================
  PC
  背景は画面全体に固定、中央だけスマホ幅
======================================== */
@media (min-width: 768px) {
    body{
        background-color:#d9d1e6;
        background-image:url("images/background-pc.jpg");
        background-repeat:no-repeat;
        background-position:center center;
        background-size:cover;
        background-attachment:fixed;
      }
    
      .page-wrapper{
        box-shadow:var(--shadow-wrapper);
      }
    
      .section-title{
        font-size:21px;
      }
    .page-wrapper {
      box-shadow: var(--shadow-wrapper);
    }
  
    .section-title {
      font-size: 21px;
    }
  }

/* ========================================
  Motion Accessibility
======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}