@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap"); /* =========================
// variable
// ========================= */ /* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */
:root {
  --font-size-base: 16px;
  --font-family-base: "Noto Serif JP", serif;
  --beige: #f5f0e8;
  --beige-light: #faf7f2;
  --beige-mid: #ede5d8;
  --gold: #c9a96e;
  --gold-dark: #a8844a;
  --dark: #59534F;
  --gray: #6b6b6b;
  --gray-light: #FDF9F6;
  --green: #7a8c6e;
  --green-dark: #5e6e54;
  --white: #ffffff;
  --nav-h: 117px;
  --sp-pd: 15px;
  --pink: #bb9d95;
  --white: #FEFDFB;
}

/*------------------------------------------------------------
 * タグの基本設定
------------------------------------------------------------*/
html {
  font-size: clamp(14px, 1.5vw, var(--font-size-base));
}

/* 全体 */
body {
  font-size: 1rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  /* 20px〜30px */
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.35rem);
  line-height: 1.25;
  /* 16px〜24px */
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  /* 16px〜20px */
}

h5 {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  /* 15px〜18px */
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  /* 14px〜16px */
}

/* リンク */
a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

p a {
  color: var(--main-color);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 781px) {
  a:hover {
    opacity: 1;
  }
}
/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font-family: var(--font-family-base);
  font-size: max(var(--font-size-base), 16px);
  padding: 0.5em;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  color: var(--text-color);
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}

button {
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: var(--accent-color);
}

@media screen and (max-width: 781px) {
  button:hover {
    background-color: var(--main-color);
  }
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
  /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

iframe {
  width: 100%;
  height: 100%;
}

/* -------------------------------
   base（変数・mixin・初期設定）
-------------------------------- */
body.is-fixed {
  overflow: hidden;
}

.fadein {
  opacity: 0;
  position: relative;
}

.fadein.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.group-fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

/* -------------------------------
   component（アニメーション）
-------------------------------- */ /* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  height: 117px;
}
.header__inner {
  display: flex;
  align-items: center;
  padding: 0 1.75rem 0 1rem;
  max-width: calc(1024px + 1rem + 1.75rem);
  margin: 0 auto;
}
.header__logo {
  flex-shrink: 0;
  max-width: 225px;
  width: 23%;
  min-width: 200px;
}
.header__logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.header__logo-sub {
  font-size: 9px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.25em;
  display: block;
  margin-top: 2px;
  text-align: center;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: 40px;
  flex: 1;
  justify-content: flex-end;
  margin-right: 40px;
}
.header__nav-link {
  font-size: 11px;
  color: var(--gray);
  padding: 8px 0;
  transition: color 0.2s;
  white-space: nowrap;
  display: block;
}
.header__nav-link:hover, .header__nav-link.active {
  color: var(--dark);
}
.header__nav-link.active {
  color: var(--dark);
  border-bottom: 1px solid var(--gold);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.btn-web {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: white;
  padding: 12px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-web:hover {
  background: var(--gold-dark);
}

.btn-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 12px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-line:hover {
  background: var(--green-dark);
}

.btn-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-button__text {
  text-align: center;
}

.btn-label-main {
  font-weight: 400;
  font-size: 10px;
}

.btn-label-sub {
  font-size: 7px;
  opacity: 0.85;
  display: block;
}

.hamburger {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  display: block;
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu a {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--dark);
}

.mobile-menu .mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  max-width: 280px;
  margin-top: 16px;
}

.mobile-menu .btn-web,
.mobile-menu .btn-line {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 6px;
  font-size: 13px;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  height: 530px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image__area {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FCFBF7 45%, rgba(250, 247, 242, 0.1) 70%), url("../img/shop.jpg") center/cover no-repeat;
  z-index: 0;
  top: 0;
}
.hero-image__area::after, .hero-image__area::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
}
.hero-image__area::after {
  background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 110, 0.06) 100%);
}
.hero-image__area::before {
  background: linear-gradient(to right, #FCFBF7 43%, rgba(250, 247, 242, 0.1) 50%);
}

.hero-image {
  width: 70%;
  height: 100%;
  margin: 0 0 0 auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.hero-content {
  position: absolute;
  z-index: 1;
  padding-left: 4vw;
  top: 0;
  max-width: calc(1024px + 4vw);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-tagline {
  font-size: 20px;
  margin-top: 57px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.15em;
  margin-bottom: 9px;
  opacity: 0;
  -webkit-animation: fadeUp 0.8s 0.2s forwards;
          animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-size: clamp(36px, 4vw, 41px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-animation: fadeUp 0.8s 0.4s forwards;
          animation: fadeUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.235em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-animation: fadeUp 0.8s 0.5s forwards;
          animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle::before {
  content: "";
  width: 61.5px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-desc {
  font-size: 12.2px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 32px;
  opacity: 0;
  -webkit-animation: fadeUp 0.8s 0.6s forwards;
          animation: fadeUp 0.8s 0.6s forwards;
}

.hero-badges {
  display: flex;
  gap: 4px;
  opacity: 0;
  -webkit-animation: fadeUp 0.8s 0.8s forwards;
          animation: fadeUp 0.8s 0.8s forwards;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  position: relative;
}
.badge::before, .badge::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  aspect-ratio: 83/193;
  bottom: 5px;
}
.badge::before {
  background-image: url("../img/gekkeizyu-left.png");
  left: 0;
}
.badge::after {
  background-image: url("../img/gekkeizyu-right.png");
  right: 0;
}

.badge-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.badge-icon svg {
  width: 28px;
  height: 28px;
}

.badge-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}

.badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

/* Laurel wreath decoration */
.badge-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laurel {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  letter-spacing: -4px;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== KODAWARI SECTION ===== */
.kodawari {
  padding: 10px 0;
  background: var(--beige-light);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dark);
  line-height: 1;
}

.section-title h2 span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.section-title p {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.kodawari-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--beige-mid);
}

.kodawari-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 2px;
  border-right: 1px solid var(--beige-mid);
  transition: background 0.3s;
}

.kodawari-item:last-child {
  border-right: none;
}

.kodawari-item:hover {
  background: rgba(201, 169, 110, 0.05);
}

.kodawari-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kodawari-icon svg {
  width: 36px;
  height: 36px;
}

.kodawari-title {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}

.kodawari-desc {
  font-size: 11px;
  line-height: 2;
  color: var(--gray);
}

/* ===== INTERIOR SECTION ===== */
.interior {
  padding: 0;
  background: #fefcfd;
  display: flex;
  position: relative;
}

.interior-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.interior-image {
  position: relative;
  aspect-ratio: 1/0.685;
  overflow: hidden;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 49%;
  max-height: 343px;
}

.interior-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.interior-image:hover img {
  transform: scale(1.04);
}

.interior-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.3);
  z-index: 1;
  pointer-events: none;
}

.interior-text {
  width: 47.5%;
  margin: 1.75rem 0 0 auto;
  position: relative;
}
.interior-text::before {
  content: "";
  position: absolute;
  top: -20px;
  /* right: 0; */
  right: 0;
  background-image: url(../img/back-kusa.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 105/177;
  width: 130px;
  z-index: -1;
}

.interior-text h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}

.interior-text p {
  font-size: 11.75px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 25px;
  margin-top: 10px;
}

.nail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 15px;
}

.nail-gallery-item {
  aspect-ratio: 4/2.75;
  overflow: hidden;
  border-radius: 3px;
}

.nail-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.nail-gallery-item:hover img {
  transform: scale(1.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D7D3D3;
  color: var(--dark);
  padding: 3px 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  /* margin: 0 auto; */
  transform: translateX(50%);
  border-radius: 3px;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline::after {
  content: "›";
  font-size: 16px;
}

/* ===== RESERVATION SECTION ===== */
.reservation {
  padding: 10px 32px;
}

.reservation-inner {
  max-width: 1000px;
  padding: 16px 35px;
  background: var(--beige-light);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 20px;
  align-items: self-start;
}

.reservation-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-right: 5px;
  padding-left: 4px;
  padding-top: 12px;
}

.res-card {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.res-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.res-card.web {
  background: var(--pink);
  color: white;
}

.res-card.line {
  background: var(--green);
  color: white;
}

.res-card.tel {
  background: #D5C6B2;
  color: white;
}
.res-card.tel small {
  font-size: 0.6em;
  padding-left: 0.5em;
}

.res-card-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
}
.res-card-icon img {
  width: 48px;
}
.res-card-icon svg {
  width: 40px;
  height: 40px;
}

.res-card-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.res-card-sub {
  font-size: 10px;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

.res-tel-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.tel-area .res-card {
  padding: 5px;
}
.tel-area .res-card-title {
  margin-bottom: 1px;
}
.tel-area .res-card-icon svg {
  width: 32px;
  height: 32px;
}

.tel-number-area {
  text-align: center;
  margin-top: 8px;
}

.tel-number {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.tel-number .res-card-icon svg {
  width: 18px;
  height: 18px;
}
.tel-number .res-card-title {
  font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
}

.footer-inner {
  max-width: 960px;
  border-top: 1px solid var(--beige-mid);
  padding: 8px 9px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 270px 205px 1fr;
  padding-bottom: 40px;
  position: relative;
}
.footer-inner::after {
  content: "";
  position: absolute;
  aspect-ratio: 4/3.5;
  width: 100px;
  background-image: url(../img/flower.png);
  background-size: cover;
  background-position: center;
  top: 6px;
  right: -20px;
  border-radius: 3px;
}
.footer-inner .reveal {
  border-right: 1px solid var(--beige-mid);
  padding: 0 25px;
}
.footer-inner .reveal:first-child {
  padding-left: 0;
}
.footer-inner .reveal:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-logo img {
  width: 145px;
}

.footer-logo .logo-sub {
  text-align: left;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  margin-bottom: 4px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-col h4 span {
  color: #A3A092;
  font-size: 14px;
}
.footer-col h4 img {
  width: 14px;
  height: 14px;
}
.footer-col h4 svg {
  stroke: #A3A092;
  width: 14px;
  height: 14px;
}

.footer-col a {
  margin-top: 10px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col a img {
  width: 20px;
}

.footer-col p,
.footer-col address {
  font-size: 10px;
  line-height: 2;
  color: var(--gray);
  font-style: normal;
}

.footer-col a:hover {
  color: var(--dark);
}

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 0.1em;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.kodawari-text {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .kodawari-item {
    flex: 1 1 calc(33.333% - 1px);
    border-bottom: 1px solid var(--beige-mid);
  }
  .kodawari-item:nth-child(3) {
    border-right: none;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .reservation-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reservation-label {
    grid-column: 1/-1;
    border-right: none;
    border-bottom: 1px solid var(--beige-mid);
    padding-bottom: 16px;
    padding-right: 0;
    text-align: center;
  }
  .res-card.tel {
    grid-column: 1/-1;
  }
}
@media (max-width: 860px) {
  :root {
    --nav-h: 60px;
  }
  .header {
    padding: 0 16px;
    justify-content: space-between;
    padding: 1rem;
  }
  .header__nav {
    display: none;
  }
  .nav-buttons {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-image {
    background: linear-gradient(to bottom, rgb(250, 247, 242) 50%, rgba(250, 247, 242, 0.1) 70%), url(https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1400&q=80) bottom/cover no-repeat;
  }
  .hero-content {
    padding-left: 14px;
    top: 0rem;
    transform: unset;
  }
  .hero-tagline {
    margin-top: 2rem;
  }
  .hero-content {
    padding: 48px 24px;
  }
  .hero-desc {
    display: none;
  }
  .hero-badges {
    gap: 20px;
    flex-wrap: wrap;
  }
  .section-title {
    margin-bottom: 1.5rem;
  }
  .kodawari-text {
    display: block;
    padding: 0 14px 2rem;
  }
  .kodawari-grid {
    flex-direction: column;
  }
  .kodawari-item {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--beige-mid);
    padding: 1rem 14px;
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .kodawari-item:last-child {
    border-bottom: none;
  }
  .interior {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin: 0;
  }
  .interior-image {
    position: unset;
    width: calc(100% - 14px);
  }
  .interior-text {
    margin: 2rem auto 0;
    width: 100%;
  }
  .btn-outline {
    transform: unset;
  }
  .reservation {
    padding: 40px 16px;
  }
  .reservation-inner {
    grid-template-columns: 1fr;
  }
  .reservation-label {
    grid-column: 1;
    border-bottom: 1px solid var(--beige-mid);
  }
  .res-card.tel {
    grid-column: 1;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-inner > * {
    border-right: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 36px 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-tagline {
    font-size: 12px;
  }
  .nail-gallery {
    gap: 4px;
  }
  .kodawari {
    padding: 48px 0;
  }
  .interior {
    padding: 48px 0;
  }
}
/*# sourceMappingURL=style.css.map */