/* 共通スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    /* background-color: #FFBE00; */
    background-color: #f9fafb;
    margin: 0;;
}

.main-content{
    background-color: #f9fafb;
}

/* テキスト内リンクのスタイル */
a.txtlink {
    color: #FF6D00;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

a.txtlink:hover {
    color: #e55e00;
    text-decoration: underline;
}

/* TailwindCSSの代替クラス */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-white {
    background-color: #ffffff;
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-700 {
    color: #4b5563;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-decoration-none {
    text-decoration: none;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

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

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* .container {
    width: 100%;
    max-width: 1200px;
} */

.space-y-4 > * + * {
    margin-top: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:text-gray-800:hover {
    color: #1f2937;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.active\:underline:active {
    text-decoration: underline;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

/* ヘッダーのスタイル */
.header {
    background-color: #FFBE00;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

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

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

.header-logo img {
    height: 32px;
    width: auto;
}

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

.header-nav a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #000000;
}

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

.header-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.header-button-primary {
    background-color: #1A1A1A;
    color: white;
}

.header-button-primary:hover {
    background-color: #000000;
}

.header-button-secondary {
    background-color: white;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
}

.header-button-secondary:hover {
    background-color: #F5F5F5;
}

/* フッターのスタイル */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social a {
    color: #6b7280;
    font-size: 1.5rem;
    transition: color 0.2s;
}

/* メインコンテンツのスタイル */
.main-content {
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .header-content, .footer-content {
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

    .flowchart-container, .guide-steps {
        padding: 1rem 0;
    }

    .flowchart-step, .guide-step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin-bottom: 1rem;
    }

    .faq-categories-desktop {
        display: none;
    }

    .faq-categories-mobile {
        display: block;
    }
}

@media (max-width: 640px) {

    .main-content {
        padding: 0 1rem;
    }

    /* .step-card, .faq-item {
        padding: 1rem;
    } */
} 