/* ===============================================
# リセット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: 1266px;
    margin: 0 auto;
    padding: 0 16px;
}

.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: 102px;
    height: 102px;
    right: 94px;
    top: 31%;
}

.image-container2 {
    position: absolute;
    width: 102px;
    height: 102px;
    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: 25px;
        top: 27%;
    }

    .image-container2 {
        right: -30px;
        top: 48%;
    }
}

/* ===============================================
# cv
=============================================== */
.summary-cv {
    background-color: #EF5252;
    padding: 16px 0 16px;
}

.summary-cv__subTitle {
    color: #FFE178;
    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: #03A4C8;
    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: #FFDD17;
    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: #03A4C8;
    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: #FFDD17;
    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;
}

.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: 15px;
}

.summary-features__item--icon {
    margin-bottom: 8px;
}

.summary-features__item--text {
    color: #004665;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    font-size: 14px;
    padding: 8px 10px 10px;
    line-height: 1.5;
}

.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: 16px;
        line-height: 1.3;
    }
}

/* ===============================================
# voice
=============================================== */
.summary-voice {
    background-color: #fff;
    padding: 32px 0 45px;
}

.summary-voice__title {
    color: #03A4C8;
    font-weight: 800;
    text-align: center;
    font-size: 28px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 16px;
}

.summary-voice__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFDD17;
    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__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;
}

.summary-voice__comment {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-voice__comment span {
    color: #EF5252;
}

.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;
}

.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;
}

@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;
    }
}

/* ===============================================
# kabutasu
=============================================== */
.summary-kabutasu {
    /* background-color: #DBF4FF; */
    background: linear-gradient(to bottom,
            /* 上から下へ */
            #E6F9FF 25%,
            /* 0%〜25%まではこの色 */
            #BAF1FF 65%,
            /* 65%の地点でこの色 */
            #FFFBDB 100%
            /* 最後はこの色 */
        );
    padding: 74px 0 0;
}

.summary-kabutasu__title {
    color: #FF8400;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 0.5;
    font-size: 24.4px;
    position: relative;
}

.summary-kabutasu__title::before {
    content: "さらに";
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17.7px;
    font-weight: 500;
    color: #167BCD;
    line-height: 1.2;
}

.summary-kabutasu__title--red {
    color: #FF0000;
    font-size: 22px;
}

.summary-kabutasu__title--smallBlack {
    font-size: 17.5px;
    color: #323232;
}

.summary-kabutasu__title--big {
    text-emphasis: '・' #FF8400;
    -webkit-text-emphasis: '・' #FF8400;
    text-emphasis-position: over right;
}

.summary-kabutasu__title--smallOrange {
    font-size: 18px;
    /* color: #FF8400; */
}



.summary-kabutasu__title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: #FFDD17;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.summary-kabutasu__bubble {
    width: 355px;
    max-width: 100%;
    margin: 0 auto 16px;
}

.summary-kabutasu__text {
    font-size: 14px;
    color: #00223D;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.summary-kabutasu__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-kabutasu__text--main span {
    color: #FF4545;
    font-weight: 800;
}

.summary-kabutasu__banner {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}


@media (min-width: 750px) {
    .summary-kabutasu {
        padding: 74px 0 0;
    }

    .summary-kabutasu__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .summary-kabutasu__title::before {
        font-size: 24px;
    }

    .summary-kabutasu__title--red {
        font-size: 30px;
    }

    .summary-kabutasu__title--smallBlack {
        font-size: 24px;
    }

    .summary-kabutasu__title--smallOrange {
        font-size: 22px;
    }

    .summary-kabutasu__title::before {
        top: -44px;
    }

    .summary-trial__title::after {
        width: 74px;
    }

    .summary-kabutasu__bubble {
        width: 530px;
    }

    .summary-kabutasu__text {
        font-size: 18px;
    }

    .summary-kabutasu__text--main {
        font-size: 18px;
    }

    .summary-kabutasu__banner {
        margin-top: 40px;
    }

    .summary-kabutasu {
        padding-top: 100px;
    }
}

/* ===============================================
# owner
=============================================== */
.summary-owner {
    background-color: #72DBF3;
    padding: 6px 0 14px;
    text-align: center;
}

.summary-owner__title {
    max-width: 305px;
    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;
}

@media (min-width: 750px) {
    .summary-owner {
        padding: 20px 0 32px;
    }

    .summary-owner__title {
        max-width: 415px;
        margin-bottom: 16px;
    }

    .summary-owner__text {
        font-size: 17px;
    }
}

/* ===============================================
# qa
=============================================== */
.summary-qa {
    background-color: #fff;
    padding: 32px 0 0;
}

.summary-qa__title {
    font-size: 28px;
    color: #03A4C8;
    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%);
}

/* アコーディオン全体のコンテナ */
.accordion {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 12px;
}

/* 質問部分のボタン */
.accordion-header {
    background-color: #03A4C8;
    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: 116px;
    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: 146px;
    }

    .summary-footer__item a {
        font-size: 16px;
    }
}