@charset "UTF-8";

/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Header */
.site-header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.9);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.site-logo img {
    height: 80px;
    width: auto;
}

.site-nav ul {
    display: flex;
    gap: 30px;
}

.site-nav a {
    color: #fff;
    /* Assuming dark background or overlay */
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hamburger-menu {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 80px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger-menu.is-active .hamburger-line:nth-child(1) {
    transform: translateY(23px) rotate(45deg);
}

.hamburger-menu.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-23px) rotate(-45deg);
}

.site-nav-button {
    margin-left: 20px;
}

.site-nav-button a {
    background-color: #E18019;
    color: #fff;
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: none;
    display: inline-block;
}

.site-nav-button a:hover {
    background-color: #fff;
    color: #E14819;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 72, 25, 0.4);
}

/* Scroll Offset for Fixed Header */
section {
    scroll-margin-top: 100px;
}

/* Hero Section */
/* Hero Section */
.hero {
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    min-height: auto;
    height: auto;
    background-color: rgb(0, 0, 0);
    padding-bottom: 100px;
}

.hero-visual {
    grid-area: stack;
    width: 100%;
    margin: 0 auto;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    /* Removes bottom space */
}

.hero-copy {
    grid-area: stack;
    position: relative;
    align-self: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
    color: #fff;
}



.copy-main-image {
    margin-top: 350px;
    width: 75%;
    opacity: 0;
}

.copy-main-image.is-animating {
    animation: popOutFromFront 0.5s cubic-bezier(0.3, 0, 0, 0) forwards;
}

@keyframes popOutFromFront {
    0% {
        transform: scale(3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    65% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.copy-main-image img {
    max-width: 100%;
    height: auto;
}

.copy-sub-image {
    text-align: center;
    margin-top: 120px;
}

.copy-sub-image img {
    max-width: 100%;
    height: auto;
}

.copy-text {
    text-align: center;
    margin-top: 40px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.copy-text h2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 2.375rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    line-height: 46px;
}

/* Copy Circle Badge */
/* Copy Circle Badge */
.sub-image-container {
    position: relative;
    display: inline-block;
}

.copy-circle {
    position: absolute;
    top: -20px;
    right: 0;
    left: auto;
    transform: translate(25%, -25%);
    width: 220px;
    height: 220px;
    background-color: #A30000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.copy-circle .circle-text {
    text-align: center;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    margin: 0;
    /* Reset margin from other .circle-text if any */
}

.copy-circle .text-lg {
    font-size: 5.401rem;
    line-height: 1;
}

.copy-circle .text-sm {
    font-size: 2.234rem;
    margin: 0.3rem 0;
}


main {
    width: 100%;
}

.content-placeholder {
    max-width: 960px;
    margin: 4rem auto;
    text-align: center;
}

/* Taste Content Section with Video Background */
.taste-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.taste-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    /* Optional: constrain width */
    z-index: 1;
    /* Ensure on top of video */
}

.taste-text {
    color: #000;
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.28px;
    margin-top: 2rem;
    margin-left: -50px;
    /* Overlap by 30px */
}

.taste-video {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
    mix-blend-mode: screen;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #E14819;
}

.video-square {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, #FFFFFF 37.98%);
    z-index: 10;
}

.taste-inner {
    position: relative;
    z-index: 1;
    color: #000;
    text-align: center;
}

.taste-circle-container {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transform: scale(0.9);
    transform-origin: center;
}

/* SVG Arc */
.taste-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.taste-kanji {
    font-size: 15rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    line-height: 1;
    margin-top: 50px;
    margin-right: 10px;
}

.taste-vertical {
    writing-mode: vertical-rl;
    font-size: 2rem;
    font-feature-settings: "palt";
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 0px;
    margin-right: 250px;
}

.taste-text {
    color: #000;
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.28px;
    margin-top: 2rem;
    /* Added margin for separation */
}

/* About Us Section */
.about-us {
    width: 100%;
    background-color: #fff;
}

.about-us-title {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
}

.about-us-text {
    width: 65%;
    margin: 0 auto;
    padding: 0 0 80px 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}

.about-us-text-vision {
    width: 800px;
    margin: 0 auto;
    padding: 30px 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}

.large-letters {
    font-size: 2rem;
    text-align: center;
}

.about-us-confidence,
.about-us-technique,
.about-us-vision {
    position: relative;
    width: 100%;
}

.about-us-confidence img,
.about-us-technique img,
.about-us-vision img {
    width: 100%;
    height: auto;
}

.margin100 {
    margin-bottom: 100px;
}

.about-us-vertical {
    writing-mode: vertical-rl;
    font-size: 1.3rem;
    font-feature-settings: "palt";
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    letter-spacing: 0.4em;
    margin-top: 0px;
    margin-right: 0;
    padding: 15px 5px;
    background-color: #fff;
    z-index: 10;
}

.position-01 {
    position: absolute;
    top: 20px;
    right: 19%;
}

.position-01-1 {
    position: absolute;
    top: 20px;
    right: 19%;
    color: #E14819;
}

.position-01-2 {
    position: absolute;
    top: 50px;
    right: 19%;
    color: #E14819;
}

.position-02 {
    position: absolute;
    top: 90px;
    right: 24%;
    color: #E14819;
    padding: 5px 5px;
}

.position-02-1 {
    position: absolute;
    top: 200px;
    right: 24%;
    color: #E14819;
}

.position-02-2 {
    position: absolute;
    top: 120px;
    right: 24%;
}

.position-02-3 {
    position: absolute;
    top: 170px;
    right: 29%;
}

.position-03 {
    position: absolute;
    top: 200px;
    right: 24%;
    color: #E14819;
}

.position-04 {
    position: absolute;
    top: 260px;
    left: 19%;
}

.color-base {
    color: #333;
}

.top-view01 {
    opacity: 0;
}

.about-us-scroll-img {
    width: 82%;
    margin-top: -50px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scrollLeft 80s linear infinite;
}

.about-us-scroll-img img {
    max-width: none;
    width: auto;
    height: 300px;
    flex-shrink: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (one set of images) */
    }
}

.top-view01.is-visible {
    animation: fadeDown 1s ease-out forwards;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-view02 {
    opacity: 0;
}

.top-view02.is-visible {
    animation: fadeDown 1s ease-out forwards;
    animation-delay: 1s;
}

.top-view03 {
    opacity: 0;
}

.top-view03.is-visible {
    animation: fadeDown 1s ease-out forwards;
    animation-delay: 2s;
}

.top-view04 {
    opacity: 0;
}

.top-view04.is-visible {
    animation: fadeDown 1s ease-out forwards;
    animation-delay: 3s;
}

.factory {
    margin: 0;
    padding-bottom: 50px;
    background-image: url('../assets/img/sc4_bg.png');
    background-size: cover;
    background-position: center;
}

.factory-video {
    width: 100%;
    height: auto;
    display: block;
}

.factory-title {
    text-align: center;
    margin: 50px 0;
    font-family: "Shippori Mincho", serif;
    color: #E14819;
    line-height: 1.2;
}

.factory-title-sub {
    font-size: 3rem;
    font-weight: 700;
}

.factory-title-main {
    font-size: 7rem;
    font-weight: 700;
}

.title-kerning {
    letter-spacing: -0.1em;
    margin-right: -0.4em;
}

.factory-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 100px;
}

.factory-text {
    width: 500px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 500;
    padding: 0 20px;
}

.factory-text p {
    margin-bottom: 50px;
}

.factory-highlight {
    font-weight: 700;
    color: #EC9C31;
    font-size: 1.5rem;
}

.factory-img {
    margin-top: 0;
    width: 450px;
}



/* Footer */
footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 0;
}

.footer-video-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: url('../assets/img/footer-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.footer-bg-video {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    background-color: #000;
    mix-blend-mode: screen;
    width: 50%;
    height: 100%;
}

.footer-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
    background: none;
}



.footer-content-inner {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-main-text img {
    max-width: 100%;
    width: 500px;
    /* Adjust width based on image size preference */
    height: auto;
}

/* Warning Section */
.footer-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.warning-icon {
    width: 30px;
    height: auto;
}

.warning-text {
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* Factory Video Wrapper for YouTube */
.factory-video-container {
    width: 90%;
    max-width: 1000px;
    margin: 60px auto;
}

.factory-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.factory-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Copyright */
.footer-copyright {
    background-color: #000;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8rem;
    color: #fff;
}

.footer-copyright p {
    margin: 0;
}



/* Drink Section */
.drink {
    background-color: #000;
    padding: 100px 0;
    width: 100%;
}

.drink-container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Create stacking context */
    color: #fff;
}

.drink-title {
    text-align: left;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin-left: 0;
}



.drink-title-row {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 10px;
    letter-spacing: -0.3em;
}

.drink-title-row.bottom {
    align-items: center;
    margin-top: 10px;
}

.d-text-1 {
    font-size: 4.62rem;
    font-weight: 700;
}

.d-text-2 {
    font-size: 2.38rem;
    font-weight: 700;
}

.d-text-3 {
    font-size: 9.24rem;
    font-weight: 700;
}

.d-text-group {
    display: block;
    text-align: left;
    margin-top: 20px;
}

.drink-title-row.bottom .d-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -10px;
    letter-spacing: -0.1em;
}

.d-text-4 {
    font-size: 3.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.d-text-5 {
    font-size: 5.28rem;
    font-weight: 700;
    line-height: 1;
}

.drink-text {
    margin-top: 60px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 400;
    text-align: left;
    width: 70%;
}

.drink-image {
    margin-top: -100px;
    margin-left: 150px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: -1;
}

.service {
    width: 100%;
    padding-bottom: 100px;
}

.service svg {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    width: 925px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.service-header {
    background-color: #8F7448;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #8F7448;
}

.service-body {
    border-top: 2px solid #8F7448;
    border-bottom: 2px solid #8F7448;
    padding: 20px 0;
    color: #8F7448;
    text-align: center;
    margin-top: 30px;
    /* Space for triangle */
    font-weight: 500;
    font-size: 1.5rem;
}

.service-title {
    font-family: "Shippori Mincho", serif;
    color: #990531;
    font-size: 2.5rem;
    text-align: center;
    margin: 40px 0;
    line-height: 1.4;
    font-weight: 600;
}

.service-title small {
    font-size: 1.3rem;
    font-weight: 400;
    margin-left: 10px;
}

.service-cta {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #E14819;
    color: #E14819;
    padding: 10px 10px 10px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s ease;
    width: 400px;
    /* Fixed width to match look */
    background-color: #fff;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Keep height 150% to cover vertical movement */
    height: 180%;
    /* Extend viewbox height to 185 to include solid bottom part of new path */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='385' height='185' viewBox='0 0 385 185' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M70.8166 27.6332C25.0415 5.33949 -5.3149 27.8842 -14.7712 41.9433C-16.5343 66.2955 -20.5778 185 -22.1165 185H138H381.3L455 -4C436.087 2.52743 387.011 17.9925 342.005 27.6332C285.748 39.684 262.668 10.3101 236.703 10.3101C210.738 10.3101 128.035 55.5003 70.8166 27.6332Z' fill='%23E18019'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.cta-button:hover {
    color: #fff;
    border-color: #E18019;
    /* Match SVG fill color on hover */
}

.cta-button:hover::before {
    transform: translateY(0px);
    /* No need to change height on hover */
}

.cta-button:hover .arrow-icon {
    background-color: #fff;
    color: #E14819;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    background-color: #FDF0E9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font properties removed */
    color: #E14819;
    /* Adjust margin if needed, but flex space-between handles spacing */
    margin-left: 0;
    transition: all 0.4s ease;
}

.arrow-icon svg {
    width: 20px;
    height: auto;
    display: block;
}

.benefits {
    width: 100%;
    background: linear-gradient(to bottom, #EEC301, #E3A101 calc(100% - 10px), #ffffff calc(100% - 10px));
}

.benefits-title {
    width: 220px;
    margin: -60px auto 0;
    text-align: center;
    color: #E14819;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
    z-index: 10;
}

.benefits-title .ja {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    letter-spacing: 0.1em;
}

.benefits-title .en {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
}

.benefits-title-svg svg {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}

.benefits-title-svg path {
    transform: translateY(-1px);
}

.benefits-img {
    text-align: center;
    margin-top: 30px;
}

.benefits-img img {
    width: 60%;
    height: auto;
}

.benefits-svg {
    width: 419px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-bottom: 50px;
}

.benefits-point {
    width: 1000px;
    margin: 60px auto 0;
    background-color: #fff;
    position: relative;
    padding: 50px 50px;
    box-sizing: border-box;
    /* Optional: box shadow or border based on design? Screenshot shows outline */
    border: 1px solid #ccc;
    border-radius: 0 20px 0 0;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.benefits-point.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.point-ribbon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 190px;
    height: 190px;
    z-index: 10;
}

.point-ribbon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point-ribbon .point-text {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    transform: rotate(-0deg);
    /* Text seems horizontal in screenshot? No, it's diagonal */
    /* Screenshot check: Text is white, "POINT" small, "01" large. */
    /* Wait, the SVG shape is a triangle top-left. Text should be positioned inside. */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    /* Constraint */
    height: 100px;
    /* Diagonal alignment fix */
    top: 15px;
    left: 15px;
}


.point-text {
    transform: rotate(-45deg);
    top: 15px !important;
    left: 15px !important;
}

.point-text .label {
    font-size: 0.9rem;
    font-weight: 300;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-left: 20px;
    position: relative;
}

.point-text .label::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: #fff;
}

.point-text .number {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
    font-family: "Noto Sans", sans-serif;
    margin-left: -20px;
}

.point-content {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    align-items: flex-start;
    gap: 50px;
    /* Add spacing between image and text */
}

.point-image {
    width: 45%;
    padding-left: 20px;
}

.point-image img {
    width: 90%;
    height: auto;
    display: block;
}

.point-desc {
    width: 75%;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
}

.point-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #000;
}

.point-title .highlight {
    color: #E14819;
}

.point-detail {
    font-size: 1rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.3;
    color: #333;
    font-weight: 600;
}

.benefits-bottom {
    fill: #fff;
    transform: scaleY(-1);
    width: 100%;
    line-height: 0;
    margin-top: 50px;
}

.benefits-bottom svg {
    width: 100%;
    height: auto;
    display: block;

}

.flow {
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

.flow-title {
    margin-bottom: 60px;
}

.flow-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Adjust gap to fit arrow */
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step01 {
    width: 250px;
    /* margin: 0 auto;  Removed auto margin for flex layout */
    border: 2px solid #E14819;
    border-radius: 30px;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* For arrow positioning */
}

/* Arrow separator */
.flow-step01:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    /* Position in the gap */
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 3px solid #E14819;
    border-right: 3px solid #E14819;
}

.flow-step01 .step-label {
    color: #E14819;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    /* Or English font if preferred */
    font-size: 1.2rem;
    display: block;
}

.flow-step01 .step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.flow-step01 .step-icon {
    width: 220px;
    /* Adjust based on image */
    height: auto;
    margin-bottom: 10px;
}

.flow-step01 .step-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.flow-step01 .step-desc {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #000;
    width: 100%;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
}

/* Drink Section Fix */
.drink {
    overflow: hidden;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}



/* Responsive Design */
@media (min-width: 1980px) {
    .site-nav a {
        font-size: 24px;
    }

    .copy-sub-image {
        margin-top: 300px;
    }

    .about-us-vertical {
        font-size: 2rem;
    }
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
    body {
        zoom: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    body {
        zoom: 0.7;
    }

    .factory-title {
        zoom: 0.9;
    }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
    body {
        zoom: 0.4;
    }

    .factory-title {
        zoom: 0.8;
        margin-left: -40px;
    }

    /* Mobile Menu Styles */
    .site-header {
        padding: 10px 20px;
    }

    .header-inner {
        padding: 20px 30px;
    }

    .hamburger-menu {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        padding-top: 0;
        z-index: 100;
        /* Below hamburger */
    }

    .site-nav.is-active {
        right: 0;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .site-nav a {
        font-size: 40px;
        /* Larger menu text */
    }

    .site-nav-button {
        margin-left: 0;
        margin-top: 40px;
    }

    .site-nav-button a {
        font-size: 40px;
        /* Larger button text */
        padding: 15px 50px;
        /* Larger button padding */
    }

    /* Benefits Point Mobile Layout */
    .benefits-point {
        width: 100%;
        padding: 30px 20px;
        margin-top: 50px;
    }

    .point-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .point-image {
        width: 80%;
        padding-left: 0;
    }

    .point-desc {
        width: 100%;
    }

    .point-title {
        text-align: center;
        font-size: 1.5rem;
    }

    .point-ribbon {
        width: 120px;
        height: 120px;
    }

    /* Hero Section Mobile Layout */
    .copy-main-image {
        width: 70%;
        margin-top: 350px;
        padding-left: 50px;
    }

    .copy-sub-image {
        margin-top: 80px;
    }

    .copy-sub-image img {
        zoom: 0.9;
    }

    .copy-circle {
        width: 160px;
        height: 160px;
        top: 30px;
        right: 50px;
        transform: translate(0, -50%);
        zoom: 1.1;
        /* Adjust transform for mobile */
    }

    .copy-circle .text-lg {
        font-size: 3.5rem;
    }

    .copy-circle .text-sm {
        font-size: 1.5rem;
    }

    .copy-text h2 {
        font-size: 2.3rem;
        line-height: 1.6;
    }

    .taste-container {
        gap: 0;
        margin-top: -30px;
    }

    .taste-text {
        margin-left: -150px;
        margin-top: -10px;
        font-size: 2rem;
        /* Pull text up */
    }

    .taste-kanji {
        margin-bottom: 0px;
    }

    .about-us-title {
        zoom: 1.4;
    }

    .about-us-text,
    .about-us-text-vision {
        width: 90%;
        line-height: 1.8;
        font-size: 2rem;
    }

    .large-letters {
        font-size: 3.2rem;
        padding: 0;
        font-weight: 700;
        line-height: 1.4;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .about-us-vertical {
        writing-mode: horizontal-tb;
        font-size: 2rem;
        font-weight: 900;
    }

    .position-01 {
        top: 120px;
        right: 40%;
        padding: 5px 10px;
    }

    .position-01-1 {
        top: 120px;
        right: 0%;
        font-size: 2rem;
        padding: 5px 10px;
    }

    .position-01-2 {
        top: 100px;
        right: 0%;
        font-size: 2.5rem;
        padding: 5px 10px;
    }

    .position-02 {
        top: 180px;
        right: 0%;
        padding: 5px 5px;
        font-size: 2.5rem;
    }

    .position-02-1 {
        top: 110px;
        right: 50%;
    }

    .position-02-2 {
        top: 190px;
        right: 0%;
        padding: 5px 10px;
    }

    .position-02-3 {
        top: 250px;
        right: 0%;
        padding: 5px 10px;
    }

    .position-03 {
        top: 200px;
        right: 0%;
        padding: 5px 10px;
        font-size: 2rem;
    }

    .factory-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }

    .factory-text {
        width: 90%;
        padding: 0 20px;
        font-size: 2rem;
    }

    .factory-highlight {
        font-size: 2.5rem;
    }

    .factory-text p {
        margin-bottom: 30px;
    }

    .factory-video {
        width: 110%;
        margin-left: -10%;
    }

    .factory-img {
        display: none;
    }

    .drink-title,
    .drink-text {
        margin-left: 50px;
    }

    .drink-text {
        font-size: 2rem;
        width: 80%;
    }

    .service-header,
    .service-body,
    .service-title {
        font-size: 2.5rem;
    }

    .service-cta {
        zoom: 1.8;
    }

    .service-body p {
        width: 80%;
        margin: 0 auto;
    }

    .service-title {
        font-size: 3rem;
    }

    .benefits-title {
        zoom: 1.8;
        margin-top: 50px;
    }

    .benefits-point {
        width: 85%;
        padding: 80px 20px;
        margin-top: 50px;
    }

    .point-image img {
        width: 100%;
    }

    .point-ribbon {
        width: 300px;
        height: 300px;
    }

    .point-text {
        zoom: 1.5;
    }

    .point-title {
        font-size: 3.5rem;
    }

    .point-detail {
        font-size: 2rem;
        width: 95%;
        margin: 0 auto;
        line-height: 1.8;
    }

    .flow-title {
        zoom: 1.8;
    }

    .footer-overlay {
        width: 90%;
    }

    .flow-content {
        zoom: 1.8;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px 20px 20px;
        /* Add padding for scroll/visuals */
        width: 100%;
        /* Ensure container takes full width */
    }

    .flow-step01 {
        flex-shrink: 0;
        /* Prevent items from shrinking */
    }

    .footer-warning {
        zoom: 2;
        width: 100%;
    }


    .footer-video-container {
        position: relative;
        height: auto;
        min-height: 500px;
        /* Ensure enough height */
        padding: 50px 0;
        overflow: hidden;
    }

    .footer-content-inner {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-main-text img {
        width: 100%;
        height: auto;
    }

    .footer-bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .footer-bg-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-content-inner a {
        zoom: 0.8;
    }
}