/* Reset CSS */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #faf0e6;
    /* 薄いブラウン */
    font-family: sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Header */
.header {
    padding: 15px 20px;
    /* 上下15px, 左右20px */
    background-color: transparent;
    position: fixed;
    /* ヘッダーを上部に固定 */
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    /* paddingを含めた幅計算 */
    z-index: 100;
    /* 他の要素より手前に表示 */
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    margin-left: -15px;
    /* ロゴの位置を左に微調整 */
}

.header__logo a {
    display: block;
    /* 画像の周りの余白をなくす */
}

.header__logo img {
    width: 100px;
}

.header__hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.header__hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 9px;
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

/* Dark Header (for light backgrounds) */
.header--dark .header__hamburger span {
    background-color: #1c1c1c !important;
}

/* Wide Screen: Hamburger outside LP content -> Black */
@media (min-width: 1320px) {
    .header__hamburger span {
        background-color: #1c1c1c !important;
    }
}

/* Menu Open (always white) */
.header__hamburger.is-active span {
    background-color: #fff !important;
}

/* Main Visual */
.mv {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    /* ビューポートの高さに合わせる */
    overflow: hidden;
    /* はみ出した要素を隠す */
}

.mv__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mv__video--pc {
    display: none;
}

.mv__video--sp {
    display: block;
}

@media (min-width: 768px) {
    .mv__video--pc {
        display: block;
    }

    .mv__video--sp {
        display: none;
    }
}

.mv__mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background-color: transparent;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s;
}

.mv__mute-btn:hover {
    opacity: 0.7;
}

.mv__copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /* スライダーとヘッダーの間 */
    pointer-events: none;
    /* 画像がクリックイベントを妨げないように */
}

.mv__copy img {
    width: 100%;
    height: auto;
}

/* Concept */
.concept,
.concept2 {
    position: relative;
}

.concept img,
.concept2 img,
.strength img,
.tiktok img,
.access img {
    width: 100%;
    display: block;
    /* 画像下の余白防止 */
}

.access__item {
    position: relative;
    margin-top: -5px;
}

.access__map-wrapper {
    position: absolute;
    top: 35%;
    /* さらに上に移動 */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* 少し小さく */
    max-width: 380px;
    height: 420px;
    /* 少し小さく */
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /* 重なり順を指定 */
}

.access__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* マップより手前 */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.access__item.is-visible .access__text {
    opacity: 1;
    transform: translateY(0);
}

.access__map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.concept__img-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.anim-fade-item.is-visible .concept__img-front {
    opacity: 1;
}

/* Strength Section */
.strength__item {
    position: relative;
}

.strength__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1c1c1c;
    font-size: 24px;
    /* 仮のサイズ */
    font-weight: bold;
    white-space: nowrap;
    /* 改行を防ぐ */
    line-height: 1.5;
}

.strength__copy-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* はみ出した文字を隠す */
    vertical-align: bottom;
    /* baselineを揃える */
}

/* 下線のスタイル */
.strength__copy-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1c1c1c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

/* 「だけじゃない」の初期状態 */
.strength__copy-anim {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.5s ease-in-out;
}

/* アニメーション発火 */
.strength__item.is-visible .strength__copy-wrapper::after {
    transform: scaleX(1);
}

.strength__item.is-visible .strength__copy-anim {
    transform: translateY(0);
    transition-delay: 0.4s;
    /* 下線が伸びてから文字が出る */
}

/* 2番目の strength__item の前面画像を重ねる */
.strength__item:nth-child(2) .strength__img-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    /* 少し下にずらす */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    /* transitionにtransformを追加 */
}

/* アニメーション発火 */
.strength__item:nth-child(2).is-visible .strength__img-front {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に戻す */
}

/* 3番目の strength__item の前面画像を重ねる */
.strength__item:nth-child(3) .strength__img-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* アニメーション発火 */
.strength__item:nth-child(3).is-visible .strength__img-front {
    opacity: 1;
    transform: translateY(0);
}

/* 4番目の strength__item の前面画像を重ねる */
.strength__item:nth-child(4) .strength__img-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* アニメーション発火 */
.strength__item:nth-child(4).is-visible .strength__img-front {
    opacity: 1;
    transform: translateY(0);
}

/* Plan Section */
.plan__reveal {
    position: relative;
    overflow: hidden;
}

.plan__reveal-image {
    width: 100%;
    height: auto;
    display: block;
}

.plan__reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2aa00;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.anim-reveal-item.is-visible .plan__reveal-overlay {
    transform: scaleX(0);
    transform-origin: right;
}

.plan__fade {
    position: relative;
}

.plan__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.plan__slider-list {
    width: 100%;
    height: 100%;
}

.plan__slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translateX(100%);
    /* 初期位置: 右外 */
    opacity: 0;
}

.plan__slider-item.is-active {
    transform: translateX(0);
    /* アクティブ: 中央 */
    opacity: 1;
}

.plan__slider-item.is-prev {
    transform: translateX(-100%);
    /* スライドアウト後: 左外 */
}

.plan__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out 0.2s;
    /* 少し遅れて表示 */
    z-index: 10;
    /* スライダーより手前 */
}

.plan__text.is-visible {
    opacity: 1;
}

.plan__slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 20;
    /* plan_text より手前 */
    pointer-events: none;
    /* コンテナはクリックさせない */
}

.plan__slider-btn {
    pointer-events: auto;
    /* ボタンはクリックさせる */
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.plan__slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 矢印の作成 */
.plan__slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-color: #1c1c1c;
    border-width: 2px 2px 0 0;
}

.plan__slider-btn--prev::before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.plan__slider-btn--next::before {
    transform: translate(-75%, -50%) rotate(45deg);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    /* MVより上、ヘッダーより下 */
    background-color: #fff;
    /* 後続コンテンツの背景色 */
}


/* FAQ Section */
.faq {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

.faq__title {
    color: #1c1c1c;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 60px;
}

.faq__title-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.faq__title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1c1c1c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.faq__title-anim {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.5s ease-in-out;
}

.anim-item.is-visible .faq__title-wrapper::after {
    transform: scaleX(1);
}

.anim-item.is-visible .faq__title-anim {
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* FAQ Section Background */
.faq {
    background-color: #faf0e6;
    padding: 60px 20px 120px;
}

/* Event Information */
.event-info {
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.event-info__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e2aa00;
}

.event-info__text {
    display: inline-block;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.event-date {
    margin-right: 1em;
    font-weight: bold;
}

.event-link {
    color: #1c1c1c;
    text-decoration: underline;
    transition: color 0.3s, opacity 0.3s;
}

.event-link:hover {
    color: #e2aa00;
    opacity: 0.8;
}

.faq__list {
    margin-top: 0;
    /* Reset margin since we have padding on .faq */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.faq__item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq__item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq__question,
.faq__answer {
    padding-left: 3em;
    position: relative;
}

.faq__question {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.faq__question:hover {
    color: #555;
}

.faq__answer {
    display: none;
    /* 初期状態は非表示 */
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.faq__item.is-open .faq__answer {
    display: block;
    /* 開いた時に表示 */
}

.faq__question::before,
.faq__answer::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 20px;
}

.faq__question::before {
    content: 'Q.';
    color: #e2aa00;
}

.faq__answer::before {
    content: 'A.';
    color: #555;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.footer__info {
    margin-bottom: 20px;
}

.footer__name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer__info p {
    margin: 5px 0;
}

.footer__links {
    margin-bottom: 20px;
}

.footer__link {
    text-decoration: underline;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #000;
}

.footer__copy {
    font-size: 12px;
    color: #888;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期状態では画面外 */
    width: 300px;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.95);
    transition: right 0.5s ease-in-out;
    z-index: 99;
    padding-top: 80px;
}

.nav.is-active {
    right: 0;
    /* アクティブになったら表示 */
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__item {
    margin-bottom: 30px;
}

.nav__item a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav__item a:hover {
    color: #e2aa00;
}

.nav__item--contact a {
    background-color: #e2aa00;
    color: #1c1c1c;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav__item--contact a:hover {
    background-color: #fff;
    color: #1c1c1c;
}

/* Hamburger active state */
.header__hamburger.is-active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* PC/SP Switching Default (Mobile) */
.tiktok__img-back--pc,
.tiktok__img-front--pc {
    display: none !important;
}

.tiktok__img-back--sp,
.tiktok__img-front--sp {
    display: block;
}

/* TikTok Slider Default (Mobile) */
.tiktok__item {
    position: relative;
}

.tiktok__img-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

.tiktok__slider-wrapper {
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 415px;
    /* 画像高さ(382) + ずらし分(33) */
    z-index: 1;
    overflow: hidden;
}

.tiktok__slider {
    display: flex;
    width: max-content;
    animation: tiktok-scroll 30s linear infinite;
}

.tiktok__slide-item {
    width: 215px;
    /* さらにサイズアップ */
    height: 382px;
    /* さらにサイズアップ */
    margin-right: 20px;
    /* 画像間の余白 */
    flex-shrink: 0;
}

.tiktok__slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 偶数番目のアイテムをずらす */
.tiktok__slide-item:nth-child(even) {
    transform: translateY(33px);
}

@keyframes tiktok-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-215px * 6 - 20px * 6));
        /* 6枚分 + 余白分 スライド */
    }
}

@media (min-width: 768px) {

    /* PC Background Pattern (Reversible) */
    body {
        background-image: radial-gradient(#e2aa00 1px, transparent 1px);
        background-size: 20px 20px;
        /* ドットの間隔 */
        background-attachment: scroll;
        /* スクロールに合わせて動く */
    }

    /* PC Layout */
    .main-content,
    .footer__inner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-content {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .header {
        display: flex;
        justify-content: center;
        padding: 15px 60px;
    }

    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer {
        padding: 60px 40px;
    }

    .mv__slider {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        max-width: 1200px;
    }

    .mv__copy {
        left: 50%;
        transform: translateX(-50%);
        max-width: 1200px;
        padding-bottom: 0;
        /* PC版ではリセット */
    }

    /* Reset background position and order for PC */
    .mv__slider-item:nth-child(1) {
        background-image: url('../img/mainvisual/top1.jpg');
        background-position: center center;
    }

    .mv__slider-item:nth-child(2) {
        background-image: url('../img/mainvisual/Top2.jpg');
        background-position: center center;
    }

    .mv__slider-item:nth-child(3) {
        background-image: url('../img/mainvisual/Top5.jpg');
        background-position: center center;
    }
}

/* Concept Section PC/SP Toggle */
.concept__images--pc {
    display: none;
}

@media (min-width: 768px) {
    .concept__images--sp {
        display: none;
    }

    .concept__images--pc {
        display: block;
    }

    .concept2 {
        display: none;
    }

    .strength__copy {
        font-size: 36px;
    }

    /* TikTok Section PC */
    .tiktok__item {
        position: relative;
    }

    .tiktok__img-front {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .tiktok__item.is-visible .tiktok__img-front {
        opacity: 1;
    }

    .tiktok__img-back--pc,
    .tiktok__img-front--pc {
        display: block !important;
    }

    .tiktok__img-back--sp,
    .tiktok__img-front--sp {
        display: none !important;
    }

    .tiktok__slider-wrapper {
        height: 550px;
        top: 40%;
        /* PC版のみ少し上に */
    }

    .tiktok__slide-item {
        width: 287px;
        height: 510px;
        margin-right: 40px;
    }

    .tiktok__slide-item:nth-child(even) {
        transform: translateY(40px);
    }

    @keyframes tiktok-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-287px * 6 - 40px * 6));
        }
    }





    .tiktok__img-front {
        z-index: 2;
        /* スライダーより上 */
    }

    .plan__reveal-image {
        height: auto;
    }

    .access__map-wrapper {
        max-width: 800px;
        height: 500px;
        top: 40%;
    }

    /* Adjust MV width for PC */
    .mv {
        max-width: 1200px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    /* Adjust Fixed Footer width for PC */
    .fixed-footer {
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}

/* Fixed Footer Button */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-footer__btn {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: #e2aa00;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.fixed-footer__btn:hover {
    background-color: #c99600;
    transform: translateY(-2px);
}

@media (min-width: 768px) {

    /* Fix Fixed Footer alignment for PC */
    .fixed-footer {
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}

@media (max-width: 767px) {
    .mv__copy {
        padding-bottom: 100px;
        /* スマホ版でボタンと被らないように上にずらす */
        box-sizing: border-box;
    }
}

/* Footer Contact Links */
.footer__info a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.footer__info a:hover {
    text-decoration: underline;
    color: #e2aa00;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.contact-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.contact-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.contact-modal__content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.contact-modal.is-active .contact-modal__content {
    transform: translateY(0);
}

.contact-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.contact-modal__close::before,
.contact-modal__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #333;
}

.contact-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1c1c1c;
}

.contact-modal__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-modal__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: opacity 0.3s, transform 0.2s;
}

.contact-modal__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-modal__btn--tel {
    background-color: #e2aa00;
}

.contact-modal__btn--mail {
    background-color: #1c1c1c;
}

.contact-modal__text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-modal__label {
    font-size: 12px;
    opacity: 0.9;
}

.contact-modal__number,
.contact-modal__address {
    font-size: 18px;
}

/* Fixed Footer Layout */
.fixed-footer {
    padding: 10px 20px;
    /* Reduce padding slightly */
}

.fixed-footer__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.fixed-footer__btn {
    width: 100%;
    max-width: 600px;
    /* Restrict width */
    flex: 0 1 auto;
    /* Allow shrinking but not growing beyond max-width */
}

.fixed-footer__tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1c1c1c;
    /* Dark background for contrast */
    border-radius: 50%;
    flex-shrink: 0;
    /* Prevent shrinking */
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fixed-footer__tiktok:hover {
    transform: translateY(-2px);
    background-color: #000;
}

.fixed-footer__tiktok img {
    width: 60%;
    /* Adjust icon size inside circle */
    height: auto;
    display: block;
    filter: invert(1);
    /* Make icon white */
}