/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 0.95rem;
}

/* ヘッダー */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    margin: 0;
    padding: 0;
}

.logo h1 a {
    display: block;
    text-decoration: none;
}

.logo-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .logo-image {
        max-width: 130px;
    }
}

/* バーガーメニュー */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

.nav-links.active {
    right: 0;
}

.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-links li {
    margin: 0.75rem 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    width: 100%;
}

.nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.nav-links a:hover {
    color: #22538f;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* メニューが開いているときのスクロール防止 */
body.menu-open {
    overflow: hidden;
}

/* メニュー項目のアニメーション遅延 */
.nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-links li:nth-child(2) { transition-delay: 0.2s; }
.nav-links li:nth-child(3) { transition-delay: 0.3s; }
.nav-links li:nth-child(4) { transition-delay: 0.4s; }
.nav-links li:nth-child(5) { transition-delay: 0.5s; }
.nav-links li:nth-child(6) { transition-delay: 0.6s; }
.nav-links li:nth-child(7) { transition-delay: 0.7s; }
.nav-links li:nth-child(8) { transition-delay: 0.8s; }
.nav-links li:nth-child(9) { transition-delay: 0.9s; }

/* ヒーローセクション */
.hero {
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.hero h2 {
    text-align: center;
    margin-bottom: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #22538f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a3f6b;
}

/* セクション共通 */
section {
    padding: 5rem 1rem;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* サービスセクション */
.services {
    padding: 5rem 1rem;
}

.services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #22538f;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.trial-details {
    margin: 2rem 0;
}

.trial-details li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.trial-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-card .trial-details {
    margin: 1rem 0;
}

.service-card .trial-details li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-card .trial-details li::before {
    color: var(--primary-color);
}

.service-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #22538f;
    text-align: center;
    font-weight: bold;
}

.service-section ul {
    list-style: none;
    padding-left: 1.5rem;
    max-width: 1000px;
    margin: 0;
    text-align: left;
}

.service-section ul li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-section ul li::before {
    content: "•";
    color: #22538f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

.service-section ul ul li::before {
    content: "◦";
}

.contact-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-note p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-details {
        padding: 100px 1rem 3rem;
    }

    .service-details h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-section {
        padding: 1.5rem;
    }

    .service-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .service-section ul {
        padding-left: 1.2rem;
        margin: 0;
        text-align: left;
    }

    .service-section ul li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .service-section ul ul {
        padding-left: 1.2rem;
        margin: 0;
        text-align: left;
    }

    .service-section ul ul li {
        padding-left: 1.2rem;
        text-align: left;
    }
}

/* コースセクション */
.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 1.5rem;
    color: #22538f;
    margin: 0.5rem 0;
    font-weight: bold;
}

.course-duration {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.course-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.course-card li {
    margin: 0.8rem 0;
    color: #666;
    line-height: 1.4;
}

.course-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #22538f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.course-button i {
    margin-right: 8px;
}

.course-button:hover {
    background-color: #1a3f6b;
}

/* 予約リンクコンテナ */
.booking-link-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.booking-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #22538f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.booking-button i {
    margin-right: 8px;
}

.booking-button:hover {
    background-color: #1a3f6b;
}

@media (max-width: 768px) {
    .booking-link-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .booking-text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .booking-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* スケジュールセクション */
.schedule {
    background-color: #f8f9fa;
    padding: 5rem 1rem;
}

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

.schedule-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.coubic-embed {
    width: 100%;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: #fff;
    padding: 1rem;
}

.coubic-embed iframe {
    width: 100%;
    border: none;
    border-radius: 5px;
}

.schedule-link {
    text-align: center;
    margin-top: 2rem;
}

.schedule-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #22538f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.schedule-button i {
    margin-right: 8px;
}

.schedule-button:hover {
    background-color: #1a3f6b;
}

@media (max-width: 768px) {
    .schedule {
        padding: 3rem 1rem;
    }

    .coubic-embed {
        padding: 0.5rem;
    }

    .coubic-embed iframe {
        min-height: 600px;
    }

    .schedule-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* お問い合わせフォーム */
.contact {
    background-color: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #22538f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a3f6b;
}

/* フッター */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 1rem 1rem;
}

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

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #22538f;
}

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

/* 講師紹介セクション */
.instructor {
    background-color: #f8f9fa;
}

.instructor-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.instructor-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.instructor-info {
    padding: 1rem;
}

.instructor-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.instructor-title {
    font-size: 1.2rem;
    color: #22538f;
    margin-bottom: 2rem;
}

.instructor-details h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.instructor-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.instructor-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.instructor-details li::before {
    content: "•";
    color: #22538f;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.instructor-details p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo h1 a {
        color: #2c3e50;
    }

    .logo h1 a:hover {
        color: #22538f;
    }

    .nav-links {
        width: 250px;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: #2c3e50;
    }

    .nav-links a:hover {
        color: #22538f;
    }

    .menu-toggle span {
        background-color: #2c3e50;
    }

    .hero {
        /*margin-top: 70px;*/
        text-align: center;
    }

    .hero h2 {
        text-align: center;
        margin-bottom: 0.5rem;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .instructor-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instructor-image {
        max-width: 300px;
        height: auto;
    }

    .instructor-info {
        text-align: center;
    }

    .instructor-details li {
        text-align: left;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.2rem 0;
    }
}

/* 事業概要セクション */
.about {
    background-color: #313131;
    text-align: center;
    padding: 3rem 1rem;
}

.about h2 {
    color: #b0b5ba;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.mission h3 {
    color: #22538f;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    font-weight: 500;
    margin: 0 auto;
    max-width: 700px;
}

/* 事業コンテンツセクション */
.business {
    background-color: #f8f9fa;
    padding: 5rem 1rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.business-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
}

.business-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-item li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.business-item li::before {
    content: "•";
    color: #22538f;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-item {
        padding: 1.5rem;
    }

    .business-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .business-item li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }

    .about h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .mission {
        padding: 1.5rem;
    }

    .mission h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .mission p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/* 料金表のスタイル */
.price-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.price-item {
    background: none;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    transition: transform 0.3s ease;
}

.price-item h4 {
    color: #22538f;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #22538f;
}

.price-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-item li {
    margin: 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

.price-item li:last-child {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 900px) {
    .price-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .price-list {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-item {
        min-height: auto;
        padding: 1.5rem;
    }

    .price-item h4 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .price-item li {
        font-size: 1.1rem;
        margin: 0.6rem 0;
    }
}

/* メッセージセクション */
.message {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../images/cover-back.jpg');

    /*background: url('https://www.shutterstock.com/shutterstock/photos/2609081155/display_1500/stock-photo-mt-fuji-floating-beyond-the-blue-ridges-2609081155.jpg');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem;
    text-align: center;
    position: relative;
    scroll-margin-top: 100px;
}

.message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.message h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.message-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.message-main {
    font-size: 2.2rem;
    color: #22538f;
    font-weight: bold;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #111111;
    margin-bottom: 1.5rem;
}

.message-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.message-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.message-item:hover {
    transform: translateY(-5px);
}

.message-item h3 {
    color: #22538f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #22538f;
}

.message-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
    text-shadow: none;
}

@media (max-width: 768px) {
    .message {
        padding: 5rem 1rem;
    }

    .message h2 {
        font-size: 2.2rem;
    }

    .message-main {
        font-size: 1.8rem;
    }

    .message p {
        font-size: 1.2rem;
    }

    .message-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .message-item {
        padding: 1.8rem;
    }

    .message-item h3 {
        font-size: 1.3rem;
    }

    .message-item p {
        font-size: 1.1rem;
    }
}

/* プライバシーポリシーページ */
.privacy-policy {
    max-width: 1000px;
    margin: 100px auto 3rem;
    padding: 0 1rem;
}

.privacy-policy h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #22538f;
}

.policy-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #22538f;
}

.policy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.policy-section li::before {
    content: "•";
    color: #22538f;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.policy-section a {
    color: #22538f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #1a3f6b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .privacy-policy h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .policy-section p {
        font-size: 0.95rem;
    }

    .policy-section li {
        font-size: 0.95rem;
    }
}

/* 受講者の声ページのスタイル */
.voice-section {
    max-width: 1000px;
    margin: 100px auto 3rem;
    padding: 0 1rem;
}

.voice-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.voice-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
}

.voice-content {
    margin-bottom: 20px;
}

.voice-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.voice-content p:last-child {
    margin-bottom: 0;
}

.voice-profile {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: right;
}

.voice-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.voice-age,
.voice-background {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-section {
        padding: 30px 15px;
    }

    .voice-section h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .voice-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .voice-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .voice-name {
        font-size: 1.1rem;
    }

    .voice-age,
    .voice-background {
        font-size: 0.9rem;
    }
} 