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

/* Base styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}


body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Common Components */
.pc {
    display: inline-block;
}

.sp {
    display: none;
}

@media screen and (max-width: 750px) {
    .pc {
        display: none;
    }

    .sp {
        display: inline-block;
    }
}

.section__title {
    font-size: 3.2rem;
    text-align: center;
    font-weight: bold;
}

.btn-primary,
.btn-secondary {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.2rem;
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    width: 100%;
    background: #ff2334;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.btn-secondary {
    width: 100%;
    background: #fff;
    color: #ff2334;
    border: 2px solid #ff2334;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    right: 33px;
    bottom: 50%;
    transform: translateY(50%);
}

.btn-primary::after {
    border-left: 12px solid #ffffff;
}

.btn-secondary::after {
    border-left: 12px solid #ff2334;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header__inner {
    max-width: 1389px;
    margin: 0 auto;
    padding: 19px 20px;
}

.header__logo {
    display: block;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 64px 0 69px;
}

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

.footer__left {
    text-align: left;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    width: auto;
    height: 44px;
}

.footer__social {
    display: flex;
    gap: 13px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon img {
    width: auto;
    height: 28px;
}

.footer__nav-list {
    font-size: 1.6rem;
    color: #626262;
}

.footer__nav-list li {
    margin-bottom: 25px;
}

.footer__right {
    text-align: right;
}

.footer__app-text {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.footer__app-text-sub {
    font-size: 2rem;
}

.footer__app-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 30px;
}

.app-button img {
    height: 66px;
    width: auto;
}

.footer__support-button {
    display: inline-block;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer__support-button:hover {
    background: #fff;
    color: #232323;
}

.footer__copyright {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.5;
    padding-top: 20px;
}

/* Main Visual */
.mv {
    padding-top: 75px;
}

.mv__inner {
    margin: 0 auto;
    background: url('/lp/common/img/mv-bg.png') bottom/cover;
    padding: 0 0 30px;
}

@media screen and (min-width: 1501px) {
    .mv__inner {
        background: url(/lp/common/img/mv-bg.png) center / cover;
    }
}

.mv .mv__text {
    font-size: 3.2rem;
    color: #fff;
    background-color: #000000;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding: 27px 30px 0;
}

.mv .mv__text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 30px;
    background-image: url('/lp/common/img/mv-text-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mv__buttons {
    max-width: 833px;
    padding: 58px 0 63px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.mv__title {
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv__title.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.mv__copy {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    position: relative;
    padding: 0 174px;
}

.mv__copy-item-1 {
    position: absolute;
    top: -85px;
    left: 120px;
    opacity: 0;
    transform: translate3d(20px, 0, 0) rotate(10deg);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.mv__copy-item-1.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
}

.mv__copy-item-2,
.mv__copy-item-3 {
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mv__copy-item-2.is-visible,
.mv__copy-item-3.is-visible {
    opacity: 1;
    transform: scale(1);
}

.mv__copy-item-2 {
    transition-delay: 0.3s;
}

.mv__copy-item-3 {
    transition-delay: 0.6s;
}

/* Companies Slider */
.companies {
    background: #232323;
    padding: 30px 0 47px;
    overflow: hidden;
}

.companies__title {
    color: #fff;
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.companies__slider {
    position: relative;
    background: #fff;
    padding: 21px 0;
    width: 100%;
    overflow: hidden;
}

.companies__slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
}

.companies__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    min-width: 200px;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(calc(-100% / 2));
    }
    100% {
        transform: translateX(0);
    }
}

.companies__slider-track {
    animation: scroll 25s linear infinite;
}

.companies__slider-track.sp {
    animation: scroll-reverse 25s linear infinite;
}

/* Problems Section */
.problems {
    background: #fabe01;
    padding: 47px 0 0;
    position: relative;
    overflow: hidden;
}

.problems__inner {
    margin: 0 auto;
}

.problems__header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.problems__title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    padding: 3px 120px;
    position: relative;
    display: inline-block;
    z-index: 0;
}

.problems__title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #232323;
    transform: skew(-10deg);
    z-index: -1;
}

.problems__title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #232323;
    z-index: -1;
}

.problems__list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: white;
    padding: 60px 50px 30px;
    margin-top: -30px;
}

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

.problems__item.item-1,
.problems__item.item-2 {
    position: relative;
}

.problems__item.item-1::before,
.problems__item.item-2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: rgb(0, 0, 0);
}

.problems__check {
    background-image: url('/lp/common/img/check.png');
    width: 23px;
    height: 23px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.problems__text {
    font-size: 1.8rem;
    line-height: 1.5;
}

.problems__text-bold {
    font-size: 2rem;
    font-weight: bold;
    color: #ff2334;
}

.problems__message {
    max-width: 1500px;
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-top: 43px;
    margin-bottom: 53px;
    background-image: url('/lp/common/img/problems__message-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}

.problems__message::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 300px solid transparent;
    border-right: 300px solid transparent;
    border-top: 80px solid #fabe01;
    left: 50%;
    bottom: -126px;
    transform: translateX(-50%);
    z-index: 1;
}

.problems__subtitle {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.problems__solution {
    position: relative;
    padding-bottom: 30px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.problems__solution.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.problems__solution-text {
    max-width: 100%;
    height: auto;
}

.problems__content {
    background: #fff8e5;
}

.problems__catch {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    height: 886px;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 163px 0 0;
}

.problems__catch.is-visible {
    opacity: 1;
    background-image: url('/lp/common/img/problems__catch-bg.png');
    background-position: bottom;
}

@media screen and (min-width: 1501px) {
    .problems__catch {
        background-position: center !important;
        position: relative;
        z-index: 0;
    }

    .problems__catch.is-visible {
        background-position: center !important;
    }

    .problems__catch::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 260px;
        background: linear-gradient(to bottom, transparent, #fff8e5);
        z-index: -1;
    }
}

.problems__catch-text {
    max-width: 1000px;
    margin: 0 auto 47px;
    padding: 0 48px;
    text-align: left;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}

.problems__catch-logo {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 45px;
    text-align: left;

}

.problems__stats {
    max-width: 770px;
    margin: 57px auto 80px;
    display: flex;
    justify-content: space-between;
}

.problems__service-buttons {
    max-width: 380px;
    margin: 0 auto 90px;
    display: flex;
    justify-content: space-between;
    gap: 75px;
}

.problems__service-buttons a:hover {
    opacity: 1;
    transform: translateY(15.22px);
    height: 173px;
    overflow: hidden;
    border-radius: 0 0 22px 22px;
}

.problems__service-button {
    display: block;
    width: 100%;
}

.problems__service-button img {
    width: 100%;
    height: auto;
}


.problems__buttons {
    background-color: #fff;
    padding: 35px 0 60px;
}

.problems__buttons-text {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 35px;
}

.problems__buttons-links {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    justify-content: center;
}

.btn-contact,
.btn-document {
    display: inline-block;
    width: 100%;
    padding: 15.4px 0;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 2.2rem;
    position: relative;
}

.btn-contact::after,
.btn-document::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    right: 33px;
    bottom: 50%;
    transform: translateY(50%);
}

.btn-contact {
    background: #FF0000;
    color: #fff;
}

.btn-document {
    background: #fff;
    border: 2px solid #FF0000;
    color: #FF0000;
}

.btn-contact::after {
    border-left: 12px solid #ffffff;
}

.btn-document::after {
    border-left: 12px solid #FF0000;
}


/* achievements */
.achievements {
    background-color: #232323;
    padding: 56px 0;
}

.achievements .section__title {
    margin: 0;
    color: #fff;
    font-size: 3.2rem;
    font-weight: normal;
}

.achievements .section__title-sub {
    font-size: 4.2rem;
    color: #fff;
    font-weight: bold;
}

.achievements .section__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievements__content {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* 切り替え用のボタン */
.recruitment-cooperation__buttons {
    max-width: 830px;
    height: 80px;
    margin: 57px auto 0;
    display: flex;
    gap: 14px;
    justify-content: center;
}

.btn-cooperation {
    width: 100%;
    background-color: #fcb100;
    padding: 25px 0;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}

a.btn-cooperation:hover {
    opacity: 1;
    cursor: auto;
}

/* アニメーション */
.fade-in-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-transition.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.cooperation__content-item-title {
    font-size: 4.6rem;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: -10px;
    text-decoration-color: #fcb100;
    text-decoration-thickness: 19px;
    margin-top: -13px;
}

.cooperation__content-item-title-sub {
    font-size: 3rem;
}

.cooperation__content-item-text {
    margin-top: 10px;
    font-size: 2rem;
}

.cooperation__content-items {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cooperation__content-items-points {
    padding-top: 50px;
}

.cooperation__content-items-points-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cooperation__content-items-points-title::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 0;
    border-bottom: 15px solid #fcb100;
    left: 49.5%;
    bottom: 7px;
    transform: translateX(-50%);
    z-index: -1;
}

.cooperation__content-items-points-title-sub {
    text-align: center;
    font-size: 2.4rem;
}

.cooperation__content-items-points-items {
    max-width: 970px;
    margin: 20px auto 110px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    justify-content: center;
    letter-spacing: -0.014rem;
}

.cooperation__content-items-points-items .item {
    max-width: 478px;
    background-color: #fff;
    padding: 24px 26px 26px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.cooperation__content-items-points-items-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    padding-left: 85px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fcb100;
    position: relative;
}

.item._2 .cooperation__content-items-points-items-title {
    padding-top: 10px;
    padding-bottom: 27px;
}

.cooperation__content-items-points-items-title::before {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
}

.cooperation__content-items-points-items .item._1 .cooperation__content-items-points-items-title::before {
    width: 57px;
    height: 47px;
    background-image: url('/lp/common/img/cooperation__content_item01.png');
}

.cooperation__content-items-points-items .item._2 .cooperation__content-items-points-items-title::before {
    width: 66px;
    height: 47px;
    background-image: url('/lp/common/img/cooperation__content_item02.png');
    top: 0;
}

.cooperation__content-items-points-items .item._3 .cooperation__content-items-points-items-title::before {
    width: 67px;
    height: 47px;
    background-image: url('/lp/common/img/cooperation__content_item03.png');
}

.cooperation__content-items-points-items .item._4 .cooperation__content-items-points-items-title::before {
    width: 69px;
    height: 47px;
    background-image: url('/lp/common/img/cooperation__content_item04.png');
}

.cooperation__content-items-points-items-text {
    font-size: 1.8rem;
    padding-top: 18px;
    line-height: 1.5;
}

.cooperation__content-items-points-items-text .note {
    font-size: 1.4rem;
}

/* 協力会社を探すなら */
.cooperation[style*="display: none"] {
    opacity: 0;
}

.cooperation {
    background-color: #fff8e5;
    border-top: 10px solid #fcb100;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding-bottom: 80px;
}

.cooperation .section__title {
    background-image: url('/lp/common/img/cooperation-title-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 52px;
    width: 100%;
    height: 329px;
    line-height: 2.1;
}

@media screen and (min-width: 1501px) {
    .cooperation .section__title {
        padding-top: 3.466vw;
        height: 22vw;
    }
}

.cooperation .section__title-sub {
    font-size: 3rem;
    color: #ffffff;
}

.cooperation__content-items-points-title::after {
    border-bottom-color: #fcb100;
}

.cooperation__content-items-points-items .item {
    border-bottom-color: #fcb100;
}

.cooperation__content-items-points-items-title {
    border-bottom-color: #fcb100;
}


/* 助太刀を使って成功したお声 */
.cooperation__content-voice {
    background-color: #fabe01;
    padding: 43px 0 90px;
}

.cooperation__content-voice-title {
    text-align: center;
    margin-bottom: 56px;
}

.cooperation__content-voice-title-text {
    font-size: 2.8rem;
    color: #232323;
    font-weight: normal;
}

.cooperation__content-voice-title-sub {
    display: inline-block;
    font-size: 3.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #232323;
    padding: 0 10px;
}

.cooperation__content-voice-item {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.slider__item {
    max-width: 870px !important;
    height: min(1004px, 66.933vw) !important;
    background-color: #fff;
    border-radius: 10px;
    padding: min(54px, 3.6vw) min(58px, 3.866vw);
    margin: 0 31.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slider__item::after {
    content: '';
    position: absolute;
    width: min(395px, 26.333vw);
    height: min(217px, 14.466vw);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    bottom: min(54px, 3.6vw);
    left: 50%;
    transform: translateX(-50%);
}

.recruitment__content-voice-item .slider__item._1::after {
    background-image: url('/lp/common/img/voice-1.png');
}

.recruitment__content-voice-item .slider__item._2::after {
    background-image: url('/lp/common/img/voice-2.png');
}

.recruitment__content-voice-item .slider__item._3::after {
    background-image: url('/lp/common/img/voice-3.png');
}

.cooperation__content-voice-item .slider__item._1::after {
    background-image: url('/lp/common/img/cooperation-voice-1.png');
}

.cooperation__content-voice-item .slider__item._2::after {
    background-image: url('/lp/common/img/cooperation-voice-2.png');
}

.cooperation__content-voice-item .slider__item._3::after {
    background-image: url('/lp/common/img/cooperation-voice-3.png');
}

.cooperation__content-voice-item .slider__item._4::after {
    background-image: url('/lp/common/img/cooperation-voice-4.png');
}


/* Slick slider custom styles */
.cooperation__content-voice-item .slick-prev,
.cooperation__content-voice-item .slick-next {
    width: 32px;
    height: 51px;
    z-index: 1;
}

.cooperation__content-voice-item .slick-prev {
    left: 20.5%;
}

.cooperation__content-voice-item .slick-next {
    right: 20.5%;
}

@media screen and (max-width: 1200px) {
    .cooperation__content-voice-item .slick-prev {
        left: 16%;
    }

    .cooperation__content-voice-item .slick-next {
        right: 16%;
    }
}

.cooperation__content-voice-item .slick-prev:before,
.cooperation__content-voice-item .slick-next:before {
    content: '';
    width: 32px;
    height: 51px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/lp/common/img/slick-prev_next.png') no-repeat center/contain;
    opacity: 1;
}

.cooperation__content-voice-item .slick-next:before {
    transform: rotateY(180deg);
}

.cooperation__content-voice-item .slick-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
}

.cooperation__content-voice-item .slick-dots li.slick-active {
    margin: 0 10px !important;
}

.cooperation__content-voice-item .slick-dots li button:before {
    font-size: 12px;
    color: #232323;
    opacity: 1;
}

.cooperation__content-voice-item .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
    font-size: 25px;
}

.cooperation__content-voice-item-title_sub {
    display: inline-block;
    font-size: min(2.4rem, 1.6vw);
    font-weight: bold;
    color: #ffffff;
    background-color: #fcb100;
    padding: 0 10px;
}

.cooperation__content-voice-item-title {
    font-size: min(2.6rem, 1.733vw);
    font-weight: bold;
    color: #232323;
    height: min(75px, 5vw);
    display: flex;
    align-items: center;
    letter-spacing: 0;
    line-height: 1.25;
}

.slider__item._1 .cooperation__content-voice-item-title {
    height: min(73px, 4.866vw);
}

.slider__item._3 .cooperation__content-voice-item-title {
    height: min(73px, 4.866vw);
}

.slider__item._4 .cooperation__content-voice-item-title {
    height: min(73px, 4.866vw);
    letter-spacing: 0.1rem;
}

.cooperation__content-voice-item-text {
    display: inline-block;
    font-size: min(2.2rem, 1.466vw);
    font-weight: bold;
    color: #ffffff;
    background-color: #232323;
    padding: 0 10px;
}

.cooperation__content-voice-item-list li {
    font-size: min(2rem, 1.333vw);
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: min(10px, 0.666vw);
    letter-spacing: -0.05rem;
}

.cooperation__content-voice-item-list-text {
    font-size: min(1.8rem, 1vw);
    font-weight: normal;
}

.cooperation__content-voice-item-list.list-1 {
    position: relative;
    padding: min(15px, 1vw) 0 min(55px, 3.666vw);
}

.slider__item._1 .cooperation__content-voice-item-list.list-1 {
    padding: min(15px, 1vw) 0 min(80px, 5.333vw);
}

.slider__item._3 .cooperation__content-voice-item-list.list-1 {
    padding: min(15px, 1vw) 0 min(83px, 5.533vw);
}

.slider__item._4 .cooperation__content-voice-item-list.list-1 {
    padding: min(15px, 1vw) 0 min(25px, 1.666vw);
}

.cooperation__content-voice-item-list {
    padding: min(15px, 1vw) 0 0;
}

.cooperation__content-voice-item-list.list-1::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: min(20px, 1.333vw) solid transparent;
    border-bottom: min(20px, 1.333vw) solid transparent;
    border-left: min(20px, 1.333vw) solid #fcbc24;
    transform: rotate(90deg);
    left: min(10px, 0.666vw);
    bottom: min(10px, 0.666vw);
}

.slider__item._1 .cooperation__content-voice-item-list.list-1::before {
    bottom: min(25px, 1.666vw);
}

.slider__item._3 .cooperation__content-voice-item-list.list-1::before {
    bottom: min(25px, 1.666vw);
}

.slider__item._4 .cooperation__content-voice-item-list.list-1::before {
    bottom: 0;
}



/* .よくある質問  */
.cooperation__content-faq-title-box {
    text-align: center;
    margin: 70px 0 30px;
}

.cooperation__content-faq-title_sub {
    font-size: 2.8rem;
    color: #232323;
}

.cooperation__content-faq-title {
    font-size: 3.8rem;
    color: #232323;
    font-weight: 700;
}

/* 職種一覧のスタイル */
.cooperation__content-faq-item-title {
    font-size: 2rem;
    max-width: 870px;
    padding: 30px 34px 30px 83px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
    border-radius: 100px;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    background-color: #fcb100;
}

.cooperation__content-faq-item-title::before {
    content: '';
    position: absolute;
    background-image: url('/lp/common/img/cooperation_q_icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 51px;
    height: 51px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.cooperation__content-faq-item-title:hover {
    background-color: #ffc033;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 24px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 24px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.recruitment__content-faq-item-title.is-open .faq-icon::after,
.cooperation__content-faq-item-title.is-open .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    width: 800px;
    margin: 0 auto 20px;
}

.accordion-content.last-item {
    margin-bottom: 0;
}

.accordion-content.is-open.last-item {
    margin-bottom: 0;
}

.accordion-content.is-open {
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.job-categories {
    max-width: 870px;
    background-color: #fff;
    padding: 0 35px;
    font-weight: bold;
}

@media screen and (max-width: 870px) {
    .job-categories {
        max-width: 90%;
    }
}

.job-categories.is-open {
    padding: 28px 35px;
}

@media screen and (min-width: 751px) {
    .job-categories.is-open {
        max-height: 10000px !important;
    }
}

.accordion-content.is-open {
    margin: 20px auto 50px;
}

.job-categories__answer {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.job-categories__section {
    margin-bottom: 30px;
}

.job-categories__title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #232323;
    background-color: #ff7f00;
    padding: 5px 15px;
    margin-bottom: 15px;
    text-align: center;
}

.cooperation__content-faq .job-categories__title {
    background-color: #fcb100;
}

.job-categories__list {
    width: 100%;
    column-count: 5;
    column-gap: 10px;
}

.job-categories__list li {
    width: 140px;
    break-inside: avoid;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.job-categories__list li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    color: #232323;
}

.job-categories__list li.none::before {
    content: '';
}

.accordion-content-text {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 19px;
}

.accordion-content-text .note {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.7;
    margin-top: 16px;
}

.accordion-content-list-item {
    background-color: #929292;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-left: 50px;
    padding: 3px 0 3px 50px;
}

.accordion-content-list-item::before {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 18px;
    top: 11px;
    left: 10px;
}

.accordion-content-list-item._1::before {
    background-image: url('/lp/common/img/white_number_01.png');
}

.accordion-content-list-item._2::before {
    background-image: url('/lp/common/img/white_number_02.png');
}

.accordion-content-list-item._3::before {
    background-image: url('/lp/common/img/white_number_03.png');
}

.accordion-content-list-item._4 {
    background-color: #ff0000;
}

.accordion-content-list-item._4::before {
    background-image: url('/lp/common/img/white_number_04.png');
}

.accordion-content-list .red-arrow {
    display: block;
    width: 15px;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ff0000;
    transform: rotate(90deg);
    margin: 20px auto;
}

@media screen and (min-width: 751px) {
    .companies__slider-track.sp {
        display: none;
    }

    .floating-banner {
        display: none;
    }
}

/* Responsive Problems Section */
@media screen and (max-width: 750px) {

    .header__inner {
        margin: 0 auto;
        padding: 20px 15px 14px;
    }

    .header__inner .header__logo img {
        width: auto;
        height: 22.5px;
    }

    .btn-contact,
    .btn-document {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        height: 45px;
        font-size: 1.8rem;
    }

    .mv {
        padding-top: 60px;
    }

    .mv__inner {
        margin: 0 auto;
        background: url(/lp/common/img/mv-bg_sp.png) bottom / cover;
        padding: 0;
    }

    .mv__title {
        padding-top: 8vw;
        max-width: 90%;
        margin: 0 0 0 2vw;
    }

    .mv__copy {
        max-width: 100%;
        height: min(730px, 97.3333vw);
        margin: 0 auto;
        display: block;
        gap: 0;
        position: relative;
        padding: 0;
    }

    .mv__copy-item-1 {
        width: min(286px, 38.1333vw);
        top: 10px;
        left: min(54px, 7.2000vw);
    }

    .mv__copy-item-2 {
        position: absolute;
        top: min(115px, 15.3333vw);
        left: min(30px, 4.0000vw);
        width: min(266px, 35.4667vw);
        height: min(265px, 35.3333vw);
        z-index: 1;
    }

    .mv__copy-item-3 {
        position: absolute;
        top: min(320px, 42.6667vw);
        left: min(105px, 14.0000vw);
        width: min(266px, 35.4667vw);
        height: min(266px, 35.4667vw);
        z-index: 1;
    }

    .mv .mv__text {
        padding: 1.9vw 0 0;
        font-size: 1.62rem;
    }

    .mv .mv__text::before {
        bottom: -3.8667vw;
        width: 100%;
        height: min(35px, 4.6667vw);
        background-size: 100% 100%;
    }

    .mv__text {
        font-size: 1.8rem;
    }

    .mv__buttons {
        flex-direction: column;
        padding: 4.2vw 3.3vw 3.5vw 3.3vw;
        gap: 2.5vw;
        font-size: 2rem;
    }

    .btn-primary::after,
    .btn-secondary::after {
        right: 15px;
    }

    .companies {
        padding: 15.5px 0 20px;
    }

    .companies__title {
        font-size: 1.9rem;
        margin-bottom: 13px;
    }

    .companies__slider {
        padding: 5px 0;
    }

    .companies__slider-track.sp {
        margin-top: 21px;
    }

    .problems {
        padding: 18px 0 0;
    }

    .problems__title {
        font-size: 1.9rem;
        padding: 1px 22.5px;
    }

    .problems__catch {
        background-position: center;
        background-size: 100% auto;
        padding: 23.5px 0 0;
        height: auto;
    }

    .problems__catch.is-visible {
        background-image: url('/lp/common/img/problems__catch-bg_sp.png');
    }

    .problems__list {
        width: 94.5%;
        margin: -15px auto 0;
        flex-direction: column;
        padding: 42px 20px 25px;
        gap: 15px;
    }

    .problems__item.item-1::before, .problems__item.item-2::before {
        display: none;
    }

    .problems__text {
        font-size: 1.4rem;
        letter-spacing: -0.05em;
    }

    .problems__catch-logo {
        text-align: center;
        padding: 0 96px;
    }

    .problems__check {
        width: 15px;
        height: 15px;
    }

    .problems__text-bold {
        font-size: 1.5rem;
    }

    .problems__subtitle {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .problems__solution {
        padding-bottom: 0;
    }

    .problems__item {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .problems__catch-text {
        padding: 0 25px;
        margin: 0 auto 11.5px;
    }

    .problems__message {
        background-image: none;
    }

    .problems__message {
        margin-top: 13px;
        margin-bottom: 20px;
    }

    .problems__message::before {
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #fabe01;
        left: 50%;
        bottom: -35px;
    }

    .problems__stats {
        display: grid;
        /* 2行2列のグリッドを定義 */
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        /* 各丸の配置を明示的に指定 */
        grid-template-areas:
        "circle1 circle1"
        "circle2 circle3";
        justify-items: center; /* グリッドアイテムを水平方向に中央揃え */
        align-items: center; /* グリッドアイテムを垂直方向に中央揃え */
        width: min(618px, 82.4000vw); /* コンテナの幅を例として設定 */
        height: min(618px, 82.4000vw); /* コンテナの高さを例として設定 */
        margin: auto;
        margin-top: 33vw;
    }

    /* 各要素をグリッドエリアに配置 */
    .problems__stat:nth-child(1) {
        grid-area: circle1; /* 1行目の両方の列を占有 */
        width: 41vw;
        height: 41vw;
        margin-bottom: -11vw;
    }

    .problems__stat:nth-child(2) {
        grid-area: circle2; /* 2行目の1列目に配置 */
        width: 41vw;
        height: 43vw;
    }

    .problems__stat:nth-child(3) {
        grid-area: circle3; /* 2行目の2列目に配置 */
        width: 41vw;
        height: 43vw;
    }

    .problems__stat img {
        width: 100%;
        height: 100%;
    }

    .problems__service-buttons {
        width: 45.2vw;
        margin: min(85px, 11.3333vw) auto min(45px, 6.0000vw);
        gap: min(22px, 2.9333vw);
    }

    .problems__service-buttons a:hover {
        transform: translateY(2.01vw);
        height: min(242px, 32.2667vw);
        border-radius: 0 0 min(20px, 2.6667vw) min(20px, 2.6667vw);
    }

    .problems__services {
        flex-direction: column;
    }

    .problems__buttons {
        flex-direction: column;
        padding: 20px 0 27px;
    }

    .problems__buttons-text {
        font-size: 1.7rem;
        margin-bottom: 0;
    }

    .btn-contact, .btn-document {
        font-size: 1.8rem;
        padding: 7px 0;
    }

    .problems__buttons-links {
        flex-direction: column;
        gap: 9px;
        width: 92.5%;
        margin: 0 auto;
    }

    /* 実績・権威表示 */
    .achievements {
        padding: 10px 0 19px;
    }

    .achievements .section__inner {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .achievements__content {
        width: min(415px, 55.3333vw);
        gap: 20px;
    }

    .achievements .section__title {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    .achievements .section__title-sub {
        font-size: 2.2rem;
    }

    /* 協力会社を探すならのコンテンツ */
    .recruitment-cooperation__buttons {
        width: 73.5%;
        height: 48px;
        margin: 34px auto 0;
    }

    .cooperation {
        border-top: 5px solid #fcb100;
    }

    .btn-cooperation {
        padding: 11px 0;
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .recruitment__content-item-title, .cooperation__content-item-title {
        font-size: 3.5rem;
        margin-top: -24px;
    }

    .recruitment__content-item-title-sub, .cooperation__content-item-title-sub {
        font-size: 2.6rem;
    }

    .recruitment__content-item-text, .cooperation__content-item-text {
        margin-top: 4px;
        font-size: 1.65rem;
    }

    .cooperation__content-item-text {
        margin-top: 10px;
        line-height: 1.4;
    }

    .recruitment__content-item {
        margin-bottom: 12px;
    }

    .cooperation__content-item {
        margin-bottom: 15px;
    }

    .recruitment__content-items-points-title-sub, .cooperation__content-items-points-title-sub {
        font-size: 1.8rem;
    }

    .recruitment__content-items-points-title, .cooperation__content-items-points-title {
        font-size: 2.1rem;
    }

    .recruitment__content-items-points-title::after {
        width: 257px;
        border-bottom: 9px solid #ff7f00;
    }

    .cooperation__content-items-points-title::after {
        width: 257px;
        border-bottom: 9px solid #fcb100;
    }

    .recruitment__content-items-points-items, .cooperation__content-items-points-items {
        width: 86%;
        max-width: 650px;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 7px auto 0;
    }

    .recruitment__content-items-points-items .item, .cooperation__content-items-points-items .item {
        width: 100%;
        max-width: 650px;
        box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
        padding: 15px 12px 16px 17px;
    }

    .recruitment__content-items, .cooperation__content-items {
        width: 93.5%;
        gap: 5px;
        margin: 0 auto;
    }

    .recruitment__content-items-points {
        padding-top: 17.5px;
    }

    .cooperation__content-items-points {
        padding-top: 21px;
    }

    .recruitment__content-items-points-items-title, .cooperation__content-items-points-items-title {
        font-size: 1.75rem;
        letter-spacing: -0.06em;
        padding-left: 68px;
        padding-bottom: 5px;
    }

    .recruitment__content-items-points-items-text, .cooperation__content-items-points-items-text {
        font-size: 1.5rem;
        padding-top: 6px;
        padding-bottom: 0;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .recruitment__content-items-points-items-text .note, .cooperation__content-items-points-items-text .note {
        font-size: 1rem;
    }

    .item._2 .cooperation__content-items-points-items-title {
        padding-top: 0;
        padding-bottom: 5px;
    }

    .recruitment__content-items-points-items .item._1 .recruitment__content-items-points-items-title::before, .cooperation__content-items-points-items .item._1 .cooperation__content-items-points-items-title::before {
        width: 50px;
        height: 42px;
    }

    .recruitment__content-items-points-items .item._2 .recruitment__content-items-points-items-title::before, .cooperation__content-items-points-items .item._2 .cooperation__content-items-points-items-title::before {
        width: 59px;
        height: 42px;
    }

    .recruitment__content-items-points-items .item._3 .recruitment__content-items-points-items-title::before, .cooperation__content-items-points-items .item._3 .cooperation__content-items-points-items-title::before {
        width: 60px;
        height: 42px;
    }

    .recruitment__content-items-points-items .item._4 .recruitment__content-items-points-items-title::before, .cooperation__content-items-points-items .item._4 .cooperation__content-items-points-items-title::before {
        width: 57px;
        height: 37px;
    }

    .recruitment__content-voice, .cooperation__content-voice {
        margin: 28px 0 0;
        padding: 18.5px 0 30px;
    }

    .recruitment__content-voice-title-text, .cooperation__content-voice-title-text {
        font-size: 1.8rem;
    }

    .recruitment__content-voice-title-sub, .cooperation__content-voice-title-sub {
        font-size: 2.3rem;
    }

    .recruitment__content-voice-title, .cooperation__content-voice-title {
        margin-bottom: 18.5px;
    }

    .recruitment__content-voice-item .slick-prev:before, .recruitment__content-voice-item .slick-next:before, .cooperation__content-voice-item .slick-prev:before, .cooperation__content-voice-item .slick-next:before {
        width: 24px;
        height: 40px;
    }

    .recruitment__content-voice-item .slick-prev, .cooperation__content-voice-item .slick-prev {
        left: 1.5%;
    }

    .recruitment__content-voice-item .slick-next, .cooperation__content-voice-item .slick-next {
        right: 1.5%;
    }

    .slider__item {
        margin: 0 25px;
        padding: 20px 21px;
        height: 555px !important;
        line-height: 1.25;
    }

    .recruitment__content-voice-item-title_sub, .cooperation__content-voice-item-title_sub {
        font-size: 1.6rem;
    }

    .cooperation__content-voice-item-title_sub {
        letter-spacing: -0.065rem;
    }

    .recruitment__content-voice-item-title, .cooperation__content-voice-item-title {
        font-size: 1.65rem;
        letter-spacing: -0.1rem;
        padding: 1px 0;
    }

    .recruitment__content-voice-item-title {
        height: 45px;
    }

    .cooperation__content-voice-item-title {
        height: 55px;
    }

    .slider__item._1 .cooperation__content-voice-item-title {
        height: 55px;
    }

    .slider__item._3 .cooperation__content-voice-item-title {
        height: 55px;
    }

    .slider__item._1 .recruitment__content-voice-item-title, .cooperation__content-voice-item-title {
        padding: 2px 0;
    }

    .slider__item._1 .recruitment__content-voice-item-title {
        height: 62px;
    }

    .recruitment__content-voice-item-text, .cooperation__content-voice-item-text {
        padding: 1px 5px;
        font-size: 1.4rem;
    }

    .recruitment__content-voice-item-list li, .cooperation__content-voice-item-list li {
        font-size: 1.15rem;
    }

    .recruitment__content-voice-item-list-text, .cooperation__content-voice-item-list-text {
        font-size: 1.15rem;
    }

    .recruitment__content-voice-item-list.list-1::before, .cooperation__content-voice-item-list.list-1::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #fcbc24;
    }

    .slider__item._2 .recruitment__content-voice-item-list.list-1::before, .cooperation__content-voice-item-list.list-1::before {
        bottom: -4px;
    }

    .slider__item._3 .recruitment__content-voice-item-list.list-1 {
        padding: 1.2vw 0 3.2vw;
    }

    .slider__item._1 .recruitment__content-voice-item-list.list-1::before {
        bottom: 4%;
    }

    .slider__item._3 .recruitment__content-voice-item-list.list-1::before {
        bottom: -3px;
    }

    .recruitment__content-voice-item-list.list-1, .cooperation__content-voice-item-list.list-1 {
        padding: 5px 0 20px;
        height: auto;
    }

    .slider__item._2 .recruitment__content-voice-item-list.list-1, .cooperation__content-voice-item-list.list-1 {
        padding: 5px 0 10px;
    }

    .slider__item::after {
        width: 198px;
        height: 110px;
        bottom: 5.5vw;
    }

    .recruitment__content-voice-item .slider__item._3::after {
        bottom: 2.5vw;
    }

    .recruitment__content-faq-title_sub, .cooperation__content-faq-title_sub {
        font-size: 1.6rem;
    }

    .recruitment__content-faq-title, .cooperation__content-faq-title {
        font-size: 2.3rem;
    }

    .recruitment__content-faq-title-box, .cooperation__content-faq-title-box {
        margin: 31px 0 11.5px;
        line-height: 1.75;
    }

    .recruitment__content-faq-item, .cooperation__content-faq-item {
        padding: 0 27px;
    }

    .faq-title-text {
        font-size: 1.6rem;
    }

    .recruitment__content-faq-item-title, .cooperation__content-faq-item-title {
        padding: 17.5px 13px 17.5px 50px;
        height: auto;
        font-size: 1.6rem;
        text-align: left;
    }

    .recruitment__content-faq-item-title::before, .cooperation__content-faq-item-title::before {
        width: 35px;
        height: 35px;
        left: 8px;
    }

    .recruitment__content-voice-item .slick-dots, .cooperation__content-voice-item .slick-dots {
        bottom: -40px;
    }

    .recruitment__content-voice-item .slick-dots li.slick-active button:before, .cooperation__content-voice-item .slick-dots li.slick-active button:before {
        font-size: 20px;
    }

    .cooperation .section__title {
        background-image: url(/lp/common/img/cooperation-title-bg_sp.png);
        height: min(310px, 41.3333vw);
        padding-top: 7.5px;
        line-height: 1.3;
    }

    .cooperation .section__title-sub {
        font-size: 1.8rem;
    }

    .cooperation .section__title img {
        width: min(293px, 39.0666vw);
    }

    .slider__item._4 .cooperation__content-voice-item-title {
        height: 45px;
    }

    .cooperation__content-voice-item .slider__item._4::after {
        bottom: 2.5vw;
    }

    .slider__item._4 .cooperation__content-voice-item-list.list-1 {
        padding: 5px 0 10px;
    }

    .slider__item._1 .cooperation__content-voice-item-list.list-1::before {
        bottom: 0;
    }

    .slider__item._3 .cooperation__content-voice-item-list.list-1::before {
        bottom: 0;
    }

    .slider__item._4 .cooperation__content-voice-item-list.list-1::before {
        bottom: -3px;
    }

    /* よくある質問 */
    .faq-icon {
        width: 15px;
        height: 15px;
    }

    .faq-icon::before {
        width: 15px;
        height: 2.5px;
    }

    .faq-icon::after {
        width: 2.5px;
        height: 15px;
    }

    .job-categories__answer {
        font-size: 1.2rem;
        letter-spacing: 0;
        white-space: nowrap;
        margin-bottom: 5px;
    }

    .job-categories {
        max-width: 100%;
    }

    .job-categories.is-open {
        padding: 18px 25px;
    }

    .job-categories__title {
        font-size: 1.2rem;
        padding: 1px 15px;
        margin-bottom: 8px;
    }

    .job-categories__section {
        margin-bottom: 8px;
    }

    .job-categories__list {
        column-count: 3;
        column-gap: 10px;
    }

    .job-categories__list li {
        width: 97%;
        font-size: 1.1rem;
        letter-spacing: 0;
        padding-left: 10px;
        line-height: 1.3;
    }

    .job-categories__section.sp {
        display: block;
    }

    .job-categories__list.denki {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .job-categories__list.denki li {
        display: block;
    }

    .accordion-content._2,
    .accordion-content._3,
    .accordion-content._4,
    .accordion-content._5,
    .accordion-content.last-item {
        width: 90%;
    }

    .accordion-content.is-open {
        margin: 17.5px auto 30px;
    }

    .accordion-content-text {
        font-size: 1.2rem;
        margin-bottom: 15px;
        letter-spacing: 0;
    }

    .accordion-content-list .red-arrow {
        margin: 5px auto 0;
    }

    .accordion-content-list-item {
        font-size: 1.6rem;
        padding: 11px 0 11px 50px;
    }

    .accordion-content-list-item::before {
        top: 15px;
    }

    .accordion-content-text .note {
        font-size: 1rem;
        margin-top: 10px;
    }

    /* Floating Banner */
.floating-banner {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 5px 25px 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-banner.is-visible {
    opacity: 1;
    visibility: visible;
}

    .floating-banner__title {
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
    }

    .floating-banner__inner {
        display: flex;
        gap: 17px;
        justify-content: center;
    }

    .floating-banner__button {
        display: block;
        transition: transform 0.3s ease;
    }

    .floating-banner__button:hover {
        transform: translateY(-4px);
        opacity: 1;
    }

    .floating-banner__button img {
        width: 200px;
        height: auto;
    }

/* Responsive Footer */
    .footer {
        padding: 60px 0;
    }

    .footer__inner {
        padding: 0 12.5px;
    }

    .footer__top {
        flex-direction: column;
        gap: 40px;
    }

    .footer__left,
    .footer__right {
        text-align: center;
    }

    .footer__right {
        order: 1;
    }

    .footer__left {
        order: 2;
    }

    .footer__social,
    .footer__nav-list,
    .footer__app-buttons {
        justify-content: center;
    }

    .footer__nav-list {
        display: flex;
        text-align: center;
        flex-direction: row;
        font-size: 1.2rem;
        gap: 5px;
    }

    .footer__nav-list li {
        margin-bottom: 0;
    }

    .footer__nav-list li::after {
        content: '/';
        margin: 0 10px;
        color: #626262;
    }

    .footer__nav-list li:last-child::after {
        display: none;
    }

    .footer__app-text {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 37px;
    }

    .footer__logo {
        margin-bottom: 50px;
    }

    .footer__app-buttons {
        gap: 14px;
        margin-bottom: 32.5px;
    }

    .app-button img {
        height: 57.5px;
    }

    .footer__support-button {
        padding: 15px 30px;
        border: 2px solid #fff;
        border-radius: 50px;
        font-size: 1.7rem;
    }

}
