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

/* Neonico Status Cards */
.neonico-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 10px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 70px;
}

/* .neonico-subtitle removed */

.neonico-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: left;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: start;
}

.neonico-card:not(:last-child) {
    border-right: 1px dotted rgba(0, 0, 0, 0.12);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.neonico-card__media img {
    width: 64px;
    height: auto;
    display: block;
}

.neonico-card h4 {
    font-size: 18px;
    margin: 6px 0 8px;
    color: var(--primary-color);
}

.neonico-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.neonico-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 768px) {
    .neonico-status {
        grid-template-columns: 1fr;
    }
    .neonico-card {
        grid-template-columns: 56px 1fr;
        gap: 10px;
    }
    .neonico-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
}
}

:root {
    --primary-color: #006934;
    --text-color: #333;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --black: #000000;
    --yellow: #FFD700;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Antique', serif;
    color: var(--primary-color);
}

/* レスポンシブ改行 */
.rsp_br {
    display: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.logo {
    width: 160px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%), url('../img/bg.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0px 20px 25px;
}

.hero-content {
    max-width: 1065px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 50px;
    align-items: center;
}

.hero-left {
    text-align: left;
    grid-column: 1;
    grid-row: 1;
    display: block;
    margin-top: -75px;
}

.hero-left-content {
    grid-column: 1;
    grid-row: 2;
    margin-top: -210px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    top: 79px;
}

.product-description {
    font-size: 13px;
    position: relative;
    top: -25px;
    line-height: 1.6;
    max-width: 100%;
}

.product-description p {
    margin: 0;
}

@media (min-width: 768px) {
    .product-description {
        max-width: 450px;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Zen Antique', serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    position: relative;
    bottom: 10px;
}
.hero h1 {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 0;
    margin-right: 10px;
    line-height: 1.2;
    display: inline;
}

.hero-subtitle {
    font-family: 'Zen Antique', serif;
    font-size: 24px;
    font-weight: 500;
    grid-column: 1;
}

.hero-limited {
    background: rgba(255, 215, 0, 0.9);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 24px;
    grid-column: 1;
}

.hero-product {
    margin: 0;
    margin-top: 20px;
    display: block;
}

.hero-product h2 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 0;
}

.hero-price {
    margin: 0;
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.special-price {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}

.price-label {
    font-size: 36px;
    color: var(--yellow);
    font-weight: 500;
}

.price-tax {
    font-size: 17px;
    color: var(--yellow);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.price-amount {
    font-size: 68px;
    font-weight: 900;
    color: var(--yellow);
    transition: transform 0.2s ease-out;
}

.price-unit {
    font-size: 24px;
    color: var(--yellow);
    font-weight: 700;
}

    .price-row {
        gap: 12px;
    }

    .normal-price {
        font-size: 15px;
        margin: 0;
        line-height: 1.4;
        position: absolute;
        right: 0;
        bottom:5px;
        text-align: right;
    }

    .normal-price small {
        font-size: 11px;
    }

.normal-price small {
    display: inline-block;
    font-size: 12px;
    opacity: 0.8;
}

.hero-image-space {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-space img {
    max-width: 100%;
    max-height: 100%;
}
.hero-image-space p {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
}

.down-arrow {
    margin-top: 0;
    animation: bounce 2s infinite;
    text-align: center;
    grid-column: 1 / -1;
}

.down-arrow a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.arrow-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-notice {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 17px 30px 10px;
    border-radius: 10px;
    border: 2px solid #c00000;
    backdrop-filter: blur(10px);
    display: table;
}

.hero-notice-main {
    color: #c00000;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-size: 18px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 55px 20px;
}

.section-white {
    background: var(--white);
}

#section3 {
    padding: 30px 20px;
}

.section-light {
    background: var(--bg-light);
}

.section-light.content-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f1 100%);
    border-radius: 20px;
    padding: 80px 40px 0;
}

.container {
    max-width: 990px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-section {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../img/akatonnbomai.png') center/cover no-repeat;
    background-size: auto 100%;
    color: var(--text-color);
    text-align: center;
}

.lead-section h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    isolation: isolate;
}

.lead-section p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
    color: var(--text-color);
}

.lead-section .btn a {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.lead-section .btn a:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Cultivation Section */
.cultivation-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}
#section1{
    padding-top:50px;
}
.cultivation-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding: 20px 20px 20px 30px;
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}
.cultivation-section p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Reasons Section */
.reasons-section {
    padding: 80px 20px;
    background: var(--primary-color);
}

.reasons-section h2 {
    font-size: 36px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reasons-subtitle {
    font-family: 'Zen Antique', serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: var(--black);
    margin-bottom: 50px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.reasons-subtitle-white {
    font-family: 'Zen Antique', serif;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 30px;
    color: var(--white);
}

/* Reasons Intro Section */
.reasons-intro {
    padding: 80px 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../img/akatonnbomai.png') center/cover no-repeat;
    background-size: contain;
    background-position: bottom;
    text-align: center;
    color: var(--text-color);
}

.reasons-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.tag-red {
    display: inline-block;
    padding: 9px 16px;
    background: #c00000;
    color: #fff;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.tag-sub {
    display: inline-block;
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.4;
}

.tag-sub-green {
    color: var(--primary-color);
    font-weight: 800;
}

.tag-sub-dot {
    position: relative;
    display: inline-block;
    padding-top: 4px;
    margin-left: 2px;
    margin-right: 2px;
}

.tag-sub-dot::before {
    content: '・';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--text-color);
    line-height: 1;
}

.reasons-sub {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 600;
    margin: 6px 0 0;
    display: inline-block;
    position: relative;
    padding: 4px 6px;
    isolation: isolate;
}

.reasons-sub::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 40%;
    background: #ffd700;
    opacity: 0.9;
    z-index: -1;
    border-radius: 8px;
}

.catalog_display {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 24px;
    margin-top: 24px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}
    .catalog_hint {
        min-width: auto;
        padding: 12px;
    }

.catalog_item,
.catalog_hint {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog_item p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.catalog_item img {
    width: 80%;
    margin: auto;
    object-fit: contain;
    border-radius: 10px;
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-origin: top left;
}

.catalog_display .catalog_item:first-child {
    overflow: auto;
    cursor: zoom-in;
}

.catalog_display .catalog_item:first-child.is-zoom {
    cursor: zoom-out;
}

.catalog_display .catalog_item:first-child.is-zoom img {
    transform: scale(2.6);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.25);
}

.catalog_hint {
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    gap: 8px;
    min-width: 100px;
    height: auto;
    align-self: center;
    padding: 10px 12px;
}

.catalog_hint p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 100;
    color: var(--primary-color);
}

.catalog_icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.catalog_icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.catalog_icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 3px;
    bottom: 4px;
    right: -6px;
    transform: rotate(42deg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.content-section {
    position: relative;
    overflow: hidden;
    max-width: 990px;
    margin: 0 auto;
}

.content-section .container {
    max-width: 990px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.content-section:nth-of-type(odd) .container {
    margin-left: 0;
    margin-right: auto;
}

/**.content-section:nth-of-type(even) .container {
    margin-left: auto;
    margin-right: 0;
}**/

.content-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    padding: 20px 20px 20px 30px;
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
}

.neonico-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    padding: 20px 20px 20px 30px;
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 25px;
}

.neonico-title img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Table Styles */
.cultivation-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cultivation-table th,
.cultivation-table td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.cultivation-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.cultivation-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.cultivation-table tr:last-child td {
    border-bottom: none;
}

.cultivation-table td:first-child {
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cultivation-table td:first-child img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cultivation-table td:nth-child(2) {
    border-left: 1px solid #e0e0e0;
}

/* Feature Box */
.feature-box {
    padding: 20px 0;
    margin: 20px 0;
}

.feature-box strong {
    color: var(--primary-color);
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff9e5;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: visible;
    z-index: 0;
    max-width: 100%;
    width: fit-content;
}

.support-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 36px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff9e5 transparent;
    z-index: -1;
}

.support-bubble::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 32px;
    border-width: 0 12px 12px 12px;
    border-style: solid;
    border-color: transparent transparent #fff9e5 transparent;
    z-index: -1;
}

.support-bubble__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.support-bubble__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-bubble__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-color);
    font-weight: 700;
}

.support-bubble__text strong {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.4;
}

.support-bubble__text span {
    font-size: 15px;
    line-height: 1.4;
}

/* How to Join Section */
.howtojoin {
    background: var(--bg-light);
}

.howtojoin-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.howtojoin h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    color: var(--primary-color);
    position: relative;
    display: block;
    padding: 0.7em 0.5em;
}

.howtojoin h2::before, .howtojoin h2::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform-origin: center;
    width: 3px;
    height: 40%;
    background: var(--yellow);
}

.howtojoin h2::before {
    left: calc(50% - 180px);
    transform: translateY(-50%) rotate(-28deg);
}

.howtojoin h2::after {
    right: calc(50% - 180px);
    transform: translateY(-50%) rotate(28deg);
}

.howtojoin-truck {
    width: 260px;
    height: auto;
    position: absolute;
    right: 0;
}

.steps {
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 25px 0;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

/*.step::before {
    content: attr(data-number);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}*/

.steps > .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 1;
}

.step-img {
    width: 160px;
    max-width: 100%;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    position: relative;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.step p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: left;
}

.notion {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.steps  p > small{
    display: block;
    line-height:1.3
}

.special-notice {
    text-align: center;
    margin: 25px 0;
}

.special-notice p {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid var(--yellow);
    display: inline-block;
    margin: 0 auto;
}

.yellownotion {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin: 30px auto;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    width: 60%;
    max-width: 800px;
    list-style: none;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    gap: 6px;
}

.yellownotion li {
    position: relative;
    padding-left: 1.4em;
    line-height: 1.6;
}

.yellownotion li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
}

.freedial {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
}

.freedial h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding: 0.7em 0.5em;
    text-align: center;
}

.freedial h2::before, .freedial h2::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform-origin: center;
    width: 3px;
    height: 40%;
    background: var(--yellow);
}

.freedial h2::before {
    left: calc(50% - 130px);
    transform: translateY(-50%) rotate(-28deg);
}

.freedial h2::after {
    right: calc(50% - 130px);
    transform: translateY(-50%) rotate(28deg);
}

.freedial p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.freedial-number {
    display: inline-block;
    margin: 10px 0;
}

.freedial-number a {
    pointer-events: none;
    cursor: default;
}

.freedial_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.freedial_wrap img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.freedial span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.endfreedial {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.btn {
    text-align: center;
    margin: 30px 0;
}

.btn a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,105,52,0.3);
}

.btn a:hover {
    background: #005028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,52,0.4);
}

.btn.qa a {
    background: none;
    font-size: 16px;
    padding: 0;
    box-shadow: none;
    color: #777;
}


/* Notice Section */
.notice-section {
    background: #f0f8f4;
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
}

.notice-section p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 15px;
}

.notice-section p:first-child {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
}
.gc-mark {
    width: 24px;
    height: auto;
    vertical-align: middle;
    margin: 0 4px;
}
/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

footer a {
    color: var(--white);
    text-decoration: underline;
    margin: 0 15px;
    font-size: 12px;
}

footer a::after {
    content: ' ↗';
    font-size: 10px;
}

footer a:hover {
    opacity: 0.8;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005028 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0, 105, 52, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) rotate(-8deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(-3deg);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 6px 25px rgba(0, 105, 52, 0.6);
}

.floating-btn span {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .rsp_br {
        display: inline;
    }

    header {
        padding: 6px 0;
    }

    .header-inner {
        flex-direction: row;
        gap: 8px;
        padding: 0 12px;
        min-height: 40px;
    }

    .logo {
        width: 140px;
    }

    .cta-button {
        font-size: 12px;
        padding: 10px 16px;
        white-space: nowrap;
    }

    .hero {
        padding: 80px 15px 30px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 75px;
    }

    .hero-left {
        text-align: center;
        margin-top: 0;
    }

    .hero-left-content {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }

    .hero-right {
        grid-column: auto;
        grid-row: auto;
        top: 0;
    }

    .hero-subtitle {
        grid-column: auto;
    }

    .hero-limited {
        grid-column: auto;
    }

    .down-arrow {
        grid-column: auto;
    }

    .hero-notice {
        grid-column: auto;
        padding: 15px 20px 12px;
        margin: 15px auto 0;
    }

    .hero-notice-main {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 5px 16px;
        margin-bottom: 0px;
        bottom: 5px;
        margin-top: 25px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-product h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hero-limited {
        font-size: 17px;
        padding: 10px 20px;
        margin-bottom: 12px;
    }

    .special-price {
        gap: 6px;
    }

    .price-label {
        font-size: 26px;
    }

    .price-tax {
        font-size: 14px;
    }

    .price-amount {
        font-size: 52px;
    }

    .price-unit {
        font-size: 18px;
    }

    .price-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-price {
        text-align: center;
        margin: 15px auto;
    }

    /* Reasons Section Mobile */
    .reasons-section h2 {
        font-size: 24px;
    }

    #section1{
        padding-top: 50px;
    }

    .normal-price {
        font-size: 17px;
        margin: 0;
        line-height: 1.4;
        position: static;
        text-align: center;
    }

    .normal-price small {
        font-size: 14px;
    }

    .hero-image-space {
        height: 280px;
        margin-bottom: 10px;
    }

    .product-description {
        font-size: 14px;
        top: 0;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .lead-section h2{
        font-size: 28px;

    }
    .content-section h3,
    .howtojoin h2 {
        font-size: 21px;
    }
    .cultivation-section h2 {
    font-size: 21px;
}

    .container {
        padding: 0;
    }

    .lead-section p {
        text-align: left;
    }

    .section-light.content-section {
        padding: 40px 0;
        border-radius: 0;
    }

    .content-section .container {
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        grid-template-columns: none !important;
    }

    .content-section .container > * {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .img_wrap {
        margin: 20px 0 !important;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .steps > .step:not(:last-child)::after {
        content: '↓';
        position: static;
        display: block;
        text-align: center;
        margin: 20px auto;
        transform: none;
        right: auto;
        top: auto;
    }

    .step p {
        text-align: center;
    }

    .howtojoin-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .howtojoin-truck {
        width: 180px;
        position: relative;
    }

    .cultivation-table {
        font-size: 14px;
    }

    .cultivation-table th,
    .cultivation-table td {
        padding: 10px;
    }

    .parallax-section::before {
        background-attachment: scroll;
    }

    .img_wrap {
        grid-column: 1;
        grid-row: auto;
    }

    .reasons-intro h2 {
        font-size: 24px;
    }

    .reasons-intro-subtitle {
        font-size: 18px;
    }

    .tag-red {
        font-size: 24px;
        padding: 10px 14px;
        border-width: 2px;
    }

    .tag-sub {
        font-size: 18px;
    }

    .reasons-sub {
        font-size: 16px;
    }

    .catalog_display {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .yellownotion {
        width: 100%;
        max-width: none;
        margin: 20px 0;
        padding: 12px;
    }

    .freedial-number a {
        pointer-events: auto;
        cursor: pointer;
    }

    .catalog_hint {
        display: none;
    }

    .catalog_display .catalog_item:first-child {
        cursor: default;
        overflow: visible;
    }

    .catalog_display .catalog_item:first-child.is-zoom {
        cursor: default;
    }

    .catalog_display .catalog_item:first-child.is-zoom img {
        transform: none;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    }
}

/* Fade-in animation */
.fadeIn_up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeIn_up.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax effect */
.parallax-section {
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* 生産者応援セクション */
.section-white:has(.img_wrap) .container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 25px;
    align-items: center;
}

.img_wrap {
    grid-column: 2;
    grid-row: 1 / 3;
}

.img_wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-white:has(.img_wrap) h3 {
    grid-column: 1;
    grid-row: 1;
}

.section-white:has(.img_wrap) > .container > p {
    grid-column: 1;
    grid-row: 2;
}

.section-white:has(.img_wrap) .icon-text {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-left: 0;
    margin-right: 0;
}

/* Form Styles */
.form-section {
    background: var(--bg-light);
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.form-section h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: var(--text-color);
}

.error-box {
    background: #fff5f5;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.error-box h3 {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 15px;
}

.error-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-box li {
    color: #e74c3c;
    padding: 5px 0;
    padding-left: 1.5em;
    position: relative;
}

.error-box li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* エラーフィールドのスタイル */
.form-group.has-error {
    border-left: 3px solid #e74c3c;
    padding-left: 15px;
    margin-left: -15px;
}

input.has-error,
select.has-error,
textarea.has-error {
    border-color: #e74c3c !important;
    background-color: #fff5f5;
}

input.has-error:focus,
select.has-error:focus,
textarea.has-error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.hp-field {
    position: absolute;
    left: -5000px;
    height: 0;
    overflow: hidden;
}

.form-group label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
}

.form-group label.required::after {
    content: '必須';
    background: #e74c3c;
    color: var(--white);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group textarea:focus {
    background-color: #f9f9f9;
    box-shadow: 0 0 0 3px rgba(0, 105, 52, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.checkbox-group,
.radio-group {
    display: table;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.checkbox-label:hover,
.radio-label:hover {
    background-color: #f5f5f5;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span,
.radio-label span {
    font-size: 16px;
    color: var(--text-color);
}

.form-submit {
    margin-top: 50px;
    text-align: center;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,105,52,0.3);
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.submit-button:hover {
    background: #005028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,52,0.4);
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-section {
        padding: 100px 15px 60px;
    }

    .form-section h1 {
        font-size: 28px;
    }

    .application-form {
        padding: 30px 20px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group select {
        font-size: 16px;
    }

    .submit-button {
        padding: 15px 40px;
        font-size: 16px;
        width: 100%;
    }
}

/* Thanks Page Styles */
.thanks-section {
    background: var(--bg-light);
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.thanks-message {
    text-align: left;
    margin-bottom: 40px;
    line-height: 2;
}

.thanks-message p {
    margin-bottom: 20px;
}

.thanks-message strong {
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-notice {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-notice h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-notice ul {
    list-style: none;
    padding: 0;
}

.thanks-notice li {
    padding-left: 1.5em;
    margin-bottom: 10px;
    position: relative;
}

.thanks-notice li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-special {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid var(--yellow);
}

.thanks-special .highlight {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
}

.thanks-contact {
    margin: 40px 0;
}

.thanks-contact h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-section .btn {
    margin-top: 40px;
}

.thanks-section .btn a {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,105,52,0.3);
}

.thanks-section .btn a:hover {
    background: #005028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,52,0.4);
}

/* Thanks Page Responsive */
@media (max-width: 768px) {
    .thanks-section {
        padding: 100px 15px 60px;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .thanks-section h1 {
        font-size: 24px;
    }

    .thanks-notice,
    .thanks-special {
        padding: 20px;
    }

    .thanks-special .highlight {
        font-size: 16px;
    }
}
