:root {
  --base: #f8f9f7;
  --white: #fff;
  --text: #2f3630;
  --sub: #6b7280;
  --gold: #b2ac88;
  --orange: #d97706;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--base);
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: 8px;
  top: -44px;
  z-index: 1000;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.skip-link:focus {
  top: 8px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

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

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.section {
  padding: 88px 0 112px;
  background: var(--base);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head .section-label {
  color: #b2ac88;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
}

.section-head h2 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 5.6vw, 56px);
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
}

.section-head p:not(.section-label) {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

.site-footer .f-head {
  color: var(--gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 50;
  transition: .25s;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-ja {
  font-family: "Shippori Mincho", serif;
  color: var(--text);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
}

.brand-en {
  color: #fff;
  letter-spacing: .24em;
  font-size: 11px;
}

.site-header.scrolled .brand-en {
  color: var(--gold);
}

.site-header.scrolled .brand-ja {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: .2s;
}

.desktop-nav .nav-link:hover::after {
  width: 100%;
}

.phone-pill {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: .2s;
}

.site-header.scrolled .menu-btn span {
  background: var(--gold);
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  opacity: 0;
  transition: .2s;
}

.mobile-overlay.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 290px;
  height: 100%;
  background: #fff;
  padding: 88px 28px 28px;
  transform: translateX(100%);
  transition: .25s;
}

.mobile-overlay.open .mobile-menu {
  transform: translateX(0);
}

.menu-label {
  letter-spacing: .2em;
  color: var(--gold);
  font-size: 11px;
  margin: 0 0 18px;
}

.mobile-menu .nav-link {
  border-bottom: 1px solid #edf0ee;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.mobile-phone-pill {
  margin-top: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  min-height: 44px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  padding: 128px 0 96px;
}

.hero-card {
  --hero-bleed: calc((100vw - min(100vw, 80rem)) / 2 + 2rem);
  position: relative;
  margin-left: auto;
  margin-right: 0;
  max-width: 42rem;
  background: transparent;
  text-align: right;
  padding: 40px 0 40px 40px;
  z-index: 1;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(178, 172, 136, .5);
  z-index: -1;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--hero-bleed) * -1);
  width: var(--hero-bleed);
  height: 100%;
  background: rgba(178, 172, 136, .5);
  z-index: -1;
}

.hero-label {
  display: flex;
  justify-content: end;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-label span {
  color: rgba(70, 132, 5, .9);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-label .line {
  width: 34px;
  border-top: 1px solid var(--gold);
  margin-top: 7px;
}

.hero-title {
  margin: 0 0 22px;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  line-height: 1.1;
}

.hero-title span:first-child {
  display: block;
  font-size: clamp(30px, 4.2vw, 60px);
  margin-bottom: 8px;
}

.hero-title .accent {
  display: block;
  color: #468405;
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 800;
  line-height: 1;
}

.hero-sub {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.75;
  margin: 0 0 10px;
}

.hero-mini {
  margin: 0 0 36px;
  color: rgba(70, 132, 5, .9);
  font-size: 12px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: end;
  flex-wrap: wrap;
}

.btn-solid,
.btn-ghost {
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 44px;
}

.btn-solid {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.btn-solid span {
  font-size: 12px;
  font-weight: 500;
  opacity: .8;
}

.btn-ghost {
  color: #fff;
  background: rgba(217, 119, 6, .72);
  border: 2px solid var(--orange);
}

.hero-tags {
  display: flex;
  justify-content: end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, .12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.hero-tags i {
  color: #468405;
}

.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-mark span {
  letter-spacing: .18em;
  font-size: 11px;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: .25s;
}

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

.card-image {
  position: relative;
  height: 200px;
}

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

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.card-image span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  display: grid;
  place-items: center;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-body p {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chips em {
  font-style: normal;
  color: var(--gold);
  font-size: 12px;
  background: rgba(178, 172, 136, .12);
  border-radius: 999px;
  padding: 4px 8px;
}

.center-cta {
  margin-top: 42px;
  text-align: center;
}

.center-cta p {
  margin: 0 0 14px;
  color: #6b7280;
}

.center-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: #fff;
}

.center-cta a[href^="tel"] {
  background: var(--orange);
  color: #fff;
}

.howto-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.method-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
}

.method-card .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.method-card .top strong {
  color: rgba(178, 172, 136, .3);
  font-size: 54px;
  font-family: "Montserrat", sans-serif;
}

.method-card .top span {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.method-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.method-card p {
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 14px;
}

.method-card em {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 10px;
}

.flow-box {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
}

.flow-box h3 {
  text-align: center;
  margin: 0 0 30px;
  font-size: 32px;
  font-family: "Shippori Mincho", serif;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr 240px;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  position: relative;
}

.flow-item:not(:last-child) .flow-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 34px;
  background: rgba(178, 172, 136, .35);
}

.flow-text > p {
  margin: 0;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
}

.flow-text h4 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.flow-text p:last-child {
  margin: 0;
  color: #6b7280;
  line-height: 1.85;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.flow-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.req-box {
  margin-top: 26px;
  border: 1px solid rgba(178, 172, 136, .35);
  border-radius: 18px;
  padding: 24px;
}

.req-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.req-head span {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
}

.req-head h3 {
  margin: 0;
  font-size: 24px;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.req-grid div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8f9f7;
  border-radius: 12px;
  padding: 12px;
}

.req-grid div span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(178, 172, 136, .16);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.req-grid div p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.req-box small {
  display: block;
  margin-top: 8px;
  color: #9ca3af;
  font-size: 12px;
}

.pricing-box {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
}

.pricing-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.pricing-box .lead {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-grid > div {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
}

.pricing-grid h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.pricing-grid ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-grid li {
  margin-bottom: 6px;
  color: #4b5563;
}

.pricing-box .note {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
}

.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 430px;
}

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

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 35%, rgba(0, 0, 0, 0) 65%);
}

.about-image div {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
}

.about-image p {
  margin: 0 0 4px;
  color: #b2ac88;
  letter-spacing: .16em;
  font-size: 11px;
  text-transform: uppercase;
}

.about-image h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-family: "Shippori Mincho", serif;
}

.about-text h3 {
  margin: 0 0 14px;
  font-size: 33px;
  font-family: "Shippori Mincho", serif;
}

.about-text p {
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stats div {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stats strong {
  color: var(--gold);
  font-size: 36px;
  line-height: 1.1;
}

.stats strong span {
  font-size: 18px;
}

.stats p {
  margin: 2px 0 0;
  font-size: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.info-card,
.license-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
}

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

.info-card h3,
.license-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card h3 i,
.license-card h3 i {
  color: var(--gold);
}

.info-card dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid #eef1ef;
}

.info-card dl div:last-child {
  border: 0;
}

.info-card dt {
  color: #9ca3af;
  font-size: 13px;
}

.info-card dd {
  margin: 0;
  font-size: 14px;
}

.license-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 14px;
}

.license-inner > span {
  width: 86px;
  height: 86px;
  margin: 0;
  border-radius: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 42px;
  display: grid;
  place-items: center;
}

.license-inner p {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.license-inner small {
  color: #6b7280;
}

.license-inner div {
  margin-top: 0;
  background: rgba(178, 172, 136, .12);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  width: 100%;
}

.narrow {
  width: min(100% - 32px, 900px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #eaeeeb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item.featured {
  border: 2px solid #fb923c;
}

.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-q span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.faq-q b {
  font-size: 16px;
}

.faq-q i {
  color: var(--gold);
  font-size: 20px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  background: var(--base);
  color: #6b7280;
  line-height: 1.8;
  font-size: 14px;
  padding: 0 18px;
  transition: .2s;
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 14px 18px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.faq-a-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(178, 172, 136, .16);
  color: #b2ac88;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
}

.phone-card {
  background: var(--gold);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.phone-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .16em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.phone-card a {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.phone-card a span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.shop-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

.mini-head {
  margin: 0 0 16px;
  letter-spacing: .16em;
  color: #9ca3af;
  font-size: 11px;
}

.shop-card div {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.shop-card div span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(178, 172, 136, .16);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.shop-card p {
  margin: 0;
  line-height: 1.75;
  font-size: 14px;
  color: #374151;
}

.shop-card em {
  color: #ef4444;
  font-style: normal;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

.result-msg {
  display: none;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

.form-assist {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.result-msg.ok {
  display: block;
  background: #ecfdf5;
  color: #047857;
}

.result-msg.ng {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
}

#contactForm label {
  display: block;
  font-size: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #374151;
}

#contactForm label span {
  color: #ef4444;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: #1f2937;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--gold);
}

#contactForm textarea {
  resize: vertical;
}

.turnstile-wrap {
  margin-bottom: 16px;
}

#submitBtn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
}

#submitBtn[disabled] {
  background: #c7c7c7;
  cursor: not-allowed;
}

.privacy-note {
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
  margin-top: 10px;
}

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 70px 0 24px;
}

.footer-inner {
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.f-brand {
  margin: 0 0 4px;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
}

.f-brand-en {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  margin: 0 0 12px;
}

.f-text {
  color: rgba(178, 172, 136, .8);
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.footer-info p,
.footer-info a {
  margin: 0;
  color: rgba(178, 172, 136, .8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-info i {
  color: #b2ac88;
  font-size: 16px;
}

.f-head {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: .16em;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer .nav-link {
  color: rgba(178, 172, 136, .8);
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.footer-nav-list .nav-link i {
  color: #b2ac88;
  font-size: 16px;
}

.footer-nav-list .nav-link:hover,
.footer-info a:hover {
  color: #fff;
}

.footer-contact-card {
  background: rgba(178, 172, 136, .2);
  border-radius: 16px;
  padding: 24px;
}

.footer-contact-title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact-text {
  margin: 0 0 14px;
  color: rgba(178, 172, 136, .8);
  font-size: 12px;
  line-height: 1.7;
}

.footer-phone,
.footer-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
}

.footer-phone {
  background: var(--orange);
  color: #fff;
  margin-bottom: 10px;
}

.footer-phone:hover {
  background: #c06a05;
}

.footer-mail {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.footer-mail:hover {
  border-color: rgba(255, 255, 255, .6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(178, 172, 136, .6);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-card {
    --hero-bleed: 0px;
    max-width: 660px;
    padding-right: 14px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-item {
    grid-template-columns: auto 1fr;
  }
  .flow-item img {
    grid-column: 1 / -1;
    height: 190px;
  }
  .about-grid,
  .info-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container, .narrow {
    width: calc(100% - 24px);
  }
  .section {
    padding: 72px 0 86px;
  }
  .brand-ja {
    font-size: 24px;
  }
  .hero-card {
    --hero-bleed: 12px;
    padding: 30px 10px 30px 22px;
  }
  .hero-label span {
    font-size: 11px;
  }
  .hero-title span:first-child {
    font-size: 34px;
  }
  .hero-title .accent {
    font-size: 50px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-mini {
    font-size: 11px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-solid, .btn-ghost {
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
  }
  .category-grid,
  .howto-methods,
  .row2,
  .req-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .phone-card a {
    font-size: 34px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .phone-card {
    padding: 40px;
  }

  .shop-card {
    padding: 32px;
  }

  .form-card {
    padding: 40px;
  }
}

@media (max-width: 360px) {
  .hero-card {
    padding: 26px 8px 26px 16px;
  }

  .btn-solid,
  .btn-ghost {
    font-size: 13px;
    gap: 6px;
    padding: 12px 10px;
  }

  .btn-solid span {
    display: none;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: 11px;
    padding: 5px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
