.pot-page {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background-color: #ffffff;
}

.pot-page .section {
    padding: 80px 0;
}

.pot-page .hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e5d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pot-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.pot-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 43, 74, 0.7), rgba(26, 43, 74, 0.9));
}

.pot-page .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.pot-page .hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pot-page .hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

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

.pot-page .btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.pot-page .btn-primary {
    background-color: #D4AF37;
    color: #1a2b4a;
    border-color: #D4AF37;
}

.pot-page .btn-primary:hover {
    background-color: #f0d576;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pot-page .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.pot-page .btn-secondary:hover {
    background-color: #ffffff;
    color: #1a2b4a;
    transform: translateY(-2px);
}

.pot-page .btn-submit {
    width: 100%;
    margin-top: 10px;
}

.pot-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pot-page .section-title {
    font-size: 14px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.pot-page .section-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.pot-page .service-overview {
    background-color: #ffffff;
}

.pot-page .service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pot-page .service-main {
    margin-bottom: 50px;
}

.pot-page .service-description {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    color: #2c3e50;
}

.pot-page .highlight {
    color: #D4AF37;
    font-weight: 700;
}

.pot-page .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pot-page .service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pot-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pot-page .service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #f0d576);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: #ffffff;
}

.pot-page .service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pot-page .service-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.pot-page .background-section {
    background-color: #f8f9fa;
}

.pot-page .background-intro {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #D4AF37;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.9;
}

.pot-page .challenges {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pot-page .challenge-item {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.pot-page .challenge-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 24px;
}

.pot-page .challenge-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pot-page .challenge-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.pot-page .background-note {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
    background-color: #1a2b4a;
    color: #ffffff;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

.pot-page .features-section {
    background-color: #ffffff;
}

.pot-page .features-content {
    max-width: 900px;
    margin: 0 auto;
}

.pot-page .feature-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.pot-page .feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pot-page .feature-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37, #f0d576);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.pot-page .feature-details h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pot-page .feature-details p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pot-page .feature-note {
    font-size: 14px;
    color: #D4AF37;
    font-style: italic;
}

.pot-page .program-section {
    background-color: #f8f9fa;
}

.pot-page .program-overview {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: #6c757d;
}

.pot-page .program-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.pot-page .timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.pot-page .timeline-item::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -50px;
    width: 2px;
    background-color: #D4AF37;
}

.pot-page .timeline-item:last-child::after {
    display: none;
}

.pot-page .timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.pot-page .timeline-content {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.pot-page .timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2b4a;
}

.pot-page .timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.pot-page .timeline-content ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #6c757d;
}

.pot-page .timeline-content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 12px;
}

.pot-page .curriculum-section {
    background-color: #ffffff;
}

.pot-page .curriculum-plan {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pot-page .plan-header {
    background: linear-gradient(135deg, #D4AF37, #f0d576);
    padding: 25px 40px;
}

.pot-page .plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0;
}

.pot-page .plan-details {
    padding: 40px;
}

.pot-page .plan-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pot-page .plan-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pot-page .plan-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pot-page .plan-info-value {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.pot-page .curriculum-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pot-page .curriculum-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.pot-page .curriculum-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.pot-page .curriculum-intro p {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.pot-page .curriculum-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pot-page .role-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.pot-page .role-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.pot-page .role-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #D4AF37;
}

.pot-page .role-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.pot-page .role-description {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 15px;
}

.pot-page .role-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pot-page .role-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    border-left: 3px solid #D4AF37;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.pot-page .curriculum-activities {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e5d 100%);
    padding: 40px;
    border-radius: 15px;
    color: #ffffff;
}

.pot-page .activities-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.pot-page .activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pot-page .activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pot-page .activity-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.pot-page .activity-item span {
    font-size: 15px;
    line-height: 1.6;
}

.pot-page .case-section {
    background-color: #ffffff;
}

.pot-page .benefits-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pot-page .benefit-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.pot-page .benefit-card:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pot-page .benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #1a2b4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #D4AF37;
}

.pot-page .benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pot-page .benefit-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.pot-page .contact-section {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e5d 100%);
    color: #ffffff;
}

.pot-page .contact-section .section-title {
    color: #D4AF37;
}

.pot-page .contact-section .section-subtitle {
    color: #ffffff;
}

.pot-page .contact-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.pot-page .contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pot-page .contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.pot-page .contact-details {
    margin-top: 30px;
}

.pot-page .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.pot-page .contact-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pot-page .contact-form .form-group {
    margin-bottom: 25px;
}

.pot-page .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.pot-page .required {
    color: #e74c3c;
}

.pot-page .contact-form input,
.pot-page .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.pot-page .contact-form input:focus,
.pot-page .contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.pot-page .contact-form textarea {
    resize: vertical;
}

@media (max-width: 968px) {
    .pot-page .hero-title {
        font-size: 36px;
    }

    .pot-page .hero-subtitle {
        font-size: 18px;
    }

    .pot-page .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pot-page .challenges {
        grid-template-columns: 1fr;
    }

    .pot-page .plan-info-grid {
        grid-template-columns: 1fr;
    }

    .pot-page .curriculum-roles {
        grid-template-columns: 1fr;
    }

    .pot-page .activities-grid {
        grid-template-columns: 1fr;
    }

    .pot-page .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pot-page .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .pot-page .section {
        padding: 50px 0;
    }

    .pot-page .hero {
        height: 450px;
    }

    .pot-page .hero-title {
        font-size: 28px;
    }

    .pot-page .hero-subtitle {
        font-size: 16px;
    }

    .pot-page .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pot-page .section-subtitle {
        font-size: 26px;
    }

    .pot-page .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pot-page .timeline-item {
        flex-direction: column;
    }

    .pot-page .timeline-item::after {
        display: none;
    }

    .pot-page .plan-details {
        padding: 30px 20px;
    }

    .pot-page .curriculum-activities {
        padding: 30px 20px;
    }

    .pot-page .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pot-page .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .pot-page .hero-title {
        font-size: 24px;
    }

    .pot-page .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .pot-page .service-description {
        font-size: 16px;
    }
}
.pot-page .role-header {
    justify-content: flex-start;
}

.pot-page .role-header h4 {
    margin-left: 0;
    text-align: left;
}

.pot-page .activity-item {
    justify-content: flex-start;
}

.pot-page .activity-item span {
    margin-left: 0;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.pot-page .curriculum-section .curriculum-roles .role-card .role-header {
    justify-content: flex-start !important;
}

.pot-page .curriculum-section .curriculum-roles .role-card .role-header h4 {
    margin-left: 0 !important;
    text-align: left !important;
}
.pot-page #curriculum .role-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    text-align: left !important;
}

.pot-page #curriculum .role-header > img {
    flex: 0 0 auto !important;
    float: none !important;
    margin: 0 !important;
}

.pot-page #curriculum .role-header > h4 {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    float: none !important;
    margin: 0 !important;
    width: auto !important;
    max-width: 100% !important;

    text-align: left !important;
    white-space: normal !important;
}
