* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
}

/* ファーストビュー */
.first-view {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 9000;
}
.first-view video {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	object-fit: cover;
}
.first-view-sp {
    display: none;
}
.first-view-pc {
    display: block;
}

@media (max-width: 768px) {
    .first-view-sp {
        display: block;
    }
    .first-view-pc {
        display: none;
    }
}

/* ポップアップのスタイル */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(216, 216, 216, 0.507);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.popup-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.popup-close {
  margin-top: 15px;
  background: #f33;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Header */
/* ===== ヘッダー ===== */
.header {
    background: rgba(255, 255, 255, 0.75);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== ヘッダーコンテンツ ===== */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* ===== ロゴ ===== */
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    vertical-align: middle;
    max-width: 160px;       /* お好みのサイズに調整 */
    height: auto;
    margin: 0 0 5px 0;
}

.header-content .logo img {
    height: 50px;
}

/* ===== ヘッダーCTA ===== */
.header-cta {
    background: linear-gradient(135deg, #48BB78, #38A169);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
}

@media (max-width: 586px) {
    .header-content {
        padding: 0 0.8rem;
    }
}

/* ===== ヒーローセクション ===== */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    color: #081C15;
    text-align: center;
    margin-top: 85px;
    /* z-index: 2; */
    overflow: hidden; /* はみ出た部分を隠す */
}

/* 上半分の背景（右から左へスクロール） */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500%; /* 4回分の画像幅 + 初期表示分 */
    height: 50%;
    background-image: url(../img/vegetoko_scroll_img_top_1.png);
    background-size: 20% 100%; /* 5分割（初期 + 4回分）で1つの画像サイズ */
    background-repeat: repeat-x;
    background-position: top left;
    animation: scrollRightToLeft 80s linear infinite;
    z-index: -1;
}

/* 下半分の背景（左から右へスクロール） */
.hero::after {
    content: '';
    position: absolute;
    top: 50%; /* 下半分の開始位置 */
    left: 0;
    width: 500%; /* 4回分の画像幅 + 初期表示分 */
    height: 50%;
    background-image: url(../img/vegetoko_scroll_img_bottom_1.png);
    background-size: 20% 100%; /* 5分割（初期 + 4回分）で1つの画像サイズ */
    background-repeat: repeat-x;
    background-position: top left;
    animation: scrollLeftToRight 100s linear infinite;
    z-index: -1;
}
@media (max-width: 768px) {
    .hero::after,
    .hero::before {
        background-size: 35% 100%;
    }
}

@media (max-width: 586px) {
    .hero::after,
    .hero::before {
        background-size: 45% 100%;
    }
}


/* 右から左へのアニメーション（4回スクロール） */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0); /* 初期位置で画像が表示されている */
    }
    100% {
        transform: translateX(-80%); /* 4回分（4 × 20% = 80%）移動 */
    }
}

/* 左から右へのアニメーション（4回スクロール） */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-80%); /* 4回分移動した位置から開始 */
    }
    100% {
        transform: translateX(0); /* 初期位置まで戻る */
    }
}

/* より滑らかなアニメーションのための最適化 */
.hero::before,
.hero::after {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* 代替案：より細かい制御が必要な場合 */
/*
.hero::before {
    animation: scrollRightToLeft 60s linear infinite;
}

.hero::after {
    animation: scrollLeftToRight 80s linear infinite;
}
*/

/* さらに多くの繰り返しが必要な場合の設定例 */
/*
.hero::before,
.hero::after {
    width: 900%;
    background-size: 11.11% 100%;
}

@keyframes scrollRightToLeft8times {
    0% { transform: translateX(0); }
    100% { transform: translateX(-88.88%); }
}

@keyframes scrollLeftToRight8times {
    0% { transform: translateX(-88.88%); }
    100% { transform: translateX(0); }
}
*/

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: -70px auto 100px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #2d5016;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #4a5c2a;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    letter-spacing: -0.05em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(45deg, #45a049, #5cb85c);
}

/* ヒーローセクション - レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-content {
        max-width: 500px;
        margin: 1rem auto;
        padding: 1.5rem;
    }
    .hero-content p,.solution-item p{
        font-size: 0.9rem;
    }

}

@media (max-width: 586px) {
    .hero {
        height: 500px;
        padding-top: 50px;
    }
    
    .hero-content {
        max-width: 500px;
        padding: 0.75rem 1rem;
        margin: 40px auto 60px auto;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* ===== 共通セクションスタイル ===== */
.section {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #2F855A;
    position: relative;
    animation: slideInFromLeft 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #48BB78, #f5ff65, #68D391);
    border-radius: 2px;
}

/* セクション - レスポンシブ対応 */
@media (max-width: 768px) {
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 586px) {
    .section {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

/* ===== レスポンシブ改行ユーティリティ ===== */
.responsive-br {
    display: none;
}

@media (max-width: 768px) {
    .responsive-br {
        display: block;
    }
}
.responsive-br-mini {
    display: none;
}

@media (max-width: 420px) {
    .responsive-br-mini {
        display: block;
    }
}

/* ===== アニメーション定義 ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* Problems Section */
.problems {
    background: linear-gradient(135deg, #F0FFF4, #E6FFFA);
    margin-top: 20px;
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.problem-image {
    flex-shrink: 0;
    width: 80px;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 586px) {
    .problem-image {
        width: 60px;
    }
}

.problem-text {
    flex: 1;
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* text-align: left; */
}
.problem-text h3 {
    font-size: 1.2rem;
    margin: 10px auto;
}
@media (max-width: 586px) {
    .problem-text {
    padding: 0.8rem;
    }
    .problem-text h3 {
    font-size: 0.8rem;
    margin: 5px auto;
}
}


/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-item {
    background: linear-gradient(135deg, #F0FFF4, #C6F6D5);
    padding: 1.75rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.solution-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #48BB78;
    box-shadow: 0 10px 40px rgba(72, 187, 120, 0.2);
}

.solution-item:nth-child(2n) {
    background: linear-gradient(135deg, #FFFBEB, #FEF5E7);
}

.solution-item:nth-child(2n):hover {
    /* border-color: #f5ff65; */
    box-shadow: 0 10px 40px rgba(246, 173, 85, 0.2);
}

.solution-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.testimonials-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-item {
        padding: 25px 15px;
    }
    
    .testimonials-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 30px 10px;
    }
    
    .testimonial-item {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        font-size: 12px;
    }
}

/* Plans Section */
.table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.plans-table {
    width: 100%;
    min-width: 600px; /* 最小幅を設定してスマホで横スクロール */
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .plans-table {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.plans-table thead {
    background: linear-gradient(90deg, #48BB78, #68D391);
}

.plans-table thead tr:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
    z-index: auto;
}

.plans-table th {
    padding: 1.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: left;
}

.plans-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.plans-table tr:last-child td {
    border-bottom: none;
}

.plans-table tr:hover {
    background-color: #f7fafc;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2F855A;
    min-width: 150px;
}
.plan-prefix {
    font-size: 0.8em;/* ベジトコ小さく */
}

.plans-table tr:nth-child(even) .plan-name {
    color: #C05621;
}

.featured-row {
    background: linear-gradient(90deg, rgba(47, 133, 90, 0.1), rgba(72, 187, 120, 0.1));
    /* border: 2px solid #2F855A; */
}

.featured-row .plan-name {
    color: #2F855A;
    font-weight: bold;
}

.featured-row:hover {
    background: linear-gradient(90deg, rgba(47, 133, 90, 0.15), rgba(72, 187, 120, 0.15));
    box-shadow: 0 5px 20px rgba(47, 133, 90, 0.2);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .table-container {
        margin: 1rem -1rem;
        border-radius: 0;
    }
    
    .plans-table {
        border-radius: 0;
    }
    
    .plans-table th,
    .plans-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .plan-name {
        min-width: 120px;
        font-size: 1rem;
    }
}

/* Options Section */
.options {
    background: linear-gradient(135deg, #FFFBEB, #F7FAFC);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}

.option-item {
    background: white;
    padding: 1.5rem;
    font-weight: bold;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation: flipIn 1s ease-out;
    border: 2px solid transparent;
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0);
    }
}

.option-item:hover {
    transform: translateY(-3px) rotateY(5deg);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.12);
    border-color: #68D391;
}

.option-item:nth-child(2n):hover {
    border-color: #F6AD55;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.12);
}
.option-item-caution {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
    .option-item {
        padding: 0.75rem;
    }
    .options-grid {
        gap: 0.5rem;
    }
}
/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48BB78, #2F855A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.step-number:nth-child(2n) {
    background: linear-gradient(135deg, #F6AD55, #ED8936);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
}

/* FAQ Section */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #68D391;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    background: linear-gradient(135deg, #F0FFF4, #C6F6D5);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #C6F6D5, #9AE6B4);
}

.faq-item:nth-child(2n) .faq-question {
    background: linear-gradient(135deg, #FFFBEB, #FEF5E7);
}

.faq-item:nth-child(2n) .faq-question:hover {
    background: linear-gradient(135deg, #FEF5E7, #FEEBC8);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    border-top: 1px solid #e2e8f0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5ff65, #48BB78, #2F855A);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2F855A;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
    100% { box-shadow: 0 8px 40px rgba(255,255,255,0.4); }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: #C05621;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(72, 187, 120, 0.1);
    border: 2px solid #C6F6D5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2F855A;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgb(203, 203, 203);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #C6F6D5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #48BB78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #48BB78, #2F855A);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    background: linear-gradient(135deg, #38A169, #276749);
}

/* footer */
.footer {
    background: #48a64c;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zM10 30c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr 1fr; 4列用 */
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}
.footer-logo {
  height: 80px;
}

.footer-brand {
    flex: 1;
}

.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-brand p {
    font-size: 1rem;
    color: #e8f5e8;
    font-weight: bold;
    padding-left: 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #6db33f;
    padding-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #e8f5e8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #6db33f;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info h3 {
    border-bottom: 2px solid #ff6b35;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: #6db33f;
}

.contact-item span {
    color: #e8f5e8;
    font-size: 0.95rem;
    text-decoration: none;.veggie {
    position: absolute;
    width: 40px;  /* 画像サイズを調整 */
    height: 40px;
    animation: float 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.veggie img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* 画像の比率を保持 */
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: #6db33f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.copyright {
    font-size: 0.9rem;
    color: #b8d8b8;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-section {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

  