/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    --border-color: #e5e7eb;
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Zen Kaku Gothic New', sans-serif;
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* ブレイクポイント */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --wide: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-large small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://soratoumi-sharez.jp/lp1/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 1.5rem 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* キャンペーンバナー */
.campaign-banner {
    background: white;
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.campaign-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.campaign-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-unit {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-divider {
    font-size: 2rem;
    color: var(--border-color);
}

.campaign-desc {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ヒーローCTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* ヒーロー特徴 */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   選ばれる理由
======================================== */
.reasons {
    background: var(--bg-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reason-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.reason-card.featured .reason-title,
.reason-card.featured .reason-desc,
.reason-card.featured .reason-number {
    color: white;
}

.reason-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reason-desc {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   施設紹介
======================================== */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.facility-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.facility-content {
    padding: 1.5rem;
    background: white;
}

.facility-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.facility-content p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   料金プラン
======================================== */
.pricing {
    background: var(--bg-gray);
}

.pricing-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.pricing-highlight-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-highlight-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-highlight-header h3 {
    font-size: 2rem;
    font-weight: 900;
}

.price-boxes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-box.featured {
    background: white;
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-box.featured .price-label {
    color: var(--primary-color);
}

.price-box.featured .price-number {
    color: var(--primary-color);
}

.price-box.featured .price-unit {
    color: var(--primary-color);
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.price-unit {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-tax {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.pricing-features li {
    font-size: 0.9375rem;
}

/* 会員制度 */
.membership-section {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.membership-header {
    text-align: center;
    margin-bottom: 2rem;
}

.membership-header h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.membership-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.membership-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.membership-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.membership-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.membership-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.membership-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.membership-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.membership-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
}

.membership-benefits h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.membership-benefits ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.membership-benefits li {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* イベント貸切 */
.event-rental {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.event-rental-header {
    text-align: center;
    margin-bottom: 2rem;
}

.event-rental-header h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-rental-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.event-rental-prices {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.event-price-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    border: 2px solid var(--border-color);
}

.event-price-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    transform: scale(1.05);
}

.event-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.event-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.event-usage {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   利用者の声
======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ========================================
   代表メッセージ
======================================== */
.message {
    background: var(--bg-gray);
}

.message-content {
    max-width: 1000px;
    margin: 0 auto;
}

.message-with-photo {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.message-photo {
    flex-shrink: 0;
    text-align: center;
}

.message-photo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.photo-caption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.message-body {
    flex: 1;
}

.message-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.message-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: right;
}

.signature-name {
    font-weight: 700;
    color: var(--text-dark);
}

.signature-title {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* ========================================
   FAQ
======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   アクセス
======================================== */
.access {
    background: var(--bg-gray);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.access-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ========================================
   予約フォーム
======================================== */
.reserve-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.reserve-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* カレンダー */
.calendar-wrapper {
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calendar-nav {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--bg-gray);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 700;
}

.calendar-day.today {
    border: 2px solid var(--accent-color);
}

.selected-date {
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* フォームプライバシー */
.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
}

/* 予約情報 */
.reserve-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 1rem 0;
}

.phone-hours {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info-card ul,
.info-card ol {
    padding-left: 1.25rem;
}

.info-card li {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ========================================
   モバイルCTA
======================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    gap: 0.75rem;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
    gap: 0.25rem;
}

.mobile-cta-call {
    background: var(--success-color);
    color: white;
}

.mobile-cta-reserve {
    background: var(--primary-color);
    color: white;
}

.mobile-cta-icon {
    font-size: 1.25rem;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 1024px) {
    .access-grid {
        grid-template-columns: 1fr;
    }

    .reserve-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .nav {
        display: none;
    }

    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero {
        background-image: url('https://soratoumi-sharez.jp/lp1/images/hero-background.jpg') !important;
    }

    .hero-overlay {
        background: none !important;
    }

    .hero-title {
        font-size: 1.75rem;
        text-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        color: #000000;
        padding: 1rem;
        border-radius: 0.5rem;
        font-weight: 900;
    }

    .hero-subtitle {
        text-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        color: #000000;
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-weight: 600;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.98);
        color: #000000;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 5rem;
    }

    .price-boxes {
        flex-direction: column;
    }

    .event-rental-prices {
        flex-direction: column;
    }

    .message-with-photo {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }

    .message-photo img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .pricing-highlight,
    .membership-section,
    .event-rental,
    .reserve-form {
        padding: 1.5rem;
    }
}