@charset "UTF-8";


@media (max-width: 768px) {
    header {
        padding: 0!important;
    }
  }

/* slider
---------------------------------------*/

.sec02 .slider {
    width: 100%;
    margin: 40px auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sec02 .slider .swiper {
    overflow: visible;
}

.sec02 .slider .swiper-wrapper {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: slideScroll 30s linear infinite;
}

.sec02 .slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
}


@keyframes slideScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sec02 .slider .swiper-slide {
    text-align: center;
    width: auto;
    flex-shrink: 0;
}


.sec03 .slider {
    width: 100%;
    margin: 80px auto 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sec03 .slider .swiper {
    overflow: visible;
}

.sec03 .slider .swiper-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slideScroll 30s linear infinite;
}

.sec03 .slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #1be7f5 0%, #2483f8 100%) border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@keyframes slideScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sec03 .slider .swiper-slide {
    text-align: center;
    width: 250px;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .sec02 .slider {
        margin: 20px auto 10px;
    }

    .sec02 .slider .swiper-wrapper {
        gap: 5px;
        animation-duration: 30s;
    }

    .sec02 .slider .swiper-slide {
        height: auto;
        aspect-ratio: 105/59;
    }

    .sec02 .slider .swiper-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .sec03 .slider {
        margin: 40px auto 10px;
    }

}



/* mainVisual
---------------------------------------*/
.mainVisual {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px;
    overflow: visible;
}
.mainVisual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/mv-bg.png") no-repeat center right;
    background-size: contain;
    opacity: 0.5; /* ここで不透明度を調整 */
    pointer-events: none;
}

.mainVisual .inner {
    position: relative;
    z-index: 1;
}

.mainVisual .flex {
    align-items: center;
    gap: 20px;
}

.mainVisual .left {
    flex: 1;
    max-width: 720px;
}

/* 門外不出の分析ツール、ついに解禁。 */
.mainVisual .left>p:first-child {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0;
}

/* あなたの資産は1年後、「減っているのか？」「増えているのか？」 */
.mainVisual .left h1 {
    font-size: 40px;
    line-height: 1.75;
    font-weight: 900;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.mainVisual .left h1 .mincho {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.mainVisual .left h1 span {
    font-size: 54px;
    line-height: 1.3;
    display: block;
}
.mainVisual .left h1 span.mincho {
    font-size: 40px;
    display: inline;
}

/* 大量のマクロデータを... */
.mainVisual .left>p:nth-of-type(2) {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mainVisual .left .img-box img {
    width: 75%;
    height: auto;
}
.mainVisual h2 {
    font-size: 28px;
    color: #2483f8;
    margin: 30px 0 10px;
    text-align: center;
}
.mainVisual h2 span {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    display: block;
}
.mainVisual .mv-btn {
    margin-top: 10px;
    text-align: center;
}

.mainVisual .mv-btn a {
    width: 500px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 50%, #1be7f5 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    padding: 20px 0;
    border-radius: 150px;
    text-decoration: none;
    border: 5px solid #fff;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 15px rgba(36, 131, 248, 0.3);
}

.mainVisual .mv-btn a:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(36, 131, 248, 0.4);
}

.mainVisual .mv-btn a span {
    font-size: 14px;
    margin-left: 5px;
}

.mv-sticky-cta {
    display: none;
}

.mv-side-cta {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 9997;
    width: 92px;
}

.mv-side-cta a {
    position: relative;
    display: block;
    width: 92px;
    padding-bottom: 0;
    text-decoration: none;
    color: #fff;
}

.mv-side-cta__panel {
    display: flex;
    justify-content: center;
    width: 92px;
    min-height: 320px;
    padding: 16px 0 18px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #ff6186 0%, #f51b93 100%);
    border: 4px solid #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.mv-side-cta__text {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mv-side-cta__lead,
.mv-side-cta__main {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.mv-side-cta__lead {
    font-size: 18px;
    line-height: 1.2;
}

.mv-side-cta__tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.mv-side-cta__main {
    font-size: 22px;
    line-height: 1.18;
}

.mv-side-cta__base {
    display: block;
    width: 92px;
    height: 100px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
}

.mv-side-cta__image {
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 94px;
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
}

.mv-side-cta a:hover {
    color: #fff;
}

.mainVisual .right {
    flex: 1;
    text-align: right;
    max-width: 380px;
}

.mainVisual .right img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .mainVisual {
        padding: 20px 0 40px;
        background-size: 80%;
        background-position: right;
    }

    .mainVisual .inner {
        max-width: 90%;
        margin: 0 auto;
    }

    .mainVisual .flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mainVisual .left {
        order: 2;
        text-align: center;
        max-width: 100%;
    }

    .mainVisual .right {
        display: none;
    }

    /* 門外不出の分析ツール */
    .mainVisual .left>p:first-child {
        font-size: 14px;
    }

    /* あなたの資産は1年後、 */
    .mainVisual .left h1 {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 5px;
    }

    /* 「減っているのか？」「増えているのか？」 */
    .mainVisual .left h1 span {
        font-size: 28px;
        line-height: 1.25;
    }
    .mainVisual .left h1 span.mincho {
        font-size: 24px;
        letter-spacing: 0em;
    }

    /* 大量のマクロデータを... */
    .mainVisual .left>p:nth-of-type(2) {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* 超精密AIが分析します！ */

    .mainVisual .left .sp {}

    .mainVisual .left .sp img {
        width: 78%;
        margin: 0 auto 5px;
    }

    /* 3つの強み画像 */
    .mainVisual .left .img-box {
        max-width: 100%;
    }

    .mainVisual .left .img-box img {
        height: auto;
    }
    .mainVisual h2 {
        font-size: 16px;
        margin: 10px 0 0;
    }
    .mainVisual h2 span {
        font-size: 14px;
        margin-top: 8px;
    }
    /* ボタン */
    .mainVisual .mv-btn {
        margin-top: 15px;
        width: 100%;
    }

    .mainVisual .mv-btn a {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        padding: 17px 0;
        border-radius: 150px;
        border: 5px solid #fff;
        box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.35);
    }

    .mv-sticky-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: -5px;
        z-index: 9998;
        padding: 0 8px calc(8px + env(safe-area-inset-bottom));
        opacity: 0;
        transform: translateY(100%);
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .mv-sticky-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mv-sticky-cta a {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #ff6186 0%, #f51b93 100%);
        background-size: 200% 100%;
        color: #fff;
        text-decoration: none;
        padding: 10px 0;
        border-radius: 100px;
        border: 5px solid #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        overflow: visible;
    }

    .mv-sticky-cta__image {
        position: absolute;
        left: -8px;
        bottom: 0;
        width: 88px;
        height: auto;
        pointer-events: none;
    }

    .mv-sticky-cta__text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        line-height: 1.2;
        text-align: center;
    }

    .mv-sticky-cta__lead {
        display: block;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .mv-sticky-cta__main {
        display: block;
        margin-top: 2px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.01em;
    }

    .mv-sticky-cta__arrow {
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
    }

    .mv-sticky-cta a:hover {
        background-position: 100% 0%;
    }

    .mv-sticky-cta a:active {
        transform: scale(0.99);
    }
}

@media screen and (max-width: 480px) {
    .mv-sticky-cta {
        padding: 0 6px calc(6px + env(safe-area-inset-bottom));
    }

    .mv-sticky-cta a {
        padding: 20px 0;
        border-width: 5px;
    }

    .mv-sticky-cta__image {
        width: 82px;
        left: -6px;
    }

    .mv-sticky-cta__lead {
        font-size: 13px;
    }

    .mv-sticky-cta__main {
        font-size: 18px;
    }

    .mv-sticky-cta__arrow {
        right: 12px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .mainVisual .left .img-box img {
        width: 90%;
        margin: 0 auto;
        height: auto;
    }
    .mv-sticky-cta a {
        padding: 15px 0;
        border-width: 5px;
    }
    .mv-sticky-cta__main {
        font-size: 18px;
    }
}

/* menseki（免責事項）
---------------------------------------*/
.menseki {
    background: #000;
    padding: 50px 0 60px;
}

.menseki h1 {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.menseki .box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 0;
}

.menseki .box-inner {
    max-width: 840px;
    margin: 0 auto;
}

.menseki .box-inner p {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .menseki {
        padding: 40px 0 50px;
    }

    .menseki h1 {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .menseki .box {
        max-width: 90%;
        padding: 20px 0;
    }

    .menseki .box-inner {
        max-width: 90%;
    }

    .menseki .box-inner p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .menseki {
        padding: 30px 0 40px;
    }

    .menseki h1 {
        margin-bottom: 20px;
    }
}


/* add
---------------------------------------*/
.add {
    background: #fff url('../images/bg.png') no-repeat center center;
    background-size: cover;
    padding: 0 0 60px 0;
    position: relative;
}

.add .headline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    padding: 20px 0;
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
        linear-gradient(90deg, #1be7f5 0%, #2483f8 100%) border-box;
}

/* kazari-left (左飾り) */
.add .headline::before {
    content: '';
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: url('../images/kazari-left.png') no-repeat center center;
    background-size: contain;
}

/* kazari-right (右飾り) */
.add .headline::after {
    content: '';
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: url('../images/kazari-right.png') no-repeat center center;
    background-size: contain;
}

.add .headline h1 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add h2 {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin: 40px 0 20px 0;
}
.add h3 {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 40px 0 20px 0;
}

.add .img {
    margin: 40px auto;
    text-align: center;
}

.add .img img {
    width: 960px;
    margin: 0 auto;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #1be7f5 0%, #2483f8 100%) border-box;
}

.add .text {
    margin-top: 20px;
    text-align: center;
}

.add .text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

.add .text p b {
    font-weight: 700;
}

/* sec01 レスポンシブ */
@media screen and (max-width: 768px) {
    .add {
        padding: 0 0 40px 0;
        background: #fff url('../images/bg_sp.png') no-repeat center center;
        background-size: cover;
    }

    .add .headline {
        gap: 5px;
        padding: 20px 0;
    }

    .add .headline::before,
    .add .headline::after {
        width: 40px;
        height: 60px;
    }

    .add .headline h1 {
        font-size: 16px;
    }

    .add h2 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .add h3 {
        font-size: 16px;
        margin: 10px 0;
    font-weight: 700;
    }
    .add .img {
        margin: 20px auto;
        text-align: center;
    }

    .add .img img {
        width: 90%;
        margin: 0 auto;
    }

    .add .text {
        text-align: left;
    }

    .add .text p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {}

/* sec01
---------------------------------------*/
.sec01 {
    background: #fff url('../images/bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.sec01 h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec01 h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.7;
    text-align: center;
}

.sec01 .img {
    display: none;
}

.sec01 .text {
    margin-top: 20px;
    text-align: center;
}

.sec01 .text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

.sec01 .text .list {
    display: inline-block;
    text-align: left;
    margin: 20px 0;
}

.sec01 .text .list ul {
    width: 800px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec01 .text .list ul li {
    position: relative;
    padding: 15px 10px 15px 60px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.sec01 .text .list ul li:last-child {
    border-bottom: none;
}

.sec01 .text .list ul li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../images/check.png') no-repeat center center;
    background-size: contain;
}

/* sec01 レスポンシブ */
@media screen and (max-width: 768px) {
    .sec01 {
        padding: 40px 0;
        background: #fff url('../images/bg_sp.png') no-repeat center center;
        background-size: cover;
    }

    .sec01 h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .sec01 h2 {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }

    .sec01 .img {
        display: block;
        text-align: center;
    }

    .sec01 .img img {
        width: 75%;
        margin: 30px auto 0;
    }

    .sec01 .text {
        text-align: left;
    }

    .sec01 .text p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7;
    }

    .sec01 .text .list {
        margin: 15px auto;
        width: 100%;
        box-sizing: border-box;
    }

    .sec01 .text .list ul {
        width: 100%;
    }

    .sec01 .text .list ul li {
        font-size: 16px;
        padding: 12px 10px 12px 40px;
        line-height: 1.5;
    }

    .sec01 .text .list ul li::before {
        width: 20px;
        height: 20px;
        left: 10px;
    }

}

@media screen and (max-width: 480px) {}

/* sec02
---------------------------------------*/

/* sec02 */
.sec02 {
    padding: 0;
}

.sec02a {
    background: url('../images/sec02-bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 40px;
}

.sec02a h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec02a h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.sec02a .text p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.sec02a .text p:last-child {
    margin-bottom: 0;
}

.sec02a .text2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sec02a .text2 p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.75;
}



/* sec02b */
.sec02b {
    background: #fff url('../images/bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
}

.sec02b .flex {
    align-items: center;
    gap: 60px;
}

.sec02b .left {
    flex: 1;
    max-width: 580px;
}

.sec02b .left p {
    font-size: 18px;
}

.sec02b .left p:last-child {
    margin-bottom: 0;
}

.sec02b .left p b {
    font-weight: 700;
}

.sec02b .right {
    flex: 1;
    text-align: right;
}

.sec02b .right img {
    max-width: 100%;
    height: auto;
}

/* sec02 レスポンシブ */
@media screen and (max-width: 768px) {

    .sec02 {
        padding: 0;
    }

    .sec02a {
        padding: 40px 0;
    }

    .sec02a h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sec02a h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .sec02a .img {
        margin-bottom: 20px;
    }

    .sec02a .img img {
        width: 45%;
        margin: 0 auto;
    }

    .sec02a .text p {
        font-size: 16px;
        font-weight: 300;
        text-align: left;
    }

    .sec02a .text2 p {
        font-size: 12px;
        color: #fff;
    }

    .sec02b {
        padding: 30px 0;
        background: #fff url('../images/bg_sp.png') no-repeat center center;
        background-size: cover;
    }

    .sec02b .flex {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
    }

    .sec02b .left {
        max-width: 100%;
    }

    .sec02b .left p {
        font-size: 16px;
    }

    .sec02b .right {
        width: 70%;
        max-width: 70%;
        margin: 20px auto;
    }

}

@media screen and (max-width: 480px) {}



/* sec03 */
.sec03 {
    background: url('../images/sec02-bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0 20px;
}
.sec03-inner {
    width: 1080px;
    margin: 0 auto;
}

.sec03-inner h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec03-inner h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.sec03 .contentArea > h3 {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px 0 20px 48px;
    box-sizing: border-box;
    background: linear-gradient(to right, #ff6186 0 10px, transparent 16px 26px,#4d4d4d 26px 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.sec03 .contentArea > h3.accent-teal {
    background: linear-gradient(to right, #1cdbf5 0 10px, transparent 16px 26px, #4d4d4d 26px 100%);
}

.sec03 .contentArea > .flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 37px;
    margin-bottom: 32px;
}

.sec03 .contentArea > .flex > .left {
    width: 480px;
    flex: 0 0 480px;
    box-sizing: border-box;
}

.sec03 .contentArea > .flex > .left img {
    display: block;
    width: 100%;
    height: auto;
}

.sec03 .contentArea > .flex > .right {
    width: 480px;
    flex: 0 0 480px;
    color: #fff;
    margin-top: 50px;
}

.sec03 .contentArea > .flex > .right > .score {
    margin-bottom: 0;
    text-align: center;
    font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: 0;
    color: #fff;
}

.sec03 .contentArea > .flex > .right > .score .score-value {
    font-size: 120px;
}

.sec03 .contentArea > .flex > .right > .score .score-unit {
    margin-left: 6px;
    font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.sec03 .contentArea > .flex > .right > .score .score-max {
    display: inline-block;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    top: 4px;
}

.sec03 .contentArea > .flex > .right dl {
    margin: 0;
    color: #fff;
}

.sec03 .contentArea > .flex > .right .score-details {
    margin-top: 0;
}

.sec03 .contentArea > .flex > .right dt,
.sec03 .contentArea > .flex > .right dd {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
}

.sec03 .contentArea > .flex > .right dt {
    margin-bottom: 4px;
}

.sec03 .contentArea > .flex > .right dd {
    word-break: break-all;
}

.sec03 .contentArea > .flex > .right dd ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: normal;
    overflow: visible;
}

.sec03 .contentArea > .flex > .right dd li {
    display: inline;
    font-size: 0.9rem;
    max-width: 100%;
    vertical-align: top;
}

.sec03 .contentArea > .flex > .right dd li:not(:last-child)::after {
    content: " ／ ";
}

.sec03 .contentArea > .flex > .right.n {
    margin-top: 16px;
}

.sec03 .contentArea > .flex > .right.n > .score {
    margin-bottom: 0;
}

.sec03 .contentArea > .flex > .right.n dt {
    margin-bottom: 8px;
}

.sec03 .contentArea > .flex > .right.n dd {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
    word-break: normal;
}

.sec03 .contentArea > .gap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
    row-gap: 9px;
    margin-bottom: 32px;
}

.sec03 .contentArea > .gap img {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sec03 .contentArea > .gap img:hover,
.sec03 .contentArea > .gap img:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 10, 22, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1080px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.gallery-lightbox__frame {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 17, 34, 0.88);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transform: scale(0.96);
    transition: transform 0.2s ease;
}

.gallery-lightbox.is-open .gallery-lightbox__frame {
    transform: scale(1);
}

.gallery-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.gallery-lightbox__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 44px;
    height: 44px;
    font-size: 26px;
    line-height: 1;
}

.gallery-lightbox__nav {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 1;
}

.gallery-lightbox__nav[disabled] {
    opacity: 0.35;
    cursor: default;
    transform: none;
}
.sec03 .contentArea p{
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 1.75;
    font-weight: 400;
}
.sec03 .contentArea > .comment {
    margin-bottom: 100px;
}

.sec03 .contentArea > .comment > .flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

.sec03 .contentArea > .comment .left {
    position: relative;
    width: 920px;
    min-height: 213px;
    padding: 30px 44px 30px 17px;
    box-sizing: border-box;
    background: #555;
    border-radius: 10px;
    color: #fff;
}

.sec03 .contentArea > .comment .left::after {
    content: "";
    position: absolute;
    top: 140px;
    right: -30px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 30px solid #555;
}

.sec03 .contentArea > .comment .left dl {
    margin: 0;
}

.sec03 .contentArea > .comment .left dt {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.sec03 .contentArea > .comment .left dd {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.78;
    color: #fff;
}

.sec03 .contentArea > .comment .right {
    flex: 00 0 100px;
    width: 100px;
    margin-top: 70px;
    margin-left: 40px;
}

.sec03 .contentArea > .comment .right img {
    display: block;
    width: 100%;
    height: auto;
}



/* sec02 レスポンシブ */
@media screen and (max-width: 768px) {

    .sec03 {
        padding: 60px 0 10px;
    }

    .sec03-inner {
        width: 90%;
    }

    .sec03-inner h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .sec03-inner h2 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sec03 .contentArea > h3 {
        margin-bottom: 18px;
        padding: 15px 0 15px 34px;
        background: linear-gradient(to right,#ff6186 0 8px, transparent 12px 18px, #4d4d4d 18px 100%);
        font-size: 18px;
    }

    .sec03 .contentArea > h3.accent-teal {
        background: linear-gradient(to right, #1cdbf5 0 8px, transparent 12px 18px, #4d4d4d 18px 100%);
    }

    .sec03 .contentArea {
        display: flex;
        flex-direction: column;
    }

    .sec03 .contentArea > h3 {
        order: 0;
    }

    .sec03 .contentArea > .flex {
        display: contents;
        margin-bottom: 0;
    }

    .sec03 .contentArea > .flex > .left {
        width: 100%;
        max-width:100%;
        margin: 0 auto;
        order: 3;
        flex: 0;
    }

    .sec03 .contentArea > .flex > .right {
        width: 100%;
        max-width:100%;
        margin: 54px auto 0;
        padding-top: 0;
        display: contents;
    }

    .sec03 .contentArea > .flex > .right > .score {
        padding: 40px 0 0;
        margin-bottom: 0;
        order: 1;
    }

    .sec03 .contentArea > .flex > .right > .score .score-value {
        font-size: 120px;
    }

    .sec03 .contentArea > .flex > .right > .score .score-unit {
        font-size: 48px;
    }

    .sec03 .contentArea > .flex > .right > .score .score-max {
        font-size: 64px;
        top: 4px;
    }

    .sec03 .contentArea > .flex > .right .score-details {
        order: 2;
    }

    .sec03 .contentArea > .flex > .right dt,
    .sec03 .contentArea > .flex > .right dd {
        font-size: 16px;
        line-height: 1.75;
    }

    .sec03 .contentArea > .flex > .right.n {
        margin-top: 50px;
    }

    .sec03 .contentArea > .flex > .right.n > .score {
        margin-bottom: 10px;
    }
    .sec03 .contentArea > .flex > .right dl {
        margin: 0 0 30px;
    }
    .sec03 .contentArea > .flex > .right.n dd {
        font-size: 13px;
        line-height: 1.6;
    }

    .sec03 .contentArea > .flex > .right dd ul {
        white-space: normal;
        overflow: visible;
    }

    .sec03 .contentArea > .flex > .right dd li {
        display: block;
    }

    .sec03 .contentArea > .flex > .right dd li::before {
        content: "・";
    }

    .sec03 .contentArea > .flex > .right dd li:not(:last-child)::after {
        content: none;
    }

    .sec03 .contentArea > .gap {
        width: 100%;
        max-width:100%;
        margin: 0 auto 24px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 6px;
        row-gap: 5px;
        order: 5;
    }

    .sec03 .contentArea > p {
        order: 4;
    }

    .sec03 .contentArea > .comment {
        order: 6;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__dialog {
        width: 100%;
        gap: 8px;
    }

    .gallery-lightbox__frame {
        padding: 10px;
        border-radius: 12px;
    }

    .gallery-lightbox__image {
        max-height: 72vh;
    }

    .gallery-lightbox__close {
        top: -10px;
        right: -4px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gallery-lightbox__nav {
        position: absolute;
        bottom: -56px;
        width: 44px;
        height: 44px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.18);
    }

    .gallery-lightbox__nav--prev {
        left: calc(50% - 52px);
    }

    .gallery-lightbox__nav--next {
        right: calc(50% - 52px);
    }

    .sec03 .contentArea p{
        font-size: 14px;
        background: #4d4d4d;
        margin: 10px auto;
        width: 100%;
        max-width:100%;
    }
    .sec03 .contentArea > .comment {
        margin: 0 0 60px;
    }

    .sec03 .contentArea > .comment > .flex {
        position: relative;
        display: block;
        max-width:100%;
        margin: 0 auto;
    }

    .sec03 .contentArea > .comment .left {
        width: 280px;
        min-height: 220px;
        padding: 15px 20px;
        border-radius: 10px;
    }

    .sec03 .contentArea > .comment .left::after {
        top: 80%;
        right: -21px;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 24px solid #555;
    }

    .sec03 .contentArea > .comment .left dt {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sec03 .contentArea > .comment .left dd {
        font-size: 14px;
        line-height: 1.7;
    }

    .sec03 .contentArea > .comment .right {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 72px;
        margin-top: 0;
    }

}

@media screen and (max-width: 480px) {}


/* sec04
---------------------------------------*/
.sec04 {
    background: url('../images/sec04-bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.sec04 h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec04 h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.sec04 .img {
    text-align: center;
    margin: 20px auto;
}

.sec04 .img img {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #1be7f5 0%, #2483f8 100%) border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.sec04 .text {
    text-align: center;
}

.sec04 .text p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
}

/* .sec04 レスポンシブ */
@media screen and (max-width: 768px) {
    .sec04 {
        padding: 40px 0;
        background: url('../images/sec04-bg.png') no-repeat center center;
        background-size: cover;
    }

    .sec04 h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .sec04 h2 {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }

    .sec02a .img {
        margin-bottom: 20px;
    }

    .sec04 .img img {
        width: 100%;
        margin: 0 auto;
    }

    .sec04 .text {
        text-align: left;
    }

    .sec04 .text p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {}

/* sec05
---------------------------------------*/
.sec05 {
    background: #f2f2f2;
    padding: 60px 0;
}

.sec05 .box {
    background: #fff;
    padding: 40px 0;
}

.sec05 h1 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec05 .flex {
    width: 90%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sec05 .left {
    flex: 1;
    max-width: 720px;
}

.sec05 .left p {
    font-size: 16px;
}

.sec05 .left p:last-child {
    margin-bottom: 0;
}

.sec05 .left p.highlight {
    color: #2483f8;
    font-weight: 600;
}

.sec05 .left ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sec05 .left ul li {
    font-size: 16px;
    font-weight: 700;
    padding-left: 1em;
    text-indent: -1em;
}

.sec05 .left ul li::before {
    content: "・";
}

.sec05 .right {
    text-align: right;
}

.sec05 .right img {
    max-width: 100%;
    height: auto;
}

/* sec03 レスポンシブ */
@media screen and (max-width: 768px) {

    .sec05 .box {
        background: #fff;
        padding: 40px 0 20px;
    }

    .sec05 h1 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .sec05 .flex {
        flex-direction: column;
        gap: 20px;
    }

    .sec05 .left {
        max-width: 100%;
    }

    .sec05 .left p {
        font-size: 16px;
    }

    .sec05 .left ul li {
        font-size: 16px;
    }

    .sec05 .right {
        width: 60%;
        margin: 0 auto;
    }

    .sec05 .right img {
        width: 100%;
    }

}

@media screen and (max-width: 480px) {}

/* service
---------------------------------------*/
.service {
    background: #fff;
    padding: 60px 0;
}

.service>.inner>h1 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.service .box {
    background: #f5feff;
    border: 1px solid #2483f8;
    margin-bottom: 50px;
}

.service .box:last-child {
    margin-bottom: 0;
}

.service .box-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 0 40px;
}

.service .box h2 {
    display: flex;
    align-items: baseline;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0;
    text-transform: capitalize;
}

.service .box h2 span {
    font-family: 'Hind', sans-serif;
    font-size: 90px;
    font-weight: 700;
    -webkit-text-fill-color: #2483f8;
    line-height: 1;
    margin-left: 10px;
}

.service .box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    padding-bottom: 25px;
    border-bottom: 1px solid #2483f8;
    margin-bottom: 35px;
    line-height: 1.5;
}

.service .box .flex {
    align-items: flex-start;
    gap: 40px;
}

.service .box .left {
    flex: 1;
    max-width: 600px;
}

.service .box .left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.service .box .right {
    flex-shrink: 0;
}

.service .box .right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.service .box:nth-of-type(3) .left {
    flex: 1.2;
}

.service .box:nth-of-type(3) .right {
    flex: 1.2;
    max-width: 350px;
}

@media screen and (max-width: 768px) {
    .service {
        padding: 40px 0;
    }

    .service>.inner>h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .service .box {
        margin-bottom: 30px;
    }

    .service .box-inner {
        max-width: 100%;
        padding: 30px 20px;
    }

    .service .box h2 {
        display: block;
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .service .box h2 span {
        font-size: 50px;
    }

    .service .box h3 {
        font-size: 24px;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }

    .service .box .right {
        text-align: center;
    }

    .service .box .right img {
        width: 80%;
        margin: 40px auto 30px;
    }

    .service .box .right img {
        width: 60%;
        margin: 40px auto 30px;
    }

    .service .box:nth-of-type(2) .right img {
        width: 100%;
    }

    .service .box:nth-of-type(3) .right img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .service .box h2 span {
        font-size: 64px;
    }

    .service .box h3 {
        font-size: 20px;
        text-align: center;
    }
}

/* sec06
---------------------------------------*/
.sec06 {
    background: #000;
    padding: 60px 0;
}

.sec06>h1 {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.sec06 .gap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sec06 .box {
    background: #fff;
    border-radius: 10px;
    padding: 25px 0 30px;
    text-align: center;
}

.sec06 .box dl {
    width: 90%;
    margin: 0 auto;
}

.sec06 .box dt {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.sec06 .box dd {
    margin: 0;
}

.sec06 .box dd.img {
    margin-bottom: 10px;
}

.sec06 .box dd.img img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.sec06 .box dd.text {
    font-size: 14px;
    text-align: center;
}

/* sec04 レスポンシブ */
@media screen and (max-width: 768px) {
    .sec06 {
        padding: 40px 0;
    }

    .sec06>h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .sec06 .gap {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sec06 .box {
        width: 85%;
        margin: 0 auto;
        padding: 20px 0;
    }

    .sec06 .box dl {
        width: 85%;
        margin: 0 auto;
    }

    .sec06 .box dt {
        font-size: 20px;
    }

    .sec06 .box dd.text {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {

    .sec06 .gap {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* sec07
---------------------------------------*/
.sec07 {
    background: #fff url('../images/bg.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
}

.sec07 .flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sec07 .left {
    flex: 1;
    max-width: 600px;
}

.sec07 .left p {
    font-size: 16px;
}

.sec07 .left p:last-child {
    margin-bottom: 0;
}

.sec07 .left p .highlight {
    color: #2483f8;
    text-decoration: underline;
}

.sec07 .left p.blue {
    color: #2483f8;
    font-weight: 600;
}

.sec07 .left p.last {
    color: #2483f8;
    font-weight: 600;
}

.sec07 .left p.note {
    font-size: 14px;
    color: #666;
}

.sec07 .right {
    flex: 1;
    text-align: center;
}

.sec07 .right img {
    max-width: 100%;
    height: auto;
}

/* sec05 レスポンシブ */
@media screen and (max-width: 768px) {
    .sec07 {
        background: #fff url('../images/bg_sp.png') no-repeat center center;
        background-size: cover;
        padding: 40px 0;
    }

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

    .sec07 .left {
        max-width: 100%;
    }

    .sec07 .left p {
        font-size: 16px;
    }

    .sec07 .right {
        width: 75%;
        margin: 20px auto;
    }

    .sec07 .right img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {}

/* CTA
---------------------------------------*/
.cta {
    background: url('../images/cta-bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0 80px;
    text-align: center;
}

.cta h1 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, #1be7f5, #2483f8); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}
.cta h1 span {
    font-size: 32px;
    display: block;
}

.cta-card {
    background: #fff;
    max-width: 796px;
    margin: 0 auto;
    padding: 35px 45px 40px;
    box-sizing: border-box;
}

.cta-card-subtitle {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5, #2483f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.cta-card-subtitle span {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    display: block;
}
.cta-card-input {
    max-width: 614px;
    margin: 0 auto 25px;
}

.cta-card-input input {
    width: 100%;
    height: 74px;
    border: 3px solid #bebebe;
    background: #fff;
    font-size: 18px;
    color: #333;
    padding: 0 29px;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.cta-card-input input::placeholder {
    color: #a8a8a8;
}

.cta-card-input input:hover {
    border-color: #2483f8;
}

.cta-card .btn {
    margin-bottom: 25px;
}

.cta-card-note {
    text-align: left;
    margin-bottom: 25px;
}

.cta-card-note p {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
}

.cta-card-note a {
    color: #333;
    text-decoration: underline;
}

.cta-card-note a:hover {
    color: #2483f8;
}

.cta-card-secure {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.cta-card-secure-badge {
    flex-shrink: 0;
    width: 182px;
}

.cta-card-secure-badge img {
    width: 100%;
    height: auto;
}

.cta-card-secure-text p {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
}

/* CTA レスポンシブ */
@media screen and (max-width: 768px) {
    .cta {
        padding: 40px 0 60px;
        background-position: center;
    }

    .cta h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .cta h1 span {
        font-size: 18px;
        display: block;
    }


    .cta-card {
        width: 90%;
        margin: 0 auto;
        padding: 25px 0 30px;
    }
    .cta-card-inner {
        width: 90%;
        margin: 0 auto;
    }
    .cta-card-subtitle {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .cta-card-subtitle span {
        font-size: 14px;
    }

    .cta-card-input input {
        height: 56px;
        font-size: 16px;
        padding: 0 15px;
    }

    .cta-card .btn {
        margin-bottom: 20px;
    }

    .cta-card-note p {
        font-size: 11px;
    }

    .cta-card-secure {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-card-secure-badge {
        width: 150px;
    }

    .cta-card-secure-text p {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .cta-card-subtitle {
        font-size: 16px;
        letter-spacing: -0.1px;
    }

    .cta-card-input input {
        height: 50px;
        font-size: 14px;
    }
}
@media screen and (max-width: 375px) {
    .cta-card-subtitle {
        font-size: 14px;
    }
}
/* LP専用フッター（白背景・黒文字）
---------------------------------------*/
body > .footer-nav {
    background: #fff;
}

body > .footer-nav ul li a {
    color: #333;
}

body > .footer-nav ul li a:hover {
    color: #2483f8;
}

body > footer {
    background: #fff;
    color: #333;
}



/* 20260304追記  */

#top08{
  padding: 78px 0 78px;
}

#top08 h3{
  text-align: center;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 65px;
}

   @media screen and (max-width: 767px) {
     #top08{
  padding: 30px 0 30px;
}
     #top08 .inner{
       width: 88%;
       padding: 0;
       margin: 0 auto
     }

#top08 h3{
  text-align: center;
  font-size: 24px;
  line-height: 155%;
  font-weight: 900;
  margin-bottom: 30px;
}
     
}

.formTable table{
  max-width: 1023px;
  margin: 0 auto 50px;
}
.formTable table th{
  background: #000;
  color: #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 18px;
  font-weight: normal;
  padding: 15px 5px;
}

.formTable table .formTableTd01{
  width: 16%;
}
.formTable table .formTableTd02{
  width: 21%;
}
.formTable table .formTableTd03{
  width: 23%;
}
.formTable table .formTableTd04{
  width: 40%;
}

.formTable table td{
  color: #000;
  text-align: center;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 28px 15px;
  line-height: 1.55;
  vertical-align: middle
}

.formTable table td.formTableTd01-b{
  color: #fff;
  background: #01bac7;
}
.formTable table td.formTableTd02-b{
  background: #e8f0f4;
}

.formTable table td.formTableTd01-r{
  color: #fff;
  background: #2483f8;
}
.formTable table td.formTableTd02-r{
  background: #c5ddfa;
}

.formTable table td .red{
  color: #2483f8;
  font-weight: bold;
}
strike{
  display: block;
  margin-bottom: 20px
}
.formTable table td span{
  max-width: 170px;
  display: block;
  margin: 0 auto;
  font-feature-settings: 'palt'
}

   @media screen and (max-width: 767px) {
     .formTable table{
  max-width: 1023px;
  margin: 0 auto 21px;
}
.formTable table th{
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 10px;
  font-weight: normal;
  padding: 15px 5px;
}

.formTable table .formTableTd01{
  width: 30%;
    background: #000;
  color: #fff;
}
.formTable table .formTableTd02{
  width: 35%;
  background: #01bac7;
  color: #fff;
}
.formTable table .formTableTd03{
  width: 35%; 
  background: #2483f8;
  color: #fff
}
.formTable table .formTableTd04{
  width: 40%;
}

.formTable table td{
  color: #000;
  text-align: center;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 10px;
  font-weight: normal;
  padding: 23px 12px;
  line-height: 1.55;
  vertical-align: middle
}
.formTable table td.formTableTd01-b{
  color: #fff;
  background: #204c81;
}
.formTable table td.formTableTd02-b{
  background: #d1ddeb;
}

.formTable table td.formTableTd01-r{
  color: #fff;
  background: #2483f8;
}
.formTable table td.formTableTd03-r{
  background: #c5ddfa;
}

.formTable table td .red{
  color: #2483f8;
  font-weight: bold;
}
     .formTable table td.vtop{
       vertical-align: top
     }
strike{
  display: block;
  margin-bottom: 20px
}
.formTable table td span{
  max-width: 168px;
  display: block;
  margin: 0 auto;
  font-feature-settings: 'palt'
}

}


.caution_wrap{
  max-width: 1023px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}
.caution_wrap h4{
  background: #000;
  color: #fff;
  position: relative;
  padding: 18px 18px 18px 94px;
  font-size: 25px;
}
.caution_wrap h4 span{
  font-size: 15px;
  font-weight: normal;
  margin-left: 16px;
}
.caution_wrap h4:before{
    content: '';
  background: url(../images/exmark.png) 0 0 no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 55px;
  top: 18px;
}
.caution_body{
  background: #f3f3f3;
  padding: 36px 50px 30px;
}
.caution_body p{
  font-size: 16px;
  line-height: 2.11;
}

.footer__images{
  align-items: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: auto;
  padding: 20px 0;
  width: min(100%, 1023px);
  margin-top: 30px;
}
.footer__images > picture > img, .footer__images > picture > source{
  width: 100%;
  height: auto;
}

   @media screen and (max-width: 767px) {
     .caution_wrap{
  max-width: 1023px;
  margin: 0 auto
}
.caution_wrap h4{
  background: #000;
  color: #fff;
  position: relative;
  padding: 9px 9px 9px 9px;
  font-size: 14px;
  text-align: center;
}
.caution_wrap h4 span{
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}
.caution_wrap h4:before{
    content: '';
  background: url(../images/exmark.png) 0 0 no-repeat;
  background-size: cover;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  left: auto;
  top: 2px;
  margin-right: 8px
}
.caution_body{
  background: #f3f3f3;
  padding: 15px 6px 15px;
}
.caution_body p{
  font-size: 12px;
  line-height: 2.11;
}
.footer__images{
  grid-gap: 10px;
  padding: 10px 0;
  margin-top: 10px;
}
}

#top09 {
    background: url(../images/bg04.jpg) center center no-repeat;
    background-size: cover;
    padding: 70px 0;
    color: #fff;
}

#top09 h3 {
    font-size: 60px;
    margin-bottom: 72px;
    text-align: center;
    letter-spacing: 0.12em;
    font-weight: 900
}

#top09 h3:first-letter {
    color: #f48946
}

#top09 h4 {
    max-width: 744px;
    background: rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 18px;
    padding: 9px;
    margin: 0 auto;
    border-bottom: 2px solid #fff;
}

#top09 dl {
    display: flex;
    max-width: 744px;
    border-bottom: 2px solid #fff;
    padding: 30px 0 10px;
    font-size: 16px;
    margin: 0 auto;

}

#top09 dl dt {
    width: 140px;
}

#top09 dl dd {
    flex: 1;
    min-width: 0;
}

#top09 dl dd .site-link {
    color: #fff;
    display: block;
    font-weight: 300;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#top09 p {
    font-size: 14px;
    max-width: 744px;
    margin: 0 auto;
    line-height: 1.7;

}

#top09 dl.lastDl {
    margin-bottom: 57px
}


@media screen and (max-width: 767px) {
    #top09 {
        background: url(../images/bg04.jpg) center center no-repeat;
        background-size: cover;
        padding: 40px 0;
        color: #fff;
    }

    #top09 .inner {
        width: 84.7%;
        margin: 0 auto;
        padding: 0
    }

    #top09 h3 {
        font-size: 24px;
        margin-bottom: 22px;
        text-align: center;
        letter-spacing: 0.12em;
        font-weight: 900
    }

    #top09 h3:first-letter {
        color: #f48946
    }

    #top09 h4 {
        max-width: 744px;
        background: rgba(255, 255, 255, 0.25);
        text-align: center;
        font-size: 12px;
        padding: 9px;
        margin: 0 auto 10px;
        border-bottom: 2px solid #fff;
    }

    #top09 dl {
        display: flex;
        max-width: 744px;
        border-bottom: 2px solid #fff;
        padding: 20px 0 10px;
        font-size: 12px;
        margin: 0 auto;
        line-height: 1.5
    }

    #top09 dl dt {
        width: 75px;
    }

    #top09 dl dd {
        flex: 1;
        min-width: 0;
    }

    #top09 dl dd .site-link {
    }

    #top09 p {
        max-width: 744px;
        margin: 0 auto;
        font-size: 12px;
        line-height: 1.7;

    }

    #top09 dl.lastDl {
        margin-bottom: 27px
    }

}

.bold{
  font-weight: 900  
}

.smaller{
  font-size: 50px;
}

   @media screen and (max-width: 767px) {
     .smaller{
  font-size: 16px;
}
}

#top08 > .inner > h1 , #top09 .inner h1 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

/* CTAボタン：mainVisualのボタンと同等デザイン（aでもbuttonでもOK） */
.cta-card .btn a,
.cta-card .btn .cta-submit{
  width: 500px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: linear-gradient(90deg, #1be7f5 0%, #2483f8 50%, #1be7f5 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;

  color: #fff;
  font-size: 24px !important;
  font-weight: 900 !important;
  padding: 20px 0;
  border-radius: 150px;
  text-decoration: none;

  border: 5px solid #fff;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 15px rgba(36, 131, 248, 0.3);

  cursor: pointer;
}

/* hoverも同様 */
.cta-card .btn a:hover,
.cta-card .btn .cta-submit:hover{
  background-position: 100% 0%;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(36, 131, 248, 0.4);
}

/* spanも同様 */
.cta-card .btn a span,
.cta-card .btn .cta-submit span{
  font-size: 14px;
  margin-left: 5px;
  font-weight: 800;
}

/* buttonの素の見た目を完全に消す（重要） */
.cta-card .btn .cta-submit{
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent; /* 念のため */
  font: inherit;
}

/* SPは既存と合わせて100%幅に */
@media screen and (max-width: 768px){
  .cta-card .btn a,
  .cta-card .btn .cta-submit{
    width: 100%;
    max-width: 100%;
    font-size: 18px !important;
    padding: 17px 0;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.35);
  }
}

@media screen and (max-width: 768px) {
    .sec06 {
        padding: 40px 0;
    }

    #top08 > .inner > h1 , #top09 .inner h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/*ロング版用*/

.mv-btn {
    margin-top: 30px;
    text-align: center;
}

.mv-btn a {
    width: 500px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #1be7f5 0%, #2483f8 50%, #1be7f5 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    padding: 20px 0;
    border-radius: 150px;
    text-decoration: none;
    border: 5px solid #fff;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 15px rgba(36, 131, 248, 0.3);
}

.mv-btn a:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(36, 131, 248, 0.4);
}

.mv-btn a span {
    font-size: 14px;
    margin-left: 5px;
}

.mv-btn-bottom{
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    /* ボタン */
    .mv-btn {
        margin-top: 15px;
        width: 100%;
    }

    .mv-btn a {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        padding: 17px 0;
        box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.35);
    }
}

/* 右上ハンバーガーメニュー
---------------------------------------*/
.top-header {
    position: relative;
    background: #000;
    color: #fff;
    z-index: 9999;
}

.top-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-header-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.hamburger-menu {
    position: fixed;
    top: 10px;
    right: 16px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.slide-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: calc(100% - 24px);
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    transition: right 0.3s ease-in-out;
    z-index: 10000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

.slide-menu.active {
    right: 0;
}

.menu-list {
    list-style: none;
    padding: 80px 0 0;
    margin: 0;
}

.menu-list li {
    margin: 0;
    padding: 0;
}

.menu-list a {
    display: block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

.menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .top-header-inner {
        justify-content: center;
        gap: 0;
        padding: 10px 64px;
    }

    .top-header-text {
        width: 100%;
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }

    .hamburger-menu {
        top: 8px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 22px;
    }

    .slide-menu {
        width: min(300px, calc(100% - 24px));
    }

    .menu-list {
        padding-top: 72px;
    }

    .menu-list a {
        font-size: 16px;
        padding: 14px 24px;
    }
}


/* CTAボタン：mainVisualのボタンと同等デザイン（aでもbuttonでもOK） */
.cta-card .btn a,
.cta-card .btn .cta-submit{
  width: 500px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #ff6186 0%, #f51b93 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #fff;
  font-size: 24px !important;
  font-weight: 900 !important;
  padding: 20px 0;
  border-radius: 150px;
  text-decoration: none;
  border: 4px solid #fff;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

  cursor: pointer;
}

/* hoverも同様 */
.cta-card .btn a:hover,
.cta-card .btn .cta-submit:hover{
  background-position: 100% 0%;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

/* spanも同様 */
.cta-card .btn a span,
.cta-card .btn .cta-submit span{
  font-size: 14px;
  margin-left: 5px;
  font-weight: 800;
}

/* buttonの素の見た目を完全に消す（重要） */
.cta-card .btn .cta-submit{
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent; /* 念のため */
  font: inherit;
}

/* mainVisual側は元の青系ボタンに戻す */
.mainVisual .mv-cta .btn a,
.mainVisual .mv-cta .btn .cta-submit{
  width: 500px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #ff6186 0%, #f51b93 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #fff;
  font-size: 24px !important;
  font-weight: 900 !important;
  padding: 20px 0;
  border-radius: 150px;
  text-decoration: none;
  border: 5px solid #fff;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.mainVisual .mv-cta .btn a:hover,
.mainVisual .mv-cta .btn .cta-submit:hover{
  background-position: 100% 0%;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(36, 131, 248, 0.4);
}

.mainVisual .mv-cta .btn a span,
.mainVisual .mv-cta .btn .cta-submit span{
  font-size: 14px;
  margin-left: 5px;
  font-weight: 800;
}

.mainVisual .mv-cta .btn .cta-submit{
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  font: inherit;
}

/* SPは既存と合わせて100%幅に */
@media screen and (max-width: 768px){
  .cta-card .btn a,
  .cta-card .btn .cta-submit{
    width: 100%;
    max-width: 100%;
    font-size: 16px !important;
    padding: 13px 0;
    border: 3px solid #fff;
    box-shadow: 1px 3px 5px rgba(0,0,0,0.35);
  }

  .mainVisual .mv-cta .btn a,
  .mainVisual .mv-cta .btn .cta-submit{
    width: 100%;
    max-width: 100%;
    font-size: 16px !important;
    padding: 13px 0;
    border: 5px solid #fff;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.35);
  }
}

@media screen and (max-width: 768px) {

    #top08 > .inner > h1 , #top09 .inner h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}