/* common */
#coaching * {
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}

#coaching {
    color: #333;
}


.text_blue {
    color: #0C3388;
}

.text_white {
    color: #fff;
}

.text_red {
    color: #DF223A;
}

.text_yellow {
    color: #F6F635;
}

.fw_700 {
    font-weight: 700;
}

.fw_600 {
    font-weight: 600;
}

.fw_500 {
    font-weight: 500;
}

#coaching .roboto {
    font-family: "Roboto", sans-serif;
}

.pc {
    display: block;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }
}

.fade {
    transition: all 0.5s;
    transform: translateY(min(100px, 100%));
    opacity: 0;
}

.fade.active {
    transition: all 0.5s;
    transform: translateY(0);
    opacity: 1;
}

.link_btn_01 {
    position: relative;
    display: block;
    min-width: 320px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    background: #DF223A;
    box-shadow: 0 0 12px 0 rgba(0, 58, 107, 0.40);
    font-size: clamp(16px, 1.4vw, 26px);
    padding: 20px 5% 20px 0;
}

.link_btn_01:hover {
    color: #fff;
}

.link_btn_01:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    width: 23px;
    aspect-ratio: 23/18;
    background: url(../coaching/arrow_r.png) no-repeat center / cover;
}

@media screen and (max-width: 768px) {
    .link_btn_01 {
        min-width: unset;
    }
}

.sec_ttl_01 {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    line-height: 140%;
    font-weight: 600;
}

.sec_ttl_02 {
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px 20px;
    font-size: clamp(20px, 1.9vw, 36px);
    font-weight: 600;
    line-height: 130%;
    border-radius: 50px;
    background: #F6F635;
    text-align: center;
}

.sec_ttl_03 {
    width: 100%;
    padding: 20px 40px 30px;
    font-size: clamp(22px, 2.1vw, 40px);
    font-weight: 600;
    line-height: 130%;
    border-radius: 41px;
    background: #1F9DEB;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .sec_ttl_02 {
        padding: 10px 30px 10px;
    }

    .sec_ttl_03 {
        padding: 10px 0 15px;
    }
}

.bg_card {
    position: absolute;
    width: 16vw;
}

@media screen and (max-width: 768px) {
    .bg_card {
        width: 28vw;
        max-width: 192px;
    }
}

.sec_inner {
    position: relative;
    width: 95%;
    max-width: 1536px;
    margin: 0 auto;
}

#coaching .swiper {
    display: none;
}

@media screen and (max-width: 768px) {
    #coaching .swiper {
        display: block;
    }

    .swiper .swiper_ui_container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .swiper .swiper_btn {
        position: unset;
        width: 50px;
        height: 50px;
        background: #0C3388;
        border-radius: 50%;
        margin-top: 0;
    }

    .swiper .swiper_btn:after {
        font-size: 20px;
        color: #fff;
        font-weight: 700;
    }

    .swiper .swiper-button-prev:after {
        margin-right: 5px;
    }

    .swiper .swiper-button-next:after {
        margin-left: 5px;
    }

    .swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        position: unset;
        width: fit-content;
    }

    .swiper .swiper-pagination-bullet {
        opacity: 0.2;
        background: #0C3388;
    }

    .swiper .swiper-pagination-bullet-active {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    button.btn-top {
        width: 40px;
        height: 40px;
        bottom: 70px;
    }
}

@media screen and (max-height: 590px) {
    button.btn-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 70px;
    }
}

/* header */
#coaching header {
    background-color: transparent;
}


#coaching header .right .hamburger div {
    background-color: #051F56;
    transform: translateY(0px);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#coaching header .right .hamburger div span {
    width: 34px;
    background: #fff;
}

#coaching header .right .hamburger div span:first-of-type {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#coaching header .right .hamburger div span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#coaching header .right .hamburger div span:last-of-type {
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#coaching header nav {
    background: #051F56;
}

#coaching header .nav_bg {
    display: none;
}

#coaching.nav-is-active header .nav_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(5px);
}

#coaching header nav .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
}

#coaching header nav .close-btn span {
    position: absolute;
    display: block;
    width: 34px;
    height: 2px;
    background: #051F56;
}

#coaching header nav .close-btn span:first-of-type {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#coaching header nav .close-btn span:last-of-type {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

#coaching header nav .nav-container {
    height: 100%;
}

#coaching header nav .nav_menu {
    margin: 40% 0 0 5%;
}

#coaching header nav .nav_menu p:not(:last-of-type) {
    margin-bottom: 20px;
}

#coaching header nav .nav_menu p a {
    color: #fff;
    font-size: clamp(18px, 1.25vw, 24px);
}



@media screen and (max-width: 768px) {
    #coaching header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #F2F9FF;
        height: 80px;
        z-index: 100;
    }

    #coaching header .flex {
        width: 100%;
    }

    #coaching header .logo_sp {
        display: block;
    }

    #coaching header .right {
        justify-content: flex-end;
    }

    #coaching header .right .hamburger {
        margin: 0;
    }

    #coaching header .right .hamburger div {
        width: 60px;
        height: 60px;
    }

    #coaching header .right .hamburger div span {
        width: 26px;
    }

    #coaching header nav {
        padding: 10px;
    }

    #coaching header nav .close-btn {
        width: 60px;
        height: 60px;
    }

    #coaching header nav .close-btn span {
        width: 26px;
    }

    #coaching header nav .nav_menu {
        margin: 25% 0 0 5%;
    }
}

/* link_btns */
#coaching .link_btns {
    position: fixed;
    z-index: 999;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
}

#coaching .link_btns.active {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.5s;
}

#coaching .link_btns a {
    width: fit-content;
    height: 28vh;
    max-height: 240px;
    min-height: 200px;
    padding: 0 10px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    writing-mode: vertical-rl;
    box-shadow: 0 0 12px 0 rgba(0, 58, 107, 0.40);
}

#coaching .link_btns a:first-of-type {
    color: #fff;
    background: #DF223A;
}

#coaching .link_btns a:last-of-type {
    color: #0C3388;
    background: #fff;
}

@media screen and (max-width: 768px) {
    #coaching .link_btns {
        width: calc(100% - 10px);
        top: unset;
        left: 50%;
        right: unset;
        bottom: 5px;
        transform: translateX(-50%) translateY(0);
        flex-direction: row;
        gap: 5px;
    }

    #coaching .link_btns a {
        writing-mode: horizontal-tb;
        width: 50%;
        height: auto;
        min-height: unset;
        font-size: 18px;
        padding: 10px 0 12px;
    }

    #coaching .link_btns a:nth-of-type(2) {
        border: 1px solid #0C3388;
    }
}

@media screen and (max-height: 590px) {
    #coaching .link_btns {
        width: calc(100% - 10px);
        top: unset;
        left: 50%;
        right: unset;
        bottom: 5px;
        transform: translateX(-50%) translateY(0);
        flex-direction: row;
        gap: 5px;
    }

    #coaching .link_btns a {
        writing-mode: horizontal-tb;
        width: 50%;
        height: auto;
        min-height: unset;
        font-size: 18px;
        padding: 10px 0 12px;
    }

    #coaching .link_btns a:nth-of-type(2) {
        border: 1px solid #0C3388;
    }
}

/* hero_image */
#coaching .hero_image {
    display: flex;
}

#coaching .hero_image .left {
    background: #F2F9FF;
    width: 45%;
    padding: 30px 0 0 30px;
}

#coaching .hero_image .left .logo_pc img {
    width: 40%;
    max-width: 310px;
    aspect-ratio: 311/80;
}

#coaching .hero_image .left .text {
    width: fit-content;
    margin: 0 auto;
}

#coaching .hero_image .left h2 {
    margin-top: 15%;
    font-size: clamp(38px, 3.3vw, 62px);
    line-height: 140%;
}

#coaching .hero_image .left h2 .roboto {
    font-size: clamp(44px, 3.8vw, 72px);
    vertical-align: middle;
}

#coaching .hero_image .left p {
    font-size: clamp(20px, 1.6vw, 30px);
    margin: 40px 0 70px;
}

#coaching .hero_image .left a {
    display: block;
}

#coaching .hero_image .right {
    width: 60%;
    background: #F2F9FF;
}

#coaching .hero_image .right .img_block {
    position: relative;
}

#coaching .hero_image .right img {
    width: 100%;
}

#coaching .hero_image .right .mv_02 {
    position: absolute;
    z-index: 1;
    left: -5%;
    bottom: -20%;
    width: 70%;
}

@media screen and (max-width: 768px) {
    #coaching .hero_image {
        margin-top: 80px;
        flex-direction: column;
    }

    #coaching .hero_image .left {
        order: 2;
        width: 100%;
        padding: 10% 0 0;
    }

    #coaching .hero_image .left h2 {
        margin-top: 0;
    }

    #coaching .hero_image .left p {
        margin: 20px 0 30px;
    }

    #coaching .hero_image .left .logo_pc {
        display: none;
    }

    #coaching .hero_image .right {
        order: 1;
        width: 100%;
    }

    #coaching .hero_image .right .mv_02 {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* sec_01 */
#sec_01 {
    position: relative;
    padding-top: 7%;
    background: linear-gradient(180deg, #F2F9FF 15%, #AEE0FF 100%);
}

#sec_01 .sec_ttl_01 {
    font-size: clamp(24px, 2.6vw, 50px);
}

#sec_01 .mono {
    position: absolute;
    width: 25%;
    max-width: 370px;
    /* min-width: 277px; */
    min-width: 200px;
    aspect-ratio: 370/120;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 140%;
}

#sec_01 .mono:before {
    content: "";
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
}

#sec_01 .mono:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}

#sec_01 .mono .underline {
    position: relative;
}

#sec_01 .mono .underline span {
    position: relative;
    z-index: 1;
}

#sec_01 .mono .underline:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 14px;
    background: #FFFFAC;
}

#sec_01 .mono:first-of-type {
    position: relative;
    margin: 50px auto 0;
}

#sec_01 .mono:first-of-type:before {
    right: 15%;
    bottom: -15px;
}

#sec_01 .mono:first-of-type:after {
    right: 20%;
    bottom: -40px;
}

#sec_01 .mono:nth-of-type(2) {
    top: 45%;
    right: 65%;
}

#sec_01 .mono:nth-of-type(2):before {
    right: 10%;
    bottom: -15px;
}

#sec_01 .mono:nth-of-type(2):after {
    right: 5%;
    bottom: -40px;
}

#sec_01 .mono:nth-of-type(3) {
    bottom: 20%;
    right: 70%;
}

#sec_01 .mono:nth-of-type(3):before {
    right: -15px;
    bottom: 20%;
}

#sec_01 .mono:nth-of-type(3):after {
    right: -40px;
    bottom: 40%;
}

#sec_01 .mono:nth-of-type(4) {
    top: 45%;
    left: 65%;
}

#sec_01 .mono:nth-of-type(4):before {
    left: 10%;
    bottom: -15px;
}

#sec_01 .mono:nth-of-type(4):after {
    left: 5%;
    bottom: -40px;
}

#sec_01 .mono:nth-of-type(5) {
    bottom: 20%;
    left: 70%;
}

#sec_01 .mono:nth-of-type(5):before {
    left: -15px;
    bottom: 20%;
}

#sec_01 .mono:nth-of-type(5):after {
    left: -40px;
    bottom: 40%;
}

#sec_01 .img_block {
    display: flex;
    align-items: flex-end;
    width: fit-content;
    margin: 55px auto 0;
}

#sec_01 .img_01 {
    width: 15vw;
    max-width: 230px;
    min-width: 87px;
    transform: translateX(20%);
}

#sec_01 .img_02 {
    width: 17vw;
    max-width: 260px;
    min-width: 95px;
    transform: translateX(-20%);
}

#sec_01 .bg {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    #sec_01 {
        padding: 0 20px 11vw;
    }

    #sec_01 .sec_inner_02 {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }

    #sec_01 h2 {
        margin-top: 50px;
    }

    #sec_01 .mono {
        position: relative;
        min-width: 277px;
    }

    #sec_01 .mono:before {
        width: 24px;
        height: 24px;
    }

    #sec_01 .mono:after {
        width: 15px;
        height: 15px;
    }

    #sec_01 .mono .underline:before {
        height: 8px;
    }

    #sec_01 .mono:not(:last-of-type) {
        margin-bottom: 50px;
    }

    #sec_01 .mono:first-of-type {
        margin: 50px 0 40px auto;
    }

    #sec_01 .mono:first-of-type:before {
        right: 15%;
        bottom: -15px;
    }

    #sec_01 .mono:first-of-type:after {
        right: 20%;
        bottom: -35px;
    }

    #sec_01 .mono:nth-of-type(2) {
        top: unset;
        right: unset;
    }

    #sec_01 .mono:nth-of-type(2):before {
        right: 10%;
        bottom: -15px;
    }

    #sec_01 .mono:nth-of-type(2):after {
        right: 5%;
        bottom: -35px;
    }

    #sec_01 .mono:nth-of-type(3) {
        bottom: unset;
        right: unset;
        margin-left: auto;
        margin-right: 30px;
    }

    #sec_01 .mono:nth-of-type(3):before {
        right: -15px;
        bottom: 20%;
    }

    #sec_01 .mono:nth-of-type(3):after {
        right: -35px;
        bottom: 40%;
    }

    #sec_01 .mono:nth-of-type(4) {
        top: unset;
        left: unset;
    }

    #sec_01 .mono:nth-of-type(4):before {
        left: 10%;
        bottom: -15px;
    }

    #sec_01 .mono:nth-of-type(4):after {
        left: 5%;
        bottom: -35px;
    }

    #sec_01 .mono:nth-of-type(5) {
        bottom: unset;
        left: unset;
        margin-left: auto;
    }

    #sec_01 .mono:nth-of-type(5):before {
        left: -15px;
        bottom: 20%;
    }

    #sec_01 .mono:nth-of-type(5):after {
        left: -35px;
        bottom: 40%;
    }

    #sec_01 .img_01 {
        position: absolute;
        right: 0;
        top: 30%;
        transform: translateX(0);
    }

    #sec_01 .img_02 {
        position: absolute;
        left: 0;
        bottom: 5%;
        transform: translateX(0);
    }
}

/* sec_02 */
#sec_02 {
    background: #0C3388;
    padding: 100px 0;
}

#sec_02 h2 {
    font-size: clamp(28px, 3.2vw, 60px);
}

#sec_02 h2 .br_sp {
    display: none;
}

#sec_02 .bg_01 {
    top: 0;
    right: 0;
    transform: translateY(-60%);
}

#sec_02 .bg_02 {
    left: 3%;
    bottom: 85%;
}

#sec_02 .about {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18vw;
    padding: 6% 5%;
    gap: 5%;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.30);
}

#sec_02 .about .text {
    width: 50%;
}

#sec_02 .about .text h3 {
    font-size: clamp(24px, 2.1vw, 40px);
}

#sec_02 .about .text p {
    margin: 40px 0 30px;
    font-size: clamp(16px, 1.3vw, 24px);
}

#sec_02 .about .text small {
    font-size: clamp(12px, 0.95vw, 18px);
}

#sec_02 .about .img_01 {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 30%);
    width: 40%;
    max-width: 600px;
    min-width: 260px;
}

#sec_02 .about .img_02 {
    width: 50%;
}

@media screen and (max-width: 768px) {
    #sec_02 {
        padding: 60px 0;
    }

    #sec_02 h2 .br_sp {
        display: block;
    }

    #sec_02 .about {
        flex-direction: column;
        margin-top: 150px;
        padding: 80px 20px 40px;
    }

    #sec_02 .about .text {
        width: 100%;
    }

    #sec_02 .about .img_02 {
        width: 100%;
    }

    #sec_02 .about .text p {
        margin: 10px 0 20px;
    }

    #sec_02 .about .text small {
        display: none;
    }

    #sec_02 .bg_01 {
        top: 0;
        right: 0;
        transform: translateY(-90%);
    }

    #sec_02 .bg_02 {
        left: 3%;
        bottom: 0%;
        transform: translateY(80%);
    }
}

/* sec_03 */
#sec_03 {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(112, 200, 255, 0.00) 0%, rgba(112, 200, 255, 0.40) 100%);
}

#sec_03 h2 {
    margin: 30px auto;
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_03 h2 .mini {
    font-size: clamp(20px, 2.3vw, 44px);
}

#sec_03 ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
}

#sec_03 ul li {
    position: relative;
    width: 33%;
    max-width: 482px;
    height: fit-content;
    aspect-ratio: 482/563;
    padding: 3% 5%;
    background: #fff;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(0, 58, 107, 0.10));
}

#sec_03 ul li h3 {
    text-align: center;
    font-size: clamp(16px, 1.4vw, 26px);
}

#sec_03 ul li p {
    font-size: clamp(12px, 1.25vw, 24px);
}

#sec_03 ul li:first-of-type {
    z-index: 1;
    margin-top: 5%;
    transform: rotate(-8deg);
}

#sec_03 ul li:nth-of-type(2) {
    z-index: 2;
}

#sec_03 ul li:nth-of-type(3) {
    z-index: 3;
    margin-top: 5%;
    transform: rotate(8deg);
}

#sec_03 ul li:before {
    content: "";
    position: absolute;
    top: 4%;
    left: 4%;
    width: 8%;
    aspect-ratio: 42/86;
}

#sec_03 ul li:after {
    content: "";
    position: absolute;
    right: 4%;
    bottom: 4%;
    width: 8%;
    aspect-ratio: 42/86;
    transform: rotate(-180deg);
}

#sec_03 ul li:first-of-type:before {
    background: url(../coaching/trump_mark_01.png) no-repeat center/contain;
}

#sec_03 ul li:first-of-type:after {
    background: url(../coaching/trump_mark_01.png) no-repeat center/contain;
}

#sec_03 ul li:nth-of-type(2):before {
    background: url(../coaching/trump_mark_02.png) no-repeat center/contain;
}

#sec_03 ul li:nth-of-type(2):after {
    background: url(../coaching/trump_mark_02.png) no-repeat center/contain;
}

#sec_03 ul li:nth-of-type(3):before {
    background: url(../coaching/trump_mark_03.png) no-repeat center/contain;
}

#sec_03 ul li:nth-of-type(3):after {
    background: url(../coaching/trump_mark_03.png) no-repeat center/contain;
}

#sec_03 ul li img {
    width: 100%;
}

#sec_03 .p1 {
    width: fit-content;
    margin: 0 auto;
    font-size: clamp(24px, 2.1vw, 40px);
}

#sec_03 .p2 {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 20% 30px;
    line-height: 100%;
    background-color: #fff;
    font-size: clamp(24px, 2.6vw, 50px);
}

#sec_03 .triangle {
    width: fit-content;
    margin: 30px auto;
    border-top: 30px solid #F6F635;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent
}

#sec_03 .bg_01 {
    right: 0;
    bottom: -18vw;
}

@media screen and (max-width: 768px) {
    #sec_03 {
        padding: 60px 0 80px;
    }

    #sec_03 .p1 {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    #sec_03 ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 40px;
    }

    #sec_03 ul li {
        width: 100%;
        padding: 10% 14%;
    }

    #sec_03 ul li h3 {
        font-size: clamp(20px, 5.3vw, 26px);
    }

    #sec_03 ul li p {
        font-size: clamp(16px, 4.2vw, 20px);
    }

    #sec_03 ul li:before {
        width: 7%;
    }

    #sec_03 ul li:first-of-type {
        margin-top: 0;
        transform: rotate(0deg);
    }

    #sec_03 ul li:last-of-type {
        margin-top: 0;
        transform: rotate(0deg);
    }

    #sec_03 .triangle {
        width: fit-content;
        margin: 20px auto;
        border-top: 16px solid #F6F635;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent
    }

    #sec_03 .p2 {
        padding: 10px 5% 10px;
    }

    #sec_03 .bg_01 {
        bottom: -35vw;
    }
}

/* sec_04 */
#sec_04 {
    padding: 100px 0;
}

#sec_04 h2 {
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_04 h2 .mini {
    font-size: clamp(20px, 2.3vw, 44px);
}

#sec_04 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    margin-top: 60px;
}

#sec_04 ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 482px;
    /* width: calc((100% - 90px) / 3); */
    aspect-ratio: 482/120;
    border-radius: 4px;
    background: #F2F9FF;
    box-shadow: 0 0 20px 0 rgba(0, 58, 107, 0.10);
    text-align: center;
    font-size: clamp(20px, 1.6vw, 30px);
    line-height: 126%;
}

#sec_04 ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    background: url(../coaching/check_mark.png) no-repeat center / cover;
}

@media screen and (max-width: 768px) {
    #sec_04 {
        padding: 60px 0 100px;
    }

    #sec_04 ul {
        gap: 10px;
        margin-top: 40px;
    }

    #sec_04 ul li {
        width: 100%;
        max-width: 482px;
    }

    #sec_04 ul li:before {
        width: 23px;
        height: 15px;
    }
}

/* sec_05 */
#sec_05 {
    position: relative;
    background: #0C3388;
    padding: 60px 0;
}

#sec_05 .sec_inner {
    background: #fff;
    padding: 80px 0;
    border-radius: 10px;
}

#sec_05 .bg_card {
    z-index: 1;
    top: 3%;
    left: 15%;
}

#sec_05 .bg_02 {
    position: absolute;
    z-index: 1;
    top: 25%;
    right: 3%;
    width: 30%;
}

#sec_05 h2 {
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_05 h2 .mini {
    font-size: clamp(20px, 2.3vw, 44px);
}

#sec_05 .price_01 {
    text-align: center;
    /* line-height: 140%; */
    /* margin: 60px 0 35px; */
}

#sec_05 .price_01 .label {
    background: #E4F1FD;
    font-size: clamp(18px, 1.7vw, 32px);
    padding: 0 10px 5px;
    margin-right: 30px;
}

#sec_05 .price_01 .amount {
    font-size: clamp(50px, 3.8vw, 72px);
    vertical-align: sub;
}

#sec_05 .price_01 .yen {
    font-size: clamp(26px, 2.1vw, 40px);
}

#sec_05 .price_02 {
    text-align: center;
    margin-bottom: 55px;
}

#sec_05 .price_02 .label {
    background: #E4F1FD;
    padding: 0 10px 5px;
    font-size: clamp(16px, 1.05vw, 20px);
}

#sec_05 .price_02 .amount {
    /* font-size: clamp(20px, 1.6vw, 30px); */
    vertical-align: sub;
    font-size: 30px;
}

#sec_05 .price_02 .yen {
    font-size: 20px;
}

#sec_05 .link_btn_01 {
    width: 35%;
    margin: 0 auto;
    padding: 20px 0% 20px 0;
}

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

    #sec_05 .bg_card {
        top: -8%;
        left: 5%;
    }

    #sec_05 .sec_inner {
        padding: 30px 0 40px;
    }

    #sec_05 .bg_02_sp {
        width: 80%;
        margin: 30px auto 0;
    }

    #sec_05 .price_01 {
        margin-top: 30px;
    }

    #sec_05 .price_01 .label {
        margin-right: 0;
    }

    #sec_05 .price_02 {
        margin-bottom: 30px;
    }

    #sec_05 .price_02 .amount {
        vertical-align: sub;
    }

    #sec_05 .link_btn_01 {
        width: 90%;
        max-width: 540px;
    }
}

/* sec_06 */
#sec_06 {
    padding: 100px 0;
    background: url(../coaching/sec_06_bg.png) no-repeat center / cover;
    overflow: hidden;
}

#sec_06 h2 {
    margin: 30px auto 60px;
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_06 ul.pc {
    margin-top: 50px;
}

#sec_06 ul.pc li {
    display: flex;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 58, 107, 0.10);
}

#sec_06 ul.pc li:not(:last-of-type) {
    margin-bottom: 30px;
}

#sec_06 ul.pc li img {
    width: 50%;
    object-fit: cover;
}

#sec_06 ul.pc li .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 5%;
    background: #F2F9FF;
}

#sec_06 ul.pc li .text h3 {
    font-size: clamp(20px, 1.9vw, 36px);
    margin-bottom: 20px;
    line-height: 3rem;
}

#sec_06 ul.pc li .text p {
    font-size: clamp(12px, 0.95vw, 18px);
}

.sec_06_swiper ul {
    margin-top: 30px;
}

.sec_06_swiper ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 20px 0 rgba(0, 58, 107, 0.10);
}

.sec_06_swiper ul li .text {
    background: #F2F9FF;
    padding: 30px 20px;
}

.sec_06_swiper ul li .text h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

@media screen and (max-width: 768px) {
    #sec_06 {
        padding: 60px 0 100px;
        background: url(../coaching/sec_06_bg_sp.png) repeat left / contain;
    }

    #sec_06 h2 {
        margin: 30px auto 40px;
    }
}

/* sec_07 */
#sec_07 {
    padding: 100px 0;
    background: #E4F1FD;
}

#sec_07 .sec_inner>ul {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

#sec_07 ul li {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 58, 107, 0.10);
    width: calc((100% - 90px) / 3);
    min-width: 482px;
    margin: 0 auto;
    padding: 50px 40px;
}

#sec_07 ul li .ttl_04 {
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    background: #F6F635;
}

#sec_07 ul li h3 {
    margin-bottom: 10px;
    text-align: center;
    color: #0C3388;
    font-size: 30px;
    font-weight: 600;
}

#sec_07 ul li p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    #sec_07 {
        padding: 40px 0 100px;
    }

    #sec_07 ul.pc {
        display: none;
    }

    .sec_07_swiper {
        margin-top: 30px;
    }

    #sec_07 ul li {
        width: 100%;
        min-width: 0;
        padding: 30px 20px 40px;
    }

    #sec_07 ul li .ttl_04 {
        font-size: 16px;
        border-radius: 30px;
    }

    #sec_07 ul li h3 {
        margin: 10px 0 15px;
        font-size: 22px;
    }

    #sec_07 ul li p {
        font-size: 16px;
    }
}

/* sec_08 */
#sec_08 {
    padding: 60px 0 80px;
    background: #0C3388;
}

#sec_08 .sec_inner {
    background: #fff;
    padding: 70px 8% 80px;
}

#sec_08 h2 {
    margin-bottom: 40px;
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_08 .flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

#sec_08 .flex img {
    width: 30%;
    max-width: 380px;
    aspect-ratio: 380/440;
}

#sec_08 .text .title {
    color: #333;
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 145%;
}

#sec_08 .text .name {
    margin-bottom: 10px;
    font-size: clamp(22px, 1.6vw, 30px);
}

#sec_08 .text .body {
    font-size: clamp(16px, 0.95vw, 18px);
}

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

    #sec_08 .sec_inner {
        padding: 30px 20px 40px;
    }

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

    #sec_08 .flex img {
        width: 70%;
        margin: 0 auto;
    }

    #sec_08 .text .title {}

    #sec_08 .text .name {}

    #sec_08 .text .body {}
}

/* sec_09 */
#sec_09 {
    padding: 100px 0;
    background: #E4F1FD;
}

#sec_09 .sec_inner {
    max-width: 1140px;
}

#sec_09 h2 {
    margin-bottom: 40px;
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_09 ul.pc li {
    display: flex;
    align-items: center;
    gap: 60px;
}

#sec_09 ul.pc li:not(:last-of-type) {
    margin-bottom: 30px;
}

#sec_09 ul.pc li img {
    width: 21%;
    max-width: 240px;
}

#sec_09 ul li .text {
    position: relative;
    padding: 40px 50px;
    border-radius: 10px;
    background: #fff;
}

#sec_09 ul li .text .title {
    font-size: clamp(22px, 1.4vw, 26px);
}

#sec_09 ul li .text .title .mini {
    font-size: clamp(14px, 0.95vw, 18px);
}

#sec_09 ul li .text .body {
    font-size: clamp(16px, 0.95vw, 18px);
}

#sec_09 ul.pc li .text:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#sec_09 ul.pc li:nth-of-type(odd) .text:before {
    right: 100%;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 30px solid #fff;
}

#sec_09 ul.pc li:nth-of-type(even) .text:before {
    left: 100%;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #fff;
}

@media screen and (max-width: 768px) {
    #sec_09 {
        padding: 50px 0 100px;
    }

    #sec_09 ul li img {
        display: block;
        width: 48%;
        max-width: 170px;
        margin: 0 auto;
    }

    #sec_09 ul li .text {
        max-width: 400px;
        margin: 0 auto;
        margin-top: 50px;
        padding: 15px 20px 20px;
        border-radius: 6px;
    }

    #sec_09 ul li .text .title {
        line-height: 140%;
    }

    #sec_09 ul li .text:before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 100%;
        transform: translateX(-50%);
        border-bottom: 30px solid #fff;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
    }
}

/* sec_10 */
#sec_10 {
    padding: 100px 0;
}

#sec_10 h2 {
    font-size: clamp(28px, 2.6vw, 50px);
}

#sec_10 .sec_inner {
    max-width: 1140px;
}

#sec_10 ul {
    margin-top: 50px;
}

#sec_10 ul li {
    border-radius: 4px;
    background: #0C3388;
}

#sec_10 ul li summary {
    position: relative;
    color: #fff;
    padding: 15px 30px 18px;
    font-size: clamp(20px, 1.4vw, 26px);
}

#sec_10 ul li summary:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 90px;
    display: block;
    width: 18px;
    aspect-ratio: 1/1;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-70%) rotate(-45deg);
}

#sec_10 ul li details[open] summary:before {
    transform: translateY(-30%) rotate(135deg);
}

#sec_10 ul li .text {
    font-size: clamp(16px, 0.95vw, 18px);
    background-color: #fff;
    padding: 20px 30px 25px;
    box-shadow: 0 0 20px 0 rgba(0, 58, 107, 0.10);
}

#sec_10 ul li:not(:last-of-type) {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    #sec_10 {
        padding: 60px 0;
    }

    #sec_10 ul li summary {
        padding: 10px 60px 13px 20px;
    }

    #sec_10 ul li summary:before {
        width: 15px;
        right: 15px;
    }

    #sec_10 ul li .text {
        padding: 10px 20px 13px;
    }
}

/* footer */
footer#footer {
    width: 100%;
    max-width: none;
    background: #F5F5F5;
    padding: 80px 0 30px;
}

footer#footer a {
    color: #333;
}

footer .top {
    display: flex;
    justify-content: space-between;
}

footer .top .left_box a {
    position: relative;
    display: block;
    width: fit-content;
    text-align: left;
    font-size: clamp(16px, 0.95vw, 18px);
}

footer .top .left_box .logo img {
    max-width: 310px;
    margin-bottom: 10px;
}

footer .top .left_box a.link:not(:last-of-type) {
    margin-bottom: 10px;
}

footer .top .left_box a.link:before {
    content: "";
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    aspect-ratio: 1/1;
    background: url("../coaching/link_mark.png") no-repeat center / cover;
}

footer .top .right_box {
    display: flex;
    text-align: left;
    gap: 70px;
}

footer .top .right_box a {
    font-size: clamp(16px, 0.95vw, 18px);
}

footer .top .right_box li:not(:last-of-type) {
    margin-bottom: 10px;
}

footer .bottom {
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}

footer .bottom small {
    color: #777;
    text-align: left;
    font-size: clamp(16px, 0.95vw, 18px);
}

footer .bottom .privacy {
    display: flex;
    gap: 40px;
    font-size: clamp(16px, 0.95vw, 18px);
}

@media screen and (max-width: 1200px) {
    footer#footer {
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    footer#footer {
        padding: 40px 0 130px;
    }

    footer#footer .sec_inner {
        width: 85%;
    }

    footer .top {
        flex-direction: column;
    }

    footer .top .left_box .logo img {
        width: 70%;
    }

    footer .top .left_box a.link:not(:last-of-type) {
        margin-bottom: 5px;
    }

    footer .top .right_box {
        display: none;
    }

    footer .bottom {
        flex-direction: column;
        margin-top: 30px;
    }

    footer .bottom small {
        order: 2;
    }

    footer .bottom .privacy {
        order: 1;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
}