@charset "UTF-8";

html {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",sans-serif;
    font-weight: bold;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

ul {
    padding: 0;
    margin: 0;
}

.red {
    color: #E94746;
}

.yellow {
    color: #FFF352;
}

.white {
    color: #fff;
}

.shadow {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.radius {
    border-radius: 20px;
}

.bg-box {
    /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e9f9ff calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #e9f9ff calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;

    /* 以下任意のスタイル */
    padding: 20px;
}

.pc {
    display: block;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }
}


/* section */
.section__wrapper {
    padding: 80px 16px;
    border-top: 1px solid #000;
}

@media screen and (max-width: 768px) {
    .section__wrapper {
        padding-block: 64px;
    }
}

.section__inner {
    max-width: 1248px;
    margin: 0 auto;
}


/* header */
.header {
    position: fixed;
    z-index: 1000;
    width: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 64px;
}

@media screen and (max-width: 1200px) {
    .header__inner {
        padding-inline: 16px;
    }
}

@media screen and (max-width: 768px) {
    .header__inner {
        padding: 16px;
        justify-content: start;
    }
}

@media screen and (max-width: 768px) {
    .header__logo--img {
        max-width: 205px;
    }
}


@media screen and (max-width: 864px) {
    .header__nav-pc {
        display: none;
    }
}

.header__nav-pc--list {
    display: flex;
    gap: 24px;
}

.header__nav-pc--link {
    width: 240px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 12px 92px 12px 82px;
    border-radius: 30px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .header__nav-pc--list {
        gap: 8px;
    }

    .header__nav-pc--link {
        padding: 12px 48px;
    }
}

.header__nav-pc--link::after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    background-image: url(../image/arrow.png);
    position: absolute;
    top: 8px;
    right: 8px;
}

.header__nav-sp {
    display: none;
}
@media screen and (max-width: 864px) {
    .header__nav-sp {
        display: block;
        position: fixed;
        bottom: 0;
        height: 54px;
        width: 100%;
    }

    .header__nav-sp--list {
        display: flex;
        font-size: 12px;
    }

    .header__nav-sp--item.guide {
        width: 30%;
    }

    .header__nav-sp--item.oc {
        width: 45%;
    }

    .header__nav-sp--line {
        width: 25%;
    }

    .header__nav-sp--link {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 18px 8px;
        background-color: #000;
        border-right: 1px solid #fff;
        color: #fff;
    }

    .header__nav-sp--link::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../image/arrow.png);
        background-size: contain;
    }

    .header__nav-sp--line-link {
        display: block;
        padding: 11px 16px;
        background-color: #00B900;
        color: #fff;
        text-align: center;
    }
}


/* footer */
.footer {
    background-color: #EFEFEF;
    border-top: 1px solid #000;
    color: #333;
    font-weight: normal;
}

.footer__inner {
    padding-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .footer__inner {
        padding: 32px 16px;
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .footer__logo {
        max-width: 280px;
    }
}

.footer__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .footer__text {
        gap: 16px;
        font-size: 14px;
    }
}

.footer__small {
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    .footer__small {
        font-size: 10px;
    }
}


.kv {
    background-image: url(../image/kv_photo_pc.jpg);
    background-size: cover;
    height: 47.91666666666667vw;
    position: relative;
}

@media screen and (max-width: 768px) {
    .kv {
        background-image: url(../image/kv_photo_sp.jpg);
        background-position: bottom;
        height: 144vw;
    }
}

.kv__text {
    position: absolute;
    right: 14.8vw;
    bottom: 4.166666666666666vw;
    width: 22.291666666666668vw;
}

@media screen and (max-width: 768px) {
    .kv__text {
        right: auto;
        bottom: 0;
        width: 100%;
    }
}


/* overview */
.overview-main {
    background-color: #BBE2F1;
    border: 1px solid #000;
    padding: 64px 64px 80px 64px;
}

@media screen and (max-width: 768px) {
    .overview-main {
        padding: 32px 16px 64px 16px;
    }
}

.overview-main__title {
    font-size: 36px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .overview-main__title {
        font-size: 24px;
    }
}

.overview-main__title .under {
    background: linear-gradient(transparent 60%, #fff 0%);
}

.overview-main__title .middle {
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    .overview-main__title .middle {
        font-size: 24px;
    }
}

.overview-main__title .large {
    font-size: 54px;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    text-shadow: 2px 0px 0px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 768px) {
    .overview-main__title .large {
        font-size: 36px;
    }
}

.overview-main__img {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .overview-main__img {
        margin-top: 24px;
    }
}

.overview-main__img img {
    margin-inline: auto;
}

.overview-main__img--bg {
    background-image: url(../image/overview-main_03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 130px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .overview-main__img--bg {
        background-image: none;
        height: auto;
        max-width: 312px;
        margin-top: 16px;
        margin-inline: auto;
    }
}

.overview-main__datail {
    background-color: #fff;
    border: 1px solid #000;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .overview-main__datail {
        margin-top: 24px;
        padding: 16px 30px;
    }
}

.overview-main__datail--title {
    font-size: 36px;
    background: linear-gradient(transparent 50%, #FFF352 0%);
    display: block;
    width: fit-content;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .overview-main__datail--title {
        font-size: 24px;
    }
}

.overview-main__datail--text {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .overview-main__datail--text {
        font-size: 14px;
    }
}

.overview-main__datail--img {
    margin-inline: auto;
}

.overview-point {
    background-color: #BBE2F1;
    border: 1px solid #000;
    margin-top: 80px;
    padding: 60px 64px 40px 64px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .overview-point {
        margin-top: 64px;
        padding: 111px 16px 32px 16px;
    }
}

.overview-point__img--wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    .overview-point__img--wrapper {
        display: flex;
        flex-direction: row-reverse;
        top: 0;
        bottom: auto;
        left: 24px;
    }
}

.overview-point__img--img.pc {
    width: 356px;
}

@media screen and (max-width: 1145px) {
    .overview-point__img--img.pc {
        width: 280px;
    }
}

.overview-point__img--img.sp {
    width: 320px;
}

.overview-point__inner {
    background-color: #fff;
    border: 1px solid #000;
    padding: 54px 50px 54px 180px;
    background-image: url(../image/stripe.png);
    background-repeat: repeat;
    background-size: 3%;
}

@media screen and (max-width: 1145px) {
    .overview-point__inner {
        padding-left: 200px;
    }
}

@media screen and (max-width: 768px) {
    .overview-point__inner {
        padding: 32px 16px;
    }
}

.overview-point__list--wrapper {
    display: flex;
    gap: 32px;
}

@media screen and (max-width: 1145px) {
    .overview-point__list--wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .overview-point__list--wrapper {
        flex-direction: column;
        gap: 16px;
    }
}

.overview-point__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .overview-point__list {
        gap: 16px;
    }
}

.overview-point__item {
    font-size: 20px;
    padding-left: 32px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .overview-point__item {
        font-size: 16px;
        padding-left: 24px;
    }
}

.overview-point__item::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 20px;
    background-image: url(../image/check.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: 0;
}

@media screen and (max-width: 768px) {
    .overview-point__item::before {
        width: 18px;
        height: 16px;
        margin-right: 8px;
    }
}


/* point */
.point {
    background-color: #BBE2F1;
}

@media screen and (max-width: 768px) {
    .point {
        padding-block: 32px;
    }
}

.point__title {
    font-size: 36px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .point__title {
        font-size: 24px;
    }
}

.point__title .large {
    font-size: 48px;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
}

@media screen and (max-width: 768px) {
    .point__title .large {
        font-size: 40px;
    }
}

.point__title .middle {
    font-size: 40px;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
}

@media screen and (max-width: 768px) {
    .point__title .middle {
        font-size: 32px;
    }
}

.point__list {
    margin-top: 64px;
    margin-inline: auto;
    display: flex;
    gap: 24px;
    max-width: 1120px;
}

@media screen and (max-width: 768px) {
    .point__list {
        margin-top: 28px;
        flex-direction: column;
        align-items: center;
    }
}

.point__item {
    background-color: #fff;
    border: 1px solid #000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    max-width: 480px;
    width: calc(100% / 3);
}

@media screen and (max-width: 768px) {
    .point__item {
        padding: 16px;
        width: 100%;
    }
}

.point__item--img {
    width: 100%;
}

.point__item--number {
    position: absolute;
    top: -24px;
    left: -16px;
}

@media screen and (max-width: 864px) {
    .point__item--number {
        top: -16px;
        left: -8px;
        width: 60px;
    }
}

.point__item--title {
    font-size: 24px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .point__item--title {
        font-size: 20px;
    }

    .point__item--text {
        font-size: 14px;
    }
}


/* detail */
.detail__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.detail__college {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .detail__college {
        margin-top: 64px;
    }
}

.detail__college--title {
    font-size: 36px;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    gap: 16px;
}

.detail__college--title:before,
.detail__college--title:after {
    content: "";
    flex-grow: 1;
    /* 残りスペースに応じて伸びる */
    border-top: 1px solid #000;
    height: 1px;
    max-width: 140px;
}

@media screen and (max-width: 768px) {
    .detail__college--title {
        font-size: 24px;
    }
}

.detail__college--link {
    display: block;
    margin-top: 32px;
    margin-inline: auto;
    width: fit-content;
}

.detail__college--link:hover {
    transform: translateY(4px);
    box-shadow: none;
}


.detail__pickup {
    margin-top: 64px;
}

@media screen and (max-width: 768px) {
    .detail__pickup {
        margin-top: 32px;
    }
}

.detail__pickup--head {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .detail__pickup--head {
        flex-direction: column;
    }
}

.detail__pickup--sub {
    position: relative;
    display: inline-block;
    margin-right: 19px;
    padding: 8px 32px 6px 40px;
    border: 1px solid #000000;
    border-radius: 28px;
    background-color: #fff352;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
}

.detail__pickup--sub::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 6px 0 6px 14px;
    border-color: transparent transparent transparent #000000;
    translate: 100% -50%;
}

.detail__pickup--sub::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    border-style: solid;
    border-width: 5px 0 5px 12px;
    border-color: transparent transparent transparent #fff352;
    translate: 100% -50%;
}

@media screen and (max-width: 768px) {
    .detail__pickup--sub {
        position: relative;
        display: inline-block;
        margin-right: 0;
        margin-bottom: 8px;
        padding: 8px 16px;
        border: 1px solid #000000;
        border-radius: 28px;
        background-color: #fff352;
        text-align: left;
        font-size: 12px;
    }

    .detail__pickup--sub::before {
        content: "";
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        border-style: solid;
        border-width: 10px 6px 0 6px;
        border-color: #000000 transparent transparent;
        translate: -50% 100%;
    }

    .detail__pickup--sub::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        border-style: solid;
        border-width: 8.1px 4.8px 0 4.8px;
        border-color: #fff352 transparent transparent;
        translate: -50% 100%;
    }
}

.detail__pickup--title {
    font-size: 36px;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    text-shadow: 2px 0px 0px rgba(0, 0, 0, 1);
    margin-left: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.detail__pickup--title:after {
    content: "";
    flex-grow: 1; /* 残りスペースを使って伸びる */
    border-top: 1px dotted #000;
    height: 1px;
}

@media screen and (max-width: 768px) {
    .detail__pickup--title {
        font-size: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        white-space: nowrap;
    }

    .detail__pickup--title:before,
    .detail__pickup--title:after {
        content: "";
        flex-grow: 1; /* 残りスペースを使って伸びる */
        border-top: 1px dotted #000;
        height: 1px;
    }

    .detail__pickup--title:before {
        margin-right: 16px;
        /* 文字の右隣 */
    }

    .detail__pickup--title:after {
        margin-left: 16px;
        /* 文字の左隣 */
    }
}

.detail__pickup--content {
    margin-top: 32px;
    padding: 32px 60px;
    background-color: #EDE5F1;
    border: 1px solid #000;
    position: relative;
}

@media screen and (max-width: 768px) {
    .detail__pickup--content {
        padding: 32px 16px;
    }
}

.detail__pickup--tag {
    position: absolute;
    top: -8px;
    left: 32px;
}

@media screen and (max-width: 1020px) {
    .detail__pickup--tag {
        width: 92px;
    }
}

@media screen and (max-width: 768px) {
    .detail__pickup--tag {
        width: 66px;
    }
}

.detail__pickup--list-wrapper {
    background-color: #fff;
    padding-block: 24px;
    background-image: url(../image/stripe.png);
    background-repeat: repeat;
    background-size: 3%;
}

@media screen and (max-width: 768px) {
    .detail__pickup--list-wrapper {
        padding: 24px 24px 16px 24px;
    }
}

.detail__pickup--list {
    max-width: 592px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail__pickup--item {
    font-size: 24px;
    letter-spacing: 0.1em;
    position: relative;
}

@media screen and (max-width: 768px) {
    .detail__pickup--item {
        font-size: 16px;
        letter-spacing: 0.01em;
    }
}

.detail__pickup--item::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #FFF352;
    border-radius: 50%;
    border: 1px solid #000;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .detail__pickup--item::before {
        width: 14px;
        height: 14px;
        margin-right: 8px;
    }
}

.detail__pickup--item small {
    font-size: 50%;
    position: absolute;
}

.detail__pickup--img {
    margin-top: 32px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .detail__pickup--img {
        margin-top: 24px;
    }
}

.detail__pickup--text {
    color: #1E1E1E;
    max-width: 879px;
    margin-top: 32px;
    margin-inline: auto;
    font-size: 14px;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    .detail__pickup--text {
        margin-top: 24px;
        font-size: 11px;
        font-weight: bold;
    }
}


.detail__support {
    margin-top: 32px;
}

.detail__support--head {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .detail__support--head {
        flex-direction: column;
        gap: 4px;
    }
}

.detail__support--sub {
    font-size: 20px;
    background-image: url(../image/support_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px 16px;
    margin-right: 16px;
}

@media screen and (max-width: 768px) {
    .detail__support--sub {
        font-size: 16px;
        margin-right: 0;
    }
}

.detail__support--title {
    font-size: 32px;
}

@media screen and (max-width: 768px) {
    .detail__support--title {
        font-size: 24px;
        text-align: center;
    }
}

.detail__support--title .small {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .detail__support--title .small {
        font-size: 14px;
    }
}

.detail__support--title .large {
    font-size: 40px;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    margin-left: 16px;
}

@media screen and (max-width: 768px) {
    .detail__support--title .large {
        font-size: 36px;
        margin-left: 0;
    }
}

.detail__support--list {
    margin-top: 32px;
    display: flex;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .detail__support--list {
        flex-direction: column;
    }
}

.detail__support--item {
    width: calc(100% / 4);
    max-width: 302px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border: 1px solid #000;
    background-color: #fff;
    padding: 16px;
}

@media screen and (max-width: 768px) {
    .detail__support--item {
        width: 100%;
        max-width: 100%;
    }
}

.detail__support--lead {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .detail__support--lead {
        font-size: 20px;
    }

    .detail__support--text {
        font-size: 14px;
    }
}

.detail__support--caution {
    font-size: 14px;
    text-align: right;
    margin-top: 16px;
}

@media screen and (max-width: 768px) {
    .detail__support--caution {
        font-size: 11px;
        text-align: left;
    }
}


/* cta */
.cta {
    background-color: #BBE2F1;
}

.cta__lead {
    position: relative;
    width: 510px;
    background: #1770B0;
    padding: 16px 20px;
    border: 1px solid #000000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 56px;
    margin-inline: auto;
}

.cta__lead::after,
.cta__lead::before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
}

.cta__lead::after {
    border-color: rgba(23, 112, 176, 0);
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-left: -15px;
    border-top-color: #1770B0;
}

.cta__lead::before {
    border-color: rgba(0, 0, 0, 0);
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 16px;
    border-right-width: 16px;
    margin-left: -16px;
    margin-top: 1px;
    border-top-color: #000000;
}

@media screen and (max-width: 768px) {
    .cta {
        padding-top: 32px;
    }

    .cta__lead {
        font-size: 16px;
        width: 342px;
        padding-block: 12px;
        margin-bottom: 32px;
    }

    .cta__lead::after {
        border-color: rgba(23, 112, 176, 0);
        border-top-width: 16px;
        border-bottom-width: 16px;
        border-left-width: 10px;
        border-right-width: 10px;
        margin-left: -15px;
        border-top-color: #1770B0;
    }

    .cta__lead::before {
        border-color: rgba(0, 0, 0, 0);
        border-top-width: 17px;
        border-bottom-width: 17px;
        border-left-width: 11px;
        border-right-width: 11px;
        margin-left: -16px;
        margin-top: 1px;
        border-top-color: #000000;
    }
}

.cta__wapper {
    display: flex;
    justify-content: center;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .cta__wapper {
        flex-direction: column;
        align-items: center;
    }
}

.cta__link {
    border-radius: 20px;
}

.cta__link:hover {
    transform: translateY(4px);
    box-shadow: none;
}