/* ===== ヒーローセクション ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 150px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hero-button.primary {
    background-color: #009944 !important;
    color: #fff !important;
}

.hero-button.primary:hover {
    background: #00B968;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 211, 122, 0.3);
}

.hero-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-button.secondary:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ===== ロゴスライダーセクション ===== */
.logo-slider-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.logo-slider-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 50px;
    color: #333;
}

.logo-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-slider {
    display: flex;
    width: fit-content;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    animation: scroll-horizontal 30s linear infinite;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-placeholder {
    padding: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    color: #666;
}

.logo-slider:has(.logo-item) .logo-slider-track {
    animation-duration: calc(3s * var(--logo-count, 10));
}

.logo-slider:hover .logo-slider-track {
    animation-play-state: paused;
}

/* ===== 商品説明セクション ===== */
.product-section {
    padding: 80px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.product-card:hover .product-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.product-content {
    text-align: center;
    color: #fff;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.product-button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: #009944;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: #00B968;
    color: #fff;
}

.product-placeholder {
    grid-column: 1 / -1;
    padding: 60px;
    background: #f8fdf8;
    border-radius: 12px;
    text-align: center;
    color: #666;
}

/* ===== 2カラム画像セクション ===== */
.two-column-section {
    padding: 80px 0;
    background: #f8fdf8;
}

.two-column-section .section-title {
    margin-bottom: 50px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.column-item {
    text-align: center;
}

.column-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.column-image-placeholder {
    height: 300px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #666;
}

.column-text {
    padding: 0 20px;
}

.column-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* ===== 画像スライダーセクション ===== */
.image-slider-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.image-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.slide-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.slide-text h3 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.3);
}

.slider-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    color: #666;
    font-size: 1.2rem;
}

/* ===== 料金プランセクション ===== */
.pricing-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.pricing-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #2c5f2d;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.15);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5f2d;
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.pricing-price-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c5f2d;
    line-height: 1;
}

.pricing-price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-left: 5px;
}

.pricing-subtext {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    min-height: 20px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-feature-item {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.pricing-coming-soon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c5f2d;
    text-align: center;
    line-height: 1.2;
}

.pricing-coming-soon-sub {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: #009944;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-button:hover {
    background: #00B968;
    transform: translateY(-2px);
    color: #fff;
}

.pricing-button.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

body.customize-preview .pricing-card.featured,
body:not(.customize-preview) .pricing-card.featured {
    border: 2px solid #2c5f2d;
    transform: scale(1.05);
}

/* ===== 導入事例セクション ===== */
.case-study-section {
    padding: 80px 0;
    background: #fff;
}

.case-study-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.case-study-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.case-study-image-link {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-image-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-image-link:hover .case-study-image {
    transform: scale(1.05);
}

.case-study-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-study-speech-bubble {
    position: relative;
    background: #f8f8f8;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.case-study-speech-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent #f8f8f8 transparent transparent;
}

.case-study-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.case-study-attribution {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.case-study-company {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 5px;
}

.case-study-position {
    font-size: 0.9rem;
    color: #666;
}

.case-study-button-wrapper {
    display: flex;
    justify-content: flex-end;
}

.case-study-button {
    display: inline-block;
    padding: 15px 40px;
    background: #009944;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 211, 122, 0.3);
}

.case-study-button:hover {
    background: #00B968;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 211, 122, 0.4);
    color: #fff;
}

/* ===== 選ばれる理由セクション ===== */
.reasons-section {
    padding: 80px 0;
    background: #f8fdf8;
    overflow: hidden;
}

.reasons-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.reasons-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.reasons-slider-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.reasons-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reasons-text-area {
    padding-left: 20px;
    position: relative;
    min-height: 300px;
}

.reason-number {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reason-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.reason-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.reasons-image-area {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-main-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

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

.reason-side-images {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.reason-side-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    position: relative;
}

.reason-side-image:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.reason-side-image.prev {
    transform: translateX(-50%);
}

.reason-side-image.next {
    transform: translateX(50%);
}

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

.reasons-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reasons-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.reasons-nav.prev {
    left: 10px;
}

.reasons-nav.next {
    right: 10px;
}

.reason-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.reason-content.active {
    opacity: 1;
    transform: translateX(0);
}

.reason-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* ===== 動画説明セクション ===== */
.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

.video-grid.single-video {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.video-grid.double-video {
    grid-template-columns: repeat(2, 1fr);
}

.video-item {
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.video-description {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.video-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* ===== メディア表示セクション ===== */
.media-section {
    padding: 80px 0;
    background: #f8fdf8;
}

.media-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.media-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
}

.media-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-image {
    transform: scale(1.05);
}

.media-image-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.media-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.media-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.media-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-category {
    background: #2c5f2d;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.media-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    flex: 1;
}

.media-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-title a:hover {
    color: #2c5f2d;
}

.media-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.media-read-more:hover {
    gap: 10px;
}

.media-read-more::after {
    content: '→';
}

.media-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    color: #666;
}

/* ===== よくある質問セクション ===== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #2c5f2d;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.faq-item.active .faq-question {
    background: #f8f8f8;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-q-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    padding-right: 20px;
    text-align: left;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: border-color 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-arrow::before {
    border-color: #2c5f2d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 30px 25px 85px;
}

.faq-answer-content {
    position: relative;
}

.faq-answer-content::before {
    content: 'A';
    position: absolute;
    left: -50px;
    top: 0;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-answer-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.faq-answer-text a {
    color: #2c5f2d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer-text a:hover {
    color: #009944;
    text-decoration: none;
}

.faq-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    color: #666;
}

/* ===== 最終CTAセクション ===== */
.final-cta-section {
    padding: 80px 0;
    background: #005731;
    text-align: center;
}

.final-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-button {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.final-cta-button:hover {
    background: #fff;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    /* ヒーローセクション */
    .hero-grid {
        gap: 40px;
    }
    
    .hero-left {
        min-height: 300px;
    }
    
    /* 画像スライダー */
    .image-slider-wrapper {
        height: 500px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* 料金プラン */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-plan-name {
        font-size: 1.25rem;
    }
    
    .pricing-feature-item {
        font-size: 0.9rem;
    }
    
    /* 導入事例 */
    .case-study-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
    
    .case-study-speech-bubble {
        padding: 25px 30px;
    }
    
    /* 選ばれる理由 */
    .reasons-slider-wrapper {
        height: 380px;
    }
    
    .reason-main-image {
        width: 300px;
        height: 300px;
    }
    
    .reason-side-image {
        width: 100px;
        height: 100px;
    }
    
    .reasons-main-content {
        gap: 40px;
    }
    
    .reasons-text-area {
        min-height: 250px;
    }
    
    /* 動画 */
    .video-container {
        padding: 0 20px;
    }
    
    .video-grid {
        gap: 30px;
    }
    
    /* メディア */
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer-inner {
        padding: 0 25px 20px 70px;
    }
    
    /* 最終CTA */
    .final-cta-buttons {
        gap: 20px;
        padding: 0 20px;
    }
    
    .final-cta-button {
        min-width: 180px;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* 共通 */
    .logo-slider-section,
    .product-section,
    .two-column-section,
    .image-slider-section,
    .pricing-section,
    .case-study-section,
    .reasons-section,
    .video-section,
    .media-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    /* ヒーローセクション */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        order: 1;
        min-height: auto;
        display: contents;
    }
    
    .hero-right {
        order: 2;
        margin-bottom: 30px;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
        order: 1;
    }
    
    .hero-buttons {
        order: 3;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
    }
    
    .hero-button {
        width: 100%;
    }
    
    /* ロゴスライダー */
    .logo-slider-title {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .logo-slider-track {
        gap: 40px;
        padding: 0 20px;
    }
    
    .logo-item {
        height: 40px;
    }
    
    .logo-item img {
        max-height: 40px;
    }
    
    /* 商品説明 */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    /* 2カラム画像 */
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .column-text {
        padding: 0 10px;
    }
    
    .column-image-placeholder {
        height: 200px;
    }
    
    /* 画像スライダー */
    .image-slider-wrapper {
        height: 400px;
        border-radius: 8px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-text h3 {
        margin-bottom: 15px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* 料金プラン */
    .pricing-section .section-title {
        margin-bottom: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    
    .pricing-badge {
        top: -15px;
        padding: 6px 20px;
        font-size: 0.85rem;
    }
    
    /* 導入事例 */
    .case-study-section .section-title {
        margin-bottom: 40px;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-study-image-wrapper {
        max-width: 300px;
    }
    
    .case-study-speech-bubble::before {
        left: 50%;
        top: -15px;
        transform: translateX(-50%);
        border-width: 0 15px 15px 15px;
        border-color: transparent transparent #f8f8f8 transparent;
    }
    
    .case-study-speech-bubble {
        padding: 25px;
    }
    
    .case-study-text {
        font-size: 1rem;
    }
    
    .case-study-button-wrapper {
        justify-content: center;
        margin-top: 20px;
    }
    
    .case-study-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* 選ばれる理由 */
    .reasons-section .section-title {
        margin-bottom: 40px;
    }
    
    .reasons-slider-wrapper {
        height: auto;
    }
    
    .reasons-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reasons-text-area {
        padding: 0 20px;
        text-align: center;
        order: 2;
    }
    
    .reasons-image-area {
        order: 1;
        height: 300px;
    }
    
    .reason-main-image {
        width: 250px;
        height: 250px;
    }
    
    .reason-side-images {
        display: none;
    }
    
    .reasons-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .reason-title {
        font-size: 1.5rem;
    }
    
    .reason-description {
        font-size: 1rem;
    }
    
    /* 動画説明 */
    .video-section .section-title {
        margin-bottom: 40px;
    }
    
    .video-grid.double-video {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-title {
        font-size: 1.1rem;
        margin-top: 15px;
    }
    
    .video-description {
        font-size: 0.95rem;
        margin-top: 10px;
    }
    
    /* メディア表示 */
    .media-section .section-title {
        margin-bottom: 40px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-content {
        padding: 20px;
    }
    
    .media-title {
        font-size: 1.1rem;
    }
    
    .media-excerpt {
        font-size: 0.9rem;
    }
    
    /* よくある質問 */
    .faq-section .section-title {
        margin-bottom: 40px;
    }
    
    .faq-list {
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-q-mark {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
        margin-right: 15px;
    }
    
    .faq-question-text {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-arrow {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer-inner {
        padding: 0 20px 18px 60px;
    }
    
    .faq-answer-content::before {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    
    .faq-answer-text {
        font-size: 0.95rem;
    }
    
    /* 最終CTA */
    .final-cta-title {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .final-cta-button {
        width: 100%;
        max-width: 300px;
    }
}