@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
        sans-serif;
    line-height: 1.6;
    letter-spacing: 0.08em;
    font-feature-settings: "palt" on;
    font-weight: 400;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    display: block;
    text-decoration: none;
    transition: filter 0.3s;
}
a:hover {
    text-decoration: none;
    filter: brightness(130%);
}

li {
    list-style: none;
}

.btn-hover {
    transition: filter 0.3s;
}
.btn-hover:hover {
    filter: brightness(130%);
}

.box-shadow {
    filter: drop-shadow(0 0 30px rgba(62, 62, 62, 0.25));
}
@media screen and (max-width: 1080px) {
    .box-shadow {
        filter: drop-shadow(0 0 4vw rgba(62, 62, 62, 0.25));
    }
}

.block {
    display: block;
}

.pc {
    display: block;
}
@media screen and (max-width: 1080px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}
@media screen and (max-width: 1080px) {
    .sp {
        display: block;
    }
}

.serif {
    font-family: "Noto Serif JP", serif;
}
.cinzel {
    font-family: "Cinzel", serif;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.outer {
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.wrapper {
    min-width: 1920px;
    margin: 0 auto;
    padding-top: 56px;
}
@media screen and (max-width: 1080px) {
    .wrapper {
        width: 100%;
        min-width: initial;
        padding-top: 10.6666666667vw;
    }
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    z-index: 9999;
}
.header_inner {
    width: 1000px;
    padding: 9px 0 7px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.header_logo {
    width: 79px;
}
.header_btn {
    width: 160px;
    height: 40px;
    margin-left: 78px;
    display: block;
    position: relative;
}
.header_btn::after {
    content: "";
    background: url(../images/common/arrow_btn.svg) no-repeat left top;
    background-size: 100% 100%;
    width: 6px;
    height: 9px;
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.header_btn .text {
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    color: #ffffff;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.header_btn .bg {
    width: 160px;
    height: 40px;
    display: block;
}
.header .burgerMenu {
    margin-left: auto;
}
.header .burgerMenu_list {
    display: flex;
    gap: 32px;
}
.header .burgerMenu_link {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.08em;
    color: #333333;
}
.header_menuBtn {
    display: none;
}
@media screen and (max-width: 1080px) {
    .header {
        box-shadow: 0px calc(2 / 750 * 100vw) calc(8 / 750 * 100vw) 0px
            rgba(0, 0, 0, 0.12);
    }
    .header_inner {
        width: 100%;
        height: calc(80 / 750 * 100vw);
        padding: 0 0 0 calc(30 / 750 * 100vw);
    }
    .header_logo {
        width: calc(133 / 750 * 100vw);
    }
    .header_btn {
        width: calc(256 / 750 * 100vw);
        height: calc(64 / 750 * 100vw);
        margin-left: auto;
        margin-right: calc(16 / 750 * 100vw);
    }
    .header_btn::after {
        width: calc(10 / 750 * 100vw);
        height: calc(16 / 750 * 100vw);
        right: calc(16 / 750 * 100vw);
    }
    .header_btn .text {
        font-size: calc(26 / 750 * 100vw);
    }
    .header_btn .bg {
        width: calc(256 / 750 * 100vw);
        height: calc(64 / 750 * 100vw);
    }
    .header_btn .bg svg {
        width: calc(256 / 750 * 100vw);
        height: calc(64 / 750 * 100vw);
    }
    .header .burgerMenu {
        display: none;
        position: absolute;
        top: calc(80 / 750 * 100vw);
        left: 0;
        width: 100%;
        height: calc(100vh - calc(80 / 750 * 100vw));
        background: var(
            --accent-gradation-1,
            linear-gradient(
                269deg,
                #14098f 0%,
                #3c0da0 26.04%,
                #3c0da0 76.04%,
                #14098f 100%
            )
        );
    }
    .header .burgerMenu.-open {
        display: block;
    }
    .header .burgerMenu div {
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    .header .burgerMenu_list {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: calc(40 / 750 * 100vw);
    }
    .header .burgerMenu_item {
        width: 100%;
    }
    .header .burgerMenu_link {
        font-size: calc(40 / 750 * 100vw);
        font-weight: 700;
        line-height: 140%;
        color: #fff;
        text-align: center;
    }
    .header_menuBtn {
        display: block;
        width: calc(80 / 750 * 100vw);
        height: calc(80 / 750 * 100vw);
        background-image: url(../images/common/menu.png);
        background-size: cover;
    }
    .header_menuBtn.-open {
        background-image: url(../images/common/menu-close.png);
    }
}

/* fv */
.fv {
    background-image: url(../images/pc/fv_bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 46px 0 48px;
}
.fv_inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 0 32px;
    position: relative;
}
.fv_main {
    width: 601px;
    text-align: center;
}
.fv_balloon {
    background-image: url(../images/pc/fv_balloon.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    text-align: center;
    color: #170a90;
    width: 422px;
    height: 71px;
    padding-top: 7px;
    margin: 0 auto 10px;
}
.fv_lead {
    font-feature-settings: "palt" off;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.08em;
    color: #170a90;
    display: block;
}
.fv_lead .dots {
    position: relative;
}
.fv_lead .dots::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(316deg, #5f73fe 0%, #3695fd 100%);
}
.fv_title {
    background: linear-gradient(
        58deg,
        #8951ff 0%,
        #27a3fc 52.08%,
        #0500fa 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.04em;
    display: block;
}
.fv_titlesub {
    font-size: 26px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.08em;
    color: #170a90;
}
.fv_text01 {
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0;
    color: #ffffff;
    margin-top: 50px;
}
.fv_text01 .small {
    font-size: 22px;
    line-height: 130%;
}
.fv_text02 {
    background-image: url(../images/pc/fv_deco_l.svg), url(../images/pc/fv_deco_r.svg);
    background-position: left top, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: 16px 72px, 16px 72px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
    width: 418px;
    margin: 23px auto 28px;
}
.fv_text02 .text {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.04em;
}
.fv_text02 .small {
    font-size: 14px;
    line-height: 160%;
}
.fv_text02 .times {
    font-size: 32px;
    font-weight: 100;
    line-height: 100%;
}
.fv_image {
    margin: 0 -40px 0 0;
}
@media screen and (max-width: 1080px) {
    .fv {
        background-image: url(../images/sp/fv_bg.jpg);
        padding: calc(68 / 750 * 100vw) 0 0;
    }
    .fv_inner {
        width: 100%;
        display: block;
    }
    .fv_main {
        width: 100%;
    }
    .fv_balloon {
        background-image: url(../images/sp/fv_balloon.svg);
        font-size: calc(30 / 750 * 100vw);
        width: calc(631 / 750 * 100vw);
        height: calc(106 / 750 * 100vw);
        padding-top: calc(10 / 750 * 100vw);
        margin: 0 auto calc(22 / 750 * 100vw);
    }
    .fv_lead {
        font-size: calc(36 / 750 * 100vw);
        margin-bottom: calc(10 / 750 * 100vw);
    }
    .fv_lead .dots::before {
        top: calc(-6 / 750 * 100vw);
        width: calc(6 / 750 * 100vw);
        height: calc(6 / 750 * 100vw);
    }
    .fv_title {
        font-size: calc(86 / 750 * 100vw);
        line-height: 125%;
        letter-spacing: 0.08em;
        margin-bottom: calc(10 / 750 * 100vw);
    }
    .fv_titlesub {
        font-size: calc(34 / 750 * 100vw);
    }
    .fv_text01 {
        font-size: calc(42 / 750 * 100vw);
        line-height: 140%;
        color: #170a90;
        margin-top: calc(48 / 750 * 100vw);
    }
    .fv_text01 .small {
        font-size: calc(32 / 750 * 100vw);
        line-height: 140%;
    }
    .fv_text02 {
        background-image: url(../images/sp/fv_deco_l.svg),
            url(../images/sp/fv_deco_r.svg);
        background-size: calc(27 / 750 * 100vw) calc(122 / 750 * 100vw),
            calc(27 / 750 * 100vw) calc(122 / 750 * 100vw);
        color: #170a90;
        gap: 0 calc(16 / 750 * 100vw);
        width: calc(630 / 750 * 100vw);
        margin: calc(23 / 750 * 100vw) auto calc(28 / 750 * 100vw);
    }
    .fv_text02 .text {
        font-size: calc(28 / 750 * 100vw);
    }
    .fv_text02 .small {
        font-size: calc(22 / 750 * 100vw);
    }
    .fv_text02 .times {
        font-size: calc(54 / 750 * 100vw);
    }
    .fv_btn_wrap {
        background-image: url(../images/sp/fv_bg02.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: calc(100 / 750 * 100vw) 0;
        margin-top: calc(85 / 750 * 100vw);
    }
}

/* sec01 */
.sec01 {
    padding: 120px 0 0;
}
.sec01_inner {
    width: 1000px;
    margin: 0 auto;
}
.sec01_area01 {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 21.9%,
        #f4f5fc 21.9%,
        #f4f5fc 100%
    );
    padding-bottom: 80px;
}
.sec01_area01 .sec01_row {
    display: flex;
    align-items: flex-end;
    gap: 0 40px;
}
.sec01_area01 .col_img {
    background: url(../images/common/sec01_img01_02.jpg) no-repeat left top;
    background-size: 100% 100%;
    box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.16);
    width: 460px;
    height: 472px;
    margin-top: -40px;
}
.sec01_area01 .text {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.sec01_area01 .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    margin-bottom: 56px;
}
.sec01_area01 .list {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
}
.sec01_area01 .list li {
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.08em;
    color: #666666;
    padding-left: 28px;
    position: relative;
}
.sec01_area01 .list li::after {
    content: "";
    background: url(../images/common/icon_check.svg) no-repeat left top;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
}
.sec01_area01 .list li .orange {
    font-weight: 700;
    color: #fe8049;
}
.sec01_area02 {
    padding: 80px 0 95px;
}
.sec01_area02 .sec01_row {
    display: flex;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 48px;
}
.sec01_area02 .col_text {
    width: 327px;
}
.sec01_area02 .text {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.sec01_area02 .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0;
    text-indent: -0.5em;
    color: #170a90;
}
.sec01_area02 .col_list {
    background-image: url(../images/common/sec01_deco.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 232px 232px;
    width: 633px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.sec01_area02 .box {
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    width: 304px;
    padding: 24px;
    text-align: center;
}
.sec01_area02 .box_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    color: #170a90;
}
.sec01_area02 .box_title::after {
    content: "";
    background: linear-gradient(to right, #27a3fc 0%, #0500fa 100%);
    width: 40px;
    height: 2px;
    display: block;
    margin: 7px auto;
}
.sec01_area02 .box_text {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
.sec01_area02 .text02 {
    border: 1px solid #27a3fc;
    border-image: linear-gradient(to right, #27a3fc 0%, #0500fa 100%);
    border-image-slice: 1;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    padding: 8px 24px;
    position: relative;
}
.sec01_area02 .text02::after {
    content: "";
    background: url(../images/common/sec01_arw.svg) no-repeat left top;
    background-size: 100% 100%;
    width: 25px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.sec01_area03 {
    background: #f4f5fc;
    padding: 56px 0 0;
    position: relative;
}
.sec01_area03::after {
    content: "";
    border-style: solid;
    border-width: 120px 960px 0 960px;
    border-color: #f4f5fc transparent transparent transparent;
    display: block;
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
}
.sec01_area03 .sec01_row {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0 69px;
    margin-bottom: 28px;
}
.sec01_area03 .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    margin-bottom: 24px;
}
.sec01_area03 .title .underline {
    border-bottom: 2px solid #27a3fc;
    border-image: linear-gradient(90deg, #27a3fc 0%, #0500fa 100%);
    border-image-slice: 1;
}
.sec01_area03 .text {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.sec01_area03 .text02 {
    background: #170a90;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    padding: 0 8px 2px;
    display: inline-block;
}
.sec01_area03 .text03 {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    position: relative;
    bottom: -28px;
    z-index: 5;
}
.sec01_area04 {
    padding: 200px 0 80px;
}
.sec01_area04 .catch {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.sec01_area04 .catch .gra {
    background: linear-gradient(90deg, #27a3fc 0%, #0500fa 100%);
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.04em;
    padding: 0 8px 2px;
    display: block;
}
.sec01_area04 .catch .pc {
    display: inline;
}
@media screen and (max-width: 1080px) {
    .sec01 {
        padding: calc(120 / 750 * 100vw) 0 0;
    }
    .sec01_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec01_area01 {
        background: linear-gradient(
            90deg,
            #fff 0%,
            #fff 5.3%,
            #f4f5fc 5.3%,
            #f4f5fc 100%
        );
        padding-bottom: calc(80 / 750 * 100vw);
    }
    .sec01_area01 .sec01_row {
        flex-direction: column;
        gap: calc(56 / 750 * 100vw) 0;
    }
    .sec01_area01 .col_img {
        box-shadow: calc(16 / 750 * 100vw) calc(16 / 750 * 100vw)
            calc(32 / 750 * 100vw) calc(0 / 750 * 100vw) rgba(0, 0, 0, 0.16);
        width: calc(590 / 750 * 100vw);
        height: calc(605 / 750 * 100vw);
        margin: calc(-40 / 750 * 100vw) auto 0;
    }
    .sec01_area01 .col_text {
        padding: 0 calc(20 / 750 * 100vw);
    }
    .sec01_area01 .text {
        font-size: calc(36 / 750 * 100vw);
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .sec01_area01 .title {
        font-size: calc(56 / 750 * 100vw);
        letter-spacing: 0.08em;
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec01_area01 .list {
        gap: calc(16 / 750 * 100vw) 0;
    }
    .sec01_area01 .list li {
        font-size: calc(32 / 750 * 100vw);
        padding-left: calc(40 / 750 * 100vw);
    }
    .sec01_area01 .list li::after {
        width: calc(24 / 750 * 100vw);
        height: calc(24 / 750 * 100vw);
        top: calc(14 / 750 * 100vw);
    }
    .sec01_area02 {
        padding: calc(80 / 750 * 100vw) 0 calc(120 / 750 * 100vw);
    }
    .sec01_area02 .sec01_inner {
        width: 100%;
    }
    .sec01_area02 .sec01_row {
        flex-direction: column;
        gap: calc(40 / 750 * 100vw) 0;
        margin-bottom: calc(48 / 750 * 100vw);
    }
    .sec01_area02 .col_text {
        width: 100%;
        text-align: center;
    }
    .sec01_area02 .text {
        font-size: calc(36 / 750 * 100vw);
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .sec01_area02 .title {
        font-size: calc(48 / 750 * 100vw);
    }
    .sec01_area02 .col_list {
        background-size: calc(864 / 750 * 100vw) calc(864 / 750 * 100vw);
        width: 100%;
        flex-direction: column;
        gap: calc(24 / 750 * 100vw) 0;
    }
    .sec01_area02 .box {
        box-shadow: 0 calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) 0
            rgba(0, 0, 0, 0.16);
        width: calc(630 / 750 * 100vw);
        padding: calc(40 / 750 * 100vw);
        margin: 0 auto;
    }
    .sec01_area02 .box_title {
        font-size: calc(32 / 750 * 100vw);
    }
    .sec01_area02 .box_title::after {
        width: calc(64 / 750 * 100vw);
        height: calc(4 / 750 * 100vw);
        margin: calc(22 / 750 * 100vw) auto;
    }
    .sec01_area02 .box_text {
        font-size: calc(30 / 750 * 100vw);
    }
    .sec01_area02 .text02 {
        font-size: calc(36 / 750 * 100vw);
        padding: calc(16 / 750 * 100vw) 0;
        width: calc(630 / 750 * 100vw);
        margin: 0 auto;
    }
    .sec01_area02 .text02::after {
        width: calc(30 / 750 * 100vw);
        height: calc(42 / 750 * 100vw);
        bottom: calc(-42 / 750 * 100vw);
    }
    .sec01_area03 {
        padding: calc(80 / 750 * 100vw) 0 0;
    }
    .sec01_area03::after {
        border-width: calc(120 / 750 * 100vw) calc(375 / 750 * 100vw) 0
            calc(375 / 750 * 100vw);
        bottom: calc(-120 / 750 * 100vw);
    }
    .sec01_area03 .sec01_row {
        flex-direction: column;
        gap: calc(56 / 750 * 100vw) 0;
        margin-bottom: calc(54 / 750 * 100vw);
    }
    .sec01_area03 .title {
        font-size: calc(56 / 750 * 100vw);
        letter-spacing: 0.02em;
        text-align: center;
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec01_area03 .title .underline {
        border-bottom: calc(4 / 750 * 100vw) solid #27a3fc;
    }
    .sec01_area03 .text {
        font-size: calc(30 / 750 * 100vw);
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .sec01_area03 .text02 {
        font-size: calc(32 / 750 * 100vw);
        padding: 0 calc(8 / 750 * 100vw) calc(2 / 750 * 100vw);
    }
    .sec01_area03 .text03 {
        font-size: calc(36 / 750 * 100vw);
        bottom: calc(-7 / 750 * 100vw);
    }
    .sec01_area04 {
        padding: calc(160 / 750 * 100vw) 0 calc(98 / 750 * 100vw);
    }
    .sec01_area04 .catch {
        gap: calc(8 / 750 * 100vw) 0;
    }
    .sec01_area04 .catch .gra {
        font-size: calc(42 / 750 * 100vw);
        padding: 0 calc(8 / 750 * 100vw) calc(2 / 750 * 100vw);
    }
    .sec01_area04 .catch .pc {
        display: none;
    }
    .sec01_area04 .catch .sp {
        display: inline;
    }
}

/* sec02 */
.sec02 {
    background: #ecf2fe;
    padding: 120px 0 102px;
}
.sec02 .sec02_inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.sec02_col {
    width: 480px;
}
.sec02_text01 {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.sec02_title {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    margin-bottom: 56px;
}
.sec02_text02 {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
.sec02_text02 + .sec02_text02 {
    margin-top: 8px;
}
.sec02_text02 .bold {
    font-weight: 700;
}
@media screen and (max-width: 1080px) {
    .sec02 {
        padding: calc(141 / 750 * 100vw) 0 calc(42 / 750 * 100vw);
    }
    .sec02 .sec02_inner {
        width: calc(630 / 750 * 100vw);
        flex-direction: column;
    }
    .sec02_col {
        width: 100%;
    }
    .sec02_text01 {
        font-size: calc(36 / 750 * 100vw);
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .sec02_title {
        font-size: calc(56 / 750 * 100vw);
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec02_text02 {
        font-size: calc(30 / 750 * 100vw);
    }
    .sec02_text02 + .sec02_text02 {
        margin-top: calc(16 / 750 * 100vw);
    }
}

/* sec03 */
.sec03 {
    background: #ecf2fe;
    padding: 0 0 120px;
}
.sec03_title {
    background: #ecf2fe;
    border: 1px solid #27a3fc;
    border-image: linear-gradient(to right, #27a3fc 0%, #0500fa 100%);
    border-image-slice: 1;
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    width: 1000px;
    padding: 32px 0 20px;
    margin: 0 auto -78px;
    position: relative;
    z-index: 3;
}
.sec03_title .large {
    font-size: 40px;
    line-height: 140%;
}
.sec03_area {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto auto;
}
.sec03_area01 {
    background-image: url(../images/pc/sec03_bg01.jpg);
    padding: 158px 0 80px;
}
.sec03_area02 {
    background-image: url(../images/pc/sec03_bg02.jpg);
    background-position: right top;
    padding: 80px 0;
    margin: 80px 0;
}
.sec03_area03 {
    background-image: url(../images/pc/sec03_bg03.jpg);
    padding: 94px 0 80px;
}
.sec03_inner {
    width: 1000px;
    margin: 0 auto;
}
.sec03_area_title {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    margin-bottom: 40px;
}
.sec03_row {
    display: flex;
    justify-content: center;
    gap: 0 32px;
}
.sec03_box {
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    width: 312px;
    padding: 24px;
}
.sec03_box .copy {
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    color: #170a90;
    text-align: center;
}
.sec03_box .copy::after {
    content: "";
    background: linear-gradient(to right, #27a3fc 0%, #0500fa 100%);
    width: 40px;
    height: 2px;
    display: block;
    margin: 15px auto;
}
.sec03_box .text {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 1080px) {
    .sec03 {
        padding: calc(60 / 750 * 100vw) 0;
    }
    .sec03_title {
        font-size: calc(48 / 750 * 100vw);
        width: calc(630 / 750 * 100vw);
        padding: calc(32 / 750 * 100vw) 0 calc(20 / 750 * 100vw);
        margin: 0 auto calc(-137 / 750 * 100vw);
    }
    .sec03_title .large {
        font-size: calc(56 / 750 * 100vw);
        letter-spacing: 0;
    }
    .sec03_area {
        background-size: calc(710 / 750 * 100vw) auto;
    }
    .sec03_area01 {
        background-image: url(../images/sp/sec03_bg01.jpg);
        padding: calc(186 / 750 * 100vw) 0 calc(120 / 750 * 100vw);
    }
    .sec03_area02 {
        background-image: url(../images/sp/sec03_bg02.jpg);
        background-position: right top;
        padding: calc(64 / 750 * 100vw) 0 calc(120 / 750 * 100vw);
        margin: 0;
    }
    .sec03_area03 {
        background-image: url(../images/sp/sec03_bg03.jpg);
        padding: calc(64 / 750 * 100vw) 0 calc(98 / 750 * 100vw);
    }
    .sec03_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec03_area_title {
        font-size: calc(48 / 750 * 100vw);
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec03_row {
        flex-direction: column;
        gap: calc(32 / 750 * 100vw) 0;
    }
    .sec03_box {
        box-shadow: 0 calc(4 / 750 * 100vw) calc(16 / 750 * 100vw) 0
            rgba(0, 0, 0, 0.16);
        width: 100%;
        padding: calc(40 / 750 * 100vw);
    }
    .sec03_box .copy {
        font-size: calc(32 / 750 * 100vw);
    }
    .sec03_box .copy::after {
        width: calc(64 / 750 * 100vw);
        height: calc(4 / 750 * 100vw);
        margin: calc(22 / 750 * 100vw) auto;
    }
    .sec03_box .text {
        font-size: calc(30 / 750 * 100vw);
    }
}

/* sec04 */
.sec04 {
    padding-top: 90px;
    margin-top: 1px;
}
.sec04_title {
    color: #170a90;
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 90px;
}
.sec04_bg01 {
    background: linear-gradient(
        90deg,
        #ecf2fe 0%,
        #ecf2fe 45%,
        #fff 45%,
        #fff 100%
    );
    padding: 120px 0;
}
.sec04_bg01.sec04_area03 {
    padding: 120px 0 125px;
}
.sec04_bg02 {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 55%,
        #ecf2fe 55%,
        #ecf2fe 100%
    );
    padding: 120px 0;
    margin: 186px auto 120px;
}
.sec04_inner {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}
.sec04_row {
    display: flex;
    align-items: center;
    gap: 0 40px;
}
.sec04_area02 .sec04_row {
    flex-direction: row-reverse;
}
.sec04_num {
    background: linear-gradient(
        90deg,
        rgba(39, 163, 252, 0.16) 0%,
        rgba(5, 0, 250, 0.16) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 240px;
    line-height: 83%;
    position: absolute;
}
.sec04_area01 .sec04_num,
.sec04_area03 .sec04_num {
    top: -125px;
    right: -10px;
}
.sec04_area02 .sec04_num {
    top: -115px;
    left: 3px;
}
.sec04_row .col_img {
    width: 480px;
    box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.16);
}
.sec04_row .col_text {
    width: 480px;
}
.sec04_copy {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}
.sec04_copy .kerning {
    letter-spacing: 0.02em;
}
.sec04_copy .min {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.08em;
}
.sec04_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.sec04_list {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
}
.sec04_list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.08em;
    padding-left: 28px;
    position: relative;
}
.sec04_list li::after {
    content: "";
    background: url(../images/common/icon_check.svg) no-repeat left top;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
}
.sec04_area .bold {
    font-weight: 700;
}
.sec04_link {
    font-size: 12px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.08em;
    color: #333333;
    margin-top: 20px;
}
.sec04_link .inr {
    text-decoration: underline;
}
.sec04_catch {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.sec04_area01 .sec04_catch {
    margin: -64px auto 56px;
}
.sec04_catch .gra {
    background: linear-gradient(90deg, #27a3fc 0%, #0500fa 100%);
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    padding: 0 8px 2px;
    display: block;
}
.sec04_text02 {
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.08em;
    text-align: center;
}
.sec04_text02 .orange {
    font-weight: 700;
    color: #fe8049;
}
.sec04_scroll_wrapper {
    overflow: hidden;
    margin-top: 56px;
}
.sec04_scroll_wrapper .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 21px;
}
.sec04_scroll_inner {
    overflow-x: scroll;
    padding-bottom: 25px;
}
.sec04_scroll_content {
    width: 1840px;
    margin: 0 460px;
}
.sec04_scroll_content .flow {
    display: flex;
    gap: 0 80px;
    margin-bottom: 24px;
}
.sec04_scroll_content .item {
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    width: 240px;
    position: relative;
}
.sec04_scroll_content .item:not(:last-child)::after {
    content: "";
    background: url(../images/common/icon_arw_next.svg) no-repeat left top;
    background-size: 100% 100%;
    width: 48px;
    height: 48px;
    display: block;
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
}
.sec04_scroll_content .item_head {
    background: #170a90;
    color: #ffffff;
    height: 72px;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.08em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec04_scroll_content .item_body {
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 276px;
}
.sec04_scroll_content .item_text {
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.sec04_scroll_content .item_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 3px;
}
.sec04_scroll_content .item_list li {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.08em;
    text-indent: -1em;
    padding-left: 1em;
}
.sec04_scroll_content .item_list li::before {
    content: "・";
    font-size: 18px;
    display: inline;
    margin-right: 3px;
    position: relative;
    top: 2px;
}
.sec04_scroll_content .item_icon {
    margin: auto auto 0;
}
.sec04_scroll_content .icon01 {
    width: 48px;
}
.sec04_scroll_content .icon02 {
    width: 80px;
}
.sec04_scroll_content .icon03 {
    width: 48px;
}
.sec04_scroll_content .icon04 {
    width: 72px;
}
.sec04_scroll_content .icon05 {
    width: 48px;
}
.sec04_scroll_content .icon06 {
    width: 59px;
}
.sec04_text_box {
    background: #fff;
    border: 1px solid #170a90;
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.08em;
    color: #170a90;
    text-align: center;
    padding: 8px;
    margin-bottom: 16px;
}
.sec04_text_box02 {
    background: #fff;
    border: 1px solid #27a3fc;
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.08em;
    color: #27a3fc;
    text-align: center;
    padding: 8px;
}
.sec04_text_box02 img {
    width: 176px;
    margin-right: 16px;
    vertical-align: text-top;
    position: relative;
    top: 1px;
}
.sec04_box {
    background: #f4f5fc;
    width: 1000px;
    padding: 26px 40px;
    /* margin: 55px auto 0; */
    margin: 30px auto 0;
}
.sec04_box .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.08em;
    text-align: center;
    color: #170a90;
    margin-bottom: 26px;
}
.sec04_box .row {
    display: flex;
    justify-content: space-between;
}
.sec04_box .unit {
    width: 564px;
}
.sec04_box .logo {
    width: 510px;
    margin-bottom: 16px;
}
.sec04_box .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.08em;
    color: #170a90;
}
.sec04_box .image {
    width: 316px;
}
@media screen and (max-width: 1080px) {
    .sec04 {
        padding-top: calc(90 / 750 * 100vw);
    }
    .sec04_title {
        font-size: calc(56 / 750 * 100vw);
        margin-bottom: calc(90 / 750 * 100vw);
    }
    .sec04_bg01 {
        background: none;
        padding: calc(120 / 750 * 100vw) 0 0;
        position: relative;
    }
    .sec04_bg01.sec04_area03 {
        padding: calc(120 / 750 * 100vw) 0 calc(112 / 750 * 100vw);
    }
    .sec04_bg02 {
        background: none;
        padding: calc(120 / 750 * 100vw) 0 0;
        margin: calc(124 / 750 * 100vw) auto calc(120 / 750 * 100vw);
        position: relative;
    }
    .sec04_bg01::before,
    .sec04_bg02::before {
        content: "";
        background: #ecf2fe;
        width: calc(375 / 750 * 100vw);
        height: calc(710 / 750 * 100vw);
        display: block;
        position: absolute;
        top: 0;
    }
    .sec04_bg01::before {
        left: 0;
    }
    .sec04_bg02::before {
        right: 0;
    }
    .sec04_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec04_row {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(40 / 750 * 100vw) 0;
    }
    .sec04_area02 .sec04_row {
        flex-direction: column;
    }
    .sec04_num {
        font-size: calc(180 / 750 * 100vw);
    }
    .sec04_area01 .sec04_num,
    .sec04_area03 .sec04_num {
        top: calc(-125 / 750 * 100vw);
        right: calc(-10 / 750 * 100vw);
    }
    .sec04_area02 .sec04_num {
        top: calc(-122 / 750 * 100vw);
        left: calc(3 / 750 * 100vw);
    }
    .sec04_row .col_img {
        width: calc(630 / 750 * 100vw);
        box-shadow: calc(16 / 750 * 100vw) calc(16 / 750 * 100vw)
            calc(32 / 750 * 100vw) 0 rgba(0, 0, 0, 0.16);
        position: relative;
        z-index: 10;
    }
    .sec04_row .col_text {
        width: calc(630 / 750 * 100vw);
    }
    .sec04_copy {
        font-size: calc(48 / 750 * 100vw);
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .sec04_copy .min {
        font-size: calc(20 / 750 * 100vw);
    }
    .sec04_text {
        font-size: calc(30 / 750 * 100vw);
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .sec04_list {
        gap: calc(24 / 750 * 100vw) 0;
    }
    .sec04_list li {
        font-size: calc(30 / 750 * 100vw);
        padding-left: calc(40 / 750 * 100vw);
    }
    .sec04_list li::after {
        width: calc(24 / 750 * 100vw);
        height: calc(24 / 750 * 100vw);
        top: calc(16 / 750 * 100vw);
    }
    .sec04_link {
        font-size: calc(20 / 750 * 100vw);
        margin: calc(40 / 750 * 100vw) calc(60 / 750 * 100vw);
    }
    .sec04_catch {
        gap: calc(10 / 750 * 100vw) 0;
    }
    .sec04_area01 .sec04_catch {
        margin: calc(40 / 750 * 100vw) auto calc(40 / 750 * 100vw);
    }
    .sec04_catch .gra {
        font-size: calc(43 / 750 * 100vw);
        padding: 0 calc(8 / 750 * 100vw) calc(2 / 750 * 100vw);
    }
    .sec04_text02 {
        font-size: calc(36 / 750 * 100vw);
        text-align: left;
        width: calc(630 / 750 * 100vw);
        margin: 0 auto;
    }
    .sec04_scroll_wrapper {
        margin-top: calc(40 / 750 * 100vw);
    }
    .sec04_scroll_wrapper .title {
        font-size: calc(32 / 750 * 100vw);
        margin-bottom: calc(29 / 750 * 100vw);
    }
    .sec04_scroll_inner {
        padding-bottom: calc(40 / 750 * 100vw);
    }
    .sec04_scroll_content {
        width: calc(3280 / 750 * 100vw);
        margin: 0 calc(60 / 750 * 100vw);
    }
    .sec04_scroll_content .flow {
        display: flex;
        gap: 0 calc(80 / 750 * 100vw);
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .sec04_scroll_content .item {
        box-shadow: 0 calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) 0
            rgba(0, 0, 0, 0.16);
        width: calc(480 / 750 * 100vw);
    }
    .sec04_scroll_content .item:not(:last-child)::after {
        width: calc(48 / 750 * 100vw);
        height: calc(48 / 750 * 100vw);
        right: calc(-64 / 750 * 100vw);
    }
    .sec04_scroll_content .item_head {
        height: calc(104 / 750 * 100vw);
        font-size: calc(26 / 750 * 100vw);
    }
    .sec04_scroll_content .item_body {
        padding: calc(24 / 750 * 100vw) calc(32 / 750 * 100vw);
        height: calc(444 / 750 * 100vw);
    }
    .sec04_scroll_content .item_text {
        font-size: calc(26 / 750 * 100vw);
        margin-bottom: calc(16 / 750 * 100vw);
    }
    .sec04_scroll_content .item_list {
        gap: calc(6 / 750 * 100vw);
        padding-left: calc(3 / 750 * 100vw);
    }
    .sec04_scroll_content .item_list li {
        font-size: calc(26 / 750 * 100vw);
    }
    .sec04_scroll_content .item_list li::before {
        font-size: calc(30 / 750 * 100vw);
        margin-right: calc(6 / 750 * 100vw);
    }
    .sec04_scroll_content .icon01 {
        width: calc(80 / 750 * 100vw);
    }
    .sec04_scroll_content .icon02 {
        width: calc(135 / 750 * 100vw);
    }
    .sec04_scroll_content .icon03 {
        width: calc(90 / 750 * 100vw);
    }
    .sec04_scroll_content .icon04 {
        width: calc(120 / 750 * 100vw);
    }
    .sec04_scroll_content .icon05 {
        width: calc(80 / 750 * 100vw);
    }
    .sec04_scroll_content .icon06 {
        width: calc(97 / 750 * 100vw);
    }
    .sec04_text_box {
        font-size: calc(26 / 750 * 100vw);
        padding: calc(8 / 750 * 100vw);
        margin-bottom: calc(16 / 750 * 100vw);
    }
    .sec04_text_box02 {
        font-size: calc(26 / 750 * 100vw);
        padding: calc(8 / 750 * 100vw);
    }
    .sec04_text_box02 img {
        width: calc(237 / 750 * 100vw);
        margin-right: calc(16 / 750 * 100vw);
    }
    .sec04_box {
        width: calc(630 / 750 * 100vw);
        padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw)
            calc(80 / 750 * 100vw);
        /* margin: calc(55 / 750 * 100vw) auto 0; */
        margin: calc(30 / 750 * 100vw) auto 0;
    }
    .sec04_box .title {
        font-size: calc(48 / 750 * 100vw);
        margin-bottom: calc(48 / 750 * 100vw);
    }
    .sec04_box .row {
        flex-direction: column;
        gap: calc(40 / 750 * 100vw) 0;
    }
    .sec04_box .unit {
        width: calc(552 / 750 * 100vw);
    }
    .sec04_box .logo {
        width: calc(552 / 750 * 100vw);
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .sec04_box .text {
        font-size: calc(30 / 750 * 100vw);
    }
    .sec04_box .image {
        width: calc(548 / 750 * 100vw);
    }
}

/* cv */
.cv {
    background-image: url(../images/pc/cv_bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 120px 0;
}
.cv_text {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}
.cv_copy {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}
.cv_btn {
    background-image: url(../images/common/arrow_btn.svg),
        url(../images/pc/cv_btn_bg.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right 24px center, center center;
    background-size: 8px 12px, 100% 100%;
    box-shadow: 0px 4px 4px 0px rgba(4, 30, 44, 0.3);
    border-radius: 4px;
    color: #fff;
    width: 450px;
    height: 64px;
    padding-left: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
.cv_btn .main {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.04em;
}
.cv_btn .sub {
    background: linear-gradient(143deg, #3246b5 0%, #290c99 100%);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 12px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1080px) {
    .cv {
        background-image: url(../images/sp/cv_bg.jpg);
        padding: calc(120 / 750 * 100vw) 0;
    }
    .cv_text {
        font-size: calc(36 / 750 * 100vw);
        letter-spacing: 0.08em;
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .cv03 .cv_text {
        letter-spacing: 0.06em;
    }
    .cv_copy {
        font-size: calc(56 / 750 * 100vw);
        letter-spacing: 0.1em;
        margin-bottom: calc(80 / 750 * 100vw);
    }
    .cv03 .cv_copy {
        letter-spacing: 0;
    }
    .cv_btn {
        background-image: url(../images/common/arrow_btn.svg),
            url(../images/sp/cv_btn_bg.png);
        background-position: right calc(40 / 750 * 100vw) center, center center;
        background-size: calc(16 / 750 * 100vw) calc(24 / 750 * 100vw),
            100% 100%;
        box-shadow: 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw) 0
            rgba(4, 30, 44, 0.3);
        border-radius: calc(4 / 750 * 100vw);
        width: calc(630 / 750 * 100vw);
        height: calc(120 / 750 * 100vw);
        padding-left: calc(174 / 750 * 100vw);
    }
    .cv_btn .main {
        font-size: calc(36 / 750 * 100vw);
        line-height: 130%;
        text-align: center;
    }
    .cv_btn .sub {
        border-radius: calc(4 / 750 * 100vw);
        left: calc(16 / 750 * 100vw);
        width: calc(88 / 750 * 100vw);
        height: calc(88 / 750 * 100vw);
        font-size: calc(20 / 750 * 100vw);
    }
}

/* sec05 */
.sec05 {
    background-color: #f4f5fc;
    background-image: url(../images/pc/sec05_bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 120px 0;
}
.sec05_inner {
    width: 1000px;
    margin: 0 auto;
}
.sec05_title {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    margin-bottom: 56px;
}
.sec05_subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    margin-bottom: 24px;
}
.sec05_subtitle .kerning {
    letter-spacing: 0.02em;
}
.sec05_price {
    border-top: 1px solid #170a90;
    border-bottom: 1px solid #170a90;
    padding: 24px 0 16px;
    text-align: center;
    margin-bottom: 24px;
}
.sec05_price .text {
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
}
.sec05_price .price {
    color: #fe8049;
}
.sec05_price .large {
    font-weight: 500;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0.12em;
}
.sec05_price .mid {
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0.12em;
}
.sec05_price .small {
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
.sec05_text {
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.sec05_note {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.08em;
}

.sec05_note.annotation {
    padding: 6px 0 0 0;
}

@media screen and (max-width: 1080px) {
    .sec05 {
        background-image: url(../images/sp/sec05_bg.jpg);
        padding: calc(120 / 750 * 100vw) 0;
    }
    .sec05_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec05_title {
        font-size: calc(56 / 750 * 100vw);
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec05_subtitle {
        font-size: calc(48 / 750 * 100vw);
        letter-spacing: 0.08em;
        margin-bottom: calc(24 / 750 * 100vw);
    }
    .sec05_subtitle .kerning {
        letter-spacing: -0.01em;
    }
    .sec05_price {
        padding: calc(24 / 750 * 100vw) 0 calc(16 / 750 * 100vw);
        text-align: center;
        margin-bottom: calc(24 / 750 * 100vw);
    }
    .sec05_price .text {
        font-size: calc(32 / 750 * 100vw);
    }
    .sec05_price .large {
        font-size: calc(56 / 750 * 100vw);
    }
    .sec05_price .mid {
        font-size: calc(40 / 750 * 100vw);
    }
    .sec05_price .small {
        font-size: calc(30 / 750 * 100vw);
    }
    .sec05_text {
        font-size: calc(26 / 750 * 100vw);
        margin-bottom: calc(16 / 750 * 100vw);
    }
    .sec05_note {
        font-size: calc(20 / 750 * 100vw);
    }
    .sec05_note.annotation {
        padding: 1.8vw 0 0 0;
    }
}

/* sec06 */
.sec06 {
    padding: 120px 0;
}
.sec06_inner {
    width: 1000px;
    margin: 0 auto;
}
.sec06_title {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
    text-align: center;
    margin-bottom: 56px;
}
.sec06_lists {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.sec06_lists::before {
    content: "";
    position: absolute;
    top: 69px;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 2px;
    background-color: #170a90;
}
.sec06_list {
    width: 214px;
    position: relative;
}
.sec06_list .img {
    width: 140px;
    margin: 0 auto 16px;
}
.sec06_list .ttl {
    font-weight: 700;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.sec06_list .txt {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
.sec06_list .txt a {
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
    color: #1ab385;
}
@media screen and (max-width: 1080px) {
    .sec06 {
        padding: calc(120 / 750 * 100vw) 0;
    }
    .sec06_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec06_title {
        font-size: calc(56 / 750 * 100vw);
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec06_lists {
        flex-wrap: wrap;
        gap: calc(80 / 750 * 100vw);
    }
    .sec06_lists::before {
        top: 0;
        left: calc(88 / 750 * 100vw);
        transform: initial;
        width: calc(4 / 750 * 100vw);
        height: calc(1078 / 750 * 100vw);
    }
    .sec06_list {
        width: 100%;
        display: flex;
        gap: calc(32 / 750 * 100vw);
    }
    .sec06_list .img {
        width: calc(180 / 750 * 100vw);
        margin: 0;
    }
    .sec06_list .cont {
        width: calc(418 / 750 * 100vw);
    }
    .sec06_list .ttl {
        font-size: calc(30 / 750 * 100vw);
        text-align: left;
        margin-bottom: calc(8 / 750 * 100vw);
    }
    .sec06_list .txt {
        font-size: calc(30 / 750 * 100vw);
    }
}

/* sec07 */
.sec07 {
    padding: 120px 0 96px;
    background: #ecf2fe;
}
.sec07_inner {
    width: 1000px;
    margin: 0 auto;
}
.sec07_title {
    text-align: center;
    margin-bottom: 56px;
}
.sec07_title p {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.sec07_title h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.12em;
    color: #170a90;
}
.sec07 .accordion {
    border-top: 1px solid #999;
}
.sec07 .accordion_header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 24px 0;
    position: relative;
}
.sec07 .accordion_header::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url(../images/common/arrow_b_01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: 0.4s;
}
.sec07 .accordion_header-active::before {
    background-size: 100% 100%;
    transform: translateY(-50%) rotate(180deg);
}
.sec07 .accordion_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08em;
    color: #170a90;
    text-align: justify;
}
.sec07 .accordion_text {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.08em;
}
.sec07 .accordion_content {
    display: none;
    padding: 0 0 24px;
}
.sec07 .accordion_content-active {
    display: block;
}
.sec07 .accordion_body {
    margin-top: -8px;
}
@media screen and (max-width: 1080px) {
    .sec07 {
        padding: calc(120 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
    }
    .sec07_inner {
        width: calc(630 / 750 * 100vw);
    }
    .sec07_title {
        margin-bottom: calc(56 / 750 * 100vw);
    }
    .sec07_title p {
        font-size: calc(36 / 750 * 100vw);
    }
    .sec07_title h2 {
        font-size: calc(56 / 750 * 100vw);
    }
    .sec07 .accordion_header {
        padding: calc(40 / 750 * 100vw) calc(96 / 750 * 100vw)
            calc(40 / 750 * 100vw) 0;
    }
    .sec07 .accordion_header::before {
        width: calc(64 / 750 * 100vw);
        height: calc(64 / 750 * 100vw);
    }
    .sec07 .accordion_title {
        font-size: calc(32 / 750 * 100vw);
    }
    .sec07 .accordion_text {
        font-size: calc(30 / 750 * 100vw);
    }
    .sec07 .accordion_content {
        padding: 0 0 calc(40 / 750 * 100vw);
    }
    .sec07 .accordion_body {
        margin-top: calc(-14 / 750 * 100vw);
    }
}

/*------------------------------------------
　　footer ここから
-------------------------------------------*/
.flex_bet {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer2 {
    border-top: 2px solid #ccc;
    padding: 30px 0 0 0;
}

#footer2 .footer-logo {
    width: 1150px;
    width: 120px;
    height: 100%;
    margin: 0 auto 30px;
}

#footer2 .flex_bet {
    width: 75%;
    margin: 0 auto;
}

#footer2 > .flex_bet ul {
    letter-spacing: -0.4em;
    margin-bottom: 0;
}

#footer2 > .flex_bet ul li {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    font-size: 12px;
    margin-right: 15px;
}

#footer2 > .flex_bet ul li a {
    color: #333;
}

#footer2 > .flex_bet ul li a:after {
    content: ">";
    display: inline-block;
    margin-left: 5px;
}

#footer2 > .flex_bet ul li a:hover {
    opacity: 0.75;
}

@media screen and (max-width: 812px) {
    #footer2 > .flex_bet ul li {
        width: 47%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    #footer2 > .flex_bet ul li:nth-child(even) {
        width: 53%;
    }
}

#footer2 .flex_bet #copyright {
    color: #333;
    font-size: 14px;
    margin: 0 auto;
}

@media screen and (max-width: 812px) {
    #footer2 > .flex_bet #copyright {
        display: block;
        text-align: center;
        font-size: 10px;
        width: 100%;
        padding: 10px 0 15px;
        color: #666;
    }
}

@media screen and (max-width: 812px) {
    #footer2 > .flex_bet {
        width: 100%;
    }
}

@media screen and (max-width: 812px) {
    #footer2 {
        /*  border-top: none;*/
        padding: 20px 5% 2% 5%;
    }
}

@media screen and (max-width: 418px) {
    #footer2 {
        padding: 20px 5% 15% 5%;
    }
}

/*------------------------------------------
  //　　　footer ここまで
  -------------------------------------------*/
