/* 共通 */
p{
    color: #353535;
    font-family: "LINE Seed JP_OTF";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.198px;
}
._inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
._title{
    margin-bottom: 28px;
}
._title h2{
    color: #0067E0;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.5rem, 1.288rem + 0.91vw, 2.375rem);
    font-style: normal;
    font-weight: 700;
    line-height: 44.8px; 
}
._title span{
    display: block;
    color: #353535;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 44.8px;
}
._bold{
    font-weight: 700;
}
/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 20%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-logo {
    z-index: 1001;
}

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

.header-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.header-hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-hamburger[aria-expanded="true"] .header-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-hamburger[aria-expanded="true"] .header-hamburger-line:nth-child(2) {
    opacity: 0;
}

.header-hamburger[aria-expanded="true"] .header-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header-nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-nav li {
    margin: 0;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.header-nav-button {
    display: flex;
    gap: 15px;
}

.header-btn-blue,
.header-btn-green {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.header-btn-blue {
    border-radius: 40px;
    border: 3px solid #0067E0;
    background: #FFF;
}

.header-btn-blue p{
    color: #0067E0;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}
.header-btn-blue:hover {
    background: #0056b3;
}

.header-btn-green {
    border-radius: 40px;
    background: #06C755;
    border: 3px solid #06C755;
}
.header-btn-green p{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.header-btn-green:hover {
    background: #1e7e34;
}

.header-nav-button p {
    margin: 0;
    font-size: 14px;
}

/* SP版（768px以下）でハンバーガーメニュー表示 */
@media (max-width: 1400px) {
    header{
        padding: 20px ;
    }
}
@media (max-width: 768px) {

    .header-hamburger {
        display: flex;
    }

    .header-nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav-container.is-open {
        right: 0;
    }

    .header-nav {
        width: 100%;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .header-nav li {
        width: 100%;
    }

    .header-nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
    }

    .header-nav-button {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }

    .header-btn-blue,
    .header-btn-green {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}
/* mv */
.mv{
    background-image: url(../img/mv-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.mv-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

/* about */
.about-top{
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    padding: 64px 0;
}
.about-top-text{
    width: 55%;
}
.about-top-img{
    width: 40%;
}
.about-top-title{
    display: flex;
    justify-content: left;
    gap: 5%;
}
.about-middle-flow{
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.about-middle-flow-item{
    position: relative;
    width: 26%;
}
.about-middle-flow-triangle{
    position: relative;
    width: 3%;
    aspect-ratio: 27/36;
    background: #0067E0;
    margin-top: 25%;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.about-middle-img{
    margin-bottom: 32px;
}
.about-middle-text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}
.about-middle-text::before{
    content: "1";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    background: #0067E0;
    border-radius: 50%;
    color: #fff;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.about-middle-flow-item:nth-child(3) .about-middle-text::before{
    content: "2";
}
.about-middle-flow-item:nth-child(5) .about-middle-text::before{
    content: "3";
}
.about-middle-text h3{
    color: #353535;
    font-family: Inter;
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
    letter-spacing: -0.264px;
}

.about-bottom-point{
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(49, 10, 18, 0.15);
    padding:16px 32px ;
    margin-bottom: 24px;
    box-sizing: border-box;
}
.about-bottom-point-text h3 span{
    color: #B3C1E6;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.about-bottom-point-text h3{
    color: #0067E0;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.25rem, 1.129rem + 0.52vw, 1.75rem);
    font-style: normal;
    font-weight: 700;
    margin-bottom: 6px;
}
.about-bottom-point-img{
    width: 40%;
    max-width: 360px;
}


/* cta */
.cta{
    background: #06C755;
    width: 100%;
    padding: 32px 0;
}
.cta h2{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.cta-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 340px;
    height: 72px;
    border-radius: 36px;
    background: #FFF;
    text-decoration: none;
    margin: 8px auto 0;
}
.cta-btn p{
    color: #06C755;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

/* how to use */
.howto{
    padding: 80px 0;
    overflow: hidden;
}
.howto-bg{
    background: #EAF4FF;
    border-radius: 0 318px 318px 0;
}
.howto-slides-wrapper {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    /* overflow: hidden; */
}

.howto-slides {
    display: flex;
    gap: 40px;
    padding-bottom: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.howto-slides::-webkit-scrollbar {
    display: none;
}
.howto-slide {
    flex: 1 0 9%; /* 8枚1列 */
    min-width: 120px;
    max-width: 250px;
    box-sizing: border-box;
    border-radius: 10px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-slide.active {
    transform: scale(1.15);
    z-index: 1;
    position: relative;
}
.howto-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.howto-slide-text{
    position: relative;
    width: 100%;
    height: 32px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 1px 4.2px 0 #D5DDF2;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.howto-slide-text-number{
    /* position: absolute; */
    height: calc(100% - 8px);
    aspect-ratio: 1/1;
    background: #0067E0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.howto-slide-text-number p{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.howto-slide-text h3{
    width: 100%;
    color: #353535;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
}
.howto-bg > p{
    text-align: center;
    margin-bottom: 80px;
}

/* 画面幅によって表示スライド数調整 */
@media (max-width: 1400px) {
    .howto-slide { flex-basis: 16.6666%; } /* 6枚表示 */
}
@media (max-width: 900px) {
    .howto-slide { flex-basis: 25%; }   /* 4枚表示 */
}
@media (max-width: 600px) {
    .howto-slide { flex-basis: 50%; }   /* 2枚表示 */
}
@media (max-width: 400px) {
    .howto-slide { flex-basis: 100%; }  /* 1枚表示 */
}

/* スライドナビゲーションボタン */
.howto-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.howto-slide-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.howto-slide-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.howto-slide-btn-prev {
    display: none;
}

.howto-slide-btn-next {
    display: none;
}

@media (max-width: 600px) {
    .howto-slide-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .howto-slide-btn-prev {
        left: 5px;
    }
    
    .howto-slide-btn-next {
        right: 5px;
    }
}


/* function */
.function{
    padding: 80px 0;
}
.function ._inner > p{
    text-align: center;
    margin-bottom: 48px;
}
.function-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}
.function-list-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 11px 0 rgba(61, 61, 61, 0.15);
    padding: 24px 0 16px;
}
.function-list-item img{
    width: 55px;
}
.function-list-item p{
    color: #0067E0;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 203.636% */
}

/* price */
.price{
    padding: 80px 0;
}
.price ._inner > p{
    text-align: center;
    margin-bottom: 48px;
}
.price-layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.price-initial-cost{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 11px 0 rgba(61, 61, 61, 0.15);
    width: 80%;
    max-width: 256px;
    text-align: center;
}
.price-initial-title {
    border-radius: 5px 5px 0 0;
    background: #0067E0;
}
.price-initial-title h3{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
}
.price-initial-cost > p{
    color: #353535;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.75rem, 1.72rem + 0.13vw, 1.875rem);
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
}
.price-initial-cost > p span{
    font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.price-plus{
    width: 20px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}
.price-monthly-cost{
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 18px 0 32px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 11px 0 rgba(61, 61, 61, 0.15);
    overflow: hidden;
}
.price-monthly-cost::before{
    content: "";
    background: #7BB2F1;
    width: 100%;
    height: 8px;
    position: absolute;
    top: 0;
    left: 0;
}
.price-monthly-title h3{
    text-align: center;
    color: #0067E0;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.75rem, 1.629rem + 0.52vw, 2.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 71.532px;
}
.price-monthly-title h3 span{
    font-size: clamp(1.5rem, 1.439rem + 0.26vw, 1.75rem);
}
.price-monthly-list{
    width: fit-content;
    margin: 0 auto;
    list-style: none;
}
.price-monthly-list li{
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 10px;
    width: fit-content;
}
.price-monthly-list li::before{
    content: "";
    background-image: url(../img/price-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    aspect-ratio: 1/1;
    margin-top: 8px;
}
.price-monthly-list p{
    color: #353535;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 160% */
}
.price-monthly-list ._bold{
    color: #353535;
    font-family: "LINE Seed JP_OTF";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 312% */
}
.price-monthly-list ._blue{
    color: #0067E0;
    font-weight: 700;
}

.price-campaign{
    border-radius: 14px;
    background: #06C755;
    padding: 40px 0;
    width: 100%;
    max-width: 720px;
    margin: 64px auto 0;
}
.price-campaign h3{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.75rem, 1.659rem + 0.39vw, 2.125rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 131.765% */
}
.price-campaign p{
    color: #FFF;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
    margin: 16px;
}
.price-campaign-img{
    max-width: 330px;
    margin: 0 auto;
}
.price-campaign-btn{
    border-radius: 31.5px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 524px;
    height: 55px;
    text-decoration: none;
    margin: 16px auto 0;
}
._btn:hover{
    opacity: 0.8;
    transition: all 0.3s ease;
}
.price-campaign-btn p{
    color: #353535;
    text-align: center;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
}

footer{
    padding: 48px 0 40px;
    background: #353535;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 18px;
    border-bottom: 2px solid #FFF;
}
.footer-top-title{
    border-radius: 35px;
    background: #FFF;
    padding: 8px 16px;
    margin-bottom: 36px;
    width: fit-content;
}
.footer-top-title p{
    text-align: center;
    width: fit-content;
    color: #06C755;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
    font-style: normal;
    font-weight: 700;
    line-height: 35.2px; /* 160% */
}
.footer-top-left h2{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(1.5rem, 1.439rem + 0.26vw, 1.75rem);
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}
.footer-top-right{
    max-width: 144px;
}
.footer-bottom{
    display: flex;
    justify-content: left;
    align-items: start;
    padding-top: 18px;
    margin-bottom: 48px;
}
.footer-bottom-info{
    width: 50%;
}
.footer-bottom-address{
    width: 50%;
}
.footer-bottom h3{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 35.2px;
    margin-bottom: 16px;
}
.footer-tel{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.footer-tel::before{
    content: "";
    background-image: url(../img/tel-icon.webp);
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    aspect-ratio: 1/1;
}
.footer-tel p{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 160% */
}
.footer-mail{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
}
.footer-mail::before{
    content: "";
    background-image: url(../img/mail-icon.webp);
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    aspect-ratio: 1/1;
}
.footer-mail p{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 160% */
}
.footer-bottom-address p{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 160% */
}
.footer-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.footer-nav a{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
    text-decoration-line: underline;
    text-align: center;
}
.footer-nav-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.footer-nav-list a{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.footer-nav-list a::after{
    content: "/";
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
}
.Copyright{
    color: #FFF;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 160% */
    text-align: center;
}

@media (max-width: 768px) {
    ._inner{
        width: 90%;
    }
    .mv {
        margin-top: 80px;
        height: 100vh;
        background-image: url(../img/mv-bg-sp.webp);
    }
    .mv-logo{
        width: 94%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-top{
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .about-top-text{
        width: 100%;
    }
    .about-top-img{
        width: 100%;
    }
    .about-top-title{
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .about-middle-flow{
        flex-direction: row;
        align-items: start;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .about-middle-flow::-webkit-scrollbar {
        display: none;
    }
    .about-middle-flow-item{
        flex: 0 0 80%;
        min-width: 80%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 16px;
        scroll-snap-align: start;
    }
    .about-middle-flow-triangle{
        display: none;
    }
    .about-middle-img{
        margin-bottom: 16px;
    }
    /* .about-middle-text{
        flex-direction: column;
        align-items: center;
        gap: 0;
    } */
    .about-middle-text h3{
        text-align: center;
    }
    .about-bottom-point{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px;
    }
    .about-bottom-point-text{
        width: 100%;
    }
    .about-bottom-point-img{
        width: 100%;
        max-width: 100%;
    }
    .about-bottom-point-text h3{
        margin-bottom: 8px;
    }
    .about-bottom-point-text p{
        margin-bottom: 4px;
    }

    .howto-slides-wrapper{
        width: 80%;
    }
    .howto-bg{
        border-radius: 0 50px 50px 0;
    }
    .function-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .function-list-item p{
        font-size: 14px;
    }
    .price-monthly-list p{
        width: 80%;
    }
    .price-monthly-list li{
        width: 90%;
        margin: 0 auto;
    }
    .price-monthly-list li::before{
        width: 20px;
        margin-top: 10px;
    }

    .price-campaign h3{
        font-size: 20px;
    }
    .price-campaign p{
        font-size: 16px;
    }
    .price-campaign-img{
        max-width: 200px;
    }
    .price-campaign-btn p{
        font-size: 16px;
    }
    .price-campaign-btn{
        max-width: 300px;
    }
    .footer-top{
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .footer-top-left{
        text-align: center;
    }
    .footer-bottom{
        flex-direction: column;
        gap: 24px;
    }
    .footer-bottom-info{
        width: 100%;
    }
    .footer-bottom-address{
        width: 100%;
    }
    .footer-nav{
        margin-bottom: 32px;
    }
    .footer-nav a{
        font-size: 14px;
    }
    .footer-nav-list{
        flex-wrap: wrap;
    }
    .footer-nav-list a{
        font-size: 14px;
        white-space: nowrap;
    }
    .footer-nav-list a::after{
        font-size: 14px;
    }
    .Copyright{
        font-size: 14px;
    }
}