/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.logo-img {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF8C42;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FF8C42;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8C42;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.cta-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.7), rgba(144, 198, 149, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    padding-top: 15vh;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    line-height: 1.4;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF8C42, #6BBF59);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* About Section - 新しいデザイン */
.about {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 179, 102, 0.05) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 179, 102, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-intro h3 {
    color: #FF8C42;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF8C42;
    position: relative;
    text-align: right;
}

.about-author::before {
    content: '—';
    margin-right: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(144, 198, 149, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Reasons Section */
.reasons {
    background: white;
    position: relative;
}

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

.reason-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 300px;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

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

.reason-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Work Section - 新しいデザイン */
.work {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 179, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 198, 149, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.work-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.work-item-header {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.work-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.work-item h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
}

.work-item-content {
    padding: 0 2rem 2.5rem;
}

.work-image-small {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #FFB366;
}

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

.work-list {
    list-style: none;
    padding: 0;
}

.work-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    color: #555;
    transition: color 0.3s ease;
}

.work-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #6BBF59;
    font-size: 1.2rem;
}

.work-list li:hover {
    color: #FF8C42;
}

.work-list li:last-child {
    border-bottom: none;
}

/* Schedule Section - 新しいレイアウト */
.schedule {
    background: white;
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 179, 102, 0.03), rgba(144, 198, 149, 0.03));
    pointer-events: none;
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FFB366, #90C695);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-time {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-left: 1.5rem;
    position: relative;
    flex: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.timeline-content h4 {
    color: #FF8C42;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.schedule-content {
    text-align: center;
    position: relative;
}

.schedule-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: rgba(255, 140, 66, 0.1);
    z-index: 1;
    white-space: nowrap;
}

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

.schedule-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 8px solid #FFB366;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.schedule-description {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

/* Voice Section - 新しいデザイン */
.voice {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
}

.voice-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.voice-bubble {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.voice-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 3rem;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

.voice-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.voice-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.voice-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: #FFB366;
    font-family: serif;
}

.voice-quote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 3rem;
    color: #FFB366;
    font-family: serif;
}

.voice-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.voice-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFB366;
    flex-shrink: 0;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-info {
    flex: 1;
}

.voice-name {
    font-weight: 600;
    color: #FF8C42;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.voice-role {
    color: #666;
    font-size: 0.9rem;
}

/* Staff Section - 新しいデザイン（利用の流れ・FAQ・活動報告） */
.staff {
    background: white;
    position: relative;
}

.staff-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-button {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button.active {
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    border-color: #FF8C42;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 利用の流れ */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #FF8C42, #6BBF59);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.flow-step h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.flow-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FFB366, #90C695);
    color: white;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #FF8C42;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 活動報告 */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #FF8C42, #6BBF59);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-date {
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.activity-content {
    padding: 2rem;
}

.activity-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Access Section */
.access {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB366, #90C695);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-text h4 {
    color: #FF8C42;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.closed {
    color: #999 !important;
    font-size: 0.9rem;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Section - 3列レイアウト */
.contact {
    background: white;
    position: relative;
}

.contact-content {
    display: grid;
    gap: 4rem;
}

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

.contact-method {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF8C42, #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-method h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF8C42;
    margin-bottom: 0.5rem;
}

.phone-hours {
    color: #666;
    font-size: 0.9rem;
}

.line-qr {
    margin-top: 1rem;
}

.line-qr img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.contact-form {
    width: 80%;
    max-width: none;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2.25rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    text-align: center;
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    color: #333;
    font-weight: 600;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB366;
    box-shadow: 0 0 0 3px rgba(255, 179, 102, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 1.2rem;
    padding: 0.9rem;
    text-align: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #444);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 20px;
    border: 3px solid rgba(255, 179, 102, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-logo span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFB366;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-contact {
    text-align: left;
    margin-left: auto;
    width: 100%;
}

.footer-contact h4 {
    color: #FFB366;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
    text-align: left;
}

.footer-contact i {
    color: #FFB366;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features,
    .work-grid,
    .voice-container {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .schedule-container,
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    
    .footer-logo img {
        width: 120px;
        height: 120px;
        padding: 12px;
        border-radius: 15px;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
        text-align: center;
        white-space: nowrap;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .schedule-bg-text {
        font-size: 2rem;
    }
    
    .staff-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .flow-steps,
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    
    .work-image-small {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        border: 2px solid #FFB366;
    }
    
    .schedule-image {
        width: 200px;
        height: 200px;
        border: 4px solid #FFB366;
    }
    
    .voice-avatar {
        width: 60px;
        height: 60px;
        border: 2px solid #FFB366;
    }
}

@media (max-width: 480px) {
    .title-main {
        /* font-size: clamp(1.5rem, 6vw, 2rem); */
        font-size: 1.0rem;
        white-space: nowrap;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .schedule-timeline::before {
        left: 20px;
    }
    
    .timeline-time {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    
    .footer-logo img {
        width: 120px;
        height: 120px;
        padding: 12px;
        border-radius: 15px;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
        text-align: center;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .title-main {
        /* font-size: clamp(1.2rem, 7vw, 1.8rem); */
        font-size: 1.0rem;
        white-space: nowrap;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFB366, #90C695);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF8C42, #6BBF59);
}

/* 活動報告カセット型レイアウト */
.report-cassette-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.report-cassette {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  transition: box-shadow 0.2s;
}
.report-cassette:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.report-cassette-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #f7f7f7;
}
.report-cassette-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.report-cassette-content {
  text-align: center;
}
.report-cassette-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.report-cassette-content p {
  font-size: 0.98rem;
  color: #555;
}
@media (max-width: 600px) {
  .report-cassette {
    width: 98vw;
    padding: 0.7rem 0.5rem 1rem 0.5rem;
  }
  .report-cassette-image {
    height: 120px;
  }
}