* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 124px;
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100%;
    height: 752px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -454px;
    left: 0;
    width: 100%;
    height: 1206px;
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 124px;
}

.hero-overlay {
    position: absolute;
    top: 206px;
    left: 124px;
    width: 787px;
    height: 71px;
    background: #FFFFFF;
    opacity: 0.8;
}

.hero-title {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.21;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #4EC0DA;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.8);
    width: 800px;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.cta-button {
    background: #EA5502;
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.21;
    padding: 20px 60px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* ヒーローセクションのボタンは左寄せ */
.hero .cta-button {
    margin: 0;
}

/* Aboutセクション */
.about {
    background: #F7F7F7;
    padding: 80px 0;
}

.section-label {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.21;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.about .section-label {
    color: #FFFFFF;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); */
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 40px;
}

.section-title.white {
    color: #FFFFFF;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* リスクセクション */
.risks {
    background: #4EC0DA;
    padding: 80px 0;
}

.risks-image {
    margin-bottom: 60px;
    text-align: center;
}

.risks-image img {
    width: 100%;
    max-width: 899px;
    height: auto;
    border-radius: 10px;
}

.risk-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 53px;
    margin-bottom: 60px;
}

.risk-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
}

.risk-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.risk-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
}



.risks-conclusion {
    margin-top: 60px;
}

.risks-conclusion-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    max-width: 840px;
    margin: 0 auto;
}

.risks-conclusion-image img {
    width: 151px;
    height: 151px;
    border-radius: 10px;
}

.risks-conclusion-text {
    flex: 1;
    position: relative;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
}

.highlight-inline {
    background: linear-gradient(transparent 0%, #FAF86A 0%);
}

.br-sp {
    display: none;
}

/* CTAセクション */
.cta-section {
    background: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    color: #000000;
    margin-bottom: 30px;
}

.cta-description {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1056px;
    margin-left: auto;
    margin-right: auto;
}

/* よくある負動産の手放し方セクション */
.common-methods {
    background: #F7F7F7;
    padding: 80px 0;
}

.method-solution-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.methods-content {
    margin-bottom: 60px;
}

.method-item {
    margin-bottom: 60px;
}

.method-question {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 30px;
}

.method-questions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.method-question-item h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.method-question-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
}

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

.solution-label {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 40px;
}

.solution-image {
    margin-bottom: 40px;
}

.solution-image img {
    width: 100%;
    max-width: 1048px;
    height: auto;
    border-radius: 10px;
}

.solution-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
    max-width: 1153px;
    margin: 40px auto;
    text-align: left;
}

/* メリットセクション */
.benefits {
    background: #4EC0DA;
    padding: 80px 0;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.benefit-icon {
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.benefit-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
}

/* Stepセクション */
.steps {
    background: #EAF7F9;
    padding: 80px 0;
}

.steps .section-label {
    color: #FFFFFF;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); */
}

.steps-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    border: 2px solid #4EC0DA;
    border-radius: 10px;
    padding: 40px;
    background: #FFFFFF;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item-inner {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    color: #000000;
    min-width: 40px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 15px;
}

.step-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 20px;
}

.step-icon {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.step-icon img {
    width: 50%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ご利用者の声セクション */
.testimonials {
    background: #4EC0DA;
    padding: 80px 0;
}

.testimonials .section-title {
    color: #FFFFFF;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 57px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.testimonial-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.testimonial-badge {
    background: #A57840;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    padding: 8px 16px;
    border-radius: 4px;
}

.testimonial-badge:nth-child(1),
.testimonial-badge:nth-child(3) {
    background: #4EC0DA;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.11;
    color: #000000;
}

/* Q&Aセクション */
.faq {
    background: #EAF7F9;
    padding: 80px 0;
}

.faq .section-label {
    color: #FFFFFF;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); */
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding: 20px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-q {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.67;
    color: #4EC0DA;
    min-width: 30px;
}

.faq-question {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    color: #000000;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.67;
    color: #000000;
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    align-items: flex-start;
    gap: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-a {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.67;
    color: #EA5502;
    min-width: 30px;
}

.faq-answer-text {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

/* フッターCTA */
.footer-cta {
    background: #EA5502;
    padding: 40px 0;
}

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

.footer-cta-label {
    background: #FFFFFF;
    color: #FF0004;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    padding: 8px 16px;
    border-radius: 4px;
}

.footer-cta-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.21;
    color: #FFFFFF;
}

/* フォームセクション */
.form-section {
    background: #FFFFFF;
    padding: 80px 0;
}

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

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.form-required {
    background: #FF0004;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.21;
    padding: 2px 6px;
    border-radius: 2px;
}

.form-label-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
}

.form-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    color: #000000;
}

.form-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.21;
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-col {
    flex: 1;
}

.form-col-postal {
    max-width: 120px;
}

.form-col-address {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    /* color: #999999; */
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #4EC0DA;
}

.form-input::placeholder {
    color: #999999;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: #4EC0DA;
}

.form-select option {
    color: #000000;
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #999999;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.form-textarea:focus {
    outline: none;
    border-color: #4EC0DA;
}

.form-textarea::placeholder {
    color: #999999;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4EC0DA;
}

.form-checkbox-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #000000;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.form-submit-button {
    background: #EA5502;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    padding: 20px 60px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit-policy {
    font-size: 16px;
    display: inline-block;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.form-submit-button:active {
    transform: translateY(0);
}

.site-footer {
    background: #4EC0DA;
    padding: 40px 0;
    color: #FFFFFF;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 16px;
}

.footer-link {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

/* レスポンシブデザイン */
@media (max-width: 1440px) {
    .container {
        padding: 0 80px;
    }

    .hero-content {
        padding: 0 80px;
    }

    .hero-title {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 32px;
        width: 640px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 28px;
        width: 480px;
    }

    .risk-cards {
        grid-template-columns: 1fr;
    }

    .method-questions {
        grid-template-columns: 1fr;
    }

    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .steps-content {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
        width: 320px;
    }

    .cta-button {
        font-size: 24px;
        padding: 15px 40px;
        margin: 0 auto;
    }

    .hero .cta-button {
        margin: 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-label {
        font-size: 60px;
    }

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

    .br-sp {
        display: block;
    }

    /* フッターメニュー */
    .footer-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* スマホ版（393px以下）の詳細な調整 */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
        max-width: 100%;
    }

    /* ヒーローセクション */
    .hero {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-background {
        top: 0;
        height: 100%;
    }

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

    .hero-overlay {
        display: none;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
        width: 365px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
        width: 365px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 30px;
        width: 100%;
        max-width: 365px;
        margin: 0 auto;
    }

    .hero .cta-button {
        margin: 0;
    }

    /* Aboutセクション */
    .about {
        padding: 40px 0;
    }

    .section-label {
        font-size: 70px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .about-image {
        margin-top: 20px;
    }

    /* リスクセクション */
    .risks {
        padding: 40px 0;
    }

    .risks-image {
        margin-bottom: 30px;
    }

    .risk-cards {
        gap: 20px;
        margin-bottom: 30px;
    }

    .risk-card {
        padding: 20px;
    }

    .risk-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .risk-text {
        font-size: 12px;
    }

    .risks-conclusion {
        margin-top: 30px;
    }

    .risks-conclusion-content {
        padding: 18px;
        gap: 12px;
    }

    .risks-conclusion-image img {
        width: 100px;
        height: 100px;
    }

    .highlight-text {
        font-size: 15px;
    }

    .highlight-bg {
        width: 100%;
        max-width: 280px;
    }

    /* CTAセクション */
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 12px;
        margin-bottom: 30px;
    }

    /* よくある負動産の手放し方セクション */
    .common-methods {
        padding: 40px 0;
    }

    .methods-content {
        margin-bottom: 40px;
    }

    .method-item {
        margin-bottom: 40px;
    }

    .method-question {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .method-questions {
        gap: 20px;
    }

    .method-question-item h5 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .method-question-item p {
        font-size: 12px;
    }

    .solution-label {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .solution-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .solution-text {
        font-size: 12px;
    }

    /* メリットセクション */
    .benefits {
        padding: 40px 0;
    }

    .benefit-cards {
        gap: 20px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .benefit-text {
        font-size: 12px;
    }

    /* Stepセクション */
    .steps {
        padding: 40px 0;
    }

    .steps-content {
        padding: 20px;
        gap: 30px;
    }

    .step-item {
        flex-direction: column;
        gap: 20px;
    }

    .step-item-inner {
        flex-direction: column;
        gap: 10px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step-text {
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* ご利用者の声セクション */
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-cards {
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-badge {
        font-size: 12px;
        padding: 6px 12px;
    }


    .testimonial-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    /* Q&Aセクション */
    .faq {
        padding: 40px 0;
    }

    .faq-items {
        gap: 15px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-q {
        font-size: 18px;
        min-width: 20px;
    }

    .faq-question {
        font-size: 12px;
    }

    .faq-toggle {
        font-size: 12px;
    }

    .faq-answer {
        margin-top: 15px;
        padding-top: 15px;
        gap: 10px;
    }

    .faq-a {
        font-size: 18px;
        min-width: 20px;
    }

    .faq-answer-text {
        font-size: 12px;
        line-height: 1.5;
    }

    /* フッターCTA */
    .footer-cta {
        padding: 30px 0;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-cta-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .footer-cta-title {
        font-size: 15px;
    }

    /* フォームセクション */
    .form-section {
        padding: 40px 0;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-col-postal {
        max-width: 100%;
    }

    .form-input {
        font-size: 16px;
        padding: 10px 12px;
    }

    .form-checkbox-text {
        font-size: 14px;
    }

    .form-submit {
        margin-top: 30px;
    }

    .form-submit-button {
        font-size: 18px;
        padding: 15px 40px;
        width: 100%;
        max-width: 365px;
    }
    .form-submit-policy {
        font-size: 12px;
    }

    /* フッターメニュー */
    .footer-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

