body {
    margin: 0;
    padding-top: 120px; 
    font-family: 'serif'; 
    line-height: 1.6;
}

a {
    text-decoration: none; 
    color: #333; 
}

ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.container {
    width: 90%; 
    max-width: 960px; 
    margin-left: auto;  
    margin-right: auto; 
    padding-left: 20px;  
    padding-right: 20px; 
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-family: 'Shippori Mincho', serif;
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#main-header .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo-image {
    height: 110px;
    width: auto;
    display: block;
}


#main-nav ul {
    display: flex;
}

#main-nav ul li {
    margin-left: 35px;
}

#main-nav ul li a {
    font-size: 17px;
    color: #333;
    padding-bottom: 3px;
    border-bottom: 1.5px solid transparent;
    transition: border-bottom-color 0.2s ease-in-out;
}

#main-nav ul li a:hover {
    border-bottom-color: #333;
}

.hamburger-button {
    display: none; 
    background: none; 
    border: none; 
    padding: 10px; 
    cursor: pointer; 
    z-index: 1010; 
}

.hamburger-button-bar { 
    display: block; 
    width: 28px;  
    height: 3px;  
    background-color: #333; 
    margin: 6px 0; 
    transition: all 0.3s ease-in-out; 
}

img {
    max-width: 100%;
    height: auto;   
    display: block; 
}

#hero {
    height: calc(100vh - 80px); 
    min-height: 450px; 
    background-image: url('images/hero-image.jpg');
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed; 
    display: flex; 
    align-items: center;
    justify-content: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
}

.hero-content {
}

.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.2em;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.fade-in-text {
    opacity: 0;
    animation-name: fadeInAnimation;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content { 
}
.content-section {
    padding: 80px 0;
}

.text-image-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-image-section .text-block {
    flex: 1;
}

.text-image-section .image-block {
    flex: 1;
}

.text-image-section .image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    font-family: 'Shippori Mincho', serif;
    color: #4a4a4a;
    font-weight: 600;
}

.content-section p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
}
.text-image-section.reverse .container {
    flex-direction: row-reverse;
}
.text-center {
    text-align: center;
}
.section-title.text-center {
    margin-bottom: 50px;
}

.news-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.news-card {
    flex-basis: calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.news-card .card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.news-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.news-card .card-content {
    padding: 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card .card-date {
    font-size: 0.85em;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.news-card .card-title {
    font-size: 1.25em;
    margin-top: 0;
    margin-bottom: 12px;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

.news-card .card-excerpt {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #8B4513;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .news-card {
        flex-basis: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .news-cards-container {
        gap: 20px;
    }
    .news-card {
        flex-basis: 100%;
    }
    .content-section {
        padding: 60px 0;
    }
    .text-image-section .container {
        flex-direction: column;
    }
    .text-image-section.reverse .container { 
        flex-direction: column; 
    }
} 

#main-footer {
    background-color: #333;
    color: #ccc;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9em;
}

#main-footer .footer-links {
    margin-bottom: 20px;
}

#main-footer .footer-links a {
    color: #ccc;
    margin: 0 15px; 
    font-family: 'Shippori Mincho', serif; 
    transition: color 0.3s ease;
}
#main-footer .footer-links a:hover {
    color: #fff;
}

#main-footer .sns-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; 
}

#main-footer .sns-links a {
    display: inline-block; 
    width: auto;        
    flex-shrink: 0;       
}

#main-footer .sns-links img {
    height: 28px; 
    margin: 0 10px; 
    opacity: 0.8; 
    transition: opacity 0.3s ease, transform 0.2s ease; 
}

#main-footer .sns-links img:hover {
    opacity: 1; 
    transform: scale(1.1); 
}

#main-footer .copyright {
    margin-top: 10px;
    font-size: 0.85em;
    color: #aaa;
}

.coming-soon-section {
    padding: 60px 20px; 
    min-height: calc(100vh - 120px - (50px + 50px + 50px)); 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}

.coming-soon-section .container.text-center h1,
.coming-soon-section .container.text-center p {
    margin-left: auto; 
    margin-right: auto;
}

.coming-soon-section h1 {
    font-size: 2.8em;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}

.coming-soon-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    max-width: 600px;
}

.policy-section .container {
    width: 85%; 
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.about-page-section .company-profile-block {
    margin-bottom: 40px;
}

.about-page-section dl.company-details dt {
    font-weight: bold;
    margin-top: 1.2em;
    color: #333;
}
.about-page-section dl.company-details dd {
    margin-left: 0;
    margin-bottom: 0.6em;
    color: #555;
}
.about-page-section dl.company-details dd a {
    color: #8B4513;
}
.about-page-section dl.company-details dd a:hover {
    text-decoration: underline;
}


.about-page-section article + article {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eaeaea;
}

.about-page-section .company-philosophy-block h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.about-page-section .company-philosophy-block h2:first-of-type {
    margin-top: 0;
}


.about-page-section ul.vision-list,
.about-page-section ol.mission-list {
    padding-left: 25px;
    color: #555;
}
.about-page-section ul.vision-list li,
.about-page-section ol.mission-list li {
    margin-bottom: 1em;
    line-height: 1.7;
}
.about-page-section ol.mission-list li strong {
    color: #333;
}

.contact-page-section .contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
    font-size: 1.05em;
}

.contact-form .required-mark {
    color: #d9534f;
    font-size: 0.9em;
    margin-left: 5px;
    font-weight: normal;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
    outline: none;
}


.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form .form-group.text-center {
    margin-top: 40px;
}

.contact-page-section .contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}

.contact-form {
    max-width: 700px; 
    margin-left: auto;  
    margin-right: auto; 
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.g-recaptcha-container {
    display: flex;
    justify-content: center; 
    margin-bottom: 25px;
}


.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.article-detail-section .article-container {
    max-width: 760px; 
}

.article-content {
    padding: 40px 0;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #555;
}
.article-meta .article-category { 
    margin-right: 15px;
}


.article-date {
}

.article-title {
    font-size: 2.6em;
    font-family: 'Shippori Mincho', serif;
    color: #333;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: bold;
}

.article-main-image-wrapper {
    margin-bottom: 30px;
    text-align: center;
}
.article-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.article-body {
    font-size: 1.05em;
    line-height: 1.9;
    color: #444;
}
.article-body h2 {
    font-size: 1.9em;
    font-family: 'Shippori Mincho', serif;
    margin-top: 2.8em; 
    margin-bottom: 1.2em; 
    padding-bottom: 0.4em; 
    border-bottom: 2px solid #eee;
    font-weight: 600;
    color: #333;
}
.article-body h3 {
    font-size: 1.5em;
    font-family: 'Shippori Mincho', serif;
    margin-top: 2.2em;
    margin-bottom: 1em;
    font-weight: 600;
    color: #444;
}
.article-body p {
    margin-bottom: 1.6em;
}
.article-body ul,
.article-body ol {
    margin-top: 1em;
    margin-bottom: 1.6em;
    padding-left: 1.8em;
}
.article-body ul li,
.article-body ol li {
    margin-bottom: 0.8em;
}
.article-body figure.article-image-container {
    margin: 35px auto;
    max-width: 100%;
    text-align: center;
}
.article-body figure.article-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.article-body figure.article-image-container figcaption {
    font-size: 0.85em;
    color: #777;
    text-align: center;
    margin-top: 0;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}
.article-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}
.article-pagination a {
    color: #8B4513;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.article-pagination a:hover {
    background-color: #f5f5f5;
    color: #333;
    border-color: #ccc;
}
.article-pagination .prev-article {
}
.article-pagination .back-to-list {
}
.article-pagination .next-article {
}

#comment-section h2 {
    font-size: 1.9em;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.news-list-section .page-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8em;
    color: #4a4a4a;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.news-item {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
}
.news-item:first-child {
    border-top: 1px solid #eaeaea;
}
.news-item:last-child {
    border-bottom: none;
}


.news-item-meta {
    flex: 0 0 180px;
    padding-right: 30px;
    font-size: 0.9em;
    color: #555;
}

.news-date {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75em;
    border-radius: 4px;
    color: #fff;
    margin-right: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-category-event { background-color: #5cb85c; }
.news-category-product { background-color: #f0ad4e; }
.news-category-info { background-color: #5bc0de; }
.news-category-media { background-color: #777; }

.news-item-content {
    flex: 1;
}

.news-item-content .news-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    line-height: 1.5;
}
.news-item-content .news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.news-item-content .news-title a:hover {
    color: #8B4513;
    text-decoration: underline;
}

.news-item-content .news-excerpt {
    font-size: 0.95em;
    color: #666;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 0;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    color: #fff;
    margin-top: 8px;
}

.product-category-spice { background-color: #c0392b; }
.product-category-herb  { background-color: #27ae60; }
.product-category-drink { background-color: #e67e22; }
.product-category-tea   { background-color: #f1c40f; }
.product-category-etc   { background-color: #7f8c8d; }
.product-category-default { background-color: #2980b9; }

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    .news-item-meta {
        flex-basis: auto;
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .news-date {
        margin-bottom: 5px;
        margin-right: 15px;
    }
    .news-item-content .news-title {
        font-size: 1.3em;
    }

    #hero {
        background-attachment: scroll;
    }

     #main-nav ul {
         display: none;
    }

    .hamburger-button {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .main-navigation {
        display: none; 
    }
    
    .main-navigation.menu-open {
    display: block; 
    position: fixed; 
    top: 0;        
    right: 0;          

    width: fit-content; 
    min-width: 200px;   
    max-width: 80vw;    
    height: 100vh;      
    background-color: #fff; 
    z-index: 1000;          
    overflow-y: auto;       

    padding-top: 70px;      
    padding-bottom: 20px;   

    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15); 
    box-sizing: border-box; 
}

    .hamburger-button { 
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1010;
}

.main-navigation.menu-open #main-navigation-menu {
}

    .hamburger-button.is-active .hamburger-button-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-button.is-active .hamburger-button-bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-button.is-active .hamburger-button-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .main-navigation ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    }

     #main-nav.main-navigation ul li a { 
         display: block;
         padding: 18px 20px; 
         width: 100%;
         text-align: center;
         border-bottom: 1px solid #f0f0f0;
         color: #333;
         font-size: 1.05em;
         }

         #main-navigation-menu {
         display: flex !important;
         flex-direction: column;
         align-items: center;
         width: 100%;
         list-style: none;
         padding: 0;       
         margin: 0;        
    }
         #main-navigation-menu li a {
         display: block;
         padding: 18px 20px;
         width: 100%;
         text-align: left;
         padding-left: 20px;
         padding-right: 20px;
         border-bottom: 1px solid #ffffff;
         color: #333;
         font-size: 1.05em;
    }
}

.share-buttons {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.share-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.share-button {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 0.8;
}

.share-button.twitter {
    background-color: #000000;
}

.share-button.facebook {
    background-color: #1877F2;
}

.share-button.line {
    background-color: #00B900;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-filters a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.category-filters a:hover {
    background-color: #ddd;
}

.category-filters a.is-active {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}