main {
    min-height: unset;
}

.pageTitle.pageTitle--high.bg-mobcon {
    background: url("../../img/header-mobcon.png") no-repeat center / cover;
}

/* footer */
.footer--withButton {
    padding-top: 0 !important;
    height: auto;
}

.inner {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 95%;
}

.w960 {
    max-width: 960px;
}

.page-header {
    margin-bottom: 48px;
    .en {
        margin-bottom: 0.8px;
        font-family: "Montserrat", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #26a69a;
        text-align: center;
    }
    .jp {
        font-family: "Noto Sans JP", sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 56px;
        letter-spacing: 1px;
        color: #4c4d56;
        text-align: center;
    }
}

.pageTitle--high {
    height: 619px;
    padding: 72px 80px 0;
}

.banner-text-top {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 2px;
    color: #4c4d56;
    margin-bottom: 13px;
    background: #fff;
    position: relative;
    z-index: 1;
    max-width: 561px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-btn {
    background-color: #ff7043;
    height: 52px;
    width: 100%;
    max-width: 363px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    border-radius: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(255, 112, 67, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 45%;
        height: 100%;
        background: linear-gradient(
            110deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: skewX(-20deg);
        transition: left 0.45s ease;
    }

    &:hover {
        background-color: #ff5f2f;
        box-shadow: 0 12px 22px rgba(255, 112, 67, 0.45);
    }

    &:hover::before {
        left: 130%;
    }
}

#problem {
    padding: 70px 0;
    background-color: #26a69a;
    .page-header {
        .en {
            color: rgba(255, 255, 255, 0.7);
        }
        .jp {
            color: #fff;
        }
    }
    .flex-bubbles {
        display: flex;
        justify-content: center;
        gap: 24px;
        .bubble {
            background: rgba(255, 255, 255, 0.7);
            max-width: 304px;
            width: 100%;
            height: 140px;
            border-radius: 12px;
            padding: 0 20px 0 20px;
            font-family: "Noto Sans JP", sans-serif;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 27px;
            text-align: center;
            color: #1d8a7e;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    }
    .arrow {
        margin: 40px auto 17px;
        width: 56px;
        & img {
            width: 100%;
        }
    }
    .solutinon {
        width: 100%;
        border-radius: 12px;
        padding: 28px;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
        .solution-header {
            margin-bottom: 10px;
            font-family: "Montserrat", sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 28px;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            color: #26a69a;
            width: 100%;
        }
        .description {
            font-family: "Noto Sans JP", sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 26px;
            line-height: 40px;
            text-align: center;
            color: #1d8a7e;
        }
    }
}

#about-section {
    padding: 70px 0;
    background: #f5fffd;
    .description {
        font-family: "Noto Sans JP", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 32px;
        text-align: center;
        color: #4c4d56;
        margin-bottom: 48px;
        & span {
            font-weight: 700;
            color: #26a69a;
        }
    }
    .flex-boxes {
        display: flex;
        gap: 20px;
        margin-bottom: 23px;
        .box {
            background-color: #fff;
            max-width: 306px;
            width: 100%;
            border-radius: 12px;
            padding: 26px 18px;
            box-sizing: border-box;
            display: flex;
            gap: 14px;
            border: 2px solid #ebf9f6;
            .check {
                width: 24px;
                & img {
                    width: 100%;
                }
            }
            .text {
                width: 100%;
                flex: 1;
                font-family: "Noto Sans JP", sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 27px;
                color: #4c4d56;
            }
        }
    }
    .note {
        font-family: "Noto Sans JP", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        color: #7a7b84;
        text-align: center;
    }
}

#comparison {
    padding: 70px 0;
    .first.block {
        margin-bottom: 56px;
    }
    .block {
        .chart-container {
            width: 100%;
            .chart {
                width: 100%;
                & img {
                    width: 100%;
                    vertical-align: top;
                }
            }
        }
        .note {
            font-family: "Noto Sans JP", sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
            color: #7a7b84;
            margin-top: 24px;
        }
    }
}

#faq-section {
    padding: 70px 0;
    background-color: #ebf9f6;
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        .faq-block {
            border: solid 1px #e0e0e0;
            border-radius: 12px;
            background-color: #fff;
            .question {
                border-radius: 12px 12px 0 0;
                border-bottom: solid 1px #e0e0e0;
                padding: 24px;
                box-sizing: border-box;
                display: flex;

                .q {
                    width: 32px;
                    height: 32px;
                    border-radius: 32px;
                    background-color: #26a69a;
                    font-family: "Montserrat", sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 1;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #ffffff;
                    margin-right: 16px;
                }
                .text {
                    font-family: "Noto Sans JP", sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 26px;
                    color: #4c4d56;
                    flex: 1;
                }
            }
            .answer {
                background: #f5fffd;
                padding: 20px 24px 20px 72px;
                box-sizing: border-box;
                border-radius: 0 0 12px 12px;
            }
        }
    }
}
