/* index.css — page content (header/footer chrome in partials) */

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #f8f5f0;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-sunset.jpg') center/cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 245, 240, 0.25) 0%,
    rgba(248, 245, 240, 0.45) 40%,
    rgba(248, 245, 240, 0.75) 75%,
    rgba(248, 245, 240, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  padding-right: 0.35em;
  margin-right: -0.35em;
  color: var(--accent-dark);
  margin-bottom: 1.4rem;
  text-align: center;
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  animation: bounceHint 2.2s ease-in-out infinite;
  padding-right: 0.3em;
  margin-right: -0.3em;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.28s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.52s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.64s;
}

.hero-title-logo {
  display: block;
  margin: 0.5rem auto 1.5rem;
  max-width: min(520px, 90vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.hero-rule {
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--accent, #b8956a);
}

.hero-tag {
  font-family: var(--font-serif, 'Noto Serif JP', serif);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  color: rgba(44, 42, 38, 0.82);
  margin: 0 0 2.2rem;
  text-align: center;
}

html[lang='zh-Hans'] .scroll-hint,
html[lang='zh-Hant'] .scroll-hint,
html[data-lang='zh-Hans'] .scroll-hint,
html[data-lang='zh-Hant'] .scroll-hint,
html[lang='ko'] .scroll-hint,
html[data-lang='ko'] .scroll-hint {
  letter-spacing: 0.15em;
  padding-right: 0.15em;
  margin-right: -0.15em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 149, 106, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

.cta .btn-primary {
  animation: ctaGlow 3s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans) !important;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
}

ul {
  list-style: none;
}

section {
  padding: 6.5rem 1.5rem;
  scroll-margin-top: 80px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.55rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.75;
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 1.4rem;
}

.section-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 540px;
  line-height: 2;
}

.concept {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center;
}

.concept-text p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.concept-tategaki {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.75rem;
  height: 420px;
  margin: 1.1rem 0 0;
}

.concept-vt-title,
.concept-vt-body {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin: 0 !important;
  height: 420px;
}

.concept-vt-title {
  gap: 0.85rem;
}

.concept-vt-body {
  gap: 1.15rem;
  color: var(--text-soft);
  font-size: 16px;
}

.concept-tategaki .vt-col {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 420px;
  display: block;
}

.concept-vt-title .vt-col {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: var(--text, #2c2a26);
}

.concept-vt-body .vt-col {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--text-soft);
}

.concept-plain {
  display: none;
}

.concept-plain h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--text, #2c2a26);
  margin: 0.35rem 0 1rem;
}

.concept-plain p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.95;
  margin: 0;
}

html[lang='en'] .concept-tategaki,
html[data-lang='en'] .concept-tategaki,
html[lang='ko'] .concept-tategaki,
html[data-lang='ko'] .concept-tategaki {
  display: none;
}

html[lang='en'] .concept-plain,
html[data-lang='en'] .concept-plain,
html[lang='ko'] .concept-plain,
html[data-lang='ko'] .concept-plain {
  display: block;
}

.concept-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.concept-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.experience {
  background: var(--bg-soft);
}

.exp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.exp-header .section-desc {
  margin: 0 auto;
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.exp-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 223, 212, 0.6);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 42, 38, 0.1);
}

.exp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.exp-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
}

.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.exp-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.85;
}

.onsen-detail {
  background: var(--bg);
}

.onsen-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.onsen-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.onsen-block.reverse .onsen-text {
  order: 2;
}

.onsen-block.reverse .onsen-img {
  order: 1;
}

.onsen-img {
  border-radius: var(--radius);
  overflow: hidden !important;
  box-shadow: var(--shadow);
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
}

.onsen-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 1.8rem 0 1.2rem;
}

.onsen-foot .price-row {
  margin: 0;
}

.onsen-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
}

.onsen-more-ghost {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent, #b8956a);
  transform: translate(-7px, -7px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.onsen-more-orb {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent, #b8956a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(184, 149, 106, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.onsen-more svg {
  width: 20px;
  height: 20px;
}

.onsen-more:hover .onsen-more-ghost {
  transform: translate(-11px, -11px) scale(1.12);
}

.onsen-more:hover .onsen-more-orb {
  background: #2c2a26;
  transform: rotate(-12deg) translateX(3px);
  box-shadow: 0 14px 28px rgba(44, 42, 38, 0.28);
}

.price-row {
  display: flex;
  gap: 1.5rem;
  margin: 1.8rem 0 1.2rem;
  flex-wrap: wrap;
}

.price-item {
  text-align: center;
  min-width: 90px;
}

.price-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.price-item .value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-dark);
}

.price-item .unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.onsen-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.kai-section {
  background: var(--bg-soft);
  text-align: center;
}

.kai-card {
  background: var(--bg-card);
  padding: 2rem 1.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent-soft);
}

.kai-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.85;
  text-align: left;
}

.plans {
  background: var(--bg);
}

.plans-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.plan-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.plan-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.plan-body {
  padding: 1.6rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.plan-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 1.2rem;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.plan-price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-left: 0.3rem;
}

.facilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.fac-item {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  transition:
    background 0.12s ease,
    box-shadow 0.12s ease;
}

.fac-item .name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.fac-item .note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery {
  background: var(--bg-soft);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s;
}

.gallery-grid a:hover img {
  transform: scale(1.07);
}

.access {
  background: var(--bg-soft);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 100%;
}

.access-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 2px solid rgba(184, 149, 106, 0.45);
  padding-top: 1.6rem;
}

.access-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.access-card ul li {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}

.access-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.access-info {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-card, #ffffff);
  border-radius: var(--radius);
}

.access-info p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.access-info .tel {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0.8rem 0 1.2rem;
}

.access-disclaimer {
  margin: 1.35rem auto 0;
  max-width: 36rem;
  font-size: 0.75rem;
  line-height: 1.85;
  color: var(--text-muted, #8a847a);
}

.sightseeing {
  background: var(--bg);
}

.news {
  background: var(--bg-soft);
}

.news-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.news-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  transition:
    background 0.25s,
    transform 0.25s,
    padding-left 0.25s;
}

.news-item time {
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.news-item a:hover {
  color: var(--accent-dark);
}

.news-more {
  max-width: 720px;
  margin: 1.4rem auto 0;
  text-align: right;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.news-more a {
  color: var(--accent-dark, #9a7a52);
  border-bottom: 1px solid var(--accent, #b8956a);
}

.cta {
  background: linear-gradient(135deg, #ede6d9 0%, #f2eee6 100%);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
}

.cta-actions .btn {
  min-width: 12.6rem;
}

.cta-meta {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.cta-meta a {
  color: inherit;
}

.cta-meta span + span {
  margin-left: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal:nth-child(even),
.stagger > .reveal:nth-child(even) {
  transform: translateX(-36px);
}

.reveal:nth-child(even).visible,
.stagger > .reveal:nth-child(even).visible {
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > *.reveal:nth-child(1) {
  transition-delay: 0.06s;
}

.stagger > *.reveal:nth-child(2) {
  transition-delay: 0.18s;
}

.stagger > *.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger > *.reveal:nth-child(4) {
  transition-delay: 0.42s;
}

.stagger > *.reveal:nth-child(5) {
  transition-delay: 0.54s;
}

.stagger > *.reveal:nth-child(6) {
  transition-delay: 0.66s;
}

.stagger > *.reveal:nth-child(7) {
  transition-delay: 0.78s;
}

.stagger > *.reveal:nth-child(8) {
  transition-delay: 0.9s;
}

.no-js .reveal,
.no-js .reveal-left,
.no-js .reveal-right {
  opacity: 1 !important;
  transform: none !important;
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img,
.plan-card img,
.card-lift img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
}

.img-zoom:hover img,
.plan-card:hover img,
.card-lift:hover img,
.reveal.card-lift:hover img,
.reveal.visible.card-lift:hover img {
  transform: scale(1.06);
}

.card-lift {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s;
}

.card-lift:hover,
.reveal.card-lift:hover,
.reveal.visible.card-lift:hover,
.access-card:hover,
.reveal.access-card:hover,
.reveal.visible.access-card:hover,
.kai-card:hover,
.plan-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(44, 42, 38, 0.12) !important;
}

.kai-card,
.access-card,
.plan-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s;
}

.btn:active {
  transform: scale(0.97);
}

.access > .container > .section-title,
.sightseeing > .container > .section-title,
.news > .container > .section-title,
.kai-section > .container > .section-title,
.basic-info > .container > .section-title {
  text-align: center;
  display: block;
}

.access > .container > .section-label,
.sightseeing > .container > .section-label,
.news > .container > .section-label,
.kai-section > .container > .section-label,
.basic-info > .container > .section-label {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.access > .container > .section-label::after,
.sightseeing > .container > .section-label::after,
.news > .container > .section-label::after,
.kai-section > .container > .section-label::after,
.basic-info > .container > .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.reveal.visible .section-label::after,
.reveal-left.visible .section-label::after,
.reveal-right.visible .section-label::after {
  animation: lineDraw 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.experience,
.kai-section,
.gallery,
.sightseeing {
  background-size: 200% 200%;
  animation: softShift 18s ease-in-out infinite alternate;
}

.news-item:hover {
  background: rgba(184, 149, 106, 0.06);
  padding-left: 8px;
  transform: translateX(4px);
}

.fac-item:hover {
  box-shadow: 0 10px 28px rgba(44, 42, 38, 0.08);
  background: var(--bg-soft);
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-grid a img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-text .section-label::after {
  margin-left: 0;
  margin-right: auto;
  transform-origin: left center;
}

.reveal.visible .section-label::after,
.reveal-left.visible .section-label::after,
.reveal-right.visible .section-label::after,
.visible .section-label::after,
.section-label.line-drawn::after {
  transform: scaleX(1);
}

.img-breathe img {
  animation: imgBreathe 12s ease-in-out infinite;
  transform-origin: center center;
}

.img-zoom.img-breathe:hover img {
  animation: none;
  transform: scale(1.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.access-map {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 42, 38, 0.1);
  border: 1px solid rgba(44, 42, 38, 0.06);
  aspect-ratio: 16 / 9;
  background: #e8e4de;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.news-list.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-list.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.news-list .news-item {
  opacity: 1;
  transform: none;
}

.sight-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(44, 42, 38, 0.1);
}

.sight-list.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.sight-list.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.sight-item {
  border-bottom: 1px solid rgba(44, 42, 38, 0.1);
}

.sight-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

.sight-toggle:hover .sight-name {
  color: var(--accent-dark);
}

.sight-name {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.sight-dist-short {
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.sight-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sight-item.open .sight-icon {
  transform: rotate(45deg);
}

.sight-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s ease;
  padding: 0 0.25rem;
}

.sight-item.open .sight-body {
  max-height: 480px;
  padding: 0 0.25rem 1.25rem;
}

.sight-body p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.sight-body .dist {
  font-size: 0.78rem;
  color: var(--accent-dark);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.sight-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(184, 149, 106, 0.45);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.sight-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.detail-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(184, 149, 106, 0.5);
  padding-bottom: 2px;
}

.detail-link:hover {
  color: var(--text);
}

.sight-thumb {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.plan-card,
.card-lift {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease !important;
}

.plan-card img,
.card-lift img,
.img-zoom img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform;
}

.plan-card:hover img,
.card-lift:hover img {
  transform: scale(1.06) !important;
}

.kai-section > .container {
  text-align: center;
}

.kai-section .section-label,
.kai-section .section-title {
  text-align: center;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kai-section .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.kai-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.kai-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.35vw, 1.32rem);
  font-weight: 500;
  margin-bottom: 0.9rem;
  color: var(--accent-dark);
  line-height: 2;
  text-align: center;
}

.kai-card h3 ruby {
  ruby-align: center;
}

.kai-card h3 rt {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.25;
}

.kai-card h3 .kai-sep {
  margin: 0 0.15em;
  font-weight: 400;
}

.map-link {
  color: inherit;
  border-bottom: 1px solid rgba(184, 149, 106, 0.55);
  transition:
    color 0.25s,
    border-color 0.25s;
}

.map-link:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.access-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
}

.access-media .block-img {
  width: 100%;
  height: 360px;
  margin: 0 !important;
  max-width: none !important;
  border-radius: 12px;
  overflow: hidden;
}

.access-media .block-img img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
}

.access-media .access-map {
  width: 100%;
  height: 360px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.access-media .access-map iframe {
  width: 100% !important;
  height: 360px !important;
  border: 0;
  display: block;
}

.onsen-img img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.onsen-img:hover img {
  transform: scale(1.07) !important;
}

.onsen-img,
.onsen-img.img-zoom,
.onsen-img.img-breathe {
  overflow: hidden !important;
}

.onsen-img img,
.onsen-img.img-zoom img,
.onsen-img.img-breathe img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transform: scale(1) !important;
  animation: none !important;
}

.onsen-img:hover img,
.onsen-img.img-zoom:hover img,
.onsen-img.img-breathe:hover img {
  transform: scale(1.07) !important;
  animation: none !important;
}

.access > .container > .access-media {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem 0;
  box-sizing: border-box;
}

.access-media .block-img,
.access-media .access-map {
  width: 100% !important;
  max-width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;
  margin: 0 !important;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.facilities .fac-item,
.facilities .fac-item.reveal,
.facilities .fac-item.reveal.visible {
  transition:
    box-shadow 0.1s ease,
    background 0.1s ease !important;
  transition-delay: 0s !important;
}

.facilities .fac-item:hover,
.facilities .fac-item.reveal:hover,
.facilities .fac-item.reveal.visible:hover {
  box-shadow: 0 10px 28px rgba(44, 42, 38, 0.1) !important;
  background: var(--bg-soft) !important;
  transition:
    box-shadow 0.1s ease,
    background 0.1s ease !important;
  transition-delay: 0s !important;
}

.concept-img,
.concept .img-zoom {
  overflow: hidden !important;
}

.concept-img img,
.concept .img-zoom img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transform: scale(1) !important;
  animation: none !important;
}

.concept-img:hover img,
.concept .img-zoom:hover img {
  transform: scale(1.07) !important;
  animation: none !important;
}

.concept::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: -6%;
  bottom: -10%;
  width: min(680px, 62vw);
  height: min(280px, 34vw);
  background: url('../images/deco-nami.png') center / contain no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.concept > .container {
  position: relative;
  z-index: 1;
}

.section-dir-left .reveal,
.section-dir-left .reveal-left,
.section-dir-left .reveal-right,
.section-dir-left .reveal:nth-child(even),
.section-dir-left .stagger > .reveal:nth-child(even) {
  transform: translateX(-36px) !important;
}

.section-dir-left .reveal.visible,
.section-dir-left .reveal-left.visible,
.section-dir-left .reveal-right.visible,
.section-dir-left .reveal:nth-child(even).visible,
.section-dir-left .stagger > .reveal:nth-child(even).visible {
  transform: translateX(0) !important;
}

.section-dir-right .reveal,
.section-dir-right .reveal-left,
.section-dir-right .reveal-right,
.section-dir-right .reveal:nth-child(even),
.section-dir-right .stagger > .reveal:nth-child(even) {
  transform: translateX(36px) !important;
}

.section-dir-right .reveal.visible,
.section-dir-right .reveal-left.visible,
.section-dir-right .reveal-right.visible,
.section-dir-right .reveal:nth-child(even).visible,
.section-dir-right .stagger > .reveal:nth-child(even).visible {
  transform: translateX(0) !important;
}

#concept,
#onsen,
#plans,
#gallery,
#access,
#sightseeing,
#news,
#experience,
#top {
  scroll-margin-top: 76px;
}

.access-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.access-card-head h3 {
  margin: 0;
}

.access-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 149, 106, 0.12);
  color: #9a7b4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.access-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.access-card:hover .access-icon {
  background: rgba(184, 149, 106, 0.2);
  color: #7a5f3a;
}

.kai-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 0 1rem;
  contain: paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.kai-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.kai-track .kai-card {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  min-height: 220px;
  margin: 0;
  transition-delay: 0s !important;
}

.kai-section .kai-carousel .kai-card,
.kai-section .kai-carousel .kai-card.reveal,
.kai-section .kai-carousel .kai-card.reveal.visible,
.section-dir-right .kai-carousel .kai-card.reveal,
.section-dir-right .kai-carousel .kai-card.reveal.visible,
.section-dir-left .kai-carousel .kai-card.reveal,
.section-dir-left .kai-carousel .kai-card.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition:
    box-shadow 0.35s ease,
    background 0.35s ease !important;
}

.kai-section .kai-carousel.reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

.kai-section .kai-carousel.reveal.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.kai-carousel-wrap {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
}

.kai-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 106, 0.45);
  background: rgba(248, 245, 240, 0.92);
  color: #7a5f3a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.08);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.kai-nav-btn:hover {
  background: #fff;
  border-color: var(--accent, #b8956a);
  color: #5c4630;
}

.kai-nav-prev {
  left: 0.15rem;
}

.kai-nav-next {
  right: 0.15rem;
}

#news .news-list,
#news .news-item,
#news .news-item a,
#news .news-item time,
#news .news-item span {
  font-family:
    'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif !important;
}

.access-media .block-img:hover img {
  transform: scale(1.07);
}

@media (max-width: 600px) {
  section {
    padding: 4.5rem 1.2rem;
  }

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

  .gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-title-logo {
    max-width: 88vw;
  }

  .access-map {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    margin-bottom: 1.75rem;
  }

  .btn-outline {
    display: block;
    margin: 0.75rem auto 0;
  }

  .cta-actions .btn-outline {
    display: inline-flex;
    margin: 0;
  }

  .cta-meta span {
    display: block;
    margin: 0.2rem 0;
  }

  .cta-meta span + span {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 960px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .concept::after {
    display: none;
  }

  .hero,
  .concept,
  .experience,
  .kai-section,
  .plans,
  .gallery,
  .access,
  .sightseeing,
  .news,
  .cta,
  .basic-info {
    overflow-x: hidden;
    max-width: 100%;
  }

  .kai-section,
  .kai-carousel,
  .kai-carousel-wrap {
    overflow: hidden;
    max-width: 100%;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .news-list.reveal,
  .sight-list.reveal,
  .kai-section .kai-carousel.reveal:not(.visible) {
    transform: translateY(20px) !important;
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible,
  .news-list.reveal.visible,
  .sight-list.reveal.visible,
  .kai-section .kai-carousel.reveal.visible {
    transform: none !important;
  }

  .concept-tategaki {
    height: auto;
    gap: 1.2rem;
    margin: 0.9rem auto 0;
    justify-content: center;
    align-items: flex-start;
  }

  .concept-vt-title,
  .concept-vt-body,
  .concept-tategaki .vt-col {
    height: auto;
  }

  .concept-tategaki .vt-col {
    writing-mode: vertical-rl;
  }

  .concept-vt-title .vt-col {
    font-size: clamp(1.35rem, 5.6vw, 1.85rem);
  }

  html[lang='en'] .concept-tategaki,
  html[data-lang='en'] .concept-tategaki,
  html[lang='ko'] .concept-tategaki,
  html[data-lang='ko'] .concept-tategaki {
    display: none;
  }

  html[lang='en'] .concept-plain,
  html[data-lang='en'] .concept-plain,
  html[lang='ko'] .concept-plain,
  html[data-lang='ko'] .concept-plain {
    display: block;
  }

  .concept-grid,
  .onsen-block,
  .onsen-block.reverse,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .onsen-block.reverse .onsen-text,
  .onsen-block.reverse .onsen-img {
    order: unset;
  }

  .exp-cards,
  .plan-cards {
    grid-template-columns: 1fr;
  }

  .exp-card img,
  .plan-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .concept-img img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

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

  .kai-card:active,
  .plan-card:active,
  .exp-card:active,
  .access-card:active,
  .fac-item:active,
  .sight-item:active {
    transform: scale(0.98);
    box-shadow: 0 8px 24px rgba(44, 42, 38, 0.08);
  }

  .section-dir-left .reveal,
  .section-dir-left .reveal-left,
  .section-dir-left .reveal-right {
    transform: translateY(16px) !important;
  }

  .section-dir-right .reveal,
  .section-dir-right .reveal-left,
  .section-dir-right .reveal-right {
    transform: translateY(16px) !important;
  }

  .section-dir-left .reveal.visible,
  .section-dir-left .reveal-left.visible,
  .section-dir-left .reveal-right.visible,
  .section-dir-right .reveal.visible,
  .section-dir-right .reveal-left.visible,
  .section-dir-right .reveal-right.visible {
    transform: translateX(0) !important;
  }

  #concept,
  #onsen,
  #plans,
  #gallery,
  #access,
  #sightseeing,
  #news,
  #experience {
    scroll-margin-top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .img-breathe img {
    animation: none;
  }

  .kai-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .kai-carousel {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .kai-track .kai-card:nth-child(n + 6) {
    display: none;
  }

  .kai-nav-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .access-media {
    grid-template-columns: 1fr;
  }

  .access-media .block-img,
  .access-media .access-map {
    height: 260px;
  }

  .access > .container > .access-media {
    grid-template-columns: 1fr !important;
  }

  .access-media .block-img,
  .access-media .access-map,
  .access-media .block-img img,
  .access-media .access-map iframe {
    height: 240px !important;
    min-height: 240px !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .section-dir-left .kai-card.reveal.visible:hover,
  .section-dir-right .kai-card.reveal.visible:hover,
  .section-dir-left .plan-card.reveal.visible:hover,
  .section-dir-right .plan-card.reveal.visible:hover,
  .section-dir-left .access-card.reveal.visible:hover,
  .section-dir-right .access-card.reveal.visible:hover,
  .section-dir-left .exp-card.reveal.visible:hover,
  .section-dir-right .exp-card.reveal.visible:hover,
  .section-dir-left .card-lift.reveal.visible:hover,
  .section-dir-right .card-lift.reveal.visible:hover,
  .kai-card.reveal.visible:hover,
  .plan-card.reveal.visible:hover,
  .access-card.reveal.visible:hover,
  .exp-card.reveal.visible:hover,
  .card-lift.reveal.visible:hover,
  .kai-card:hover,
  .plan-card:hover,
  .access-card:hover,
  .exp-card:hover,
  .card-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(44, 42, 38, 0.12) !important;
  }

  .section-dir-left .plan-card.reveal.visible:hover img,
  .section-dir-right .plan-card.reveal.visible:hover img,
  .section-dir-left .exp-card.reveal.visible:hover img,
  .section-dir-right .exp-card.reveal.visible:hover img,
  .section-dir-left .card-lift.reveal.visible:hover img,
  .section-dir-right .card-lift.reveal.visible:hover img,
  .plan-card:hover img,
  .exp-card:hover img,
  .card-lift:hover img,
  .img-zoom:hover img {
    transform: scale(1.06) !important;
  }
}

@media (max-width: 700px) {
  .kai-track .kai-card {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    min-height: 200px;
  }

  .kai-track {
    animation-duration: 38s;
    gap: 1rem;
  }

  .kai-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* basic-info */
.basic-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 2.4rem 1.75rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}
.basic-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}
.basic-info-body {
  min-height: 2.8em; /* title + up to 2 note lines, keeps short cells from collapsing */
}
.basic-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--accent-dark, #9a7a52);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.basic-info-icon svg {
  width: 26px;
  height: 26px;
  overflow: visible;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.basic-info-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text, #2c2a26);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.basic-info-note {
  font-size: 0.8rem;
  color: var(--text-soft, #5c574f);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .basic-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
}
@media (max-width: 520px) {
  .basic-info-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

/* restored keyframes (were dropped during dedupe) */

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceHint {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.25);
  }
  50% {
    box-shadow: 0 6px 28px rgba(184, 149, 106, 0.45);
  }
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes lineDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes softShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes imgBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes kaiMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
