/* Ken Burns */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 6vh 5vw;
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 7s ease-out forwards;
}
.hero-slide.fade-out {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.35) 50%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-bottom: 4vh;
    text-shadow: 0 1px 3px rgba(255,255,255,0.4);
}
.hero-counter { display: none; }
.hero h1 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.25em;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.hero h1 strong {
    font-size: 46px;
    display: block;
    letter-spacing: 0.25em;
    line-height: 1.7;
    margin-bottom: 0.5em;
}
.hero .catchphrase {
    font-size: 17px;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    line-height: 2;
    margin-bottom: 2.5rem;
}
.hero-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border: 1px solid rgba(157,137,74,0.25);
    white-space: nowrap;
    text-shadow: none;
}
.hero-info .shop-name {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
    border-right: 1px solid var(--color-warm-gray);
    padding-right: 20px;
}
.hero-info .shop-name strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-text);
    letter-spacing: 0.12em;
    margin-top: 4px;
}
.hero-info .shop-access {
    font-size: 13px;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    line-height: 1.8;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    right: 5vw;
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(196,162,101,0.5);
    cursor: pointer;
    transition: all 0.4s;
}
.hero-dots span.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.3);
}
.hero-cta-float { display: none; }

/* Sidebar override */
.fixed-cta-pc {
    top: 90px;
    transform: none;
}
.fixed-cta-pc a {
    width: 70px;
    height: 64px;
    padding: 0;
    margin: 0;
    font-size: 10px;
    border-radius: 0;
    transition: opacity 0.3s;
}
.fixed-cta-pc a:first-child { border-radius: 0; }
.fixed-cta-pc a:last-child { border-radius: 0; }
.fixed-cta-pc a:hover { width: 70px; opacity: 0.85; }
.fixed-cta-pc a i { font-size: 1.2rem; margin-bottom: 5px; }
.fixed-cta-pc .cta-tel { background: var(--color-accent); }
.fixed-cta-pc .cta-line { background: #06C755; }
.fixed-cta-pc .cta-insta { background: #fff; color: #333; }

/* News */
.news-sec {
    padding: 80px 0;
    position: relative;
}
.news-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.news-left { flex: 0 0 240px; }
.news-right { flex: 1; min-width: 300px; }
.news-row {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 2rem;
    transition: all 0.3s;
}
.news-row:hover { padding-left: 10px; }
.news-row time {
    font-family: var(--font-en);
    font-size: 15px;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}
.news-row .title {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.news-row .arrow-link {
    color: var(--color-accent);
    font-size: 14px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.news-row:hover .arrow-link { gap: 12px; }

/* Banner */
.banner-grid {
    display: flex;
    gap: 24px;
    margin: 0 auto;
    padding: 60px 3vw;
}
.banner-grid a { display: block; overflow: hidden; flex: 1; }
.banner-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.banner-grid a:hover img { transform: scale(1.03); }

/* Professional */
.professional-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-cream) 0%, #efe9db 100%);
}
.pro-split {
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
}
.pro-photo {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.pro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease-out);
}
.pro-photo:hover img { transform: scale(1.04); }
.pro-text {
    flex: 1;
    min-width: 300px;
    padding: clamp(3rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pro-text h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.pro-text p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 2;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
}
.service-list-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(157,137,74,0.15);
    margin: -0.5px;
    background: rgba(255,255,255,0.5);
}
.service-list-item i {
    font-size: 1.4rem;
    color: var(--color-main);
    margin-bottom: 0.6rem;
    display: block;
}
.service-list-item h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Photo Strip */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.photo-strip img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.photo-strip img:hover { transform: scale(1.06); }
.photo-strip > div { overflow: hidden; }

/* Gallery */
.gallery-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.works-card {
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.works-card a { display: block; }
.works-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.works-card:hover img { transform: scale(1.06); }
.works-card figcaption {
    padding: 18px 22px;
    background: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

/* Reason */
.reason-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #efe9db 0%, var(--color-cream) 100%);
}
.reason-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.reason-left { flex: 1; min-width: 300px; }
.reason-right {
    flex: 0 0 45%;
    min-width: 300px;
    position: relative;
}
.reason-right img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.reason-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-warm-gray);
}
.reason-item:first-child { padding-top: 0; }
.reason-item .num {
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}
.reason-item h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}
.reason-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 2;
    letter-spacing: 0.08em;
}
.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-warm-gray);
}
.stat-item { text-align: center; }
.stat-item .stat-label {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}
.stat-item .stat-num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    color: var(--color-accent);
    line-height: 1;
}
.stat-item .stat-unit {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Access */
.access-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.access-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.access-photo-side {
    flex: 1;
    min-width: 300px;
}
.access-photo-side img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.access-photo-side iframe {
    width: 100%;
    height: 280px;
    border: 0;
    margin-top: 4px;
}
.access-text-side {
    flex: 1;
    min-width: 300px;
    padding: 2rem 0;
}
.access-text-side p {
    font-size: 15px;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    line-height: 2;
}
.access-text-side a { color: var(--color-main); }

/* Responsive */
@media (max-width: 767px) {
    .hero { align-items: center; padding: 100px 24px 60px; min-height: auto; height: auto; }
    .hero h1 { font-size: 18px; }
    .hero h1 strong { font-size: 30px; }
    .hero .catchphrase { font-size: 15px; }
    .hero-info { flex-direction: column; text-align: center; white-space: normal; }
    .hero-info .shop-name { border-right: none; padding-right: 0; border-bottom: 1px solid var(--color-warm-gray); padding-bottom: 12px; margin-bottom: 8px; }
    .news-sec { padding: 60px 0; }
    .news-flex { flex-direction: column; gap: 30px; }
    .news-left { flex: none; text-align: center; }
    .news-right { min-width: 0; width: 100%; }
    .news-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem 0; }
    .news-row .arrow-link { align-self: flex-end; }
    .banner-grid { flex-wrap: wrap; gap: 16px; padding: 40px 5vw; }
    .banner-grid a { flex: 1 1 calc(50% - 8px); }
    .professional-sec { padding: 80px 0; }
    .pro-split { flex-direction: column; }
    .pro-photo { min-height: 300px; }
    .pro-text h3 { font-size: 20px; }
    .service-list { grid-template-columns: repeat(2, 1fr); }
    .photo-strip { grid-template-columns: repeat(2, 1fr); }
    .photo-strip img { height: 180px; }
    .gallery-sec { padding: 80px 0; }
    .works-grid { grid-template-columns: 1fr; }
    .works-card img { height: 200px; }
    .reason-sec { padding: 80px 0; }
    .reason-split { flex-direction: column; }
    .reason-right { flex: none; width: 100%; }
    .reason-item h4 { font-size: 18px; }
    .stats-row { gap: 1.5rem; }
    .stat-item .stat-num { font-size: 32px; }
    .access-sec { padding: 80px 0; }
    .access-split { flex-direction: column; }
    .access-photo-side img { height: 250px; }
}
@media (min-width: 768px) {
    .works-grid { grid-template-columns: repeat(4, 1fr); }
}
