/* リセット & ベース設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #3E5940;
    --secondary-color: #B88C5D;
    --accent-wood: #B88C5D;
    --accent-green: #3E5940;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #EDEDED;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #3E5940 0%, #4a6b4d 100%);
    --gradient-secondary: linear-gradient(135deg, #B88C5D 0%, #c9a076 100%);
    --gradient-accent: linear-gradient(135deg, #3E5940 0%, #B88C5D 100%);
    --shadow-sm: 0 2px 8px rgba(62, 89, 64, 0.15);
    --shadow-md: 0 4px 16px rgba(62, 89, 64, 0.2);
    --shadow-lg: 0 8px 32px rgba(62, 89, 64, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.sp-only {
    display: none;
}

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

/* ヘッダー */
.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-light);
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-contact .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: currentColor;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-house.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

/* バッジ */
.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-badge-main {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge-accent {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(184, 140, 93, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 日付 */
.hero-date {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-date-text {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

.hero-time {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: white;
    opacity: 0.95;
    letter-spacing: 2px;
}

/* タイトル */
.hero-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title-main {
    display: block;
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 900;
    letter-spacing: 4px;
    margin-top: 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B88C5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* サブタイトル */
.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* 場所 */
.hero-location {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 500;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: currentColor;
    flex-shrink: 0;
}

/* CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ヒーロー専用CTAボタン */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(62, 89, 64, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid white;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-text {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover .btn-hero-text {
    transform: translateX(-4px);
}

.btn-hero-arrow {
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    stroke-width: 2;
    color: currentColor;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: inline-block;
    flex-shrink: 0;
}

.btn-hero-primary:hover .btn-hero-arrow {
    transform: translateY(6px);
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(6px); }
    50% { transform: translateY(12px); }
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(62, 89, 64, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.arrow {
    transition: var(--transition);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 8px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* イベント情報 */
.event-info {
    padding: 80px 0;
    background: var(--bg-white);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.event-info-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.event-info-item:nth-child(1) {
    border-top-color: var(--primary-color);
}

.event-info-item:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.event-info-item:nth-child(3) {
    border-top-color: var(--accent-green);
}

.event-info-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.event-info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.event-info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-title.light {
    color: white;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* 特徴セクション */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

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

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

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-number {
    font-size: calc(clamp(24px, 3vw, 32px) * 1.4 * 2);
    font-weight: 900;
    color: rgba(213, 20, 31, 0.1);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: calc(clamp(24px, 3vw, 32px) * 1.4 * 2);
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: block;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

/* 複数画像対応 - グリッドレイアウト */
.feature-image.feature-images-multiple {
    display: grid;
    gap: 8px;
}

/* 2枚の画像の場合 */
.feature-image.feature-images-2 {
    grid-template-columns: 1fr 1fr;
}

.feature-image.feature-images-2 img {
    height: 400px;
}

/* 3枚の画像の場合 */
.feature-image.feature-images-3 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-image.feature-images-3 img {
    height: 196px;
}

.feature-image.feature-images-3 img:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

/* 4枚の画像の場合 */
.feature-image.feature-images-4 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-image.feature-images-4 img {
    height: 196px;
}

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

.feature-image-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}


.feature-content {
    position: relative;
    z-index: 2;
}

/* 装飾アイコン */
.decorative-icon {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    direction: ltr;
}

.decorative-icon-1 {
    top: 10%;
    right: 50%;
    left: auto;
    animation-delay: 0s;
}

.decorative-icon-2 {
    bottom: 15%;
    left: 52%;
    right: auto;
    animation-delay: 1s;
}

.decorative-icon-3 {
    top: 20%;
    left: 2%;
    right: auto;
    animation-delay: 2s;
}

.decorative-icon-4 {
    bottom: 10%;
    right: 4%;
    left: auto;
    animation-delay: 0.5s;
}

.decorative-icon-company {
    top: 10%;
    right: 5%;
    width: 120px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.feature-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 1.4;
    flex: 1;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.9;
}

.feature-points {
    list-style: none;
}

.feature-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 18px;
}

/* メリットセクション */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

/* 番号付きリスト（新スタイル） */
.benefits-list {
    list-style: none;
    counter-reset: benefit-counter;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.benefit-item-list {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    margin-bottom: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 6px solid var(--primary-color);
}

.benefit-item-list:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 36px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(62, 89, 64, 0.3);
}

.benefit-content-list {
    flex: 1;
}

.benefit-title-list {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-text-list {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #f4d03f 60%);
    font-weight: 600;
    color: var(--text-dark);
    padding: 2px 4px;
}

.benefit-item:nth-child(1)::before {
    background: var(--primary-color);
}

.benefit-item:nth-child(2)::before {
    background: var(--secondary-color);
}

.benefit-item:nth-child(3)::before {
    background: var(--accent-yellow);
}

.benefit-item:nth-child(4)::before {
    background: var(--accent-green);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* 予約セクション */
.reservation {
    padding: 100px 0;
    background: var(--bg-white);
}

.reservation-header {
    text-align: center;
    margin-bottom: 60px;
}


/* 見学会情報テーブル */
.event-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.event-table th {
    background: var(--primary-color);
    color: white;
    padding: 20px 24px;
    font-weight: 700;
    text-align: left;
    width: 200px;
    font-size: 16px;
}

.event-table td {
    padding: 20px 24px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

.event-table td small {
    font-size: 14px;
    color: var(--text-light);
}

.reservation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.reservation-method {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.reservation-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reservation-method h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reservation-method p {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.8;
}

/* 予約CTAボックス */
.reservation-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-box-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-box-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* CTAセクション */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 3px solid white;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    color: currentColor;
    flex-shrink: 0;
    transition: var(--transition);
}

.cta-icon[data-fill="true"] {
    fill: currentColor;
    stroke-width: 1.5;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
}

.cta-text small {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.btn-cta-tel {
    background: white;
    color: var(--primary-color);
}

.btn-cta-web {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-cta-web:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
}

/* LINEアイコン */
.line-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.btn-cta-line {
    background: #06C755;
    color: white;
    border-color: #06C755;
}

.btn-cta-line:hover {
    background: #05b04a;
    border-color: #05b04a;
    color: white;
}

/* 会社情報 */
.company {
    padding: 100px 0;
    background: var(--bg-white);
}

.company-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-main {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

.company-message {
    text-align: center;
    margin-bottom: 60px;
}

.company-lead {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.company-lead .highlight-text {
    color: var(--primary-color);
    font-size: 1.2em;
}

.company-subtitle {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.6;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.company-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 2;
    color: var(--text-light);
}

.company-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.company-feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.company-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(62, 89, 64, 0.15);
    border-color: var(--primary-color);
}

.feature-number-large {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1;
}

.feature-icon-large {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    line-height: 1;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-icon-large[data-fill="true"] {
    fill: var(--primary-color);
    stroke-width: 1.5;
}

/* 会社情報カードの色分け */
.company-feature-achievement .feature-number-large,
.company-feature-achievement .feature-icon-large {
    color: #3B82F6;
}

.company-feature-achievement .feature-icon-large[data-fill="true"] {
    fill: #3B82F6;
}

.company-feature-design .feature-icon-large {
    color: var(--secondary-color);
}

.company-feature-design .feature-icon-large[data-fill="true"] {
    fill: var(--secondary-color);
}

.company-feature-support .feature-icon-large {
    color: var(--primary-color);
}

.company-feature-support .feature-icon-large[data-fill="true"] {
    fill: var(--primary-color);
}

.company-feature-local .feature-icon-large {
    color: #E91E63;
}

.company-feature-local .feature-icon-large[data-fill="true"] {
    fill: #E91E63;
}

.feature-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.company-cta {
    text-align: center;
}

.btn-company-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(62, 89, 64, 0.3);
    transition: var(--transition);
}

.btn-company-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(62, 89, 64, 0.4);
}

.btn-company-cta .arrow {
    transition: var(--transition);
}

.btn-company-cta:hover .arrow {
    transform: translateX(6px);
}

.company-details p {
    font-size: 14px;
    color: var(--text-dark);
}

.company-details a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}


.company-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.company-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.company-feature:nth-child(1) .feature-check {
    background: var(--gradient-primary);
}

.company-feature:nth-child(2) .feature-check {
    background: var(--gradient-secondary);
}

.company-feature:nth-child(3) .feature-check {
    background: var(--gradient-accent);
}

.company-feature:nth-child(4) .feature-check {
    background: linear-gradient(135deg, var(--accent-green) 0%, #8bc34a 100%);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    border-radius: 50%;
    font-size: 16px;
}

/* フッター */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-logo p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

/* 固定CTAボタン */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 999;
}

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fixed-btn-line {
    background: #06C755;
}

.fixed-btn-tel {
    background: var(--gradient-primary);
}

.fixed-btn-reserve {
    background: var(--gradient-secondary);
}

.fixed-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fixed-btn .icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: currentColor;
    flex-shrink: 0;
    transition: var(--transition);
}

.fixed-btn .icon[data-fill="true"] {
    fill: currentColor;
    stroke-width: 1.5;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }

    .header-content {
        padding: 15px 0;
    }

    .logo-img {
        height: 45px;
    }

    .btn-contact {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* ヒーローセクション - モバイル */
    .hero {
        min-height: 600px;
    }

    .hero-badge-main {
        font-size: 10px;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .hero-badge-accent {
        font-size: 12px;
        padding: 8px 18px;
    }

    .btn-hero-primary {
        padding: 24px 40px;
    }

    .btn-hero-text {
        font-size: 18px;
    }

    .btn-hero-arrow {
        width: 28px;
        height: 28px;
    }

    .hero-location {
        font-size: 14px;
    }

    .event-info {
        padding: 60px 0;
    }

    .event-info-grid {
        gap: 24px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        gap: 60px;
    }

    .feature-card,
    .feature-card-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .feature-header {
        gap: 16px;
        margin-bottom: 16px;
    }

    .feature-number {
        font-size: calc(clamp(20px, 4vw, 28px) * 1.4 * 2);
        font-family: 'Noto Sans JP', sans-serif;
        display: flex;
        align-items: center;
        height: calc(clamp(20px, 4vw, 28px) * 1.4 * 2);
    }

    .feature-image-placeholder {
        height: 300px;
    }

    .feature-image img {
        height: 300px;
    }

    /* 装飾アイコンのモバイル対応 */
    .decorative-icon {
        width: 60px;
        opacity: 0.15;
    }

    .decorative-icon-1 {
        top: 5%;
        right: 2%;
        z-index: 1;
    }

    .decorative-icon-2 {
        bottom: 10%;
        left: 1%;
        z-index: 1;
    }

    .decorative-icon-3 {
        top: 15%;
        left: 1%;
        z-index: 1;
    }

    .decorative-icon-4 {
        bottom: 5%;
        right: 2%;
        z-index: 1;
    }

    .decorative-icon-company {
        width: 80px;
        top: 5%;
        right: 2%;
    }

    /* 複数画像のモバイル対応 */
    .feature-image.feature-images-2 {
        grid-template-columns: 1fr;
    }

    .feature-image.feature-images-2 img {
        height: 250px;
    }

    .feature-image.feature-images-3 {
        grid-template-columns: 1fr;
    }

    .feature-image.feature-images-3 img {
        height: 250px;
    }

    .feature-image.feature-images-3 img:first-child {
        grid-column: 1;
        height: 250px;
    }

    .feature-image.feature-images-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-image.feature-images-4 img {
        height: 150px;
    }

    .benefits {
        padding: 60px 0;
    }

    .benefits-grid {
        gap: 24px;
    }

    .benefit-item-list {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .benefit-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }

    .benefit-title-list {
        font-size: 20px;
    }

    .benefit-text-list {
        font-size: 15px;
    }

    .event-table th {
        width: 120px;
        padding: 16px;
        font-size: 14px;
    }

    .event-table td {
        padding: 16px;
        font-size: 14px;
    }

    .reservation {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        justify-content: center;
        width: 100%;
    }

    .reservation-methods {
        gap: 20px;
        margin-bottom: 60px;
    }

    .reservation-cta-box {
        padding: 40px 24px;
    }

    .company {
        padding: 60px 0;
    }

    .company-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .company-feature-card {
        padding: 32px 20px;
    }

    .feature-number-large {
        font-size: 42px;
    }

    .feature-icon-large {
        width: 36px;
        height: 36px;
    }

    .btn-company-cta {
        padding: 18px 40px;
        font-size: 16px;
    }

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

    .fixed-cta {
        flex-direction: column;
        bottom: 16px;
        right: 16px;
    }

    .fixed-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .fixed-btn .text {
        display: none;
    }

    .fixed-btn .icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* 選択時のハイライト */
::selection {
    background: var(--primary-color);
    color: white;
}

