@charset "utf-8";
/* =========================================================
   KIHEI LP styles
   - Breakpoint: 768
   - Font: Noto Serif JP
========================================================= */

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

/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* 背景（トラック） */
::-webkit-scrollbar-track {
  background: #2c3338;
}

/* つまみ（ドラッグする部分） */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      #f7e7a9,
      #d4af37,
      #b8962e);
  border-radius: 10px;
}

/* ホバー時 */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      #ffeaa7,
      #e6c55a,
      #c9a227);
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* Lists */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images & media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Button */
button {
  padding: 0;
  cursor: pointer;
  background: transparent;
}

/* Remove Safari inner shadow */
input[type="search"] {
  -webkit-appearance: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Strong / emphasis */
strong {
  font-weight: inherit;
}

/* Focus styles (アクセシビリティは残す) */
:focus-visible {
  outline: 2px solid rgba(201, 163, 90, 0.6);
  outline-offset: 2px;
}

/* Hidden attribute */
[hidden] {
  display: none !important;
}

:root {
  --bg: #000;
  --panel: #0b0b0b;
  --text: #f2f2f2;
  --muted: rgba(255, 255, 255, .70);
  --gold: #c9a35a;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 18px 50px rgba(0, 0, 0, .55);
  --radius: 16px;
  --container: 1100px;
  --mediaW: 670px;
  /* 画像の基準幅 */
  --labelW: 84px;
  /* 縦ラベル幅 */
  --gap: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Serif JP","Noto Serif TC",
    "Libre Baskerville", serif;
  color: var(--text);
  letter-spacing: .02em;
  background: radial-gradient(ellipse at top,
      #151515 0%,
      #121212 18%,
      #0c0c0c 38%,
      #060606 62%,
      #020202 82%,
      #000 100%);
  position: relative;
}

/* 背景グラデ（常に全画面） */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at top,
      #151515 0%,
      #121212 18%,
      #0c0c0c 38%,
      #060606 62%,
      #020202 82%,
      #000 100%);
}

/* ノイズ（常に全画面） */
html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/noise.png");
  background-repeat: repeat;
  opacity: 0.05;
  /* 0.03〜0.07で調整 */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.legal__lang {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.legal__lang a {
  border: 1px solid rgba(255, 255, 255, .78);
  padding: 5px 20px;
}

/* ========= Language Switch ========= */
.langSwitch {
  margin-left: 50px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(6px);
}

.langSwitch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  letter-spacing: .08em;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}

.langSwitch__item:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 163, 90, .45);
  background: rgba(201, 163, 90, .3);
}

.langSwitch__item.is-current {
  border-color: rgba(201, 163, 90, .60);
  background: rgba(201, 163, 90, .5);
  color: #fff;
  pointer-events: none;
}

/* ========= Responsive ========= */
@media (max-width: 768px) {
  .langSwitch {
    gap: 12px;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 0;
  }

  .langSwitch__item {
    min-width: 40px;
    height: 28px;
    font-size: 12px;
    padding: 0 9px;
  }

  /* SPではbrandが詰まりやすいので折り返し許可 */
  .brand {
    flex-wrap: wrap;
    gap: 10px;
  }

}

/* ========= Helpers ========= */
.gold {
  color: var(--gold);
}

.section {
  padding: 100px 0;
}

.head-store {
  margin-top: 13px;
  color: var(--muted);
  font-size: 16px;
  margin-left: 10px;
  letter-spacing: .20em;
}

h2.sectionTitle {
  margin: 0 0 12px;
  text-align: center;
  font-size: 35px;
  letter-spacing: .18em;
  font-weight: 600;
  line-height: 1.8;
}

h2 span {
  font-size: 20px;
  color: #a78b52;
}

h3 {
  font-size: 27px;
}

.sectionSub {
  margin: 0 0 34px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 2;
  max-width: 670px;
}

.p--muted {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  padding: 5px;
}


/* ========= Header / Hero ========= */
.brand {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 44px 46px 0;
}

.brand__mark img {
  width: 120px;
  height: 120px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../img/daimaru/main-pc.webp");
  background-size: cover;
  /* 全面敷き */
  background-position: 70% 60%;
  background-repeat: no-repeat;
}


.hero__inner {
  padding: 44px 46px 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  min-height: 380px;
}

/* 造幣局刻印入り */
.hero__kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .20em;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.6vw, 43px);
  letter-spacing: .12em;
  line-height: 1.8;
  font-weight: 600;
  white-space: nowrap;
}

.hero__ctaRow {
  display: flex;
  gap: 10px;
  padding-top: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .25);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .10em;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .28);
}

.btn--gold {
  border-color: rgba(201, 163, 90, .55);
  background: rgba(201, 163, 90, .12);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}


/* ========= Reason ========= */
.centerCard {
  width: min(var(--mediaW), 100%);
  margin-inline: auto;
  text-align: center;
  padding-top: 50px;
}

#reason h3 {
  text-align: center;
  margin: 50px 0;
}

.centerCard__media {
  width: 100%;
  height: auto;
}

.centerCard__img {
  width: 100%;
  height: auto;
  display: block;
}

/* 切り替えボタン */
.centerCard__tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 70px 0;
}

.chip {
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .86);
  padding: 8px 14px;
  font-size: 14px;
  letter-spacing: .10em;
  cursor: pointer;
  user-select: none;
}

#reason p {
  margin: 0 auto;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 2;
  text-align: left;
  width: min(450px, 100%);
}

/* ========= Vertical text ========= */
.vtext {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .20em;
  color: rgba(255, 255, 255, .70);
  font-size: 14px;
  line-height: 1.6;
}

.vtext span {
  display: block;
}

/* ========= Feature ========= */
/* feature 全体は “右カラム基準” の 670px箱 */
.feature {
  position: relative;
  width: min(100%, var(--mediaW));
  margin-inline: auto;
  /* 画像と本文の左端を上と揃える */
  padding-left: 0;
  /* ここは0のまま */
}

/* 右カラム（画像/本文）は普通に積む */
.feature__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* 縦ラベルだけ “左に飛び出す” */
.feature__label {
  position: absolute;
  left: calc((var(--labelW) + var(--gap)) * -1);
  /* ← はみ出し量 */
  top: 0;
}

.feature h3 {
  padding-top: 20px;
}

.feature__body {
  padding: 6px 0;
  max-width: 360px;
  margin-top: 35px;
  padding-left: 10px;
}

.feature__body p {
  text-align: left;
  line-height: 2.2;
}

/* ========= Hallmark ========= */
.hallmark {
  position: relative;
  width: min(100%, var(--mediaW));
  margin-inline: auto;
  /* 画像と本文の左端を上と揃える */
  padding-left: 0;
}


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

.hallmark__body {
  padding: 6px 0;
  max-width: 360px;
  padding-right: 10px;
  margin-top: 35px;
  margin-right: 0;
  margin-left: auto;
  display: block;
}

.hallmark__label {
  position: absolute;
  right: calc((var(--labelW) + var(--gap)) * -1);
  /* ← はみ出し量 */
  top: 0;
}

.hallmark h3 {
  padding-top: 20px;
}

.hallmark__body p {
  text-align: left;
  line-height: 2.2;
}


/* ========= Collection ========= */
#collection.section {
  padding-top: 200px;
}

.collectionHead {
  margin: 50px 0 150px;
  letter-spacing: .14em;
  color: var(--muted);
  text-align: center;
}

.collectionHead span {
  color: #656464;
  padding-left: 20px;
}

.collection-body {
  width: min(100%, var(--mediaW));
  margin: 100px auto 200px;
}

.collecion-body .p {
  line-height: 2.2;
}

.collectionHead.mt {
  margin-top: 200px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 18px;
  row-gap: 100px;
}

.grid--bracelet {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 163, 90, .35);
  background: rgba(255, 255, 255, .03);
}

.card__thumb {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .12), transparent 55%),
    linear-gradient(135deg, #171717, #070707);
  position: relative;
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoomBadge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .35);
  display: grid;
  place-items: center;
  z-index: 2;
}

.zoomBadge svg {
  width: 18px;
  height: 18px;
  opacity: .88;
}

.card__body {
  padding: 12px 12px 14px;
}

.card__name {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
  letter-spacing: .06em;
  min-height: 25px;
}

.card__material {
  font-size: 14px;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  letter-spacing: .06em;
  padding-top: 10px;
}

.card__weight {
  font-weight: 500;
}

/* ========= Daimaru ========= */
.section--daimaru .container {
  display: grid;
  gap: 18px;
}

.daimaruHead {
  margin: 50px 0 50px;
  letter-spacing: .14em;
  color: var(--muted);
  text-align: center;
}


.daimaru__media {
  width: 100%;
  min-height: 475px;
  margin-inline: auto;
  padding-left: 50px;
  padding-right: 50px;
  background-image: url("../img/daimaru/daimaru-pc.webp");
  /* 実際のパスに変更 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Safari対策 */
  background-color: #000;
  display: flex;
  align-items: center;
  /* 縦中央 */
}

.daimaru__media .container {
  max-width: var(--mediaW);
}

#daimaru h3 {
  text-align: center;
  padding: 0px 0 50px;
  color: #656464;
}

#daimaru h3.store {
  padding-top: 150px;
}

#daimaru h3.gold {
  color: var(--gold);
  letter-spacing: 0.1rem;
}

.daimaru-body {
  width: min(100%, 570px);
  line-height: 2;
}


.daimaru__media img {
  width: 100%;
  height: auto;
}

.daimaru__panel {
  border-radius: 18px;
  background: rgba(0, 0, 0, .22);
  padding: 18px;
  width: min(100%, var(--mediaW));
  margin-inline: auto;
}

.daimaru__rows {
  margin-bottom: 14px;
}

.row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.row__k {
  color: rgba(255, 255, 255, .60);
  font-size: 16px;
  letter-spacing: .10em;
}

.row__v {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.8;
}

#daimaru p.p {
  font-size: 14px;
  padding: 50px 0;
  line-height: 2;
}

#daimaru p.p--muted {
  font-size: 12px;
}

#daimaru a.daimaru {
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 5px;
}

.daimaru__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.daimaru__cta span.small {
  font-size: 11px;
}

.icon {
  width: 20px;
  height: auto;
}

/* ========= Instagram ========= */
.insta {
  padding-top: 60px;
}

.insta__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.insta__title {
  margin: 0 0 50px;
  font-size: 27px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
}

.iconLink {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.iconLink__box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .80);
}

.insta .icon {
  width: 30px;
  height: 30px;
}

.insta p.p--muted {
  line-height: 1;
  margin-top: 7px;
}

.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 100px;
}

.insta__item {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  aspect-ratio: 1/1;
}

.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta__fallback {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .08em;
}

.footnote {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  letter-spacing: .10em;
}

.copyright {
  padding-bottom: 50px;
}

/* ========= Modal ========= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(980px, calc(100% - 32px));
  height: min(88vh, 860px);
  margin: 6vh auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(20, 20, 20, .92), rgba(0, 0, 0, .92));
  box-shadow: var(--shadow);
}

.modal__top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 14px;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .35);
}

.modal__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.modal__title strong {
  font-size: 14px;
  letter-spacing: .10em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal__title span {
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  letter-spacing: .08em;
}

.modal__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.iconbtn:hover {
  border-color: rgba(201, 163, 90, .45);
}

.modal__content {
  inset: 30px 0 0 0;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
}

.modal__bottom {
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .30);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  z-index: 5;
}

.modal__tabs,
.zoomTabs,
.zoom__tabs {
  position: relative;
  z-index: 5;
}

.viewbtn {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .86);
  padding: 10px 14px;
  font-size: 16px;
  letter-spacing: .08em;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.viewbtn[aria-pressed="true"] {
  border-color: rgba(201, 163, 90, .55);
  background: rgba(201, 163, 90, .10);
  color: #fff;
}

.hint {
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  letter-spacing: .06em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding-bottom: 15px;
}

body.is-modal-open {
  overflow: hidden;
  touch-action: none;
}

/* ===== Zoom HUD ===== */
.zoom {
  position: relative;
  overflow: hidden;
  touch-action: none;
  padding: 14px;
  overscroll-behavior: contain;
  contain: paint;
  z-index: 1;
}

#zoomViewport {
  position: absolute;
  inset: 14px;
  touch-action: none;
  overscroll-behavior: contain;
  will-change: transform;
  z-index: 1;
}

.zoom__img {
  position: absolute;
  left: 0;
  top: 0;

  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  display: block;

  transform-origin: 0 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}


.zoomHUD.zoomHUD--mini {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  user-select: none;
  pointer-events: auto;
}

/* ボタンと倍率の見た目 */
.zoomHUD__btn {
  width: 42px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .30);
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1;
}

.zoomHUD__ratio {
  min-width: 64px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .24);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 0 10px;
}

/* ========= Responsive (<= 768) ========= */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .section {
    padding: 54px 0;
  }

  .head-store {
    font-size: 13px;
  }

  h2.sectionTitle {
    font-size: 23px;
    letter-spacing: 0.1rem;
  }

  h2 span {
    font-size: 16px;
  }

  h3 {
    font-size: 20px;
    padding-left: 10px;
    padding-bottom: 20px;
    padding-right: 10px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
  }

  p,
  p.p {
    font-size: 16px;
  }

  .hero {
    background-image: url(../img/daimaru/main-sp.webp);
    background-position: bottom;
    height: 75dvh;
  }

  .brand {
    padding: 15px 15px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 18px 18px 22px;
    min-height: auto;
  }
  

  .hero__title {
    font-size: 24px;
    white-space: unset;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  }

  .hero__visual {
    height: 200px;
  }

  .hero__midTitle {
    padding: 26px 0 26px;
  }

  .brand__mark img {
    height: 70px;
    width: 70px;
  }

  #reason p {
    font-size: 16px;
  }

  /* 縦書き→横書きへ（SPは読みやすさ優先） */
  .feature,
  .hallmark {
    width: 100%;
  }

  .feature__label,
  .hallmark__label {
    position: static;
    margin: 0 0 12px 0;
    text-align: center;
  }

  #reason p,
  .feature__body,
  .hallmark__body,
  .collection-body {
    padding: clamp(16px, 4vw, 24px);
  }

  .hallmark {
    display: flex;
    flex-direction: column;
  }

  .hallmark__label {
    order: 1;
  }

  .hallmark__media {
    order: 2;
  }

  .hallmark__body {
    order: 3;
  }

  .vtext {
    writing-mode: horizontal-tb;
    letter-spacing: .12em;
    font-size: 16px;
    opacity: .85;
  }

  .hallmark {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hallmark__label {
    writing-mode: horizontal-tb;
    text-align: left;
    opacity: .9;
  }

  #collection.section {
    padding-top: 100px;
  }

  .collectionHead {
    margin-bottom: 50px;
  }

  .collection-body {
    margin-bottom: 100px;
    margin-top: 80px;
  }

  #collection .p--muted {
    margin-top: 35px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 70px;
  }

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

  .daimaru__media {
    margin-bottom: 100px;
  }

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

  .insta__bar {
    display: block;
  }

  .insta__title {
    margin: 0 auto 20px;
    text-align: center;
    font-size: 20px;
  }

  .insta p.p--muted {
    font-size: 13px;
  }

  .iconLink__box {
    width: 30px;
    height: 30px;
    margin-left: -30px;
  }

  .insta .icon {
    width: 20px;
    height: 20px;
  }

  .iconLink {
    display: flex;
    justify-content: center;
  }

  .modal__panel {
    width: calc(100% - 20px);
    height: 90vh;
    margin: 4vh auto 0;
  }

  .card__material {
    font-size: 13px;
  }

  .card__body {
    padding: 12px 5px 14px;
  }

  .zoom {
    padding: 10px;
    height: 60vh;
    min-height: 300px;
    align-items: start;
  }

  .zoomBadge {
    width: 25px;
    height: 25px;
    right: 4px;
    bottom: 4px;
    border: none;
  }

  .hint {
    width: 100%;
    text-align: center;
  }

  #daimaru {
    margin-top: 50px;
  }

  #daimaru h3 {
    padding: 0;
  }

  #daimaru h3.store {
    padding-top: 50px;
  }

  #daimaru .btn {
    padding: 12px 8px;
    max-width: 250px;
    width: 100%;
    margin: 0 auto 10px;
  }

  .daimaru__media {
    padding-left: 20px;
    padding-right: 20px;
    background-image: url(../img/daimaru/daimaru-sp.webp);
    max-width: 100vw;
  }

  .daimaru-body p {
    color: var(--muted);
    line-height: 2.2;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .row__k,
  .row__v {
    font-size: 15px;
  }

  /* SPは最小構成にする */
  .zoomHUD__row:nth-child(2) {
    display: none;
  }

  /* 右上に寄せて小さく */
  .zoomHUD.zoomHUD--mini {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }

  .zoomHUD__btn {
    width: 40px;
    height: 34px;
  }

  .zoomHUD__ratio {
    min-width: 58px;
    height: 34px;
    font-size: 11px;
    padding: 0 9px;
  }

  .insta__grid {
    gap: 20px;
  }
}

/* ========= Privacy Poricy ========= */
.simple .brand__mark {
  margin: 0 auto;
  display: block;
}

.legal {
  padding: 80px 0 100px;
}

.legal__head {
  text-align: center;
  margin: 0 0 30px;
}

.legal__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: .12em;
  font-weight: 600;
}

.legal__lead {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
  line-height: 2;
}

.legal__box {
  width: min(900px, 100%);
  margin: 28px auto 0;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .02);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  letter-spacing: .10em;
  font-weight: 600;
}

.legal p,
.legal li {
  color: rgba(255, 255, 255, .78);
  line-height: 2;
  font-size: 15px;
}

.legal ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  list-style: disc;
}

.legal a {
  border-bottom: 1px solid rgba(255, 255, 255, .30);
  padding-bottom: 2px;
}

.legal__meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .06em;
}

.legal__back {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: .6em;
  color: rgba(255, 255, 255, .85);
}

@media (max-width: 768px) {
  .legal {
    padding: 54px 0 70px;
  }

  .legal p,
  .legal li {
    font-size: 14px;
  }
  .btn--ghost{
    background: rgba(0, 0, 0, .5);
  }
}