﻿/* overall style */
body {
    font-family: 'M PLUS 1', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
}

h1, h2, h3, p, span, li, ul {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

button:focus-visible {
    outline: 3px solid #000099;
    outline-offset: 4px;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.is-hidden {
    display: none !important;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.content {
    max-width: 100%;
    margin: 0 auto;
}
.sp_br,
.sp_none{
    display: none !important;
}
.pc_none{
    display: block;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tab_br{
        display: block !important;
    }
}
@media screen and (max-width: 767px) {
    .content {
        max-width: 100%;
    }
    .sp_br,
    .sp_none{
        display: block !important;
    }
    .pc_none{
        display: none !important;
    }
}

/* font */
.m_plus_1_Regular {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.m_plus_1_SemiBold {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.m_plus_1_Bold {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.m_plus_1_ExtraBold {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.noto_sans_jp_Regular{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.noto_sans_jp_SemiBold{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.noto_sans_jp_Bold{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.noto_sans_jp_Black{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* marker */
.marker{
    display: inline-block;
    line-height: 1;
}
.marker_yellow{
background: linear-gradient(transparent 60%, #FFFF00 0%);
}


.content > * {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    /*display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;*/
}

@media screen and (max-width: 767px) {
    #n00 {
        width: 100%;
    }
}

.q02 .z_design {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 40px;
}

/* ▼ ベース（初期状態）----------------------------- */
#t00.cta_button {
    position: fixed;
    right: 0;
    bottom: 180px;
    z-index: 1000;

    /* 初期は表示しておく */
    opacity: 1;
    visibility: visible;

    /* アニメーションを滑らかにする */
    transform: translateX(0) scale(1);
    transition:
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.3s ease-out;
    will-change: transform, opacity;
}

/* ▼ 完全表示（open）----------------------------- */
/* → 画面内にしっかり表示される */
#t00.cta_button.is_visible.is_open {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    opacity: 1;
    visibility: visible;

    /* ★ 完全に見える位置 */
    transform: translateX(0) scale(1);
}

/* ▼ ピーク状態（peek）----------------------------- */
/* → 右に隠れて少しだけ見える状態 */
#t00.cta_button.is_visible.is_peek {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    opacity: 0.9; /* ほんの少しだけ薄くしてもOK */
    visibility: visible;

    /* ★ 右に隠してチラ見せ */
    transform: translateX(calc(100% - 24px)) scale(0.96);
}

/* ▼ 完全非表示（is_visible が無いとき）----------- */
#t00.cta_button:not(.is_visible) {
    opacity: 0;
    visibility: hidden;
}

.t01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 90px;
    /* width: 200px;
    height: 100px; */
    border-radius: 16px 0 0 16px;
    @media screen and (max-width: 1080px) {
        width: auto;
        /*max-width: 180px;*/
        height: 70px;
    }
}

.t01_box1 {
    background-color: #FF8710;
}

.t01_box1 p {
    color: #ffffff;
    font-size: clamp(1.125rem, 1.032rem + 0.38vw, 1.375rem);
    font-weight: bold;
}

.t01_box2 {
    background-color: #000099;
}

.t01_box2 p {
    color: #ffffff;
    font-size: clamp(1.125rem, 1.032rem + 0.38vw, 1.375rem);
    font-weight: bold;
}

.t01_box2 p span {
    color: #ffffff;
    font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
    font-weight: bold;
}

.t01_box3 {
    background-color: #ffffff;
    height: 80px;
    border-top: 3px solid #000099;
    border-bottom: 3px solid #000099;
    border-left: 3px solid #000099;
}

.t01_box3 p {
    color: #000099;
    font-weight: bold;
}

.t02, 
.t03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* width: 160px; */
    width: 150px;
    @media screen and (max-width: 1080px) {
        width: auto;
        padding: 0 6px;
    }
}

.t02 p {
    color: #FF8710;
    font-size: clamp(0.813rem, 0.766rem + 0.19vw, 0.938rem);
    font-weight: bold;
}

.t03 p {
    color: #000099;
    font-size: clamp(0.813rem, 0.766rem + 0.19vw, 0.938rem);
    font-weight: bold;
}

@media screen and (max-width: 1080px) {
    #t00.cta_button.is_visible.is_open{
        display: grid;
        grid-template-columns: repeat(2, minmax(140px,180px));
        grid-template-rows: none;
        justify-content: center;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none !important;
        .btn_mypage{
            display: none;
        }
        .t01_box1,
        .t01_box2{
            border-radius: 16px 16px 0 0;
        }
    }
    #t00.cta_button.is_visible.is_peek {
        display: grid;
        grid-template-columns: repeat(2, minmax(140px,180px));
        grid-template-rows: none;
        justify-content: center;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        .btn_mypage{
            display: none;
        }
        .t01_box1,
        .t01_box2{
            border-radius: 16px 16px 0 0;
        }
    }
    /*#t00.cta_button,
    #t00.cta_button.is_visible.is_peek,
    #t00.cta_button:not(.is_visible) {
        display: none !important;
    }*/
}

#u00.menu {
    display: none;
}

@media screen and (max-width: 1080px) {
    #u00.menu {
        position: fixed;
        z-index: 30;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        width: 280px;
        max-width: 80%;
        height: 100%;
        box-shadow: -6px 0 16px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(20px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }

    #u00.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .u01 {
        display: grid;
        grid-template-rows: auto auto;
        justify-content: end;
        justify-items: center;
        align-items: center;
        padding: 1rem;
        box-sizing: border-box;
        position: relative;
    }
    .u01 p{
        color: #000099;
        font-size: .8rem;
        font-weight: bold;
        text-align: center;
    }

    .u01 img {
    }

    .u02 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        margin-top: 0.5rem;
        box-sizing: border-box;
    }

    .u03 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        cursor: pointer;
    }

    .u03 p {
        font-size: 1rem;
        font-weight: bold;
        color: #000099;
    }
    .u03.empty_link p{
        color: #b3b3b3;
    }

    .u03 .z_arrow_down {
        transition: transform 0.2s ease;
    }
    .u03.empty_link .z_arrow_down{
        color: #b3b3b3;
    }

    .u03.is-open .z_arrow_down {
        transform: rotate(180deg);
    }

    .u03_inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
    }

    .u03_inner.is-open {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
        padding: 0.75rem 1rem;
    }
    .u03_inner.is-open a{
        display: block;
        width: 100%;
    }

    .u03_p1 {
        font-size: 0.875rem;
        color: #000099;
    }

    .u03_p2 {
        font-size: 1.125rem;
        font-weight: bold;
        color: #000099;
    }

    .u04 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        margin-top: 1rem;
        gap: 1rem;
    }

    .u05,
    .u06,
    .u07 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 100px;
        border-radius: 16px;
    }

    .u05 {
        background-color: #FF8710;
    }

    .u05 p {
        color: #ffffff;
        font-size: 1.375rem;
        font-weight: bold;
    }

    .u06 {
        background-color: #000099;
    }

    .u06 p {
        color: #ffffff;
        font-size: 1.375rem;
        font-weight: bold;
    }

    .u06 span {
        font-size: 1.125rem;
    }

    .u07 {
        background-color: #ffffff;
        height: 60px;
        border: 3px solid #000099;
    }

    .u07 p {
        color: #000099;
        font-size: 1.375rem;
        font-weight: bold;
    }

    .u08 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 20px;
        background-color: #ffffff;
    }

    .u08 p {
        color: #FF8710;
        font-size: 0.9375rem;
        font-weight: bold;
    }

    .u09 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 20px;
        background-color: #ffffff;
    }

    .u09 p {
        color: #000099;
        font-size: 0.9375rem;
        font-weight: bold;
    }
}

.content > header {
    position: relative;
    z-index: 1;  
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 100px;
    margin: 0 auto;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
.content > header {
    padding: 0 5%;
}
}

header .m01 {
    display: flex;
    flex-direction: column;
}

header .m01 img {
    width: 250px;
    height: auto;
}

.m01 h2 {
    font-size:  clamp(1.25rem, 1.14rem + 0.47vw, 1.563rem);
    font-weight: 800;
    color: #000099;
    line-height: 1;
}

.m01 p {
    font-size: 1.125rem;
    color: #000099;
    letter-spacing: 0.2rem;
    line-height: 1;
}

header .m02 {
    display: flex;
}

.m03 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 64px;
    border-radius: 100px;
    gap: 0.5rem;
}

.m03 p {
    font-size: 1.125rem;
    color: #000099;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 1;
}
.m03.empty_link p {
    font-size: 1.125rem;
    color: #b3b3b3;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 1;
}

.m03:hover {
    cursor: pointer;
    background-color: #000099;
}
.m03.empty_link:hover{
    cursor: pointer;
    background-color: #b3b3b3;
}

.m03:hover p {
    color: #ffffff;
}

.m03:hover .z_arrow_down {
    color: #ffffff;
}

.m04 {
    display: none;
}

.m05 {
    position: absolute;
    top: 100px;
    left: calc(50% - 500px);
    background-color: #ffffff;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    height: 150px;
    border: 3px solid #000099;
    border-radius: 16px;
}

.m05.is-open {
    display: grid;
    grid-template-columns: 150px 660px;
    column-gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    z-index: 100;
}
@media screen and (max-width: 1080px) {
    .m05.is-open {
        display: none;
    }
}

.m05 p {
    color: #000099;
}

/*
.m06 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    height: auto;
    padding-left: 2rem;
    box-sizing: border-box;
}
*/

.m06 p {
    font-size: 1.125rem;
    color: #000099;
    font-weight: 700;
    line-height: 1;
}

/*
.m07 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 2rem;
}
*/

.m08 {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 230px));
    gap: 24px;
    /*display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 2rem;*/
}

.m09 {
    display: grid;
    grid-template-columns: auto auto;
    justify-items: center;
    justify-content: space-between;
    align-items: center;
    width: 230px;
    height: 50px;
    padding: 0 1rem;
    box-sizing: border-box;
    border-radius: 16px;
    /* display: flex;
    flex-direction: space-between;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: auto;
    padding: 0 1rem;
    box-sizing: border-box;
    border-radius: 16px; */
}

.m09 img {
    width: 8px;
    height: 16px;
}

.m09 .z_arrow_down {
    margin-right: 1rem;
}

.m09:hover {
    background-color: rgba(184, 245, 255, 0.2);
    cursor: pointer;
}

.m10 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
}

.m10_p2 {
    font-weight: bold;
}

.m10 p {
    text-align: left;
}

@media screen and (max-width: 1080px) {
    .content > header {
        padding: 1rem;
    }

    #m00 {
        width: 100%;
        box-sizing: border-box;
    }

    .m01 {
        width: 200px;
    }

    .m01 h2 {
        font-size: 1.25rem;
    }

    .m01 p {
        font-size: 0.8125rem;
    }

    .m02 {
        gap: 2rem;
    }

    .m03 {
        display: none;
    }

    .m04 {
        display: flex;
    }

    .m04 img {
        width: 40px;
        height: 40px;
    }

}

#n00.firstview_area {
    /*display: flex;
    justify-content: center;
    flex-direction: column;*/
    width: 100%;
    margin: 0 auto;
}

.n01.firstview_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .n01.firstview_content {
        padding-bottom: 160px;
    }
}

.n01.firstview_content img {
    max-width: 100%;
    height: auto;
}

.n01.firstview_content .firstview_content_image{
    position: absolute;
    top: 5%;
    /* left: 10%; */
    left: 8.5%;
}
@media screen and (max-width: 1180px) {
    .n01.firstview_content .firstview_content_image{
        top: 8%;
        left: 8%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1179px) {
    .n01.firstview_content .firstview_content_image{
        width: 100px;
        top: 5%;
        left: 8%;
    }
}
@media screen  and (max-width: 767px) {
    .n01.firstview_content .firstview_content_image{
        width: 80px;
        top: 5%;
        left: 8%;
    }
}

.n01.firstview_content h1 {
    position: absolute;
    top: 28%;
    left: 35%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.875rem, 2.215rem + 2.82vw, 4.75rem);
    color: #000099;
    font-weight: 800;
    line-height: 1;
    text-align: left;
}
.n01.firstview_content h1 span {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    height: 1.5em;
    line-height: 1;
    font-size: clamp(1.625rem, 1.053rem + 2.44vw, 3.25rem);
    font-weight: 800;
    color: #000099;
}
@media screen and (max-width: 1180px) {
    .n01.firstview_content h1 {
        top: 35%;
    }
}
@media screen and (min-width: 830px) and (max-width: 1179px) {
    .n01.firstview_content h1 {
        top: 30%;
    }
}
@media screen and (min-width: 768px) and (max-width: 829px) {
    .n01.firstview_content h1 {
        top: 30%;
        font-size: 2.8rem;
    }
}
@media screen  and (max-width: 767px) {
    .n01.firstview_content h1 {
        top: 12%;
        left: 8%;
        transform: none;
        font-size: 2.8rem;
    }
}

.n01.firstview_content .firstview_content_point {
    position: absolute;
    left: 35%;
    bottom: 17%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.n01.firstview_content .firstview_content_point img{
    width: 100%;
    max-width: 180px;
    height: auto;
}

@media screen and (max-width: 1180px) {
    .n01.firstview_content .firstview_content_point {
        bottom: 15%;
    }
    .n01.firstview_content .firstview_content_point img{
        max-width: 150px;
    }
}

@media screen and (max-width: 1080px) {
    .n01.firstview_content .firstview_content_point {
        bottom: 14%;
    }
    .n01.firstview_content .firstview_content_point img{
        max-width: 140px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .n01.firstview_content .firstview_content_point {
        bottom: 12%;
    }
    .n01.firstview_content .firstview_content_point img{
        max-width: 130px;
    }
}
@media screen  and (max-width: 767px) {
    .n01.firstview_content .firstview_content_point {
        bottom: 140px;
        width: 100%;
        margin: 0 auto;
        left: 50%;
    }
    .n01.firstview_content .firstview_content_point img{
        max-width: 115px;
    }
}

.n01.firstview_content .firstview_content_offer{
    position: absolute;
    left: 35%;
    bottom: 0;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 80px;
    background: #fff;
    color: #000099;
    line-height: 80px;
}
@media screen and (max-width: 1010px) {
    .n01.firstview_content .firstview_content_offer{
        height: 70px;
        line-height: 70px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1009px) {
    .n01.firstview_content .firstview_content_offer{
        height: 60px;
        line-height: 60px;
        bottom: -5%;
    }
}
@media screen and (max-width: 767px) {
    .n01.firstview_content .firstview_content_offer{
        display: block;
        left: 50%;
        bottom: 40px;
        width: 100%;
        height: 80px;
        margin: 0 auto;
        line-height: 80px;
    }
}

.n01.firstview_content .firstview_content_offer .offer_monthly_box{
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 0 0 40px;
    line-height: 80px;
}
@media screen and (max-width: 1010px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box{
        height: 70px;
        line-height: 70px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1009px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box{
        height: 60px;
        padding: 0 0 0 20px;
        line-height: 60px;
    }
}
@media screen and (max-width: 767px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box{
        width: 100%;
        height: 80px;
        padding: 0 0 0 20px;
        line-height: 80px;
    }
}

.n01.firstview_content .firstview_content_offer .offer_units_box {
    height: 80px;
    padding: 0 120px 0 80px;
    background: #000099 url(../../asset/images/decoration_doubleline.webp) right 10px top 20px no-repeat;
    color: #fff;
    clip-path: polygon(100% 0, 0 0, 15% 100%, 100% 100%);
    line-height: 80px;
    text-align: center;
}
@media screen and (max-width: 1010px) {
    .n01.firstview_content .firstview_content_offer .offer_units_box {
        height: 70px;
        line-height: 70px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1009px) {
    .n01.firstview_content .firstview_content_offer .offer_units_box {
        height: 60px;
        padding: 0 80px 0 60px;
        line-height: 60px;
    }
}
@media screen and (max-width: 767px) {
    .n01.firstview_content .firstview_content_offer .offer_units_box {
        height: 80px;
        padding: 0;
        line-height: 80px;
        clip-path: none;
    }
    .n01.firstview_content .firstview_content_offer .offer_units_box strong{
        padding-right: 2rem;
    }
}

.n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_monthly{
    height: 40px;
    padding: 0 10px;
    text-align: center;
    background: #000099;
    border-radius: 6px;
    line-height: 40px;
}
.n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_monthly span{
    font-size: clamp(1.625rem, 1.537rem + 0.38vw, 1.8rem);
    color: #fff;
}
.n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_ok{
    font-size: clamp(2rem, 1.912rem + 0.38vw, 2.25rem);
    font-weight: 800;
}
.n01.firstview_content .firstview_content_offer .offer_units_image{
    position: absolute;
    bottom: 10px;
    right: 20px;
}
@media screen and (max-width: 1010px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_monthly span{
        font-size: 1.5rem;
    }
    .n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_ok{
        font-size: 1.8rem;
    }
    .n01.firstview_content .firstview_content_offer .offer_units_image{
        bottom: 10px;
        right: 20px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1009px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_monthly span{
        font-size: 1.3rem;
    }
    .n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_ok{
        font-size: 1.6rem;
    }
    .n01.firstview_content .firstview_content_offer .offer_units_image{
        width: 60px;
        bottom: 10px;
        right: 13px;
    }
}
@media screen and (max-width: 767px) {
    .n01.firstview_content .firstview_content_offer .offer_units_image{
        width: 45px;
        bottom: -75px;
        right: 25%;
    }
    
}

.n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee,
.n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_num{
    font-size: clamp(3.625rem, 3.581rem + 0.19vw, 3.75rem);
    font-weight: 800;
}

.n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee .offer_fee_yen,
.n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_daisu{
    font-size: clamp(1.625rem, 1.493rem + 0.56vw, 2rem);
}
.n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee .offer_fee_tax{
    font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
    font-weight: 800;
}
@media screen and (min-width: 768px) and (max-width: 1009px) {
    .n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee,
    .n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_num{
        font-size:2.6rem;
    }

    .n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee .offer_fee_yen,
    .n01.firstview_content .firstview_content_offer .offer_units_box .offer_units_daisu{
        font-size: 1.5rem;
    }
    .n01.firstview_content .firstview_content_offer .offer_monthly_box .offer_fee .offer_fee_tax{
        font-size: 1.2rem;
    }
}

.n02 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    gap: 1.5rem;
}

.n03 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0 0;
}

.n04 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: #fff;
    border: 3px solid #000099;
    border-radius: 18px;
    box-shadow: 2px 2px 2px 2px #ffff00;
}

.n05 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.n05 img {
    max-width: 100%;
    height: auto;
}

.n06 {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.n06 p {
    font-size: 1.25rem;
    color: #000099;
    font-weight: 600;
}

.n06 h3 {
    font-size: 2rem;
    color: #000099;
    font-weight: 700;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    #n00 {
        width: 100%;
    }

    .n03 {
        flex-direction: column;
    }

    .n06 p {
        font-size: 1rem;
    }

    .n06 h3 {
        font-size: 1.675rem;
    }
}

#o00 {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;    
    justify-content: space-evenly;
    /*border-bottom: 2px solid #000099;*/
    gap: 2.5rem;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.o01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    margin: 0 auto;
    padding: 0.5rem 0rem;
    border: 2px solid #000099;
    border-bottom: none;
    box-sizing: border-box;
    border-radius: 16px 16px 0 0;
    background-color: #ffffff;
    color: rgba(0, 0, 153, 0.5);
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
}

.o01 p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}
@media screen and (min-width: 845px) and (max-width: 1024px) {
    .o01 p {
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 844px) {
    .o01 p {
        font-size: 1.1rem;
    }
}

.o01 span {
    background-color: rgba(0, 0, 153, 0.5);
    width: 70px;
    height: 30px;
    padding: 5px;
    border-radius: 5px;
    box-sizing: border-box; 
    color: white;
    line-height: 1;
    font-size: 1.25rem;
}

.o01.o01_box3 {
    /*width: 350px;*/
}

.o01:not(.is-active) {
    box-shadow: inset 0 -4px 0 0 #ffffff;
}

.o01.is-active {
    background-color: #000099;
    color: #ffffff;
}

.o01.is-active span {
    color: #000099;
    background-color: #ffffff;
}

.o01.is-active::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-top: 16px solid #000099;
    z-index: 100;
}

.o02 {
    display: none;
}

@media screen and (max-width: 767px) {
    #o00 {
        gap: 0.25rem;
    }
    .o01 {
        display: none;
    }

    .o02 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 125px;
        height: 64px;
        padding: 0.5rem 0rem;
        border: 2px solid rgba(0, 0, 153, 0.5);
        border-bottom: none;
        box-sizing: border-box;
        border-radius: 16px 16px 0 0;
        background-color: #ffffff;
        color: rgba(0, 0, 153, 0.5);
        font-weight: 600;
        line-height: 1.1;
        text-align: center;
        gap: 0.25rem;
    }

    .o02 p {
        font-weight: bold;
    }

    .o02 span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 153, 0.5);
        width: 45px;
        height: 25px;
        border-radius: 5px;
        box-sizing: border-box; 
        color: white;
        line-height: 1;
        font-size: 0.875rem;
    }

    .o02.is-active {
        background-color: #000099;
        color: #ffffff;
    }

    .o02.is-active::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 24px solid transparent;
        border-right: 24px solid transparent;
        border-top: 24px solid #000099;
        z-index: 100;
    }

    .o02.is-active span {
        background-color: #ffffff;
        color: #000099;
    }

    .o02_box1 {
        flex-direction: column;
        width: 100px;
    }

    .o03 {
        display: flex;
        flex-direction: column;
    }
}

.tab_content_area::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000099;
    border-top: 2px solid #000099;
    position: relative;
}

#p00.tab_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 5rem 0;
    background-color: rgba(184, 245, 255, 0.2);
    position: relative;
}

#p00.tab_content > * {
    max-width: 90%;
    margin: 0 auto 60px;
}

.p01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.p02 {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.p03 {
    display: none;
}

.p05.nichizyo_hoken {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 2rem 3rem;
}

.p06 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 940px;
    margin: 0 auto 40px;
}

.p07 {
    /*width: 450px;*/
    height: 450px;
    display: grid;
    grid-template-rows: auto auto auto;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 2px solid #000099;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 2px #ffff00;
}

.p08 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.p09 p,
.p10 p {
    line-height: 1;
}

.p09 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000099;
    font-weight: 700;
}

.p09 p:first-child {
    margin: 0 auto;
    font-size: 0.875rem;
    letter-spacing: 0.25rem;
}

.p09 p:last-child {
    margin-top: -0.1em;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.p10 {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.p10 p,
.p10 p span {
    font-size: 1.4rem;
    /* font-size: 1.5rem; */
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    text-align: left;
    display: inline;
}


.b_img01 {
    width: 200px;
    height: 180px;
}

.b_img02 {
    width: 200px;
    height: 180px;
}

/*
.p11 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    min-height: 160px;
    border-radius: 14px;
}
*/

.p11 img {
    width: 100%;
    margin: 0 auto;
}

.p12 {
    /*display: flex;
    flex-direction: column;
    gap: 0.35rem;*/
    text-align: left;
}

.p12 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #00215b;
    text-align: left;
}

.p13 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
    url(../../asset/images/decoration_doubleline.webp) right 30px top 50px / 180px no-repeat,
    url(../../asset/images/decoration_doubleline.webp) left 30px bottom 50px / 180px no-repeat;
    width: 100%;
    max-width: 980px;
    height: 130px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 0.5rem;
    border-radius: 20px;
    background-color: #000099;
    color: #ffff00;
}


.p_span1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff00;
    width: 90px;
    height: 40px;
    border-radius: 10px;
    box-sizing: border-box;
    color: #000099;
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1;
}
.p_span2 {
    font-size: 68px;
    line-height: 1;
}
.p_span3 {
    font-size: 30px;
    line-height: 1;
}
.p_span4 {
    font-size: 24px;
    line-height: 1;
}

.p_span1, .p_span2, .p_span3, .p_span4 {
    font-weight: bold;
}

.p14.ad_cleaner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p15 {
    display: flex;
    padding: 30px 0 60px;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.p15 p {
    color: #000099;
}

.p16 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 80px;
    border-radius: 100px;
    border: 2px solid #000099;
    filter: drop-shadow(0px 4px 0px #00000010);
}
.p16:hover{
    filter: none;
    transform: translateY(4px);
}

.p_img1 {
    width: 60px;
    height: 60px;
}

.p17 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p17 p {
    font-weight: bold;
}

.p19 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
    gap: 2rem;
}

.p19_p1 {
    display: none;
}

.p20 {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 980px;
    padding: 2.5rem 2.75rem;
    border: 2px solid #000099;
    border-radius: 24px;
    box-shadow: 4px 4px 0 0 #FFFF00;
    box-sizing: border-box;
    gap: 1.75rem;
}

.p20 > p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000099;
    letter-spacing: 0.15rem;
}

.p20_p1 {
    display: inline-block;
}

.p20 .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.p21 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.p21_next {
    display: none;
}

.p21_prev {
    display: none;
}

.p22 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 280px;
}

.p22 img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
}

.p23 {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    row-gap: 0.4rem;
    align-items: flex-start;
    color: #00215b;
    text-align: left;
}

.p23 p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.p23_span {
    color: #ff4444;
}

.p23 .highlight {
    color: #ff6600;
    font-weight: 700;
}

.p23 .z_design,
.p23 .p23_z-design {
    grid-row: 1 / -1;
    align-self: flex-start;
}

.p24.yt_player_howto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 30px 0;
}

.p24.yt_player_howto ul {
    display: flex;
    flex-wrap: wrap;              /* 謚倥ｊ霑斐＠ */
    gap: 0.75rem 2rem;            /* 陦後→蛻励・縺吶″髢・*/
    justify-content: flex-start;
}

.p24.yt_player_howto li {
    display: inline-flex;         /* 謨ｰ蟄励→繝・く繧ｹ繝医ｒ讓ｪ荳ｦ縺ｳ */
    align-items: center;
    width: 300px;
    white-space: nowrap;          /* 荳ｭ縺ｧ謾ｹ陦後＠縺ｪ縺・*/
    font-size: 1.25rem;
    font-weight: bold;
}

.p25 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 2.5rem 2.75rem;
    border: 2px solid #000099;
    border-radius: 24px;
    box-shadow: 4px 4px 0 0 #FFFF00;
    gap: 1.75rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p25 .image1,
    .p25 .image2,
    .p25 .image3 {
        width: 200px;
    }
}

.p26 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    height: 500px;
}

.p27 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F1FDFF;
    width: 90%;
    max-width: 600px;
    height: 340px;
    gap: 3rem;
}

.p28 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000099;
    width: 100%;
    max-width: 300px;
    height: 40px;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 10px;
}

.p28 p {
    font-size: 1.375rem;
    font-weight: bold;
    color: #ffffff;
}

.p29 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
    .p29 {
        display: grid;
        grid-template-rows: auto auto;
        row-gap: 16px;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
}

.p30 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.p30 li .p30_span {
    background-color: #FFFF00;
    font-size: 1.25rem;
    font-weight: bold;
}

.p31 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.p29 .p32 {
    display: none;
}

.p33 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F1FDFF;
    width: 350px;
    height: 260px;
    text-align: left;
    gap: 1rem;
}

.p33 p {
    padding: 10px;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #000099;
}

.p33_bold {
    font-size: 1.25rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    #p00 {
        width: 100%;
        padding: 3rem 0;
        position: relative;
        /*top: -1rem;*/
    }

    #p00 > * {
        width: 100%;
        margin: 0 auto;
    }

    .p01 {
        gap: 2rem;
        padding-bottom: 30px;
    }

    .p02 {
        display: none;
    }

    .p03 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .p04 {
        display: flex;
        flex-direction: column;
    }

    .p05.nichizyo_hoken {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .p06 {
        /*display: flex;
        flex-direction: column;*/
        display: grid;
        grid-template-columns: none;
        grid-template-rows: repeat(4, auto);
        row-gap: 24px;
        justify-items: center;
        align-items: center;
        padding: 50px 0;
    }

    .p07 {
        /*width: 340px;
        height: 350px;*/
        width: 90%;
        height: auto;
        padding: 1rem;
        box-sizing: border-box;
        justify-items: center;
        justify-content: center;
    }

    .p09 p:first-child {
        font-size: 0.75rem;
    }

    .p09 p:last-child {
        /* font-size: 3.75rem; */
        font-size: 2.6rem;
    }

    .p10 p {
        /* font-size: 1.125rem; */
        font-size: 1rem;
    }

    .p11 {
        padding: 0;
    }

    .p11 img {
        /* max-height: 135px; */
    }

    .p12 {
        width: 100%;
        font-size: 0.875rem;
    }

    .p13 {
        flex-direction: row;
        background-image: url(images/059.webp);
        width: 340px;
        height: 130px;
        padding: 40px 10px;
        line-height: 1.6;
    }

    .p_span1 {
        display: inline-flex;
        align-items: center;     /* 垂直方向に中央揃え */
        justify-content: center;
        font-size: 1.75rem;
    }

    .p_span2 {
        font-size: 3.625rem;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .p_span3 {
        margin-left: -0.5rem;
        font-size: 1.75rem;
        justify-content: flex-end;
        align-self: flex-end;
    }

    .p_span4 {
        font-size: 1rem;
        align-self: flex-end;
    }

    .p14.ad_cleaner {
        padding-top: 30px;
    }

    .p15 {
        flex-direction: column;
    }

    .p16 {
        width: 320px;
    }

    .z_title.p18 {
        padding-top: 3rem;
    }

    .p19 {
        padding: 30px 0;
        gap: 1rem;
    }

    .p19_p1 {
        display: inline-block;
        font-weight: bold;
        font-size: 1.375rem;
        color: #000099;
    }

    .p20 {
        background-color: transparent;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .p20_p1 {
        display: none;
    }

    .p21 {
        position: relative;
        display: flex;
        flex-direction: row;
    }

    .p21_next {
        position: absolute;
        z-index: 1;
        top: 40%;
        right: -10px;
        display: block;
    }

    .p21_prev {
        position: absolute;
        z-index: 1;
        top: 40%;
        left: -10px;
        display: block;
        rotate: 180deg;
    }

    .p22 {
        background-color: #ffffff;
        width: 340px;
        max-width: 100%;
        height: 440px;
        padding: 2rem 0.5rem;
        border: 2px solid #000099;
        border-radius: 20px;
        box-shadow: 4px 4px 0 0 #FFFF00;
        box-sizing: border-box;
    }

    .p22 img {
        max-height: 300px;
    }

    .p22[data-active="true"] {
        opacity: 1;
        transform: translateX(0);
        position: relative;
        pointer-events: auto;
    }

    .p22[data-active="false"] {
        display: none;
    }

    .p25 {
        width: 340px;
        box-sizing: border-box;
    }

    .p26 {
        height: auto;
        flex-direction: column;
    }

    .p27 {
        width: 300px;
        height: auto;
        padding: 2rem;
        border-radius: 20px;
        gap: 1rem;
        box-sizing: border-box;
    }
    .p27 .sp_none{
        display: none !important;
    }

    .p29 {
        flex-direction: column;
    }

    .p29 .p30 {
        display: none;
    }

    .p29 .p31 {
        display: none;
    }

    .p29 .p32 {
        display: flex;
        flex-direction: column;
    }

    .p29 .z_design {
        width: 30px;
        height: 30px;
        font-size: 1.125rem;
        line-height: 30px;
    }

    .p33 {
        width: 300px;
        border-radius: 20px;
    }

    .p33 .z_design {
        width: 30px;
        height: 30px;
        font-size: 1.125rem;
        line-height: 30px;
    }

    .p33 span {
        font-size: 1.25rem;
        font-weight: bold;
    }
}

.content #q01 {
    /*background-color: rgba(184, 245, 255, 0.2);*/
    width: 100%;
    padding: 0 0 5rem 0;
    margin: 0 auto;
    gap: 2rem;
}
.content #q02,
.content #q03 {
    width: 100%;
    background-color: rgba(184, 245, 255, 0.2);
    padding: 5rem 0;
    margin: 0 auto;
    gap: 2rem;
}

/* .content #q00 {
    background-color: rgba(184, 245, 255, 0.2);
    width: 100%;
    padding: 5rem 0;
    margin: 0 auto;
    gap: 2rem;
} */

#q01 .z_title,
#q02 .z_title,
#q03 .z_title {
    margin-bottom: 60px;
}
.q01 {
    background-color: #ffffff;
    border: 2px solid #000099;
    border-radius: 20px;
    width: 900px;
    height: auto;
    padding: 1rem 2rem;
    margin: 0 auto 24px;
    box-sizing: border-box; 
}
.q01:first-child {
    margin-top: 60px;
}
.q01:last-child {
    margin-bottom: 0;
}

.q02 {
    position: relative;
    /*display: flex;
    flex-direction: row;
    align-items: center;*/
    display: grid;
    grid-template-columns: minmax(30px, 40px) minmax(200px, 1fr) 24px;
    column-gap: 1rem;
    align-items: center;
    justify-content: start;
    justify-items: start;
}

.q02 p {
    /*margin-left: 0.5rem;*/
    font-size: 1.125rem;
    font-weight: 700;
    color: #000099;
}

.q03 {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px 10px 10px;
    margin-right: 1.5rem;
    gap: 1px;
}

.q03 p {
    letter-spacing: 0.05rem;
    font-weight: 400;
}

.q04 {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .content > #q00 {
        width: 100%;
        padding-top: 3rem;
    }

    .q01 {
        width: 80%;
        max-width: 900px;
        /*width: 340px;*/
        padding: 1rem;
    }

    .q02 {
        padding: 0px 0 5px 0;
    }

    .q02 p {
        text-align: left;
        font-size: 1rem;
    }

    .q02 .z_design {
        width: 30px;
        height: 30px;
        font-size: 1.125rem;
        line-height: 30px;
    }

    .q02 .q_img1 {
        /*right: 10px;*/
    }

    .q03 {
        /*width: 260px;*/
        padding-right: 40px;
    }

    .q03 p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .q04 {
        display: block;
    }

    .q05 {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .content > #q00 {
        width: 100%;
        padding-top: 3rem;
    }

    .q01 {
        width: 340px;
        padding: 1rem;
    }

    .q02 {
        padding: 0px 0 5px 0;
    }

    .q02 p {
        text-align: left;
        font-size: 1rem;
    }

    .q02 .z_design {
        width: 30px;
        height: 30px;
        font-size: 1.125rem;
        line-height: 30px;
    }

    .q02 .q_img1 {
        right: 10px;
    }

    .q03 {
        width: 260px;
    }

    .q03 p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .q04 {
        display: block;
    }

    .q05 {
        display: none;
    }
}

.content > footer {
    display: grid;
    grid-template-rows: repeat(3, auto);
    row-gap: 16px;
    padding: 30px 0;
    border-top: solid 1px #CCCCCC;
    text-align: center;
    font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}

footer > a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-underline-position: under; 
}
footer a:hover{
    text-decoration: none;
}
footer .copyright{
    font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
}
@media screen and (max-width: 767px) {
    footer a:hover{
        text-decoration: underline;
        text-underline-offset: 2px;
        text-underline-position: under; 
    }
}

.p_txt1 {
    font-weight: bold;
    color: #000099;
    background-color: #ffff00 ; 
}

.q_img1 {
    /*position: absolute;
    right: 20px;*/
}

#r00.tab_content.coupon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.r01 {
    width: 100%;
    background-color: #F1FDFF;
    padding: 5rem 0 3rem 0;
}
@media screen and (max-width: 767px) {
    .r01 {
        position: relative;
        /*top: -1rem;*/
    }    
}

.r02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.r03 {
    display: none;
}

@media screen and (max-width: 767px) {
    #r00.tab_content.coupon {
        width: 100%;
    }

    .r02 {
        padding: 2rem;
        gap: 0.5rem;
        text-align: center;
    }

    .r02_p1 {
        padding-bottom: 1rem;
        line-height: 1.6;
    }

    .r03 {
        display: block;
    }
}

#g00 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
    gap: 2rem;
}

.g02 {
    padding: 2rem;
}

.g02_br {
    display: none;
}
@media screen and (max-width: 767px) {
    .g02 {
        text-align: center;
    }
}

.g_img01 {
    width: 80px;
    margin: 0 auto;
}

.g03 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.g04 {
    width: 380px;
    height: 360px;
    border: 2px solid #D5B07B;
    border-radius: 16px;
}

.g04_blue {
    border: 2px solid #00AFF3;
}

.g05 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.g05 p {
    font-weight: 400;
}

.g05 img {
    width: 80%;
    height: auto;
}

.g05_p1 {
    font-size: 1rem;
    line-height: 1.6;
}

.g05_p2 {
    font-size: 1rem;
    line-height: 1.6;
}

.g05_span1 {
    font-size: 2rem;
    color: #FF4444;
    font-weight: 800;
    line-height: 1;
}

.g06 {
    width: 780px;
    height: 220px;
    border: 1px solid #000099;
    border-radius: 15px;
    box-sizing: border-box;
}

.g07 {
    padding: 1.75rem;
    text-align: center;
}

.g07_p1 {
    padding-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    color: #1B2188;
}
@media screen and (max-width: 767px) {
    .g07 {
        text-align: center;
    }
}

.g08 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D5B07B;
    height: 45px;
    border-radius: 13px 13px 0 0;
}

.g08_blue {
    background-color: #00AFF3;
}

.g08 p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.g09 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.5rem;
}

.g10 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.g10 img {
    width: 275px;
    height: auto;
}

@media screen and (max-width: 767px) {
    #g00 {
        width: 100%;
    }

    .g02_br {
        display: block;
    }

    .g03 {
        flex-direction: column;
    }

    .g04 {
        width: 340px;
        height: 380px;
    }

    .g05 {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .g06 {
        width: 340px;
        height: 340px;
    }

    .g07 {
        width: 340px;
        padding: 1rem 0 0 0;
    }

    .g07_p1 {
        font-size: 1.125rem;
    }

    .g09 p {
        line-height: 1.6;
    }

    .g10 {
        flex-direction: column;
        gap: 0;
    }
}

#h00 {
    background-color: #F1FDFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
}

.h01 {
    width: 100%;
    padding-bottom: 2rem;
}

.h02 {
    position: relative;
    display :flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    width: 100%;
    max-width: 980px;
    height: auto;
    padding: 50px;
    margin: 40px auto;
    gap: 2rem;
    border: 2px solid #000099;
    box-shadow: 2px 2px 2px 2px #ffff00;
    box-sizing: border-box;
    border-radius: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1024px)  {
    .h02 {
        width: 80%;
    }
}

.h02_btn {
    position: absolute;
    bottom: -50px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.h02_btn img {
    display: block;
    rotate: 180deg;
    transition: transform 0.3s ease;
}

.h02_btn:focus-visible {
    outline: 3px solid #000099;
    outline-offset: 4px;
}

.h02_btn.is-open img {
    transform: rotate(180deg);
}

.h02_nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #000099;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.h02_btn_prev {
    display: none;
}

.h02_btn_next {
    display: none;
}

.h02_btn_next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.h03 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 400px;
    gap: 1rem;
}

.h04 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 300px;
}

.h04 img {
    max-width: 200px;
    max-height: 300px;
}

.h04 .z_triangle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.h05 {
    /*display: flex;
    flex-direction: row;*/
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    align-items: center;
    justify-content: flex-start;
    /*width: 100%;*/
}

.h05 p {
    /*padding-left: 1rem;*/
    font-size: 1rem;
    line-height: 1.6;
    color: #000099;
    text-align: left;
    font-weight: 700;
}

.h05 .z_design {
    width: 30px;
    height: 30px;
    /*flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;*/
    border-radius: 100%;
    background-color: #000099;
    color: #fff;
    font-size: 1.125rem;
    line-height: 30px;
}

.h06 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 880px;
    height: 400px;
    gap: 4rem;
    box-sizing: border-box;
}

.h07 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.h07 a {
    font-size: 1rem;
    color: #000099;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-underline-position: under; 
}
.h07 a:hover{
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .h07 a:hover{
        text-decoration: underline;
        text-underline-offset: 2px;
        text-underline-position: under;
    }
}

.h07 img {
    margin-left: 1rem;
}

.h08,
.h10 {
    display: none;
    width: 100%;
    overflow: hidden;
}

.h09 {
    display: none;
}

.h09::-webkit-scrollbar {
    display: none;
}

.h10 {
    height: 6px;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    #h00 {
        width: 100%;
    }

    .h01 {
        width: 100%;
    }
    .h01.flow_moushikomi{
        padding-bottom: 70px;
    }
    .h01.flow_howto{
        padding-bottom: 0;
    }

    .h02 {
        width: 340px;
        height: auto;
        padding: 0;
        gap: 1.5rem;
        margin: 1rem auto 2rem;
    }

    .h02_btn {
        display: none;
    }

    .h02_btn_prev {
        display: none;
        position: absolute;
        z-index: 10;
        top: 33.5%;
        left: -20px;
        rotate: 180deg;
        transform: translateY(-50%);
    }

    .h02_btn_prev.is-visible {
        display: block;
    }

    .h02_btn_next {
        display: block;
        position: absolute;
        z-index: 10;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
    }

    .h02_btn_next.is-hidden {
        display: none;
    }

    .h03 {
        width: 340px;
        height: 420px;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .h04 {
        gap: 0;
    }

    .h04 .z_triangle {
        display: none;
    }

    .h05 {
        justify-content: center;
        /*padding: 0 1rem;*/
        box-sizing: border-box;
        text-align: center;
    }

    .h05 p {
        font-size: 1rem;
        font-weight: bold;
    }

    .h06 {
        display: none;
        width: 340px;
        height: 420px;
    }

    .h06.is-active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .h06 > .h03 {
        display: none;
    }

    .h06 > .h03.is-current {
        display: flex;
    }

    .h07 {
        margin-top: 2rem;
    }

    .h09 {
        display: flex;
        justify-content: flex-start;
        /*width: 340px;*/
        width: 90%;
        margin: 0 auto;
        padding: 0.5rem 1rem;
        gap: 0.75rem;
        overflow-x: scroll;
        scrollbar-width: 0px;
    }

    .h09 p.is-active {
        background-color: rgba(0, 0, 153, 0.5);
        color: #ffffff;
    }
            
    .h09 p {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #000099;
        flex: 0 0 56px;
        height: 56px;
        margin: 0;
        line-height: 1.6;
        color: #ffffff;
        font-weight: 700;
        font-size: 2rem;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        scroll-snap-align: center;
    }

    .h10 {
        display: block;
        width: 90%;
        margin: 0 auto;
    }
}

    table {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
    }
    th, td {
        border: 3px solid #000099;
        padding: 0.5rem 1rem;
        font-weight: bold;
        margin: 0;
    }
    table p {
        font-weight: bold;
    }
    table .td_p1 {
        text-align: right;
    }

#s00.tab_content.computerfree {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.s01 {
    background-color: #F1FDFF;
    width: 100%;
    padding: 5rem 0 3rem 0;
}

.s02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 0;
    gap: 1rem;
}


.s03 {
    display: none;
}

@media screen and (max-width: 767px) {
    #s00.tab_content.computerfree {
        width: 100%;
    }

    .s01 {
        position: relative;
        /*top: -1rem;*/
        width: 100%;
    }

    .s02 {
        width: 340px;
        padding: 1rem 0;
        margin: 0 auto;
        box-sizing: border-box;
        text-align: center;
    }

    .s02 p {
        line-height: 1.6;
    }

    .s02_p1 {
        padding-bottom: 1rem;
    }

    .s01_h1 {
        padding-bottom: 0.5rem;
    }

    .s02 {
        display: block;
    }

    .s03 {
        display: block;
    }
}

#i00 {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
}

.i02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 1rem;
}

.i02_br {
    display: none;
}

.i_img01 {
    width: 80px;
    margin: 0 auto;
}

.i03 {
    width: 780px;
    height: 380px;
    margin: 30px 0;
    border: 2px solid #000099;
    border-radius: 16px;
}

.i04 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000099;
    width: 100%;
    height: 45px;
    border-radius: 16px 16px 0 0;
}

.i04 p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.i05 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 60px;
    box-sizing: border-box;
}

.i06 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
}

.i06 p {
    color: #000099;
    font-weight: bold;
}

.i07 {
    text-align: left;
    width: 100%;
}

.i07_p1 {
    font-weight: bold;
}

.i07_p2 {
    font-size: 0.8125rem;
    font-weight: bold;
}

.i07--indent {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
}

.i08 {
    position: absolute;
    right: 60px;
    top: 30px;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.i08 img {
    width: 200px;
    display: block;
}

.i09 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 1rem;
    gap: 2.5rem;
}

.i10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 140px;
    border: 2px solid #000099;
    border-radius: 16px;
}

.i10_p1 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000099;
}

.i10_p2 {
    color: #000099;
}

.i10_span1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #FF4444;
}

.i12 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    padding: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .i12 {
        justify-content: flex-start;
        width: 100%;
        overflow-x: scroll;
        padding: 1rem 0;
    }
}

.i13 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F1FDFF;
    width: 220px;
    height: 350px;
    padding: 10px;
    gap: 0.5rem;
    box-sizing: border-box;
}

.i13 p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #000099;
    font-weight: bold;
}

.i13 img {
    max-width: 100px;
}

.i13_p1 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #000099;
}

.i14 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.i14_p1 {
    padding-right: 5px;
}

.i15 {
    width: 600px;
    margin: 0 auto 35px;
}

.i15 p {
    font-size: 0.875rem;
    text-align: left;
}

.i16 {
    width: 780px;
    height: 320px;
    margin: 30px 0;
    border: 2px solid #000099;
    border-radius: 16px;
}

.i17 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000099;
    width: 100%;
    height: 45px;
    border-radius: 16px 16px 0 0;
}

.i17 p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.i18 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.i18_p1 {
    margin-bottom: 1rem;
}

.i18 p {
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.6;
}

.i19,
.k13 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    border-radius: 100px;
    border: 2px solid #000099;
    filter: drop-shadow(0px 4px 0px #00000010);
}

.i19.pc_none,
.k13.pc_none{
    display: none;
}
@media screen and (max-width: 1024px) {
.i19.pc_none,
.k13.pc_none{
    display: block !important;
    width: 90%;
    max-width: 400px;
    margin: 0 auto 30px;
}
}
.i19 a,
.k13 a {
    display: block;
    padding: 0 16px;
    color: #000099;
    font-weight: bold;
    /* text-decoration: underline;
    text-underline-offset: 2px;
    text-underline-position: under;  */
}
.i19 .btn_wrap,
.k13 .btn_wrap{
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 6px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
}
.i19 .btn_content,
.k13 .btn_content{
    display: inline-block;
    line-height: 1.5;
    text-align: center;
}
.i19 .btn_content .small,
.k13 .btn_content .small{
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
}


@media screen and (max-width: 767px) {
    #i00 {
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }

    .i02 {
        display: flex;
        flex-direction: column;
        width: 305px;
        padding: 2rem 0;
        gap: 1rem;
        text-align: center;
    }

    .i02 p {
        line-height: 1.6;
    }

    .i02_br {
        display: block;
    }

    .i03 {
        width: 340px;
        height: auto;
    }

    .i05 {
        padding: 2rem;
        flex-direction: column;
    }

    .i07 p {
        line-height: 1.6;
    }

    .i07 p:first-child {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .i07 p:last-child {
        font-size: 0.8175rem;
    }

    .i08 {
        position: static;
    }

    .i09 {
        flex-direction: column;
    }

    .i10 {
        width: 340px;
    }

    .i11 {
        width: 100%;
    }

    .i12 {
        justify-content: flex-start;
        width: 100%;
        overflow-x: scroll;
        padding: 1rem 0;
    }

    .i13 {
        width: 220px;
        flex-shrink: 0;
    }

    .i15 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 320px;
        margin: 0 auto;
        gap: 1rem;
    }

    .i15 p {
        font-size: 0.875rem;
        text-align: left;
        line-height: 1.6;
    }

    .i16 {
        width: 340px;
        height: auto;
    }

    .i18 {
        width: 340px;
        box-sizing: border-box;
        gap: 0.5rem;
    }

    .i18 p {
        font-weight: bold;
    }
}

#j00 {
    width: 100%;
    background-color: #F1FDFF;
    padding: 3rem 0 0 0;
}

.j00_h2 {
    font-size: 1.675rem;
}

.j01 {
    padding: 1rem 0 3rem;
}

.j01_1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
}

.j_img01 {
    margin: 0 auto;
}

.j02 {
    background-color: #ffffff; 
    width: 780px;
    height: auto;
    padding: 0 0 2rem 0;
    margin: 30px auto;
    border: 2px solid #000099;
    border-radius: 16px;
}

.j03 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000099;
    width: 100%;
    height: 45px;
    border-radius: 16px 16px 0 0;
}

.j03 p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.j04 {
    padding: 30px;
}

.j04_br {
    display: none;
}

.j04_p1 {
    font-size: 0.875rem;
    line-height: 1.6;
}

.j04_span {
    font-size: 1.125rem;
    color: #FF4444;
}

.j05 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 680px;
    height: 150px;
    padding: 1rem 0;
    margin: 0 auto;
    gap: 3rem;
}

.j05-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.j06 {
    display: grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.j06_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.j06 img {
    max-width: 100px;
    max-height: 120px;
    align-self: center;
}

.j06 p {
    align-self: end;
    margin: 0;
    font-weight: bold;
}

.j07 {
    background-color: #000099;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 30px;
    margin: 15px auto;
}

.j07 p {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: bold;
}

.j07_large {
    width: 260px;
}

.j08 {
    background-color: #FFFDF1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 740px;
    height: auto;
    padding: 1rem;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 0.5rem;
}

.j08_p1 {
    font-size: 0.75rem;
    line-height: 1.6;
}

.j09 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.j09 img {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

.j10 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 660px;
}

.j10_span {
    color: #FF4444;
}

.j10 p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.j10_p1 {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    #j00 {
        width: 100%;
    }

    .j01 .j00_h2 {
        /* font-size: 1rem; */
    }

    .j01 {
        width: 100%;
        padding-bottom: 1rem;
    }

    .j01_1 {
        width: 80%;
        /*max-width: 300px;*/
        margin: 1rem auto;
        gap: 0;
        line-height: 1.6;
    }

    .j01_1 p {
        line-height: 1.6;
    }

    .j02 {
        width: 340px;
    }

    .j03 p {
        font-size: 1.375rem;
    }

    .j04 {
        display: flex;
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0.5rem;
        text-align: center;
    }

    .j04 p {
        font-size: 0.875rem;
    }

    .j04_br {
        display: block;
    }

    .j04_span {
        font-size: 1rem;
        color: #FF4444;
    }

    .j05 {
        flex-direction: column;
        width: 340px;
        height: auto;
        padding: 1rem 0;
        gap: 1rem;
    }

    .j05-group {
        gap: 2rem;
    }

    .j08 {
        width: 300px;
        height: auto;
    }

    .j08 p {
        font-size: 0.875rem;
    }

    .j08_p1 {
        text-align: left;
        line-height: 1.6;
    }

    .j09 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: auto;
    }

    .j09 p {
        line-height: 1.6;
    }

    .j10 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
        width: 300px;
    }

    .j10_span {
        font-size: 0.875rem;
    }
}

#k00 {
    background-color: #ffffff;
    width: 980px;
    padding: 0 50px 50px;
    margin: 0 auto;
    margin-top: -30px;
    box-sizing: border-box;
}

.k01 {
    padding: 2rem 0;
}

.k01_span {
    font-size: 1.125rem;
    color: #FF4444;
}

.k01_br {
    display: none;
}

.k02 {
    padding: 0 30px 30px;
}

.k02_tr {
    background-color: rgba(0, 0, 153, 0.5);
}

.k02_th1 {
    width: 160px;
}

.k02_th2 {
    width: 160px;
}

.k02_th3 {
    width: 230px;
}

.k02_th4 {
    width: 230px;
}

.k02_span1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF4444;
    margin-left: -0.25rem;
}

.k02_span2 {
    color: #FF4444;
    font-weight: bold;
}

.k03 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 763px;
    margin: 0 auto;
}

.k03 p {
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.z_bar.k00_bar {
    margin-top: 100px;
}

.k04 {
    background-color: #ffffff;
    width: 100%;
    max-width: 980px;
    /*padding: 0 30px;*/
    margin: 0 auto;
    margin-top: -30px;
    box-sizing: border-box;
}

.k05 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000099;
    width: 200px;
    height: 40px;
    margin: 30px auto;
}

.k05 p {
    color: #ffffff;
    font-size: 1.375rem;
    line-height: 1;
}

.k06 {
    padding: 1.5rem 0;
}

.k07 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 930px;
    height: 360px;
    margin: 0 auto;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 1rem;
    box-sizing: border-box;
}

.k07 p {
    color: #000099;
    font-weight: bold;
}

.k08 {
    border-radius: 30px;
}


.k08 {
    background-color: #F1FDFF;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 280px;
    height: 360px;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    gap: 0.75rem;
}

.k08_p1 {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.k08_p2 {
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.k08 img {
    max-width: 100px;
    max-height: 80px;
}

.k09 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.k09 > .z_design {
    width: 40px;
    height: 40px;
    font-size: 1.375rem;
    line-height: 40px;
}

.k09_p1 {
    margin-right: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.k10 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    width: 240px;
    height: 145px;
    padding: 0.25rem;
    box-sizing: border-box;
    border: 2px solid #000099;
    border-radius: 16px;
}

.k10_small {
    height: 100px;
}

.k10 p {
    font-size: 0.8125rem;
    line-height: 1.6;
    text-align: left;
}

.k10 .webform_link a{
    text-decoration: underline;
    text-underline-offset: 1px;
    text-underline-position: under;
}
.k10 .webform_link a:hover{
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .k10 .webform_link a:hover{
        text-decoration: underline;
    }    
}

.k11 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 840px;
    padding: 30px 0;
    margin: 0 auto;
}

.k11_p {
    color: #FF4444;
    font-size: 0.75rem;
    text-align: left;
}
.k12 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 2rem 0;
}

.k12 p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: bold;
    color: #000099;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-underline-position: under; 
}

.k12 img {
    position: absolute;
    right: 25%;
    width: 10px;
    height: 19px;
}

/* .k13.pc_none {
    display: none;
}

.k13 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0 5rem;
}

.k13 img {
    position: absolute;
    right: 0%;
    width: 10px;
    height: 19px;
} */

@media screen and (max-width: 767px) {
    #k00 {
        width: 100%;
        padding: 0 10px;
        margin-top: 0;
    }

    .k01 {
        display: flex;
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 1rem;
        text-align: center;
    }

    .k01 p {
        font-size: 0.875rem;
    }

    .k01_p1 {
        margin-top: -1rem;
    }

    .k01_span {
        font-size: 1rem;
        color: #FF4444;
    }

    .k01_br {
        display: block;
    }

    .k02 {
        flex-shrink: 0;
        padding: 0 1rem;
        overflow-x: scroll;
    }

    .k02 table {
        width: auto;
        min-width: 640px;
    }

    .k03 {
        width: 300px;
        padding: 1rem 0;
        margin: 0 auto;
    }

    .k03 p {
        font-size: 0.875rem;
    }

    .k04 {
        width: 100%;
        padding: 0 1rem;
        margin: 0;
    }

    .k07 {
        width: 330px;
        margin: 0 auto;
        overflow-x: scroll;
    }

    .k08 {
        flex-shrink: 0;
        width: 280px;
        padding: 2rem 1rem;
    }

    .k11 {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 300px;
        margin: 0 auto;
    }

    .k11 p {
        text-align: left;
        color: #FF4444;
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .k12 {
        display: none;
    }
}


.z_triangle {
    width: 0;
    height: 0;
    border-style:solid;
    border-width: 22px 0 22px 20px;
    border-color: transparent transparent transparent #000099;
}


.z_scrollbar {
    position: relative;
    background-color: #dbe3ff;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    overflow: hidden;
}

.z_scrollbar_fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #000099;
    transition: transform 0.2s ease, width 0.2s ease;
}

.z_arrow_down{
    position: relative;
    --tweak: 0.5px;
    width: 10px;
    height: 15.81px;
    color: #0017B8;
}
.m03.empty_link .z_arrow_down{
    position: relative;
    --tweak: 0.5px;
    width: 10px;
    height: 15.81px;
    color: #b3b3b3;
}
.m03.empty_link:hover .z_arrow_down{
    color: #fff;
}

.z_arrow_down::before,
.z_arrow_down::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2.5px;
    height: 80%;
    background: currentColor;
    transform-origin: bottom center;
    border-radius: 2px;
}

.z_arrow_down::before{
    transform: translateX(calc(-50% - var(--tweak))) rotate(45deg);
}
.z_arrow_down::after{
    transform: translateX(calc(-50% + var(--tweak))) rotate(-45deg);
}

/* components */
.z_title {
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

.z_title h2 { 
    font-size: 2rem;
    color: #000099;
    font-weight: 700; 
}

.z_title::after {
    content: "";
    display: block;
    width: 200px;
    height: 3px;
    margin: 0.5rem auto 0;
    background-color: rgba(0, 0, 153, 0.5);
}

.z_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000099;
    width: 100%;
    max-width: 980px;
    height: 60px;
    margin: 10px auto 30px;
    box-sizing: border-box;
}

.z_bar h3 {
    color: white;
    font-size: 1.625rem;
}

.z_design {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #000099;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 30px;
    text-align: center;
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 0.5rem;
    border-radius: 999px;
    background-color: #000099;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1; */
}

.z_plus {
    position: relative;
    width: 29.75px;
    height: 29.75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z_plus::before,
.z_plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: calc(29.75px / 3);
    background-color: #000099;
    transform: translate(-50%, -50%);
}

.z_plus::after {
    width: calc(29.75px / 3);
    height: 100%;
}

.z_plus img {
    display: none;
}

@media screen and (max-width: 767px) {
    .z_title h2 {
        font-size: 1.675rem;
    }

    .z_bar {
        width: 100%;
        height: 50px;
        margin: 10px auto 0;
    }

    .z_bar h3 {
        font-size: 1.375rem;
        font-weight: bold;
    }

    .z_design {
        width: 40px;
        height: 40px;
        font-size: 1.675rem;
        line-height: 40px;
    }
}


/* page top link */
.back_to_top {
opacity: 0;
pointer-events: none;
transition: opacity .3s;
}
.back_to_top.is_visible{
display: block;
position: fixed;
bottom: 80px;
right: 20px;
width: 50px;
height: 50px;
background: #000099;
text-align: center;
line-height: 50px;
font-size: 24px;
border-radius: 50%;
opacity: 1;
pointer-events: auto;
transition: opacity 0.3s;
z-index: 800;
@media screen and (min-width: 768px) and (max-width: 1023px){
bottom: 120px;
}
@media screen and (max-width: 767px){
bottom: 120px;
}
}
.back_to_top.is_visible:hover{
opacity: 1;
}

.back_to_top.is_visible .arrow {
position: relative;
display: inline-block;
width: 40px;
height: 40px;
top: 25%;
}

.back_to_top.is_visible .arrow::before,
.back_to_top.is_visible .arrow::after {
content: "";
position: absolute;
top: 0;
left: calc(50% - 2px);
width: 4px;
height: 24px;
border-radius: 9999px;
background: #fff;
transform-origin: 50% 2px;
}
.back_to_top.is_visible .arrow::before {
transform: rotate(45deg);
}
.back_to_top.is_visible .arrow::after {
transform: rotate(-45deg);
}