@charset "utf-8";

nav.floating {
    position: absolute;
    top: 100px;
    left: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 15px 25px;
    transition: all 0.3s ease;
}

nav.floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.floating-link {
    color: #ffffff !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.floating-link:hover {
    color: #2c1810 !important;
    transform: scale(1.05);
}

.first-view {
    height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.first-view-text {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.05em;
    max-width: 1000px;
    min-width: 600px;
    white-space: nowrap;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #ffd700);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-lead {
    margin-bottom: 40px;
}

.hero-lead p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.business-hours {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.75s forwards;
}

.hours-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.days-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-button.primary {
    background: #2c1810;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 24, 16, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-section {
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

.photo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.photo-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.photo-item:nth-child(2) {
    animation-delay: 1.4s;
}

.shop-photo,
.ramen-photo {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.shop-photo:hover,
.ramen-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photo-caption {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
    .photo-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-photo,
    .ramen-photo {
        height: 250px;
    }
    
    .photo-section {
        padding: 60px 20px;
    }
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-menu-button {
    display: none;
}

.header-logo {
    display: block;
    width: 170px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.site-menu ul {
    display: flex;
}

.site-menu ul li {
    margin-left: 20px;
    margin-right: 20px;
}

.site-menu ul li a {
    font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 18pt;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-menu ul li a:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 800px) {
    .site-menu ul {
        display: block;
        text-align: center;
    }

    .site-menu li {
        margin-top: 20px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        height: 50px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }

    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #ffffff;
        background-color: rgba(115, 110, 98, 0.95);
        backdrop-filter: blur(10px);
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }

    .header-site-menu.is-show {
        display: block;
    }

    .header-logo {
        width: 100px;
    }

    .main {
        padding-top: 50px;
    }

    .footer-logo {
        margin-top: 60px;
    }

    .copyright {
        margin-top: 50px;
    }

    .toggle-menu-button {
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(../images/common/icon-menu.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
    }
    
    .first-view-text {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        margin-top: 40px;
        height: 250px;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .floating-element {
        font-size: 60px;
        width: 80px;
        height: 80px;
    }
}

.footer {
    color: #ffffff;
    background-color: transparent;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .site-menu ul li a {
    font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 18pt;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer .site-menu ul li a:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.footer .site-menu ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    transition: width 0.3s ease;
    margin-top: 5px;
}

.footer .site-menu ul li a:hover::after {
    width: 100%;
}

.footer-logo {
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.copyright {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.main,
.first-view,
.header,
.footer {
    background-color: transparent !important;
}

/* --- ラーメン店一覧セクション追加 --- */
.ramen-list-section {
  padding: 60px 20px 80px 20px;
  background: rgba(255,255,255,0.08);
  margin-top: 40px;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ramen-list-title {
  font-size: 2.2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  margin-bottom: 32px;
  color: #2c1810;
  text-align: center;
  letter-spacing: 0.05em;
}
.ramen-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ramen-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44,24,16,0.08);
  padding: 24px;
  gap: 24px;
  transition: box-shadow 0.2s;
}
.ramen-card:hover {
  box-shadow: 0 8px 32px rgba(44,24,16,0.18);
}
.ramen-card-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.ramen-card-content {
  flex: 1;
}
.ramen-card-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #2c1810;
}
.ramen-card-desc {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333;
}
.ramen-card-address {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}
.ramen-card-link {
  display: inline-block;
  padding: 6px 18px;
  background: #ffd700;
  color: #2c1810;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: background 0.2s;
}
.ramen-card-link:hover {
  background: #ff6b35;
  color: #fff;
}
.ramen-card-coming-soon {
  background: repeating-linear-gradient(135deg, #f5f5f5, #f5f5f5 20px, #f9e7c3 20px, #f9e7c3 40px);
  color: #aaa;
  justify-content: center;
}
.ramen-card-coming-soon .ramen-card-name {
  color: #aaa;
}
@media (max-width: 600px) {
  .ramen-card {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }
  .ramen-card-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
  }
}

@media (max-width: 800px) {
  .hero-title {
    min-width: 0;
    max-width: 100%;
    font-size: 40px;
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
    max-width: 100%;
    white-space: normal;
  }
}
