@charset "utf-8";

p.red {
    color: red;
}

.sp-only {
    display: none;
}

@media (min-width: 1025px) {
    body {
        min-width: 1440px;
    }
}

@media (max-width: 1024px) {
    body {
        min-width: 375px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}


/* ----------------------------------------------


共通 


----------------------------------------------*/

.section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.summary:not(:last-of-type) {
    margin-bottom: 40px;
}


.summary span {
    display: inline-block;
    background-color: #F27970;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    padding: 0 10px;
}


.section__title {
    text-align: center;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 3em;
}


@media (max-width: 1024px) {
    .summary {
        gap: 8px;
    }

    .summary span {
        font-size: 20px;
        padding: 0px 10px;
    }

    .summary:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .section__title {
        font-size: 26px;
        margin-bottom: 2.5em;
    }
}

@media (max-width: 767px) {}

/* ----------------------------------------------


ボタン 


----------------------------------------------*/

.btn {
    font-weight: 700;
    width: 200px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.btn--primary {
    background-color: #F97316;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 0 #D04A17;
}

.btn--outline {
    background-color: #fff;
    color: #F97316;
    border: 1px solid #F97316;
    box-shadow: 0 4px 0 #F97316;
}

@media (max-width: 1024px) {}

@media (max-width: 767px) {}

/* ----------------------------------------------


ヘッダー 


----------------------------------------------*/

#header {
    padding: 16px 20px;
    position: fixed;
    z-index: 99999;
    width: 100%;
    background-color: #fff;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

#header_nav ul {
    display: flex;
    justify-content: start;
    align-items: center;
}

#header_nav ul li a.nav-link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    /* 下線オフ */
    color: inherit;
    margin-right: 45px;
}

#header_nav ul li .btn--primary {
    margin-left: 10px;
}

/* アンダーライン（初期状態：幅0） */
#header_nav ul li a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    /* テキストの下に線を表示 */
    width: 0;
    height: 2px;
    background-color: #017CC8;
    transition: width 0.3s ease;
}

/* ホバー時に線がにゅっと伸びる */
#header_nav ul li a.nav-link:hover::after {
    width: 100%;
}

.header-spacer {
    width: 100%;
    height: 74px;
    /* headerの高さ */
}

.logo {
    width: 120px;
}

/* ーーーーーーーーーーーーーーーーーーーー

ハンバーガーメニュー

ーーーーーーーーーーーーーーーーーーーー */

body.no-scroll {
    overflow: hidden;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    transition: all 0.3s;
    width: 100%;
}

.hamburger.active span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
    #header {
        padding: 15px 15px;
    }

    .logo {
        width: 100px;
    }

    #header .inner {
        justify-content: space-between;
    }

    #header_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #00479C;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 100px 35px;
    }

    #header_nav.open {
        right: 0;
    }

    #header_nav ul {
        flex-direction: column;
        gap: 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
        max-width: 500px;
        margin: 0 auto;
    }

    #header_nav.open ul {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    #header_nav ul li a::after {
        content: none;
    }


    #header_nav ul li+li:before {
        content: none;
    }

    #header_nav ul li {
        position: relative;
        width: 100%;
    }

    #header_nav ul li a.nav-link {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        padding: 1.5em 0;
        display: block;
        border-bottom: 1px solid #fff;
        margin-right: 0;
    }

    .hamburger {
        display: flex;
    }

    .header-spacer {
        height: 53px;
    }

    .nav-item--button .btn {
        margin: 0;
        width: 100%;
        height: 56px;
    }

    #header_nav ul li .btn--outline {
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    #header_nav ul li .btn--primary {
        margin-left: 0;

    }
}


/* ----------------------------------------------


メインビジュアル 


----------------------------------------------*/

.section--mv {
    padding: 0;
    height: auto;
    background-color: #FFBF5A;
    padding: 60px 0;
}

.hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero__title {
    color: #fff;
    text-align: center;
    font-size: 82px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.hero__visual img {
    width: 385px;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.hero__copy {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: absolute;
}

.hero__copy--left {
    left: 0;
    top: 300px;
}

.hero__copy--right {
    right: 0;
    top: 450px;
    align-items: end;
}

.hero__copy span {
    background-color: #fff;
    color: #FFBF5A;
    font-size: 40px;
    font-weight: 700;
    padding: 0 10px;
    line-height: 1.25;
    display: inline-block;
}

.hero__copy--left span:last-of-type {
    position: relative;
    left: 50px;
}

@media (max-width: 1024px) {

    .section--mv {
        padding: 50px 0 60px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__inner {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__visual {
        padding: 90px 0 50px;

    }

    .hero__visual img {
        width: 180px;
    }

    .hero__copy span {
        font-size: 20px;
    }

    .hero__copy--left {
        top: 100px;
        left: 30px;
    }

    .hero__copy--right {
        top: initial;
        bottom: 0px;
        right: 30px;
    }

    .hero__copy--left span:last-of-type {
        left: 20px;
    }
}

@media (max-width: 767px) {}


/* ----------------------------------------------


セクション：課題提起 


----------------------------------------------*/

.section--problem {
    padding: 120px 0 90px;
    background: url(../img/bg-tile.png) repeat;
    background-size: 9%;

}

.section__content--problem {
    background-color: #fff;
    padding-top: 80px;
    border-radius: 40px;
    max-width: 1500px;
    margin: 0 auto 90px;
}

.section--problem .section__lead {
    color: #FF7539;
    font-weight: 900;
    font-size: 42px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1.5em;
    position: relative;
    display: inline-block;
}

.section--problem .section__lead::before,
.section--problem .section__lead::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #FF7539;
    display: block;
    bottom: 30px;
}

.section--problem .section__lead::before {
    right: -80px;
    transform: rotate(135deg);
}

.section--problem .section__lead::after {
    left: -80px;
    transform: rotate(45deg);
}

.section__content--problem .section__text {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 3em;
    line-height: 1.75;
}

.problem-list {
    display: flex;
    justify-content: space-between;
}

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

.problem-item__text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    background: url(../img/fukidashi.png) center center no-repeat;
    background-size: contain;
    height: 200px;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.problem-item__img {
    width: auto;
    height: 170px;
}

.summary--problem {
    margin-bottom: 40px;
}

.summary--problem span:first-of-type {
    position: relative;
    left: -150px;
}

.summary--problem span:last-of-type {
    position: relative;
    right: -150px;
}

.section--problem .section__arrow {
    width: 65px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 1024px) {

    .section--problem {
        padding: 68px 0 80px;
    }

    .section--problem .section__lead {
        font-size: 22px;
        margin-bottom: 1em;
    }

    .section__content--problem {
        padding: 35px 20px;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
        width: calc(100% - 60px);
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .problem-list {
        flex-direction: column;
        gap: 30px;
    }

    .section__content--problem .section__text {
        font-size: 13px;
    }

    .problem-item__text {
        font-size: 16px;
        width: 240px;
        height: 140px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5px;
        background-image: url(../img/fukidashi_sp.png);

    }

    .problem-item__img {
        height: 90px;
    }

    .summary--problem {
        margin-bottom: 20px;
    }

    .summary--problem span:first-of-type {
        left: -10px;
    }

    .summary--problem span:last-of-type {
        right: -10px;
    }

    .section--problem .section__arrow {
        width: 40px;
    }

    .section--problem .section__lead::before,
    .section--problem .section__lead::after {
        width: 40px;
        bottom: 15px;
    }

    .section--problem .section__lead::before {
        right: -40px;
    }

    .section--problem .section__lead::after {
        left: -40px;
    }




}

@media (max-width: 767px) {}

/* ----------------------------------------------


セクション：紹介


----------------------------------------------*/

.section--intro {
    background-color: #FF8B59;
    border-top: 7px solid #333;
    border-bottom: 7px solid #333;
    padding: 100px 0 120px;
}

.section--intro .section__inner {
    position: relative;
}

.intro {
    display: flex;
}

.intro__textblock {
    flex-shrink: 0;
}

.intro__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    height: auto;
}

.intro__lead {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2em;
    line-height: 1.75;
}

.intro__text {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.75;
    text-align: center;
}

@media (max-width: 1024px) {

    .section--intro {
        padding-top: 300px;
        padding-bottom: 68px;
        position: relative;
        border-width: 4px;
    }

    .section--intro .section__inner {
        position: initial;
    }

    .intro {
        flex-direction: column;
        justify-content: center;
    }

    .intro__image {
        width: 170px;
        height: auto;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .intro__textblock {
        flex-shrink: initial;
    }

    .intro__lead {
        font-size: 15px;
        text-align: center;
    }

    .intro__text {
        font-size: 18px;
    }


}

@media (max-width: 767px) {}

/* ----------------------------------------------


セクション：サービス概要


----------------------------------------------*/

.section--service {
    padding: 180px 0 120px;
    background: url(../img/bg-tile.png) repeat;
    background-size: 9%;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-bottom: 100px;
}

.service-card {
    border: 6px solid #333333;
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.card__body {
    position: relative;
}

.card__img {
    width: 200px;
    height: auto;
}

.card__num {
    position: absolute;
    width: 68px;
    height: 68px;
    font-size: 36px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding-bottom: 5px;
    left: -120px;
    top: -20px;
}

.card__title {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 1em;
}

.card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}


.summary--service--2 span:first-of-type {
    position: relative;
    left: -230px;
}

.summary--service--2 span:last-of-type {
    position: relative;
    right: -80px;
}


@media (max-width: 1024px) {
    .section--service {
        padding: 68px 0 58px;
    }

    .service-list {
        width: calc(100% - 60px);
        margin: 0 auto 50px;
        max-width: 400px;
        gap: 40px;
    }

    .service-card {
        flex-direction: column-reverse;
        padding: 40px 20px 20px;
        border-width: 3px;
        gap: 25px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__desc {
        font-size: 13px;
    }

    .card__img {
        width: 120px;
    }

    .card__num {
        left: -35px;
        top: -60px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .summary--service--1 span:first-of-type {}

    .summary--service--1 span:last-of-type {}

    .summary--service--2 span:last-of-type {
        right: 0;
    }

    .summary--service--2 span:first-of-type {
        left: 0;
    }


}

@media (max-width: 767px) {}

/* ----------------------------------------------


<!-- セクション：ステップ -->


----------------------------------------------*/

.section--steps {
    padding: 80px 0 100px;
}

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

.section__lead p {
    font-size: 34px;
    text-align: center;
    color: #FF7539;
    font-weight: 900;
    line-height: 1.5;
    display: inline-block;
    border-top: 6px solid #FF7539;
    border-bottom: 6px solid #FF7539;
    padding: 0.75em 3em;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    border: 6px solid #333;
    border-radius: 30px;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
}

.step__num {
    position: absolute;
    width: 105px;
    height: 105px;
    border: 6px solid #333;
    background-color: #FFBF5A;
    border-radius: 50%;
    left: -52px;
    top: -36px;
}

.step__num p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.step__num p span {
    font-weight: 900;
    line-height: 1;
}

.step__num p span:first-of-type {
    font-size: 13px;
}

.step__num p span:last-of-type {
    font-size: 42px;
    line-height: 36px;
}


@media (max-width: 1024px) {
    .section--steps {
        padding: 58px 0;
    }

    .section--steps .section__inner {
        padding: 0 30px;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }

    .section__lead {
        margin-bottom: 30px;
    }

    .section__lead p {
        font-size: 20px;
        padding: 1em 0;
        width: 100%;
        border-width: 3px;
    }

    .steps {
        gap: 20px;
        padding: 0 20px;
    }

    .step {
        border-width: 3px;
        border-radius: 15px;
        height: 120px;
    }

    .step__text {
        font-size: 15px;
        line-height: 1.5;
    }

    .step__num {
        width: 52px;
        height: 52px;
        border-width: 3px;
        left: -28px;
        top: -16px;
    }

    .step__num p span:first-of-type {
        font-size: 10px;
    }

    .step__num p span:last-of-type {
        font-size: 22px;
        line-height: 1;
    }

}

@media (max-width: 767px) {}


/* ----------------------------------------------


テンプレート紹介 


----------------------------------------------*/

.section--template {
    background: url(../img/bg-tile.png) repeat;
    background-size: 9%;
    padding: 120px 0;
}

.section--template .section__title {
    margin-bottom: 75px;
}

.template__lead {
    text-align: center;
}

.template__list {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;
}

.template__item {
   height: auto;
    width: calc(50% - 10px);
    display: block;
}


@media (max-width: 1024px) {
    .section--template {
        padding: 58px 0;
    }

    .section--template .section__title {
        margin-bottom: 25px;
    }

    .template__list {
        max-width: 400px;
        padding: 0 40px;
        margin: 40px auto 0;
    }

    .template__item {
        width: 100%;
        height: auto;
    }

    .template__item img {
        height: 100%;
    }
}

@media (max-width: 767px) {}


/* ----------------------------------------------


セクション：料金


----------------------------------------------*/

.section--price {
    background-color: #FFE2B7;
    padding: 120px 0;
}

.section--price .section__title {
    margin-bottom: 75px;
}

.section__content.price {
    max-width: 860px;
    background-color: #fff;
    border: 6px solid #333;
    margin: 0 auto;
    border-radius: 20px;
    padding: 40px;
}

.price__main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 4px solid #FFF1DC;
}

.price__item {
    text-align: center;
    flex: 1;
}

.price__label {
    background-color: #F27970;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    width: 170px;
    margin: 0 auto;
    border-radius: 3em;
    display: block;
    margin: 0 auto 1.75em;
}

.price__value {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
}

.price__value span {
    font-size: 1.25em;
}

.price__plus {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    padding-top: 15px;
}

.price__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 30px;
}

.price__list li {
    font-size: 22px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex: 0 0 calc(50% - 5px);
}

.price__list li:before {
    content: '';
    background: url(../img/icon-check.png) center center no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    display: block;
}

@media (max-width: 1024px) {
    .price__main {
        flex-direction: column;
    }

    .section--price {
        padding: 58px 0;
    }

    .section--price .section__title {
        margin-bottom: 30px;
    }

    .section__content.price {
        max-width: 400px;
        width: calc(100% - 60px);
        margin-right: auto;
        margin-left: auto;
        padding: 20px;
        border-width: 3px;
        padding: 30px 20px;
    }

    .price__main {
        gap: 25px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .price__label {
        font-size: 13px;
        width: 240px;
        margin-bottom: 5px;
    }

    .price__value {
        font-size: 28px;
    }

    .price__value span {
        font-size: 1.5em;
    }

    .price__plus {
        padding-top: 0;
        width: 20px;
        height: 20px;
    }

    .price__list {
        flex-direction: column;
        padding: 0;
        padding-left: 10px;
    }

    .price__list li {
        font-size: 14px;
    }




}

@media (max-width: 767px) {}

/* ----------------------------------------------


セクション：お問い合わせ 


----------------------------------------------*/

.section--contact {
    background-color: #FF8B59;
    padding: 150px 0;
}

.section--contact .section__title {
    font-size: 42px;
    margin-bottom: 50px;
}

.section--contact .section__title:after {
    content: '';
    width: 120px;
    height: 10px;
    background-color: #F27970;
    margin: 20px auto 0;
    display: block;
}

.section__box {
    background-color: #fff;
    border: 6px solid #333;
    border-radius: 20px;
    padding: 80px 0;
}

.contact__text {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .section--contact {
        padding: 58px 0;
    }

    .section__box {
        width: calc(100% - 60px);
        margin: 0 auto;
        max-width: 400px;
        border-width: 3px;
        padding: 45px 20px 40px;
    }

    .section--contact .section__title {
        font-size: 22px;
    }

    .section--contact .section__title:after {
        height: 3px;
    }

    .contact__text {
        font-size: 13px;
    }
}

/* ----------------------------------------------


よくあるご質問 


----------------------------------------------*/

.faq {
    background-color: #CDDFF2;
    padding: 80px 0 120px;
}

.faq__inner {
    max-width: 740px;
    margin: 0 auto;
}

.faq__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5em;
    cursor: pointer;
}

.faq__item:not(:last-of-type) {
    margin-bottom: 20px;
}

.faq__q,
.faq__a {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    position: relative;
    margin-left: 40px;
    padding-right: 1.5em;
}

.faq__q:after {
    content: '';
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background: url(../img/faq__arrow.png) center center no-repeat;
    background-size: contain;
    pointer-events: none;
}

.faq__a {
    font-size: 16px;
    margin-top: 2.5em;
    line-height: 1.5;
    font-weight: 400;
    display: none;
}

.faq__q:before,
.faq__a:before {
    content: 'Q.';
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    width: 40px;
    left: -40px;
    top: -4px;
}

.faq__a:before {
    content: 'A.';
}

/* アコーディオン */

.faq__item.is-open .faq__a {
    display: block;
}

.faq__q:after {
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__q:after {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 1024px) {
    .faq {
        padding: 50px 0 60px;
    }

    .faq__list {
        padding: 0 30px;
        max-width: 440px;
        margin: 0 auto;
    }

    .faq__item {
        padding: 0.75em 1em;
    }

    .faq__item:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .faq__q,
    .faq__a {
        font-size: 14px;
    }

    .faq__q:before,
    .faq__a:before {
        font-size: 18px;
    }
}

@media (max-width: 767px) {}




/* ----------------------------------------------


CTAブロック 


----------------------------------------------*/
.cta-block {
    background-color: #00479C;
    padding: 75px 0;
}

.cta-buttons {
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.cta-buttons .btn {
    width: 100%;
    height: 95px;
    font-size: 26px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .cta-buttons {
        flex-direction: column;
        width: calc(100% - 40px);
        max-width: 540px;
        gap: 15px;
    }

    .cta-buttons .btn {
        font-size: 18px;
        height: 75px;
    }

    .cta-block {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {}

/* ----------------------------------------------


追従バナー 


----------------------------------------------*/

.banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 215px;
    background: #F95E1E;
    border-radius: 50%;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}


.banner p {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

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

.banner.is-hidden {
    opacity: 0;
    transform: translateY(50px);
}

.banner:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .banner {
        width: 120px;
        height: 120px;
    }

    .banner p {
        font-size: 15px;
    }
}