/* ========================================
   リセット & 基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e67e22;
    --secondary-color: #f39c12;
    --accent-color: #f1c40f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.header-logo {
    width: 60px;
    height: 60px;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.header-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ========================================
   パンくずリスト
   ======================================== */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item i {
    font-size: 0.85rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-item.active span {
    color: var(--text-dark);
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    position: relative;
    padding: 150px 0;
    color: var(--text-white);
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* スライドショー */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 10s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

/* オーバーレイ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.7) 0%, rgba(243, 156, 18, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-logo {
    width: 300px;
    height: 300px;
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
               floatAnimation 3s ease-in-out 1.5s infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateX(-200px) translateY(-100px) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateX(20px) translateY(-20px) rotate(5deg);
    }
    70% {
        transform: scale(0.95) translateX(-10px) translateY(10px) rotate(-3deg);
    }
    85% {
        transform: scale(1.05) translateX(5px) translateY(-5px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.1);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg) scale(0.98);
    }
    75% {
        transform: translateY(-20px) rotate(2deg) scale(1.2);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

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

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

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

/* スライドインジケーター */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

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

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--text-white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.8;
}

.pencil-underline-title {
    position: relative;
    display: inline-block;
}

.highlight-text-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text-title::before {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 5px;
    height: 22px;
    background: rgba(255, 215, 0, 0.65);
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    border-radius: 5px;
}

.pencil-underline-title.animate .highlight-text-title::before {
    animation: pencilDraw 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               pencilShake 0.15s 0.8s ease-in-out 5;
}

.highlight-text-title::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 7px;
    height: 4px;
    background: linear-gradient(
        to right,
        rgba(230, 126, 34, 0.4) 0%,
        rgba(230, 126, 34, 0.85) 20%,
        rgba(230, 126, 34, 0.95) 50%,
        rgba(230, 126, 34, 0.85) 80%,
        rgba(230, 126, 34, 0.4) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    border-radius: 2px;
}

.pencil-underline-title.animate .highlight-text-title::after {
    animation: pencilDraw 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards,
               pencilShake 0.15s 0.95s ease-in-out 5;
}

/* ========================================
   3つの特徴
   ======================================== */
.features-main {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

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

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

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

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

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

.feature-content {
    padding: 20px;
}

.feature-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(230, 126, 34, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.pencil-underline {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 0px;
    height: 18px;
    background: rgba(255, 215, 0, 0.6);
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    border-radius: 4px;
}

.pencil-underline.animate .highlight-text::before {
    animation: pencilDraw 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               pencilShake 0.15s 0.6s ease-in-out 4;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(
        to right,
        rgba(230, 126, 34, 0.4) 0%,
        rgba(230, 126, 34, 0.8) 20%,
        rgba(230, 126, 34, 0.9) 50%,
        rgba(230, 126, 34, 0.8) 80%,
        rgba(230, 126, 34, 0.4) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    border-radius: 2px;
}

.pencil-underline.animate .highlight-text::after {
    animation: pencilDraw 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards,
               pencilShake 0.15s 0.7s ease-in-out 4;
}

@keyframes pencilDraw {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes pencilShake {
    0%, 100% {
        transform: scaleX(1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scaleX(1) translateY(-1px) rotate(-0.3deg);
    }
    75% {
        transform: scaleX(1) translateY(1px) rotate(0.3deg);
    }
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   7つの安心
   ======================================== */
.seven-assurances {
    padding: 80px 0;
    background: var(--bg-light);
}

.assurances-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.assurance-item {
    display: flex;
    gap: 25px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.assurance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-white);
    font-size: 2rem;
}

.assurance-content {
    flex: 1;
}

.assurance-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(230, 126, 34, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 12px;
}

.assurance-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.assurance-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   体験入居
   ======================================== */
.trial-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trial-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.trial-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.trial-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trial-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ========================================
   施設案内
   ======================================== */
.facilities-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.facility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.facility-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.facility-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.facility-card-image-disabled {
    filter: grayscale(50%) brightness(0.9);
}

/* 満室バッジ */
.facility-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.facility-badge-full {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--text-white);
    border: 3px solid var(--text-white);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    }
}

.facility-card-inner {
    padding: 40px 35px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.facility-name {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 10px;
}

.facility-address {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.6;
}

.facility-status {
    display: inline-block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--bg-light);
    border-radius: 25px;
    font-weight: 600;
}

.facility-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-button {
    background: var(--secondary-color);
    gap: 15px;
}

.facility-card-disabled {
    opacity: 0.7;
    pointer-events: none;
}

.facility-card-disabled .facility-card-inner {
    background: #f5f5f5;
}

/* ========================================
   お問い合わせ
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #e67e22 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px) translateY(-20px);
    }
}

.contact-image {
    position: relative;
    z-index: 1;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.3);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon-wrapper i {
    font-size: 3rem;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.contact-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-description {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
}

.contact-phone-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px 50px;
    margin: 0 auto 30px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-phone-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-phone i {
    font-size: 2.5rem;
    animation: phoneShake 3s ease-in-out infinite;
}

@keyframes phoneShake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    92%, 96% {
        transform: translateX(-5px);
    }
    94%, 98% {
        transform: translateX(5px);
    }
}

.contact-phone a {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    white-space: nowrap;
}

.contact-phone a:hover {
    transform: scale(1.08);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.contact-info-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 35px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.contact-info-box i {
    font-size: 1.3rem;
}

.contact-hours {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    align-items: start;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* 運営会社セクション */
.footer-company h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.company-info {
    line-height: 1.8;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-address {
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.company-representative {
    font-weight: 600;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb-list {
        gap: 5px;
        font-size: 0.85rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin-left: 5px;
    }

    .hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-description br {
        display: none;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-description br {
        display: none;
    }

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

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

    .trial-content {
        grid-template-columns: 1fr;
    }
    
    .trial-text h2 br {
        display: none;
    }
    
    .trial-text p br {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image img {
        max-width: 100%;
    }

    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .contact-icon-wrapper i {
        font-size: 2.5rem;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-description {
        font-size: 1.1rem;
    }
    
    .contact-description br {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-company {
        text-align: center;
    }

    .contact-phone-box {
        padding: 30px 30px;
    }

    .contact-phone {
        flex-direction: column;
        gap: 15px;
    }

    .contact-phone i {
        font-size: 2rem;
    }

    .contact-phone a {
        font-size: 2.8rem;
    }

    .contact-info-box {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .breadcrumb-list {
        font-size: 0.75rem;
        gap: 3px;
    }
    
    .breadcrumb-item span {
        display: none;
    }
    
    .breadcrumb-item:first-child span {
        display: inline;
    }
    
    .breadcrumb-item.active span {
        display: inline;
    }

    .hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-title br,
    .hero-subtitle br,
    .hero-description br {
        display: none;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: 1.7rem;
    }
    
    .section-title br,
    .section-description br {
        display: none;
    }
    
    .feature-content h3 br,
    .trial-text h2 br,
    .trial-text p br,
    .contact-description br {
        display: none;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content h3 br {
        display: none;
    }

    .assurance-item {
        flex-direction: column;
        text-align: center;
    }

    .assurance-icon {
        margin: 0 auto;
    }

    .facility-cards {
        grid-template-columns: 1fr;
    }
    
    .facility-badge {
        top: 15px;
        right: 15px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

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

    .contact-wrapper {
        gap: 30px;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-icon-wrapper i {
        font-size: 2rem;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-phone-box {
        padding: 25px 20px;
    }

    .contact-phone a {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .contact-hours {
        font-size: 1rem;
    }
    
    .footer-info p br {
        display: none;
    }
}
