*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  width:100%;
  overflow-x:hidden;
  background:#f8f6f1;
  color:#111;
  font-family:Arial,"Helvetica Neue","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  letter-spacing:.035em;
  line-height:1.7;
}

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

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

/* =========================
   TOP BAR
========================= */

.topbar{
  height:34px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#111;
  color:#fff;
  font-size:12px;
  letter-spacing:.16em;
  text-align:center;
  padding:0 12px;
}

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:rgba(248,246,241,.92);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(17,17,17,.08);

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px clamp(18px,4vw,42px);
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  opacity:.78;
  mix-blend-mode:multiply;
  flex-shrink:0;
}

.brand strong{
  display:block;
  font-size:clamp(18px,2vw,24px);
  letter-spacing:.24em;
  line-height:1;
  white-space:nowrap;
}

.brand small{
  display:block;
  margin-top:6px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
  color:#666;
}

nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

nav a{
  font-size:12px;
  font-weight:800;
}

nav a span{
  display:block;
  margin-top:4px;
  font-size:10px;
  font-weight:500;
  letter-spacing:.08em;
}

.cart-button{
  background:#111;
  color:#fff;
  padding:14px 22px;
  border-radius:999px;
  transition:.25s ease;
}

.cart-button:hover{
  opacity:.86;
}

/* =========================
   HERO
========================= */

.hero{
  width:100%;
  max-width:1440px;

  margin:0 auto;

  min-height:calc(100vh - 88px);

  display:grid;
  grid-template-columns:minmax(320px,42%) minmax(320px,58%);
  align-items:center;
  gap:56px;

  padding:
    clamp(40px,6vw,70px)
    clamp(18px,5vw,60px)
    clamp(60px,7vw,84px);
}

.kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.22em;
  margin-bottom:22px;
  color:#666;
}

.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px,6vw,88px);
  line-height:1.18;
  font-weight:400;
  letter-spacing:.06em;
  margin-bottom:28px;
}

.lead{
  max-width:520px;
  font-size:15px;
  line-height:2;
  color:#444;
  margin-bottom:34px;
}

.hero-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-links a,
.contact-section a,
.price-layout aside a,
.map a{
  border:1px solid #111;
  background:#fff;
  padding:15px 28px;
  font-size:13px;
  font-weight:800;
  transition:.25s ease;
}

.hero-links a:first-child,
.contact-section a{
  background:#111;
  color:#fff;
}

.hero-links a:hover,
.contact-section a:hover,
.price-layout aside a:hover,
.map a:hover{
  transform:translateY(-2px);
}

.hero-photo{
  position:relative;
  width:100%;
  height:min(70vw,650px);

  overflow:hidden;
  border-radius:28px;

  background:#e9e3d9;
}

.hero-main-image{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-label{
  position:absolute;
  right:22px;
  bottom:22px;

  background:rgba(255,255,255,.78);
  backdrop-filter:blur(10px);

  padding:10px 14px;
  border-radius:999px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
}

/* =========================
   FEATURE
========================= */

.feature-row{
  width:min(1220px,calc(100% - 36px));

  margin:-44px auto 90px;

  background:#fff;
  border:1px solid rgba(17,17,17,.08);

  display:grid;
  grid-template-columns:repeat(3,1fr);

  position:relative;
  z-index:2;
}

.feature-row div{
  padding:30px 34px;
}

.feature-row div + div{
  border-left:1px solid rgba(17,17,17,.08);
}

.feature-row span{
  font-family:Georgia,serif;
  font-size:13px;
  color:#777;
}

.feature-row h3{
  font-family:Georgia,serif;
  font-size:26px;
  font-weight:400;
  margin:12px 0 8px;
}

.feature-row p{
  font-size:13px;
  color:#555;
}

/* =========================
   SECTION
========================= */

.section{
  width:min(1220px,100%);
  margin:0 auto;
  padding:
    86px
    clamp(18px,4vw,42px)
    0;
}

.section-title{
  display:flex;
  align-items:end;
  gap:20px;

  padding-bottom:16px;
  margin-bottom:34px;

  border-bottom:1px solid rgba(17,17,17,.1);
}

.section-title h2{
  font-family:Georgia,serif;
  font-size:clamp(32px,4vw,42px);
  font-weight:400;
  letter-spacing:.08em;
}

.section-title p{
  margin-bottom:7px;
  font-size:12px;
  font-weight:800;
}

/* =========================
   CARD GRID
========================= */

.card-grid{
  display:grid;
  gap:28px;
}

.four{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.card-grid article{
  display:flex;
  flex-direction:column;

  min-height:410px;

  background:#fff;
  border:1px solid rgba(17,17,17,.08);

  padding:18px;

  border-radius:24px;

  transition:.25s ease;
}

.card-grid article:hover{
  transform:translateY(-4px);
}

.thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 20px;
}

.thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(60%, 150px);
  aspect-ratio: 1 / 1;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.thumb-shoes::after{
  background-image:url("takumi/thumb shose.png");
}

.thumb-bag::after{
  background-image:url("takumi/thumb bag.png");
}

.thumb-belt::after{
  background-image:url("takumi/thumb belt.png");
}

.card-grid h3{
  font-family:Georgia,serif;
  font-size:25px;
  font-weight:400;
  margin-bottom:10px;
}

.card-grid p{
  font-size:13px;
  line-height:1.9;
  color:#555;
  margin-bottom:18px;
}

.card-grid a{
  margin-top:auto;
  font-size:13px;
  font-weight:800;
}

/* =========================
   STORY
========================= */

.story{
  width:min(1220px,100%);

  margin:120px auto 0;

  padding:0 clamp(18px,4vw,42px);
}

.story-text{
  position:relative;
  overflow:hidden;

  background:#fff;

  border:1px solid rgba(17,17,17,.08);
  border-radius:32px;

  padding:
    clamp(50px,8vw,100px)
    clamp(22px,7vw,100px);

  box-shadow:
    0 10px 40px rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.03);
}

.story-text::before{
  content:"";

  position:absolute;

  width:300px;
  height:300px;

  right:-120px;
  top:-120px;

  border-radius:50%;

  background:rgba(0,0,0,.03);
}

.story .kicker{
  margin-bottom:26px;
  letter-spacing:.32em;
}

.story h2{
  font-family:Georgia,"Times New Roman",serif;

  font-size:clamp(22px,3vw,42px);
  line-height:1.7;
  font-weight:400;

  letter-spacing:.04em;

  margin-bottom:34px;
}

.story-description{
  max-width:720px;

  font-size:15px;
  line-height:2.2;

  color:#444;

  letter-spacing:.03em;
}

.story-description.second{
  margin-top:24px;
  font-size:14px;
  color:#666;
}

/* =========================
   BEFORE AFTER
========================= */

.before{
  margin-top:100px;

  background:#111;
  color:#fff;

  padding:
    80px
    clamp(18px,4vw,42px)
    90px;
}

.before .section-title{
  width:min(1220px,100%);
  margin:0 auto 34px;
  border-color:rgba(255,255,255,.16);
}

.ba-grid{
  width:min(1220px,100%);

  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}

.ba-item{
  position:relative;
  overflow:hidden;
  border-radius:24px;
}

.ba-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:24px;
}

.ba-item span{
  position:absolute;

  top:9%;
  left:50%;

  transform:translateX(-50%);

  background:rgba(255,255,255,.88);

  color:#111;

  padding:10px 18px;

  border-radius:999px;

  font-size:10px;
  font-weight:900;
  letter-spacing:.18em;

  backdrop-filter:blur(10px);

  z-index:2;
}

/* =========================
   PRICE
========================= */

.price-layout{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:48px;
  align-items:start;
}

.price-layout aside{
  position:sticky;
  top:108px;

  background:#fff;

  border:1px solid rgba(17,17,17,.08);
  border-radius:24px;

  padding:28px;
}

.price-layout aside h3{
  font-family:Georgia,serif;
  font-size:30px;
  font-weight:400;
  margin-bottom:14px;
}

.price-layout aside p{
  font-size:13px;
  line-height:1.8;
  margin-bottom:28px;
}

.price-table{
  background:#fff;

  border:1px solid rgba(17,17,17,.08);
  border-radius:24px;

  padding:24px 34px;
}

.price-table h3{
  font-family:Georgia,serif;
  font-size:32px;
  font-weight:400;
  letter-spacing:.14em;

  margin:28px 0 12px;

  padding-bottom:12px;

  border-bottom:1px solid rgba(17,17,17,.1);
}

.price-table h3:first-child{
  margin-top:0;
}

.price-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;

  padding:13px 0;

  border-bottom:1px solid #ddd;
}

.price-table p{
  font-weight:800;
}

.price-table small{
  display:block;
  margin-top:2px;
  font-size:12px;
  font-weight:500;
}

.price-table b{
  white-space:nowrap;
  font-size:18px;
}

/* =========================
   ACCESS
========================= */

.access-section{
  width:min(1220px,100%);

  margin:100px auto 0;

  padding:0 clamp(18px,4vw,42px);

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
}

.access-section > div:first-child{
  background:#fff;

  border:1px solid rgba(17,17,17,.08);
  border-radius:24px;

  padding:48px;
}

.access-section h2,
.contact-section h2{
  font-family:Georgia,serif;
  font-size:clamp(30px,4vw,42px);
  font-weight:400;
  margin-bottom:24px;
}

.address{
  font-size:20px;
  font-weight:800;
  line-height:1.8;
}

.small{
  font-size:13px;
  line-height:1.9;
  color:#555;
}

.map{
  position:relative;

  width:100%;

  min-height:420px;

  overflow:hidden;

  border-radius:32px;

  border:1px solid rgba(17,17,17,.08);
}

.map iframe{
  width:100%;

  height:100%;

  min-height:420px;

  border:none;

  filter:
    grayscale(.08)
    contrast(1.02)
    brightness(.95);
}

.map-overlay{
  position:absolute;

  left:0;
  right:0;
  bottom:0;

  padding:42px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.78),
      rgba(0,0,0,.0)
    );

  color:#fff;
}

.map-overlay strong{
  display:block;

  font-size:clamp(30px,5vw,52px);

  letter-spacing:.22em;

  margin-bottom:8px;

  text-shadow:0 4px 20px rgba(0,0,0,.35);
}

.map-overlay span{
  display:block;

  margin-bottom:24px;

  font-size:13px;

  font-weight:700;

  letter-spacing:.14em;

  color:rgba(255,255,255,.88);
}

.map-overlay a{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,.94);

  color:#111;

  padding:14px 22px;

  border-radius:999px;

  font-size:12px;

  font-weight:900;

  letter-spacing:.12em;

  transition:.25s ease;
}

.map-overlay a:hover{
  transform:translateY(-2px);

  background:#fff;
}

@media (max-width:768px){

  .map{
    min-height:320px;

    border-radius:24px;
  }

  .map iframe{
    min-height:320px;
  }

  .map-overlay{
    padding:28px;
  }

  .map-overlay strong{
    font-size:28px;

    letter-spacing:.16em;
  }

  .map-overlay span{
    font-size:11px;

    margin-bottom:18px;
  }

  .map-overlay a{
    width:100%;

    text-align:center;
  }
}
/* =========================
   CONTACT
========================= */

.contact-section{
  text-align:center;

  max-width:1220px;

  margin:120px auto 100px;

  padding:90px 42px;

  background:#fff;

  border:1px solid rgba(17,17,17,.08);

  border-radius:32px;

  box-shadow:
    0 10px 40px rgba(0,0,0,.04),
    0 2px 10px rgba(0,0,0,.03);
}

.contact-section h2{
  margin:0 0 22px;

  font-family:Georgia,"Times New Roman",serif;

  font-size:clamp(30px,4vw,46px);

  font-weight:400;

  letter-spacing:.08em;

  line-height:1.4;
}

.contact-section p{
  max-width:640px;

  margin:0 auto 34px;

  font-size:15px;

  line-height:2.1;

  color:#555;

  letter-spacing:.04em;
}

.contact-section a{
  display:inline-flex;

  align-items:center;

  justify-content:center;

  min-width:260px;

  padding:18px 34px;

  border-radius:999px;

  background:#111;

  color:#fff;

  font-size:13px;

  font-weight:700;

  letter-spacing:.12em;

  transition:.3s ease;
}

.contact-section a:hover{
  transform:translateY(-2px);

  opacity:.92;
}

@media (max-width:920px){

  .contact-section{
    margin:80px 20px;

    padding:60px 24px;

    border-radius:24px;
  }

  .contact-section h2{
    font-size:28px;

    line-height:1.5;

    margin-bottom:18px;
  }

  .contact-section p{
    font-size:14px;

    line-height:2;

    margin-bottom:28px;
  }

  .contact-section a{
    width:100%;

    min-width:0;

    padding:16px 20px;

    font-size:12px;
  }
}

/* =========================
   FOOTER
========================= */

footer{
  background:#111;
  color:#fff;

  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:32px;

  padding:
    54px
    clamp(18px,5vw,60px);
}

footer strong{
  display:block;
  font-size:30px;
  letter-spacing:.22em;
}

footer small{
  font-weight:800;
}

footer p{
  font-size:13px;
  line-height:1.8;
  color:rgba(255,255,255,.72);
}

footer ul{
  list-style:none;
  columns:2;
}

footer li{
  margin-bottom:12px;
  font-size:13px;
}

.copy{
  text-align:right;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

  .hero{
    grid-template-columns:1fr;
    gap:42px;
  }

  .hero-photo{
    height:60vw;
  }

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

  .feature-row div + div{
    border-left:none;
    border-top:1px solid rgba(17,17,17,.08);
  }

  .four,
  .ba-grid,
  .price-layout,
  .access-section{
    grid-template-columns:1fr;
  }

  .price-layout aside{
    position:static;
  }

  footer{
    grid-template-columns:1fr;
  }

  .copy{
    text-align:left;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .header{
    padding:14px 18px;
  }

  nav a:not(.cart-button){
    display:none;
  }

  .brand-logo{
    width:40px;
    height:40px;
  }

  .brand strong{
    font-size:18px;
    letter-spacing:.18em;
  }

  .brand small{
    font-size:9px;
  }

  .hero{
    padding:40px 18px 56px;
  }

  .hero h1{
    font-size:clamp(34px,11vw,54px);
  }

  .lead{
    font-size:14px;
    line-height:1.9;
  }

  .hero-photo{
    height:72vw;
    border-radius:22px;
  }

  .hero-label{
    right:14px;
    bottom:14px;
    font-size:10px;
    padding:8px 12px;
  }

  .feature-row{
    width:calc(100% - 36px);
    margin:0 auto 60px;
  }

  .feature-row div{
    padding:24px;
  }

  .section{
    padding:60px 18px 0;
  }

  .section-title{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .card-grid article{
    min-height:auto;
  }

  .thumb{
    height:200px;
  }

  .story{
    margin-top:80px;
    padding:0 18px;
  }

  .story h2{
    font-size:24px;
    line-height:1.8;
  }

  .story-description{
    font-size:14px;
    line-height:2.1;
  }

  .before{
    margin-top:80px;
    padding:60px 18px;
  }

  .ba-grid{
    gap:20px;
  }

  .ba-item span{
    top:8%;
    font-size:9px;
    padding:7px 12px;
  }

  .price-table{
    padding:20px;
  }

  .price-table div{
    grid-template-columns:1fr;
    gap:4px;
  }

  .access-section{
    margin-top:80px;
    padding:0 18px;
  }

  .access-section > div:first-child,
  .map{
  position:relative;

  min-height:420px;

  overflow:hidden;

  border-radius:32px;

  border:1px solid rgba(17,17,17,.08);

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:42px;

  background:
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1600&auto=format&fit=crop");

  background-size:cover;
  background-position:center;

  isolation:isolate;
}

.map::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.38) 38%,
      rgba(0,0,0,.08) 100%
    );

  z-index:0;
}

.map::after{
  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);

  background-size:32px 32px;

  opacity:.22;

  z-index:0;
}

.map strong,
.map span,
.map a{
  position:relative;
  z-index:2;
}

.map strong{
  font-size:clamp(30px,5vw,52px);

  letter-spacing:.22em;

  color:#fff;

  text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.map span{
  margin:10px 0 28px;

  font-size:13px;

  font-weight:700;

  letter-spacing:.12em;

  color:rgba(255,255,255,.88);
}

.map a{
  width:fit-content;

  background:rgba(255,255,255,.92);

  color:#111;

  border:none;

  border-radius:999px;

  padding:14px 22px;

  font-size:12px;

  font-weight:900;

  letter-spacing:.12em;

  backdrop-filter:blur(10px);

  transition:.25s ease;
}

.map a:hover{
  transform:translateY(-2px);

  background:#fff;
}

@media (max-width:768px){

  .map{
    min-height:320px;

    padding:28px;

    border-radius:24px;
  }

  .map strong{
    font-size:28px;

    letter-spacing:.16em;
  }

  .map span{
    font-size:11px;

    margin:8px 0 20px;
  }

  .map a{
    width:100%;

    text-align:center;

    padding:14px 18px;
  }
}

  .contact-section{
    margin:80px auto;
  }

  footer{
    padding:42px 18px;
  }

  footer ul{
    columns:1;
  }
}
/* =========================
   CONTACT QR SHARE
========================= */

.contact-section .f-share {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 24px auto 0;
}

/* 微信小图标 */
.contact-section .f-share-one {
  all: unset;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;

  background: transparent;
}

.contact-section .f-share-one img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

/* 二维码默认隐藏 */
.contact-section .fs-one-qrcode {
  position: absolute;
  left: 50%;
  bottom: 58px;

  transform: translateX(-50%) translateY(8px);

  width: 190px;
  padding: 12px;

  background: #fff;
  border-radius: 14px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 9999;

  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

/* 二维码图片大小，强制不要变大 */
.contact-section .fs-one-qrcode img {
  width: 166px !important;
  max-width: 166px !important;
  height: auto !important;
  display: block;
}

/* 小三角 */
.contact-section .fs-one-qrcode::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;

  transform: translateX(-50%);

  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

/* PC：鼠标放上去显示 */
.contact-section .f-share:hover .fs-one-qrcode,
.contact-section .f-share.active .fs-one-qrcode {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}