/* ===============================================
# リセットcss
=============================================== */
body {
    margin: 0;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    max-width: 100%;
    display: block;
}

h2,
h3 {
    margin: 0;
}

ul {
    padding-left: 0;
    margin: 0;
}

li {
    font-size: unset;
    margin: 0;
    list-style: none;
}

p {
    margin: 0;
}

/* ===============================================
# 全体設定
=============================================== */
body {
    color: #323232;
}

.l-inner {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 16px;
}

.l-inner-middle {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 16px;
}

.l-inner-small {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 750px) {
    .l-inner {
        max-width: 1266px;
        padding: 0 20px;
    }
    
    .l-inner-middle {
        max-width: 650px;
        padding: 0 20px;
    }
    
    .l-inner-small {
        max-width: 550px;
        padding: 0 20px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.u-desktop {
    display: none;
}

.u-mobile {
    display: block;
}

@media (min-width: 540px) {
    .u-desktop {
        display: inline;
    }

    .u-mobile {
        display: none;
    }
}



/* ===============================================
# mv
=============================================== */
.summary-mv {
    width: 100%;
    /* height: 490px; */
    /* height: 490px; */
    aspect-ratio: 375 / 490;
    background-color: #000;
    background-image: url('../images/content/lp-summary/mv--sp.png');
    background-image: image-set(url('../images/content/lp-summary/mv--sp.webp') type('image/webp'),
            url('../images/content/lp-summary/mv-bg--sp.png') type('image/jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}

.summary-mv__content {
    margin: 0 auto;
    width: fit-content;
    height: 100%;
    /* position: relative; */
}

.image-container1 {
    position: absolute;
    width: 126px;
    height: auto;
    right: 94px;
    top: 31%;
}

.image-container2 {
    position: absolute;
    width: 105px;
    height: auto;
    right: 20px;
    top: 49%;
}

.image-container1 img {
    display: block;
    width: 100%;
    height: auto;
    animation: floatAnimation 2s ease-in-out infinite;
}

.image-container2 img {
    display: block;
    width: 100%;
    height: auto;
    animation: floatAnimation2 2s ease-in-out infinite;
}

.sparkle {
    position: absolute;
    background-image: url('../images/content/lp-summary/icon-sparkle.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24.2px;
    height: 24.2px;
    opacity: 0;
}

.sparkle-2 {
    top: 2%;
    right: -15%;
    animation:
        twinkle .7s infinite alternate,
        floatAnimation 2s ease-in-out infinite;
}

.sparkle-3 {
    bottom: -7%;
    right: 20%;
    animation:
        twinkle .7s infinite alternate,
        floatAnimation 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.sparkle-4 {
    top: 20%;
    right: -2%;
    animation:
        twinkle .7s infinite alternate,
        floatAnimation2 2s ease-in-out infinite;
    animation-delay: 0.6s;
}

.sparkle-5 {
    bottom: 15%;
    left: -10%;
    animation:
        twinkle .7s infinite alternate,
        floatAnimation2 2s ease-in-out infinite;
    animation-delay: 0.45s;
}

/* アニメーションのキーフレーム（変更なし） */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatAnimation2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


@media (min-width: 540px) {
    .summary-mv {
        background-image: url('../images/content/lp-summary/mv-bg--pc.png');
        background-image: image-set(url('../images/content/lp-summary/mv-bg--pc.webp') type('image/webp'),
                url('../images/content/lp-summary/mv-bg--pc.png') type('image/png'));
        height: 491px;
        aspect-ratio: unset;
        background-size: cover;
        position: static;
        padding-top: 20px;
    }

    .summary-mv__content {
        position: relative;
    }

    .image-container1 {
        right: -9px;
        top: 26%;
    }

    .image-container2 {
        right: -60px;
        top: 47%;
    }
}

/* ===============================================
# cv
=============================================== */
.summary-cv {
    background-color: #FF7B26;
    padding: 16px 0 16px;
}

.summary-cv__subTitle {
    color: #FEFFA5;
    font-size: 17.5px;
    width: fit-content;
    margin: 0 auto 4px;
    position: relative;
    font-weight: 600;
}

.summary-cv__subTitle::before {
    position: absolute;
    content: "";
    background-image: url('../images/content/lp-summary/icon-title--left.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 15.6px;
}

.summary-cv__subTitle::after {
    position: absolute;
    content: "";
    background-image: url('../images/content/lp-summary/icon-title--right.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 15.6px;
}

.summary-cv__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    max-width: 600px;
}

.summary-cv__title {
    width: 276px;
    height: auto;
    margin: 0 auto 5px;
}



@media (min-width: 750px) {
    .summary-cv {
        padding: 28px 0;
    }

    .summary-cv__subTitle {
        font-size: 24px;
    }

    .summary-cv__title {
        width: 400px;
    }

    .summary-cv__subTitle::before {
        width: 20px;
        height: 20px;
        left: -40px;
    }

    .summary-cv__subTitle::after {
        width: 20px;
        height: 20px;
        right: -40px;
    }
}

/* ===============================================
# about
=============================================== */
.summary-about {
    background-color: #fff;
    padding: 32px 0 0;
}

.summary-about__title {
    color: #158CDD;
    font-weight: 800;
    text-align: center;
    font-size: 28px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 16px;
}

.summary-about__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFC53F;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.summary-about__items {
    max-width: 600px;
    margin: 0 auto;
}

.summary-about__item {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.summary-about__item:last-child {
    margin-bottom: 24px;
}

.summary-about__banner {
    width: 100%;
    max-width: 510px;
    margin: 0 auto;
}

@media (min-width: 750px) {
    .summary-about {
        padding: 48px 0 0;
    }

    .summary-about__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-about__title::after {
        width: 74px;
    }

    .summary-about__items {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        gap: 20px;
        margin-bottom: 24px;
    }
}

/* ===============================================
# features
=============================================== */
.summary-features {
    background-color: #DBF4FF;
    padding: 32px 0;
}

.summary-features__title {
    font-size: 28px;
    color: #158CDD;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    font-weight: 800;
    margin-bottom: 24px;
}

.summary-features__title span {
    font-size: 22px;
}

.summary-features__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFC53F;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.summary-features__subTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.summary-features__text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

.summary-features__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr 1fr; */
    gap: 24px 15px;
    max-width: 600px;
    margin: 0 auto;
}

.summary-features__item {
    background-color: #fff;
    border: 1px solid #BDD9E3;
    border-radius: 10px;
}

.summary-features__item--icon {
    margin-bottom: 8px;
}

.summary-features__item--icon img {
    border-radius: 10px 10px 0 0;
}

.summary-features__item--text {
    color: #004665;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    font-size: 13px;
    padding: 8px 5px 10px;
    line-height: 1.5;
    letter-spacing: -0.03em;
}

.summary-features__item--text span {
    font-weight: 800;
    background: linear-gradient(transparent 60%, #FFE178 60%);
}

@media (min-width: 750px) {
    .summary-features__items {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        max-width: 100%;
        gap: 32px;
    }

    .summary-features {
        padding: 48px 0;
    }

    .summary-features__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-features__title::after {
        width: 74px;
    }

    .summary-features__subTitle {
        font-size: 22px;
        text-align: center;
    }

    .summary-features__text {
        font-size: 16px;
        text-align: center;
        margin-bottom: 32px;
    }

    .summary-features__item--text {
        font-size: 15px;
        line-height: 1.3;
        letter-spacing: 0;
    }
}

/* ===============================================
# anx
=============================================== */
.summary-anx {
    padding-top: 36px;
}

.summary-anx__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.summary-anx__title span {
    font-size: 18px;
}

.summary-anx__items {
    max-width: 580px;
    margin: 0 auto 40px;
    background-color: #DBF2FB;
    padding: 20px 20px;
    position: relative;
    border-radius: 7px;
}

.summary-anx__items::before {
    position: absolute;
    content: "";
    background-image: url('../images/content/lp-summary/anx-triangle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 44px;
    height: 15px;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.summary-anx__items--icon1 {
    position: absolute;
    top: -74px;
    left: 0;
    width: 83px;
    height: auto;
    z-index: -1;
}

.summary-anx__items--icon2 {
    position: absolute;
    top: -32px;
    right: 16px;
    width: 50px;
    height: auto;
    z-index: 0;
}

.summary-anx__item {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.summary-anx__item:last-child {
    margin-bottom: 0;
}

.summary-anx__item--icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.summary-anx__item--text span {
    font-weight: 700;
}

.summary-anx__titleBlock {
    width: 274px;
    height: auto;
    margin: 0 auto 24px;
}

.summary-anx__text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
}

.summary-anx__text span {
    font-weight: 700;
    color: #158CDD;
}

@media (min-width: 750px) {
    .summary-anx {
        padding-top: 60px;
    }
    .summary-anx__titleBlock {
        width: 300px;
    }

    .summary-anx__text {
        font-size: 16px;
    }

    .summary-anx__items {
        padding: 24px 20px;
    }
    
    .summary-anx__item{
        font-size: 17px;
    }

    .summary-anx__item--icon {
        width: 17px;
        height: 17px;
    }

    .summary-anx__items--icon1 {
        width: 100px;
        top: -90px;
    }

    .summary-anx__title {
        font-size: 28px;
        line-height: 1;
    }

    .summary-anx__title span {
        font-size: 20px;
    }

    .summary-anx__items--icon2 {
        width: 72px;
        top: -47px;
    }
}

/* ===============================================
# voice
=============================================== */
.summary-voice {
    background-color: #fff;
    padding: 32px 0 45px;
}

.summary-voice__title {
    color: #158CDD;
    font-weight: 800;
    text-align: center;
    font-size: 28px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 32px;
}

.summary-voice__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFC53F;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.summary-voice__subTitle {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.summary-voice__text {
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto 32px;
    max-width: 550px;
}

.summary-voice__items {
    max-width: 350px;
    margin: 0 auto;
}

.summary-voice__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.summary-voice__item:last-child {
    margin-bottom: 0;
}

.summary-voice__item:nth-child(odd) {
    flex-direction: row-reverse;
}

.summary-voice__icon {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
}

.summary-voice__comment {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-voice__comment span {
    color: #FF7B26;
}

.summary-voice__comment--right {
    /* background-image: url('../images/content/lp-summary/voice-comment--right.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 246px;
    height: 82px;
    padding: 17px 15px; */
    background-color: #DBF2FB;
    border-radius: 24px 24px 0 24px;
    padding: 14px 12px;
}

.summary-voice__comment--left {
    /* background-image: url('../images/content/lp-summary/voice-comment--left.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 246px;
    height: 82px;
    padding: 17px 10px; */
    background-color: #DBF2FB;
    border-radius: 24px 24px 24px 0;
    padding: 14px 12px;
}

@media (min-width: 540px) {
    .summary-voice {
        padding: 32px 0 74px;
    }

    .summary-voice__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-voice__subTitle {
        font-size: 22px;
    }

    .summary-voice__title::after {
        width: 74px;
    }

    .summary-voice__text {
        font-size: 16px;
    }
}

/* ===============================================
# toushika
=============================================== */
.summary-toushika {
    /* background-color: #DBF4FF; */
    background: linear-gradient(to bottom,
            #E6F9FF 25%,
            #BAF1FF 65%,
            #FFFBDB 100%
        );
    padding: 74px 0 20px;
}

.summary-toushika__title {
    color: #FF8400;
    text-align: center;
    position: relative;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    font-size: 24.4px;
    position: relative;
}

.summary-toushika__title::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    /* font-size: 17.7px;
    font-weight: 500;
    color: #167BCD;
    line-height: 1.2; */
    background-image: url('../images/content/lp-summary/text-sarani.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 88px;
    height: 29px;
}

.summary-toushika__title--blue {
    color: #158CDD;
    font-size: 22px;
}

@media (min-width: 750px) {
    .summary-toushika__title::before {
        width: 120px;
        height: 40px;
        top: -40px;
    }

    .summary-toushika__title--blue {
        font-size: 30px;
    }
}


.summary-toushika__title--smallBlack {
    font-size: 17.5px;
    color: #323232;
}

.summary-toushika__title--big {
    text-emphasis: '・' #FF4545;
    -webkit-text-emphasis: '・' #FF4545;
    text-emphasis-position: over right;
    color: #FF4545;
}

.summary-toushika__title--smallOrange {
    font-size: 18px;
    /* color: #FF8400; */
}



/* .summary-toushika__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFDD17;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
} */

.summary-toushika__bubble {
    width: 355px;
    max-width: 100%;
    margin: 0 auto 16px;
}

.summary-toushika__text {
    font-size: 14px;
    color: #00223D;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.summary-toushika__text--main {
    font-size: 14px;
    color: #00223D;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.summary-toushika__text--main span {
    color: #FF4545;
    font-weight: 800;
}

.summary-toushika__banner {
    width: 100vw;
    /* max-width: 580px;
    margin: 0 auto; */
    margin: 0 calc(50% - 50vw);
}

.summary-toushika__banner--desktop {
display: none;
}


@media (min-width: 750px) {
    .summary-toushika {
        padding: 74px 0 32px;
    }

    .summary-toushika__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-toushika__title::before {
        font-size: 24px;
    }

    .summary-toushika__title--red {
        font-size: 30px;
    }

    .summary-toushika__title--smallBlack {
        font-size: 24px;
    }

    .summary-toushika__title--smallOrange {
        font-size: 22px;
    }

    .summary-toushika__title::before {
        top: -44px;
    }

    .summary-trial__title::after {
        width: 74px;
    }

    .summary-toushika__bubble {
        width: 530px;
    }

    .summary-toushika__text {
        font-size: 18px;
    }

    .summary-toushika__text--main {
        font-size: 18px;
    }

    .summary-toushika {
        padding-top: 100px;
    }
}

@media (min-width: 540px) {
    .summary-toushika__banner--desktop {
        width: 100%;
        margin: 40px auto 0;
        margin-top: 40px;
        max-width: 600px;
        display: block;
    }
}

/* ===============================================
# owner
=============================================== */
.summary-owner {
    background-color: #B5EAFF;
    padding: 6px 0 28px;
    text-align: center;
}

.summary-owner__title {
    max-width: 274px;
    width: 100%;
    height: auto;
    margin: 0 auto 8px;
}

.summary-owner__text {
    font-size: 14px;
    font-weight: 600;
    color: #00223D;
    text-align: center;
    display: inline-block;
    border-bottom: 3px dotted white;
    padding-bottom: 4px;
    margin-bottom: 7px;
}

.summary-owner__text span {
    color: #FF4545;
    font-weight: 800;
}

.summary-owner__subText {
    font-size: 8px;
    font-weight: 600;
    margin-top: 10px;
}

@media (min-width: 750px) {
    .summary-owner {
        padding: 20px 0 32px;
    }

    .summary-owner__title {
        max-width: 355px;
        margin-bottom: 16px;
    }

    .summary-owner__text {
        font-size: 18px;
    }

    .summary-owner__subText {
        font-size: 10px;
    }
}

/* ===============================================
# qa
=============================================== */
.summary-qa {
    background-color: #fff;
    padding: 32px 0 22px;
}

.summary-qa__title {
    font-size: 28px;
    color: #158CDD;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    font-weight: 800;
    margin-bottom: 24px;
}

.summary-qa__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFDD17;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.summary-qa__title2 {
    font-size: 26px;
    color: #158CDD;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    font-weight: 800;
    margin-bottom: 24px;
    margin-top: 24px;
}

.summary-qa__title2 span {
    font-size: 24px;
}

.summary-qa__title2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFDD17;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}



/* アコーディオン全体のコンテナ */
.accordion {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 12px;
}

/* 質問部分のボタン */
.accordion-header {
    background-color: #158CDD;
    color: white;
    cursor: pointer;
    padding: 18px 16px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-radius 0.3s ease;
}

.accordion-title {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.accordion-title span {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* プラス・マイナスのアイコン */
.accordion-icon {
    width: 26px;
    height: 26px;
    background-color: #FFC305;
    color: #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    /* アイコンが縮まないようにする */
}

/* アイコンの横棒（-） */
.accordion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 3px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

/* アイコンの縦棒（+） */
.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 14px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease-out;
    border-radius: 50px;/
}

/* 開いている時は縦棒を非表示にする */
.accordion-header.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}


/* 回答部分のコンテンツ */
.accordion-content {
    padding-top: 0;
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.accordion-content p {
    width: 100%;
    background-color: #DBF4FF;
    border-radius: 16px;
    padding: 24px 16px;
    display: inline-block;
    box-sizing: border-box;
}

.accordion-header.active+.accordion-content {
    padding-top: 8px;
}

@media (min-width: 540px) {
    .summary-qa {
        padding: 48px 0;
    }

    .summary-qa__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-qa__title::after {
        width: 74px;
    }

    .accordion {
        max-width: 100%;
    }

    .accordion-header {
        padding: 22px 32px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-title span {
        font-size: 24px;
    }

    .accordion-item {
        margin-bottom: 20px;
    }

    .accordion-content p {
        padding: 32px 24px;
        font-size: 16px;
        border-radius: 20px;
    }
}

/* ===============================================
# footer
=============================================== */
.summary-footer {
    padding: 30px 0;
    background-color: #EEF2F7;
}

.summary-footer__logo {
    width: 180px;
    height: auto;
    margin-bottom: 32px;
}

.summary-footer__item {
    margin-bottom: 16px;
    line-height: 1.2;
}

..summary-footer__item:last-child {
    margin-bottom: 0;
}

.summary-footer__item a {
    text-decoration: none;
    color: #323232;
    font-size: 14px;
}

@media (min-width: 750px) {
    .summary-footer {
        padding: 40px 0;
    }

    .summary-footer__logo {
        width: 200px;
    }

    .summary-footer__item a {
        font-size: 16px;
    }
}