* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #f5f5f5;
    background: #1a1a1a;
    overflow-x: hidden;
  }

  .container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Background Images with Parallax */
  .bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }

  .bg-left, .bg-right {
    position: absolute;
    width: 35%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .bg-left {
    left: 0;
    background-image: url('../img/bg-left.jpg');
    animation: parallaxLeft 20s ease-in-out infinite alternate;
  }

  .bg-right {
    right: 0;
    background-image: url('../img/bg-right.jpg');
    animation: parallaxRight 20s ease-in-out infinite alternate;
  }

  /* Main Content Area - Fixed 780px width */
.main-content {
  position: relative;
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #3d2817 0%, #2b1810 50%, #3d2817 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* Header Section */
.header {
  width: 100%;
  padding: 0;
  text-align: center;
  position: relative;
  background-image: url("../img/hero.png");
  background-size: 900px auto;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 1382px;
  animation: fadeInDown 1.2s ease-out;
}

.header::before {
  content: "";
  display: block;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 5%;
}

.header > * {
  position: relative;
  z-index: 1;
}

.header img {
  width: 100%;
  max-width: 980px;
  height: auto;
}

  /* Menu Icon Animation */
  .menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(000, 000, 000, 0.9);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out;
  }

  .menu-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
  }

  .menu-icon span {
    width: 45px;
    height: 5px;
    background: #f5f5f5;
    border-radius: 99px;
    transition: all 0.3s ease;
  }

  .menu-icon:hover span:nth-child(1) {
    transform: translateX(-5px);
  }

  .menu-icon:hover span:nth-child(3) {
    transform: translateX(5px);
  }

  /* Logo Animation */
.title-box {
	display: grid;
	 justify-self: center; 
	width: 100%;
	margin: 0 auto;	
}
  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    animation: slideInLeft 0.8s ease-out, float 3s ease-in-out infinite;
  }

  .logo img {
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
  }

  .logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
  }

  /* Subtitle with Animation */
  .subtitle {
    font-size: 40px;
    letter-spacing: 0.2em;
    line-height: 1.6;
    color: #421606;
    font-weight: 900;
    writing-mode: vertical-rl;
    text-align: start;
    margin: 30px auto;
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'YuMincho', 
               'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 
               'HG明朝E', 'MS P明朝', 'MS PMincho', serif;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    font-feature-settings: 'vpal' 1;
    text-shadow: 0px 0px 15px #fff;
    animation: fadeIn 1.5s ease-out 0.5s both;
  }

  /* Subtitle Image - Centered to 780px content (390px = half of 780px) */
  .subtitle-img {
    width: 280px;  
	margin: -150px auto 0;
    animation: floatVertical 4s ease-in-out infinite, fadeIn 1.5s ease-out 0.8s both;
  }

  .subtitle-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }

  .subtitle-img:hover img {
    transform: rotate(5deg) scale(1.05);
  }

  .subtitle-img::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.6), transparent);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    animation: shadowPulse 2s ease-in-out infinite;
  }
  
  /* Adjust shadow size for mobile */
  @media (max-width: 768px) {
    .subtitle-img::after {
      bottom: 30px;
      height: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .subtitle-img::after {
      bottom: 25px;
      height: 12px;
    }
  }

  /* Subtitle Logo - Centered to 780px content (390px = half of 780px) */
  .subtitle-rogo {
	 margin: 0 auto;
    width: 300px;
    filter: drop-shadow(5px 5px 5px #000);
    animation: fadeIn 1.5s ease-out 1s both;
  }

  .subtitle-rogo img {
    width: 100%;
    transition: all 0.5s ease;
  }

  .subtitle-rogo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  }

  /* Brand Section */
  .brand-section {
    padding: 50px 30px;
    text-align: center;
  }

  .tagline {
    font-size: 35px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 500;
  }

  .brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #d4af37;
    margin: 0 auto 15px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    max-width: 500px;
    transition: all 0.5s ease;
  }

  .brand-name:hover {
    transform: scale(1.05);
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
  }

  .description {
    font-size: 20px;
    line-height: 2.2;
    text-align: left;
    color: #e5e5e5;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin: 0 auto;
    width: 100%;
    max-width: 540px;
  }

  /* Gallery Section with Enhanced Animations */
  .gallery {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .gallery-item {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    z-index: 10;
  }

  .gallery-item img {
    transition: all 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  /* Message Section */
  .message-section {
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.2);
  }

  .message-content {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .chef-image {
    width: 300px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
  }

  .chef-image:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  }

  .message-text {
    font-size: 21px;
    line-height: 2;
    color: #e5e5e5;
    letter-spacing: 0.05em;
    font-weight: 300;
    width: 340px;
  }

  /* Map Section */
  .map-section {
    padding: 40px 20px;
  }

  .map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
  }

  .map-container:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
  }

  .map-placeholder {
    width: 100%;
    height: 100%;
    background: url('../img/map@2x.png') center/cover;
    transition: all 0.5s ease;
  }

  .map-container:hover .map-placeholder {
    transform: scale(1.05);
  }

  /* Footer Section */
  .footer {
    padding: 40px 30px 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 20px;
	  width: 100%;
	  max-width: 280px;
  }

  .footer-logo-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #d4af37;
    width: 200px;
    transition: all 0.3s ease;
  }

  .footer-logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
  }

  .footer-logo-mark {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 900;
    color: #d4af37;
    width: 100px;
    transition: all 0.3s ease;
  }

  .footer-logo-mark img {
    width: 100%;
    transition: all 0.3s ease;
  }

  .footer-logo-mark:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
  }

  .store-info {
    font-size: 16px;
    line-height: 2;
    color: #c5c5c5;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }

  .contact-info {
    font-size: 16px;
    color: #e5e5e5;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }

  /* Enhanced Button Animation */
  .inquiry-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #3d2817;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }

  .inquiry-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .inquiry-button:hover::before {
    width: 300px;
    height: 300px;
  }

  .inquiry-button:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  }

  .copyright {
    margin-top: 30px;
    font-size: 10px;
    color: #888;
    letter-spacing: 0.1em;
  }

  /* Scroll-triggered Animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }

  .text-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .text-reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.3s;
  }

  .text-reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .scale-in.active {
    opacity: 1;
    transform: scale(1);
  }

  .zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
  }

  .zoom-in.active {
    opacity: 1;
    transform: scale(1);
  }

  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
  }

  .slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
  }

  .slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
  }

  /* Keyframe Animations */
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
  }

  @keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
  }

  @keyframes floatVertical {
    0%, 100% {
        top: 550px;
    }
    50% {
        top: 535px;
    }
  }
  
  /* Responsive float animations */
  @media (max-width: 980px) {
    @keyframes floatVertical {
      0%, 100% {
        top: 450px;
      }
      50% {
        top: 435px;
      }
    }
  }
  
  @media (max-width: 768px) {
    @keyframes floatVertical {
      0%, 100% {
        top: 380px;
      }
      50% {
        top: 365px;
      }
    }
  }
  
  @media (max-width: 480px) {
    @keyframes floatVertical {
      0%, 100% {
        top: 280px;
      }
      50% {
        top: 265px;
      }
    }
  }
  
  @media (max-width: 375px) {
    @keyframes floatVertical {
      0%, 100% {
        top: 240px;
      }
      50% {
        top: 225px;
      }
    }
  }

  @keyframes floatSlow {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -15px);
    }
  }

  @keyframes scaleIn {
    from {
        transform: translate(-50%, 0) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
  }

  @keyframes shadowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1.1);
    }
  }

  @keyframes parallaxLeft {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px);
    }
  }

  @keyframes parallaxRight {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(30px);
    }
  }
  
  /* Disable hover effects on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .gallery-item:hover {
      transform: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }
    
    .chef-image:hover {
      transform: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .map-container:hover {
      transform: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }
    
    .inquiry-button:hover {
      transform: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
  }
  
  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01s !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01s !important;
    }
  }

  /* Responsive Design */
  


  /* Tablet Portrait - 768px and below */
  @media (max-width: 768px) {
 
    
    .header::before {
      padding-top: 0;
    }
    
    .bg-left, .bg-right {
      width: 20%;
      opacity: 0.4;
    }

    .main-content {
      max-width: 100%;
    }

    .logo {
      width: 180px;
      left: 15px;
    }
    
    .menu-icon {
      width: 60px;
      height: 60px;
      top: 15px;
      right: 15px;
    }
    
    .menu-icon span {
      width: 45px;
      height: 4px;
    }

    .subtitle {
      font-size: 32px;
      margin-top: 20px;
      letter-spacing: 0.18em;
    }
    
    
    .brand-name {
      font-size: 42px;
    }
    
    .tagline {
      font-size: 28px;
    }
    
    .description {
      font-size: 18px;
      line-height: 2;
      max-width: 90%;
    }
    
    .message-content {
      flex-direction: column;
      align-items: center;
    }
    
    .chef-image {
      width: 100%;
      max-width: 400px;
    }
    
    .message-text {
      width: 100%;
      max-width: 500px;
      font-size: 18px;
    }
  }

  /* Mobile - 480px and below */
  @media (max-width: 480px) {
    .header {
      background-size: 100% auto;
      min-height: 600px;
      padding: 0;
    }
    
    .header::before {
      padding-top: 0;
    }
    
    .bg-left, .bg-right {
      width: 15%;
      opacity: 0.3;
    }

    .logo {
      width: 80px;
      left: 10px;
      top: 0;
    }
    
    .menu-icon {
      width: 50px;
      height: 50px;
      top: 10px;
      right: 10px;
      gap: 6px;
    }
    
    .menu-icon span {
      width: 35px;
      height: 3px;
    }


    .brand-section {
      padding: 40px 20px;
    }
    
    .tagline {
      font-size: 22px;
    }

    .brand-name {
      font-size: 32px;
    }

    .description {
      font-size: 14px;
      line-height: 2;
      max-width: 95%;
    }

    .gallery {
      gap: 10px;
      padding: 15px;
    }

    .message-section {
      padding: 30px 20px;
    }

    .message-content {
      flex-direction: column;
      gap: 20px;
    }

    .chef-image {
      width: 100%;
      max-width: 300px;
    }
    
    .message-text {
      width: 100%;
      font-size: 14px;
      line-height: 1.9;
    }
    
    .map-section {
      padding: 30px 15px;
    }
    
    .map-container {
      height: 300px;
    }
    
    .footer {
      padding: 30px 20px 40px;
    }
    
    .footer-logo {
      flex-direction: column;
      gap: 10px;
    }
    
    .footer-logo-text,
    .footer-logo-mark {
      width: 200px;
    }
    
    .footer-logo-mark img {
      width: 200px;
    }
    
    .store-info,
    .contact-info {
      font-size: 14px;
    }
    
    .inquiry-button {
      padding: 12px 40px;
      font-size: 16px;
    }
  }
  
  /* Extra Small Mobile - 375px and below */
  @media (max-width: 375px) {
    .header {
      min-height: 500px;
    }
    
    .subtitle {
      font-size: 30px;
    }
    
    
    .tagline {
      font-size: 18px;
    }
    
    .brand-name {
      font-size: 28px;
    }
    
    .description {
      font-size: 13px;
    }
  }