@charset "UTF-8";
/*
    Template: swell
    Theme Name: Takayama Noen
    Theme URI: https://tokicha.jp/
    Description: Takayama Noen official website - Premium Japanese Matcha & Hojicha
    Version: 1.0.0
    Author: Takayama Noen
    Author URI: https://tokicha.jp/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #cacaca;
    overflow-x: hidden;
    background: #000;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 50px;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b9d5f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.top #content {
    padding: 0;
}
/* フロントページ: コンテナ幅を無効化してヒーローを全幅に */
.page-template-page-front #content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-template-page-front .l-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ヒーローセクションを完全に全幅に */
.page-template-page-front .hero {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
}

/* ヒーローの背景動画/画像を完全に全幅に */
.page-template-page-front .hero-bg {
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* ヒーロー以外のセクションは通常のコンテナ幅に戻す */
.page-template-page-front .section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}



/* 動画のメディアコントロールを非表示 */
.hero-bg::-webkit-media-controls {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.japanese-title {
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    color: #fff;
    text-shadow: 0 0 30px rgba(139, 157, 95, 0.5);
}

.subtitle {
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    color: #d4d4d4;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    color: #b0b0b0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #8b9d5f;
    cursor: pointer;
}

.btn-primary {
    background: #8b9d5f;
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 157, 95, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8b9d5f;
}

.btn-secondary:hover {
    background: #8b9d5f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 157, 95, 0.3);
}

/* セクション共通 */
.section {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

/* 製品シリーズ */
.series-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.series-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    text-decoration: none;
    display: block;
}

.series-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 157, 95, 0.2);
    border-color: #8b9d5f;
}

.series-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.series-card:hover .series-image img {
    transform: scale(1.1);
    opacity: 0.7;
}

.series-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #8b9d5f 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
}

.series-content {
    padding: 30px;
}

.series-title-en {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 2px;
}

.series-description {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 20px;
}

.series-link {
    display: inline-block;
    color: #8b9d5f;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.series-card:hover .series-link {
    letter-spacing: 3px;
}

/* Philosophy & Craft */
.philosophy-grid {
    display: grid;
    gap: 60px;
}

.philosophy-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-item:nth-child(even) {
    direction: rtl;
}

.philosophy-item:nth-child(even) > * {
    direction: ltr;
}

.philosophy-image {
    width: 100%;
    height: 400px;
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 157, 95, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.philosophy-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.philosophy-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #999;
    margin-bottom: 15px;
}

/* Products Section */
.products-section {
    background: #000;
}

.products-container {
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

/* PC表示時は横並びレイアウト */
@media (min-width: 769px) {
    .product-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* スマホ表示時は縦並び */
@media (max-width: 768px) {
    .product-card {
        display: block;
    }
}

.product-card:hover {
    border-color: #8b9d5f;
    box-shadow: 0 20px 60px rgba(139, 157, 95, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

/* PC表示時 - 正方形を維持 */
@media (min-width: 769px) {
    .product-image {
        width: 400px;
        height: 400px;
        flex-shrink: 0;
    }
}

/* スマホ表示時 - 正方形でレスポンシブ */
@media (max-width: 768px) {
    .product-image {
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* スマホ表示時はpaddingを小さく */
@media (max-width: 768px) {
    .product-info {
        padding: 30px 20px;
    }

    .product-name {
        font-size: 24px !important;
    }
}

.product-name {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-name-jp {
    font-size: 20px;
    color: #8b9d5f;
    font-weight: normal;
}

.product-price {
    font-size: 36px;
    color: #8b9d5f;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-weight {
    font-size: 18px;
    color: #999;
    font-weight: normal;
    margin-left: 10px;
}

.product-description,
.product-recommendation {
    margin-bottom: 30px;
}

.product-description h4,
.product-recommendation h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-description p,
.product-recommendation p {
    font-size: 15px;
    line-height: 1.9;
    color: #999;
}

/* Contact Form */
.contact-section {
    background: #0d0d0d;
    padding: 100px 50px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 10px;
    border: 1px solid #2d2d2d;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0d0d0d;
    border: 1px solid #2d2d2d;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b9d5f;
    box-shadow: 0 0 20px rgba(139, 157, 95, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #8b9d5f;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #9fb070;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 157, 95, 0.3);
}

/* フッター */
footer,
.l-footer {
    background: #000 !important;
    padding: 60px 50px 30px !important;
    border-top: 1px solid #2d2d2d !important;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff !important;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #888 !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #8b9d5f !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d2d2d;
    color: #666 !important;
    font-size: 12px;
}

.footer-bottom p {
    color: #666 !important;
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Page Styles */
.product-hero {
    height: 60vh;
    min-height: 600px;
    padding-top: 80px;
}

.product-hero .hero-bg {
    opacity: 0.4;
}

.product-hero .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.product-hero .japanese-title {
    font-size: 100px;
}

.product-hero .subtitle {
    font-size: 20px;
}

.product-hero .hero-description {
    font-size: 14px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-container {
    background: #000;
    padding: 20px 50px;
    border-bottom: 1px solid #2d2d2d;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #888;
}

.breadcrumb a {
    color: #8b9d5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #9fb070;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #555;
}

/* Product Introduction */
.product-intro {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 80px 50px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    margin-top: 40px;
}

.intro-text p {
    font-size: 16px;
    line-height: 2;
    color: #b0b0b0;
    text-align: left;
}

/* Features Section */
.features-section {
    background: #000;
}

.features-grid {
    display: grid;
    gap: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 157, 95, 0.1) 0%, transparent 100%);
}

.feature-content h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.feature-content p {
    font-size: 15px;
    line-height: 2;
    color: #999;
}

/* How to Enjoy Section */
.enjoy-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 100px 50px;
}

.enjoy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.enjoy-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(139, 157, 95, 0.05);
    border: 1px solid #2d2d2d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.enjoy-item:hover {
    border-color: #8b9d5f;
    transform: translateY(-5px);
    background: rgba(139, 157, 95, 0.1);
}

.enjoy-item h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.enjoy-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

/* Column Section */
.column-section {
    background: #0a0a0a;
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.column-card {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.column-card:hover {
    border-color: #8b9d5f;
    box-shadow: 0 20px 60px rgba(139, 157, 95, 0.15);
    transform: translateY(-5px);
}

.column-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.column-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.column-card:hover .column-image img {
    transform: scale(1.1);
}

.column-content {
    padding: 30px;
}

.column-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.column-description {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.column-read-more {
    display: inline-block;
    color: #8b9d5f;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.column-card:hover .column-read-more {
    transform: translateX(5px);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .japanese-title {
        font-size: 60px;
    }

    .subtitle {
        font-size: 16px;
    }

    .series-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        grid-template-columns: 1fr;
    }

    .philosophy-item.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-container {
        padding: 30px;
    }

    .product-hero .japanese-title {
        font-size: 60px;
    }

    .feature-item {
        grid-template-columns: 1fr;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .enjoy-grid {
        grid-template-columns: 1fr;
    }

    .column-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .column-content {
        padding: 25px 20px;
    }

    .column-title {
        font-size: 20px;
    }

    .column-description {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
}
