/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-background: #faf8f5;
  --color-foreground: #2c2416;
  --color-primary: #8b6f47;
  --color-primary-foreground: #ffffff;
  --color-secondary: #e8e3db;
  --color-accent: #c4a572;
  --color-muted: #6b5d4f;
  --color-border: #d4cec4;

  /* Typography */
  --font-serif: "Noto Serif JP","Hiragino Mincho ProN", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
}

body {
  font-family: var(--font-serif);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1 h2 div 
  {word-break: auto-phrase;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  word-break: auto-phrase;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.btn-primary:hover {
  background-color: #7a5f3a;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.arrow-icon {
  transition: transform 0.2s;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon /*{
  width: 2rem;
  height: 2rem;
  background-color: var(--color-primary);
}
*/
.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--color-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-background);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}


.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.mizuhiki {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.mizuhiki-line-1 {
  color: var(--color-accent);
}

.mizuhiki-line-2 {
  color: var(--color-primary);
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.br-sm {
  display: none;
}

@media (min-width: 640px) {
  .br-sm {
    display: block;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 6rem;
  }
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: rgba(232, 227, 219, 0.2);
}

@media (min-width: 1024px) {
  .features {
    padding: 8rem 0;
  }
}

.features-list {
  max-width: 72rem;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .feature-item {
    flex-direction: row;
    gap: 4rem;
    margin-bottom: 8rem;
  }

  .feature-reverse {
    flex-direction: row-reverse;
  }
}

.feature-text {
  flex: 1;
}

.feature-number {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(196, 165, 114, 0.2);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--color-muted);
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  width: 100%;
}

.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Product Section */
.product {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .product {
    padding: 8rem 0;
  }
}

.product-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product-details {
  order: 2;
}

@media (min-width: 1024px) {
  .product-details {
    order: 1;
  }
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .product-name {
    font-size: 1.875rem;
  }
}

.product-text {
  margin-bottom: 1.5rem;
}

.product-text p {
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-text strong {
  color: var(--color-foreground);
}

.product-options {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .product-options {
    grid-template-columns: .25fr .25fr;
        justify-content: center;
  }
}

.product-card {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

.product-info {
  margin-bottom: 1rem;
}

.product-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-weight {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-package {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-pricing {
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
}

.product-tax {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-image-container {
  order: 1;
}

@media (min-width: 1024px) {
  .product-image-container {
    order: 2;
  }
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-landscape {
  margin-top: 5rem;
  position: relative;
  height: 60vh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .product-landscape {
    /*margin-top: 8rem;*/
    height: 60vh;
  }
}

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

/*.landscape-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-background), transparent, transparent);
}
*/
.landscape-text {
position: relative;
  top: 1rem;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 5;
}

@media (min-width: 1024px) {
  .landscape-text {
    padding: 4rem;
  }
}

.landscape-caption {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: white;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .landscape-caption {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .landscape-caption {
    font-size: 1.875rem;
  }
}

/* Occasions Section */
.occasions {
  padding: 5rem 0;
  background-color: rgba(196, 165, 114, 0.05);
}

@media (min-width: 1024px) {
  .occasions {
    padding: 8rem 0;
  }
}

.occasions-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .occasions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.occasion-card {
  background-color: var(--color-background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.occasion-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.occasion-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.occasion-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.occasion-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: rgba(196, 165, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.occasion-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.occasion-description {
  color: var(--color-muted);
  line-height: 1.6;
}

.occasions-highlight {
  margin-top: 4rem;
  background-color: var(--color-background);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .occasions-highlight {
    padding: 3rem;
  }
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.highlight-text {
  color: var(--color-muted);
  line-height: 1.6;
}

/* Story Section */
.story {
  padding: 5rem 0;
  background-color: rgba(232, 227, 219, 0.2);
}

@media (min-width: 1024px) {
  .story {
    padding: 8rem 0;
  }
}

.story-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .story-hero {
    height: 80vh;
  }
}

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

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.story-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .story-title {
    font-size: 2rem;
  }
}

.story-text {
  margin-top: 1.5rem;
}

.story-text p {
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.story-image-full {
  margin-top: 5rem;
  height: 50vh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .story-image-full {
    margin-top: 8rem;
    height: 60vh;
  }
}

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

/* CTA Section */
.cta {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .cta {
    padding: 8rem 0;
  }
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-features {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .cta-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cta-feature-text {
  color: var(--color-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  background-color: rgba(232, 227, 219, 0.1);
}

.footer > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer > .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: var(--color-foreground);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/*スライダー用*/


.container-slider {
    width: 100%;
    height: 100vh;
    background-color: #333;
}

.slider-area {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: sliderAnime 30s linear infinite 0s;
}


.slider-item:nth-child(2) {
    animation-delay: 7.5s;
}

.slider-item:nth-child(3) {
    animation-delay: 12.5s;
}

.slider-item:nth-child(4) {
    animation-delay: 20s;
}

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

@keyframes sliderAnime {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
        transform: scale(1.1);
    }

    40%,
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.pc-img {display: block;

}
.sp-img {display: none;
}

@media (max-width: 600px) {

.pc-img {display: none;

}
.sp-img {display: block;
}

}
}
/*スライダーEND*/
