@charset "UTF-8";

.btn {
    width: 100%;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
    gap: .7rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn__text {
    text-align: center;
    overflow: hidden;
    white-space: wrap;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all
}

.btn__icon {
    display: block;
    mask-image: url(../images/icon_external_link.svg);
    -webkit-mask-image: url(../images/icon_external_link.svg);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: currentColor
}

.btn--middium {
    padding: 1.2rem 4rem;
    max-width: 24.5rem;
    min-height: 4.8rem;
    font-size: 1.6rem;
    line-height: 1
}

.btn--middium.btn--middium-link {
    padding: 0
}

.btn--gray {
    background: #ddd;
    color: #999
}

@media screen and (max-width: 767px) {
    .btn--middium {
        font-size: 1.4rem;
        max-width: 24rem;
        min-height: 4.4rem
    }
}

.btn--middium .btn__text {
    font-size: 1.6rem;
    width: 100%;
    max-width: 16.5rem
}

@media screen and (max-width: 767px) {
    .btn--middium .btn__text {
        font-size: 1.4rem;
        max-width: 16rem
    }
}

.btn--top--apply {
    position: relative;
    background-color: #fff;
    width: 100%;
    min-width: 17.6rem;
    height: 4.8rem;
    color: #1e1e26;
    font-weight: 700;
    text-align: center;
    border: .1rem solid #1E1E26;
    font-size: 1.6rem;
    display: flex;
    align-items: center
}

.btn__top__icon--12 {
    position: absolute;
    top: 50%;
    right: 1.8rem;
    transform: translateY(-50%);
    width: 2.6rem;
    height: 2.6rem
}

.btn__top__icon--16 {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1.4rem;
    height: 1.4rem
}

@media screen and (max-width: 767px) {
    .btn__top__icon--16 {
        right: 2.4rem
    }
}

.btn--top--apply .btn__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center
}

.btn--small {
    padding: .7rem 2.4rem .9rem;
    width: 15.2rem;
    max-width: 15.2rem;
    min-height: 3.6rem
}

.btn--small .btn__text {
    font-size: 1.4rem;
    line-height: 1.25;
    width: 100%;
    max-width: 8.4rem
}

.btn--large {
    max-width: 24rem;
    min-height: 6rem
}

@media screen and (max-width: 767px) {
    .btn--large {
        max-width: 24rem;
        min-height: 5.6rem
    }
}

.btn--large .btn__text {
    font-size: 1.8rem;
    width: 100%;
    padding-right: 4rem;
    padding-left: 4rem
}

@media screen and (max-width: 767px) {
    .btn--large .btn__text {
        font-size: 1.6rem
    }
}

.btn__icon--16 {
    width: 100%;
    max-width: 1.6rem;
    height: 1.6rem
}

.btn__icon--12 {
    width: 100%;
    max-width: 1.2rem;
    height: 1.2rem
}

.btn--white {
    background-color: #fff;
    color: #1e1e26;
    border: .1rem solid #1e1e26
}

@media (any-hover: hover) {
    .btn--white:hover {
        background-color: #efeffc
    }
}

.btn--white-external {
    background-image: linear-gradient(270deg, #fff, #fff);
    color: #1e1e26;
    border: .1rem solid #1e1e26;
    padding-right: 2rem
}

@media (any-hover: hover) {
    .btn--white-external:hover {
        background-image: linear-gradient(270deg, #e2f749, #bed514);
        color: #1e1e26
    }
}

.btn--blue-external {
    background: linear-gradient(270deg, #5b5b8d, #0f0f29);
    color: #fff;
    border: .1rem solid #1e1e26
}

@media (any-hover: hover) {
    .btn--blue-external:hover {
        background-image: linear-gradient(270deg, #e2f749, #bed514);
        color: #1e1e26
    }
}

.btn--red-external {
    background: linear-gradient(270deg, #c32929, #6f0000);
    color: #fff;
    border: .1rem solid #6f0000;
    padding-right: 2rem
}

@media (any-hover: hover) {
    .btn--red-external:hover {
        background-image: linear-gradient(270deg, #efeffc, #dedee8);
        color: #1e1e26;
        border: .1rem solid #1E1E26
    }
}

.btn--red-external-humburger {
    position: relative;
    background: linear-gradient(270deg, #c32929, #6f0000);
    color: #fff;
    border: .1rem solid #6f0000
}

@media (any-hover: hover) {
    .btn--red-external-humburger:hover {
        background-image: linear-gradient(270deg, #efeffc, #dedee8);
        color: #1e1e26;
        border: .1rem solid #1e1e26
    }
}

.c-arrow-btn:after {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_text_link.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .1rem solid #271671;
    transition: .3s
}

.c-arrow-btn:hover:after {
    background-image: url(../images/icon_text_link_hover.svg);
    background-color: #271671;
    border-color: #271671
}

.c-back-to-top {
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #2a2a40;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

@media screen and (max-width: 767px) {
    .c-back-to-top {
        right: 2.4rem;
        bottom: 1.2rem;
        width: 4.8rem;
        height: 4.8rem
    }
}

.c-back-to-top.is-show {
    opacity: 1;
    visibility: visible
}

.c-back-to-top:after {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background-image: url(../images/icon-topback-arrow.svg);
    background-repeat: no-repeat;
    background-position: center
}

.c-pagenation {
    margin-bottom: 10rem
}

@media screen and (max-width: 767px) {
    .c-pagenation {
        margin-bottom: 8rem
    }
}

.header.is-open~* .c-back-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.card {
    color: #393653
}

.card--grid {
    background-image: linear-gradient(#EFEFF4 .1rem, transparent .1rem), linear-gradient(to right, #EFEFF4 .1rem, transparent .1rem);
    background-size: 2rem 2rem;
    background-color: #fff;
    background-position: -1.4rem 1.4rem;
    border: .1rem solid #C9C9D3;
    padding: 4rem
}

@media screen and (max-width: 767px) {
    .card--grid {
        padding: 2.4rem 2.4rem 2.87rem
    }
}

.card--grid+.card--grid {
    margin-top: 3.05rem
}

.card__inner--2col {
    align-items: flex-start
}

@media screen and (max-width: 767px) {
    .card__inner--2col {
        flex-direction: column-reverse;
        align-items: center
    }
}

.card__inner--2col__img {
    width: 100%;
    max-width: 24rem
}

@media screen and (max-width: 767px) {
    .card__inner--2col__img {
        max-width: 34.2rem
    }
}

.card__inner--2col__txt-block {
    padding-left: 4rem
}

@media screen and (max-width: 767px) {
    .card__inner--2col__txt-block {
        padding-left: 0;
        padding-bottom: 2.4rem
    }
}

.card__inner--2col__txt-block__ttl {
    line-height: 1.25
}

.card__inner--2col__txt-block__txt {
    line-height: 2;
    padding-top: 2.4rem
}

@media screen and (max-width: 767px) {
    .card__inner--2col__txt-block__txt {
        padding-top: 1.2rem
    }
}

.card__inner--2col__txt-block h4+h4 {
    padding-top: 2.4rem
}

@media screen and (max-width: 767px) {
    .card__inner--2col__txt-block h4+h4 {
        padding-top: 2rem
    }
}

.card__inner__ttl {
    line-height: 1.5;
    margin-top: 2rem
}

.card__inner__list {
    width: 100%;
    max-width: 49.3rem;
    margin-top: 2rem
}

@media screen and (max-width: 767px) {
    .card__inner__list {
        max-width: none
    }
}

.card__inner__btn {
    margin-top: auto
}

@media screen and (max-width: 767px) {
    .card__inner__btn {
        margin-top: 2.4rem
    }
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) {
    .card__inner__btn {
        margin-top: 2.4rem
    }
}

.c-breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none
}

.c-breadcrumbs__item {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: .2rem;
    flex-shrink: 0
}

.c-breadcrumbs__item span {
    font-weight: 400
}

.c-icon-home:before {
    display: inline-block;
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    background: url(../images/icon-home.svg);
    vertical-align: top
}

.c-breadcrumbs__item:after {
    vertical-align: top;
    display: inline-block;
    content: "";
    width: .6rem;
    height: 1rem;
    margin: 0 1rem;
    background: url(../images/icon-breadcrumbs-arrow.svg) no-repeat center
}

.c-breadcrumbs__item--last:after {
    display: none
}

.c-breadcrumbs__item--last {
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    flex-shrink: 1
}

h1 {
    font-size: 4.4rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 3rem
    }
}

h2 {
    font-size: 4.4rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 3rem
    }
}

h3 {
    font-size: 3.2rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 2.4rem
    }
}

h4 {
    font-size: 2.4rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    h4 {
        font-size: 1.8rem
    }
}

h5 {
    font-size: 2rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    h5 {
        font-size: 1.6rem
    }
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom
}

a {
    transition: color .2s
}

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

.pc {
    display: block
}

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

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) {
    .pc {
        display: none
    }
}

.pc-tb {
    display: block
}

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

.tb-pc {
    display: block
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .tb-pc {
        display: block
    }
}

.tb-sp {
    display: none
}

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

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) {
    .tb-sp {
        display: block
    }
}

.sp {
    display: none
}

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

.br-inline:before {
    content: " "
}

@media screen and (min-width: 1366px) {
    .br-inline:before {
        content: "\a";
        white-space: pre-wrap
    }
}

.c-back-gradation:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(180deg, #1A2540, transparent);
    z-index: -2;
    max-height: 76.8rem
}

.c-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    margin-top: 2rem;
    font-family: Mulish;
    display: flex;
    align-items: center;
    color: #fff
}

.c-title span {
    font-size: 1.6rem;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    margin-left: 2.4rem;
    font-weight: 500
}

@media screen and (max-width: 767px) {
    .c-title {
        font-size: 2.8rem
    }

    .c-title span {
        font-size: 1.4rem;
        margin-left: 1.2rem
    }
}

.c-title-circle {
    position: relative
}

.c-title-circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: .2rem solid #A38F20
}

@media screen and (max-width: 767px) {
    .c-title-circle:before {
        width: 1.6rem;
        height: 1.6rem
    }
}

.c-title-circle--yellow:before {
    background-color: #ffc84b
}

.c-title-circle--green:before {
    background-color: #2ab266
}

.c-title-circle--red:before {
    background-color: #f74251
}

.c-title-circle--blue:before {
    background-color: #4663c6
}

.section__inner__sub-ttl {
    color: #fff
}

.c-filter-pill__tag.is-active {
    background-color: #2a2a40;
    color: #fff;
    border: 1px solid #C9C9D3
}

.c-pagenation {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    .c-pagenation {
        margin-top: 2.4rem
    }
}

.c-pagenation-button--prev {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #ffffff4d;
    background-image: url(../images/icon_page_arrow_next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.2rem 1.2rem;
    border: none;
    cursor: pointer;
    margin-right: 3.2rem;
    transform: rotate(180deg)
}

.c-pagenation-button--next {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #ffffff4d;
    background-image: url(../images/icon_page_arrow_next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.2rem 1.2rem;
    border: none;
    cursor: pointer;
    margin-left: 3.2rem
}

@media screen and (max-width: 767px) {
    .c-pagenation-button--prev {
        margin-right: 1.6rem
    }

    .c-pagenation-button--next {
        margin-left: 1.6rem
    }
}

.c-pagenation-button--prev.is-disabled,
.c-pagenation-button--next.is-disabled {
    opacity: .6;
    cursor: default;
    pointer-events: none
}

.c-pagenation-button--prev:hover:not(.is-disabled),
.c-pagenation-button--next:hover:not(.is-disabled) {
    background-color: #fffa;
    opacity: 1
}

.c-page-num {
    display: flex;
    gap: 1.2rem;
    color: #fff
}

@media screen and (max-width: 767px) {
    .c-page-num {
        gap: .4rem
    }
}

.c-page-num-btn {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .c-page-num-btn {
        width: 3rem;
        height: 3rem
    }
}

.c-page-num-btn:hover {
    opacity: .6
}

.c-page-num-btn.-active {
    border: .1rem solid #2A2A40;
    background: #2a2a40;
    border-radius: 50%;
    cursor: default
}

.c-page-num-btn.-active:hover {
    background: #2a2a40;
    cursor: default
}

.c-filter-pill {
    display: flex;
    flex-wrap: wrap;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    gap: 1.2rem 1rem
}

.c-filter-pill__tag {
    background: #f5f5f8;
    border: .1rem solid #C9C9D3;
    border-radius: 2.5rem;
    line-height: 1;
    font-size: 1.4rem;
    cursor: pointer
}

.c-filter-pill__tag a {
    display: block;
    padding: .9rem 1.6rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    transition: all .3s ease
}

.c-filter-pill__tag a:hover {
    background: #2a2a40;
    color: #fff;
    border-radius: 2.5rem
}

.c-cite-select {
    position: relative;
    color: #393653;
    min-width: 14.2rem;
    background: #fff;
    transition: all .3s ease
}

.c-cite-select__item {
    padding: .8rem 2.9rem .8rem 1rem;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: .1rem solid #C9C9D3;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400
}

.c-cite-select__item:after {
    position: absolute;
    top: 50%;
    right: .9rem;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 1.2rem;
    height: .6rem;
    background: url(../images/icon_course_select_down.svg) no-repeat center/cover
}

.c-list-select__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 0 .4rem .6rem rgba(0, 0, 0, .1);
    z-index: 10;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .7s ease, opacity .3s ease
}

.c-list-select__list.is-open {
    max-height: 300px;
    opacity: 1
}

.c-list-select__list--item {
    position: relative
}

.c-list-select__list--item a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    padding: .7rem 2.5rem .6rem 1rem;
    cursor: pointer;
    border: .1rem solid #DDDDDD;
    background: #eee;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400
}

.c-table-count {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 3.6rem;
    font-weight: 400
}

.c-table-no-result-text {
    display: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 4rem 0;
    text-align: center
}

.c-table-no-result-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 4rem 0 14rem;
    text-align: center;
    color: #fff
}

.c-table-no-result-text span {
    display: block;
    margin-top: 2.4rem;
    font-size: 1.4rem;
    font-weight: 300
}

.c-course-label--start.p-top-course-label,
.c-course-label--start.p-course-label {
    background: #ffc84b;
    color: #1e1e26
}

.c-course-label--end.p-course-label {
    background: #666
}

.c-course-label--cancel.p-course-label {
    background: #e2def5;
    color: #3f3277
}

.c-course-label--start.p-course-detail-label {
    background: #ffc84b;
    color: #1e1e26
}

.c-course-label--end.p-course-detail-label {
    background: #666
}

.c-course-label--cancel.p-course-detail-label {
    background: #e2def5;
    color: #3f3277
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*,
:before,
:after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-weight: 500;
    color: #393653;
    font-size: 62.5%
}

body {
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-size: 1.4rem;
    font-weight: 500;
    color: #1e1e26;
    background-color: #3f3277;
    margin: 0;
    overflow-x: hidden
}

@media screen and (min-width: 1025px) {
    body {
        font-size: 1.6rem
    }
}

@media screen and (min-width: 1025px),
screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 1.6rem
    }
}

main {
    display: block
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit
}

pre {
    font-family: monospace, monospace;
    font-size: inherit
}

address {
    font-style: inherit
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit
}

abbr[title] {
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit
}

button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
    cursor: default
}

:-moz-focusring {
    outline: auto
}

select:disabled {
    opacity: inherit
}

option {
    padding: 0
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

[type=number] {
    -moz-appearance: textfield
}

label[for] {
    cursor: pointer
}

details {
    display: block
}

summary {
    display: list-item
}

[contenteditable]:focus {
    outline: auto
}

table {
    border-color: inherit;
    border-collapse: collapse
}

caption {
    text-align: left
}

td,
th {
    vertical-align: top;
    padding: 0
}

th {
    text-align: left;
    font-weight: 700
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    background: transparent
}

ul,
ol {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none
}

a {
    text-decoration: none;
    color: inherit
}

body.is-drawer-open {
    overflow: hidden;
    height: 100%
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 6rem;
    padding: .8rem 4rem;
    transition: background-color .3s ease, color .3s ease;
    z-index: 100;
    background-color: transparent;
    color: #fff
}

.header {
    padding: .8rem 2.4rem
}

.header__logo {
    width: 100%
}

.header__logo {
    max-width: 30.1rem
}

.header__logo {
    max-width: 20.3rem
}

.header__logo__svg {
    min-height: 6.5rem
}

@media screen and (max-width: 767px) {
    .header__logo__svg {
        min-height: 4rem
    }
}

.header__nav {
    width: 100%;
    max-width: 60rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.header__nav {
    opacity: 0;
    visibility: hidden
}

.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(180deg, #fcfcfc, #d5d5e3);
    color: #1e1e26;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    max-width: none
}

@media screen and (max-width: 767px) {
    .header__nav {
        flex-direction: column-reverse
    }
}

.header__nav ul {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    align-items: baseline;
    justify-content: center;
    margin: auto;
    gap: 3rem;
    white-space: nowrap;
    flex-shrink: 0
}

@media screen and (max-width: 767px) {
    .header__nav ul {
        gap: 2.4rem
    }
}

.header__nav ul li {
    font-weight: 700;
    line-height: 1.25
}

.header__nav ul li {
    width: 100%;
    font-size: 2rem
}

.header__nav ul li {
    display: block
}

.header__nav ul:nth-child(1) {
    margin-right: 0rem
}

@media screen and (max-width: 767px) {
    .header__nav ul:nth-child(1) {
        margin-right: auto;
        margin-left: auto
    }
}

.header__nav ul:nth-child(1) li a>span.font-en {
    display: inline-block;
    font-size: 1.2rem;
    color: #271671
}

.header__nav ul:nth-child(2) {
    display: flex !important;
    flex-direction: column-reverse;
    gap: 4rem;
    margin-left: 0rem;
    width: 100%;
    max-width: 24.5rem
}

@media screen and (max-width: 767px) {
    .header__nav ul:nth-child(2) {
        width: 100%;
        max-width: 24rem;
        gap: 2.4rem;
        margin-left: auto;
        margin-right: auto
    }

    .header__nav ul:nth-child(2) li:nth-child(2) {
        text-align: center
    }
}

.header__nav__sp li:nth-child(2) {
    max-width: 22rem
}

@media screen and (max-width: 767px) {
    .header__nav__sp li:nth-child(2) {
        max-width: 20.3rem;
        min-height: 4rem;
        margin: auto
    }
}

.header__nav__sp li:nth-child(2) a img {
    width: 100%
}

@media (any-hover: hover) {
    .header__nav__sp li:nth-child(2) a:hover {
        opacity: .6;
        transition: all .2s ease
    }
}

.header__nav__btn {
    display: flex;
    gap: 1.6rem;
    align-items: center
}

header.is-open .header__hamburger__open {
    display: none
}

.header__hamburger {
    display: block;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 4.8rem;
    height: 100%;
    max-height: 4.8rem;
    padding: 1.4rem 1rem;
    background: transparent linear-gradient(90deg, #0f0f29, #5b5b8d) 0% 0% no-repeat;
    border-radius: 99.9rem;
    border: .1rem solid #5B5B8D
}

.header__hamburger span {
    display: block;
    width: 2.6rem;
    height: .22rem;
    background-color: currentColor;
    transition: all .3s ease;
    position: relative;
    top: 0
}

.header__hamburger span:not(:last-child) {
    margin-bottom: .6rem
}

.header.is-scrolled {
    background-color: #fff;
    color: #1e1e26;
    filter: drop-shadow(0 .3rem .6rem rgba(0, 0, 0, .16))
}

.header.is-scrolled .header__hamburger {
    color: #fff;
    border: .1rem solid #707070;
    border-radius: 50%;
    background-image: linear-gradient(270deg, #5b5b8d, #0f0f29)
}

.header.is-open .header__nav {
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-height: 440px) and (orientation: landscape) {
    .header.is-open .header__nav {
        flex-direction: row;
        padding: 3.6rem
    }

    .header__nav__body {
        margin: auto
    }
}

.header.is-open .header__nav {
    opacity: 1;
    visibility: visible
}

.header.is-open .header__hamburger {
    color: #fff
}

.header.is-open .header__hamburger {
    border: .1rem solid #707070;
    border-radius: 50%;
    background-image: linear-gradient(270deg, #5b5b8d, #0f0f29)
}

.header.is-open .header__hamburger span:nth-child(1) {
    transform: translateY(.8rem) rotate(45deg)
}

.header.is-open .header__hamburger span:nth-child(2) {
    opacity: 0
}

.header.is-open .header__hamburger span:nth-child(3) {
    transform: translateY(-.8rem) rotate(-45deg)
}

@media (any-hover: hover) {
    .header__logo a:hover {
        color: inherit;
        opacity: .6;
        transition: all .2s ease
    }
}

@media (any-hover: hover) {

    .header.is-open .header__nav ul:not(.header__nav__sp) li a:hover,
    .header.is-scrolled .header__nav ul:not(.header__nav__sp) li a:hover {
        color: #1e1e26;
        opacity: .6;
        transition: all .2s ease
    }
}

.header__logo__svg .cls-1 {
    fill: #3d843f
}

.header__logo__svg .cls-2 {
    fill: #cd9f31
}

.header__logo__svg .cls-3 {
    fill: #5f3670
}

.header__logo__svg .cls-5 {
    fill: #aa1d33
}

.header:not(.is-scrolled) .header__logo__svg .cls-4 {
    fill: #fff
}

.header.is-scrolled .header__logo__svg .cls-4 {
    fill: #221815
}

.header__nav {
    display: flex;
    flex-direction: column;
    height: 100vh
}

@media screen and (max-width: 767px) {
    .header__nav {
        display: block
    }
}

.header__nav__body {
    display: flex;
    justify-content: center;
    gap: 4.5rem;
    margin-top: 24vh
}

.header__nav__link--contact {
    display: inline-flex;
    align-items: center
}

.header__nav__link--contact:after {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #271671;
    mask-image: url(../images/icon_external_link.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(../images/icon_external_link.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center
}

.header__nav__footer {
    display: flex;
    justify-content: space-around;
    gap: 2.4rem;
    margin: auto;
    margin-top: 4.8rem;
    border-top: .1rem solid #281671;
    text-align: center
}

@media screen and (max-width: 767px) {
    .header__nav__footer {
        display: block;
        border-top: none;
        margin-bottom: 10vh
    }
}

.header__nav__footer__wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    margin: 0 auto;
    padding-top: 3.6rem
}

@media screen and (max-width: 767px) {
    .header__nav__footer__wrap {
        flex-direction: column;
        border-top: .1rem solid #281671
    }
}

@media screen and (max-width: 767px) {
    .header__nav__body {
        flex-direction: column-reverse;
        gap: 6rem;
        margin-top: 10vh
    }
}

.header__nav__body ul li a {
    display: flex;
    align-items: center;
    gap: 2.4rem
}

.nav-footer-btn {
    position: relative;
    background-color: #fff;
    min-width: 24rem;
    height: 6rem;
    color: #1e1e26;
    font-weight: 700;
    text-align: center;
    border: .1rem solid #1E1E26;
    font-size: 1.8rem;
    display: flex;
    align-items: center
}

@media screen and (max-width: 767px) {
    .nav-footer-btn {
        font-size: 1.6rem;
        height: 5.6rem
    }
}

@media (any-hover: hover) {
    .nav-footer-btn:hover {
        background-color: #efeffc
    }
}

.btn__icon__badge {
    position: relative
}

.btn__icon__badge:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.82rem;
    height: 2.34rem;
    transform: translate(-50%, -50%);
    mask-image: url(../images/icon-hum-badge.svg);
    -webkit-mask-image: url(../images/icon-hum-badge.svg);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #281671
}

@media screen and (max-width: 767px) {
    .btn__icon__badge:after {
        width: 1.62rem;
        height: 2.08rem
    }
}

.btn__icon__student {
    position: relative
}

.btn__icon__student:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.4rem;
    height: 1.2rem;
    transform: translate(-50%, -50%);
    mask-image: url(../images/icon-hum-entry.svg);
    -webkit-mask-image: url(../images/icon-hum-entry.svg);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #281671
}

.btn__icon__nav {
    position: absolute;
    top: 50%;
    left: 1.6rem;
    transform: translateY(-50%);
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: #efeff4
}

@media screen and (max-width: 767px) {
    .btn__icon__nav {
        width: 3rem;
        height: 3rem;
        left: 2rem
    }
}

@media (any-hover: hover) {
    .nav-footer-btn:hover .btn__icon__nav {
        background-color: #fff
    }
}

.nav-footer-btn .btn__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
    padding-left: 5.8rem;
    padding-right: 1.6rem;
    text-align: left;
    line-height: 1.25
}

@media screen and (max-width: 767px) {
    .nav-footer-btn .btn__text {
        font-size: 1.6rem;
        padding-left: 6.2rem
    }
}

.l-main {
    max-width: 150rem;
    margin-right: auto;
    margin-left: auto;
    width: 87.85%;
    margin-top: 8rem
}

@media screen and (max-width: 767px) {
    .l-main {
        width: calc(100% - 4.8rem);
        margin-top: 6rem
    }
}

.l-breadcrumns {
    padding-top: 4rem
}

@media screen and (max-width: 767px) {
    .l-breadcrumns {
        padding-top: 2.4rem
    }
}

.bg-circle {
    width: 100%;
    border-radius: 50%;
    filter: blur(5rem);
    position: absolute;
    transition: opacity .3s ease-out;
    opacity: 1
}

.bg-circle--green {
    max-width: 49.2rem;
    min-height: 49.2rem;
    background-image: linear-gradient(20deg, #89988c6e, #55e5716e);
    top: -12.4rem;
    right: -12.4rem
}

.bg-circle--yellow {
    max-width: 43.5rem;
    min-height: 43.5rem;
    background-image: linear-gradient(20deg, #d0cdb06e, #d5cf456e);
    top: 1.46vw;
    right: 30rem
}

.bg-circle--red {
    max-width: 42.9rem;
    min-height: 42.9rem;
    background-image: linear-gradient(20deg, #cb64886e, #3e2c8e6e);
    top: 18.3vw;
    right: 5rem
}

main>.bg-circle-container,
main>.main__inner {
    grid-area: 1/1
}

.main__inner {
    position: relative
}

.footer {
    background-color: #2a2a40;
    color: #fff
}

.footer__inner {
    max-width: 150rem;
    width: 87.85%;
    margin: 0 auto;
    padding: 4rem 0
}

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

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: clamp(4rem, 5vw, 11.8rem);
    font-weight: 400
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem
    }
}

.footer__nav__list {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

@media (any-hover: hover) {

    .footer__nav__list a:hover,
    .footer__links a:hover,
    .footer__info__links a:hover {
        color: #bed514
    }
}

.footer__nav__item a {
    color: #fff;
    text-decoration: none
}

.footer__info {
    max-width: 52rem
}

.footer__info__logo img {
    max-width: 30rem
}

.footer__info--text {
    margin-top: 1.6rem;
    font-weight: 400
}

.footer__info__address {
    line-height: 1.7;
    font-weight: 400
}

.footer__info__row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 400;
    margin-top: .4rem
}

.footer__info__row dt {
    font-weight: 400;
    width: 5.6rem
}

.footer__info__host-label {
    flex-shrink: 0
}

.footer__info__links {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: .6rem;
    white-space: nowrap
}

.footer__info__links a {
    color: inherit;
    text-decoration: none
}

.footer__info__links:hover {
    color: #bed514
}

.footer__info__links .link-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    background-color: currentColor;
    mask: url(../images/icon_external_link.svg) no-repeat center/contain;
    -webkit-mask: url(../images/icon_external_link.svg) no-repeat center/contain
}

.footer__divider {
    border-top: 1px solid #CCCCCC
}

.footer__bottom {
    max-width: 150rem;
    width: 87.85%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer__bottom {
        flex-wrap: wrap
    }
}

.link-external {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem
}

.link-external:after {
    content: "";
    max-width: 100%;
    width: 1.2rem;
    height: 1.2rem;
    background-color: currentColor;
    mask: url(../images/icon_external_link.svg) no-repeat center/contain;
    -webkit-mask: url(../images/icon_external_link.svg) no-repeat center/contain
}

.footer__links {
    display: flex;
    gap: 2.4rem;
    font-weight: 400
}

.footer__links a {
    color: #fff;
    text-decoration: none
}

.footer__links a:not(:last-child) {
    border-right: 1px solid #CCCCCC;
    padding-right: 2.4rem
}

.footer__copyright {
    font-weight: 400;
    font-size: 1.4rem
}

.font-en {
    font-family: Mulish
}

@media screen and (max-width: 767px) {
    .footer__top {
        flex-direction: column;
        gap: 4rem
    }

    .footer__info {
        margin: 0 auto
    }

    .footer__nav {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        justify-items: left
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        padding-bottom: 6.7rem
    }

    .footer__copyright {
        font-size: 1.2rem
    }
}

.p-top-main {
    display: grid;
    position: relative
}

.p-top-main__inner {
    position: relative
}

main>.bg-circle-container,
main>.p-top-main__inner {
    grid-area: 1/1
}

.bg-circle-container {
    position: fixed;
    width: 50vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: -1
}

@media screen and (max-width: 767px) {
    .bg-circle-container {
        width: 100%
    }
}

.p-top-section {
    position: relative;
    color: #fff
}

.p-top-section__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 150rem;
    width: 87.85%
}

@media screen and (max-width: 767px) {
    .p-top-section__inner {
        width: calc(100% - 4.8rem)
    }
}

.p-top-section__inner--content {
    padding: 10rem 0;
    position: relative
}

@media screen and (max-width: 767px) {
    .p-top-section__inner--content {
        padding: 8rem 0
    }
}

@media screen and (max-width: 767px) {
    .p-top-section__inner--content.p-top-inner-swiper-sp {
        padding-left: 2.4rem;
        width: 100%
    }
}

.p-top-section__inner__sub--ttl {
    font-size: 2.4rem;
    font-family: Mulish;
    font-weight: 700;
    line-height: 1;
    padding-left: 3.2rem;
    color: #fff
}

.p-top-section__inner__sub--ttl--black {
    color: #333
}

.p-top-section__inner__main--ttl {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.25;
    padding-top: 3rem;
    padding-bottom: 4.8rem
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__main--ttl {
        font-size: 3rem;
        padding-top: 2rem;
        padding-bottom: 3rem
    }
}

.p-top-btn-wrap {
    text-align: center;
    margin-right: 2.4rem
}

.p-top-btn {
    color: #333;
    background: #fff;
    line-height: 1;
    padding: 1.2rem 4rem;
    border-radius: 99.9rem;
    border: solid .1rem #1E1E26;
    display: block;
    margin: 4.8rem auto 0;
    min-width: 24.5rem;
    text-align: center;
    line-height: 1.25;
    display: inline-block
}

@media screen and (max-width: 767px) {
    .p-top-btn {
        margin-top: 4rem;
        min-width: 24rem;
        font-size: 1.4rem
    }
}

@media (any-hover: hover) {
    .p-top-btn:hover {
        transition: all .2s ease;
        background-color: #efeffc
    }
}

.p-top-section-hero {
    position: relative;
    min-height: 76.8rem;
    width: 100%;
    color: #fff
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-hero {
        min-height: 76.8rem
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-hero {
        min-height: 58rem
    }
}

.p-top-section__inner__txt-container {
    position: absolute;
    color: #fff;
    min-height: 50rem;
    z-index: 10;
    display: flex;
    flex-direction: column
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section__inner__txt-container {
        margin-top: 5rem
    }
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__txt-container {
        margin-top: 5rem
    }
}

.p-top-section__inner__ttl {
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 0
}

@media screen and (min-width: 1025px) {
    .p-top-section__inner__ttl {
        font-size: clamp(4.2rem, 2.72rem + 1.45vw, 4.8rem)
    }
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__ttl {
        margin-top: 0;
        font-size: 3.2rem;
        order: 2
    }
}

.p-top-section__inner__item {
    margin-top: 3rem;
    font-weight: 500;
    line-height: 1.8;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none
}

.p-top-section__inner__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__item {
        margin-top: 2.4rem;
        order: 3
    }
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__item p {
        font-size: 1.4rem
    }
}

.p-top-section-hero__img span {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    transform: translateZ(0)
}

.p-top-section-hero__img span:nth-child(1) {
    background-image: url(../images/hero_miyagi.svg);
    width: 57.27vw;
    max-width: 78.2rem;
    aspect-ratio: 782/863;
    top: 8rem;
    right: 0
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-hero__img span:nth-child(1) {
        width: 79.98vw;
        max-width: 81.9rem;
        aspect-ratio: 819/908;
        top: 8rem;
        right: 0
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-hero__img span:nth-child(1) {
        width: 102.43vw;
        max-width: 78.567rem;
        aspect-ratio: 785.67/891.32;
        top: 14rem;
        left: clamp(-4.38rem, .006rem - 11.247vw, -8.62rem)
    }
}

@media screen and (min-width: 1920px) {
    .p-top-section-hero__img span:nth-child(1) {
        right: 50%;
        transform: translate(100%)
    }
}

.p-top-section-hero__img span:nth-child(2) {
    background-image: url(../images/hero_sangakukan.png);
    background-image: url(../images/hero_sangakukan.webp);
    width: 46.83vw;
    max-width: 54.8rem;
    aspect-ratio: 1410/1548;
    top: 16rem;
    right: 3rem
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-hero__img span:nth-child(2) {
        width: 56.05vw;
        max-width: 57.4rem;
        top: 19rem;
        right: 2.93%
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-hero__img span:nth-child(2) {
        width: 70.4vw;
        max-width: 54rem;
        min-width: 32.6rem;
        top: 20rem;
        right: 2.4rem
    }
}

@media screen and (min-width: 1920px) {
    .p-top-section-hero__img span:nth-child(2) {
        right: calc(50% - 30rem);
        transform: translate(100%)
    }
}

.p-top-section-hero .section__inner__item.label--yellow {
    max-width: 29.2rem;
    font-size: 2.2rem;
    line-height: 1.636;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .p-top-section-hero .section__inner__item.label--yellow {
        max-width: 22.6rem;
        font-size: 1.6rem;
        order: 1
    }
}

.p-top-section-hero .section__inner__item+.section__inner__item {
    margin-top: 4rem
}

@media screen and (max-width: 767px) {
    .p-top-section-hero .section__inner__item+.section__inner__item {
        margin-top: 0
    }
}

.p-top-section-lead__message {
    position: relative;
    padding: 8.8rem 0;
    color: #fff;
    z-index: 2
}

.p-top-section-lead__message:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #3f3277;
    opacity: 1;
    transition: opacity .1s ease;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform
}

.p-top-section-lead__message.is-bg-hidden:before {
    opacity: 0
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-lead__message {
        padding-top: 0
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message {
        padding-top: 0
    }
}

.p-top-section-lead__message .p-top-section-lead__box {
    position: relative;
    z-index: 1
}

.p-top-section-lead__message .p-top-section-lead__box:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%/54.38%;
    background-color: #0003;
    filter: blur(5rem);
    z-index: -1
}

.p-top-section-lead__message .p-top-section__inner {
    width: 100%;
    position: relative;
    max-width: 136.6rem;
    min-height: clamp(58.7rem, 41.266rem + 17.009vw, 64.5rem)
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-lead__message .p-top-section__inner {
        min-height: clamp(69rem, 90.6rem - 28.125vw, 61.8rem)
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-section__inner {
        min-height: clamp(66.2rem, 62.062rem + 10.61vw, 70.2rem)
    }
}

.p-top-section-lead__message .p-top-section-lead__box {
    width: 59.3vw;
    max-width: 81rem;
    margin: 0 auto;
    text-align: center;
    padding: 4.8rem 0
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-lead__message .p-top-section-lead__box {
        width: clamp(60.8rem, -16rem + 100vw, 86.4rem);
        max-width: 86.4rem;
        padding: 8rem 0
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-section-lead__box {
        width: clamp(34.2rem, 14.028rem + 51.724vw, 53.7rem);
        max-width: 53.7rem;
        padding: clamp(16.8rem, 9.352rem + 19.098vw, 24rem) 0
    }
}

.p-top-section-lead__message .p-top-section__inner__bg {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.p-top-section-lead__message .p-top-section__inner__bg--ring {
    background-image: url(../images/message_ring.svg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 102.4rem;
    min-height: 58.6rem
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-section__inner__bg--ring {
        background-image: url(../images/message_ring_sp.svg);
        min-height: 72.2rem
    }
}

.p-top-section-lead__message .p-top-section__inner__bg--city {
    background-image: url(../images/message_city@2x.jpg);
    top: 0;
    left: 0
}

.p-top-section-lead__message .p-top-section__inner__bg--speaker {
    background-image: url(../images/message_speaker@2x.jpg);
    top: 21.55%;
    right: 0
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-lead__message .p-top-section__inner__bg--speaker {
        top: auto;
        bottom: 5.86vw
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px),
screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-section__inner__bg--speaker {
        top: auto;
        bottom: 5.86vw
    }
}

.p-top-section-lead__message .p-top-section__inner__bg--conversation {
    background-image: url(../images/message_conversation@2x.jpg);
    bottom: 0;
    left: 33.75%
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-lead__message .p-top-section__inner__bg--conversation {
        left: 7.81vw
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-section__inner__bg--conversation {
        left: 5.22vw
    }
}

.p-top-section-lead__message .p-top-section__inner__bg--city,
.p-top-section-lead__message .p-top-section__inner__bg--speaker,
.p-top-section-lead__message .p-top-section__inner__bg--conversation {
    width: clamp(20rem, 1.965rem + 17.595vw, 26rem);
    max-width: 26rem;
    aspect-ratio: 260/130;
    filter: drop-shadow(.3rem .3rem 2rem rgba(0, 0, 0, .4))
}

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

    .p-top-section-lead__message .p-top-section__inner__bg--city,
    .p-top-section-lead__message .p-top-section__inner__bg--speaker,
    .p-top-section-lead__message .p-top-section__inner__bg--conversation {
        width: 100%
    }
}

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

    .p-top-section-lead__message .p-top-section__inner__bg--city,
    .p-top-section-lead__message .p-top-section__inner__bg--speaker,
    .p-top-section-lead__message .p-top-section__inner__bg--conversation {
        width: clamp(12rem, 3.724rem + 21.22vw, 20rem);
        max-width: 20rem
    }
}

.p-top-section-lead__box {
    position: relative;
    z-index: 1;
    width: 59.3vw;
    max-width: 81rem;
    margin: 0 auto;
    text-align: center;
    padding: 4.8rem 0
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__box p {
        font-size: 1.4rem;
        margin-top: 1.2rem
    }
}

.p-top-message__inner__item__lead {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5
}

@media screen and (max-width: 767px) {
    .p-top-message__inner__item__lead {
        font-size: 2.4rem
    }
}

.p-top-message__inner__item__txt {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    margin-top: 4.2rem
}

.p-top-section-lead__message .p-top-message__inner__item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%/54.38%;
    background-color: #0003;
    filter: blur(5rem);
    z-index: -1
}

@media screen and (max-width: 767px) {
    .p-top-section-lead__message .p-top-message__inner__item:before {
        height: auto;
        min-height: 40.3rem
    }
}

.p-top-curve-divider {
    width: 100%;
    line-height: 0
}

.curve-divider svg {
    width: 100%;
    height: auto
}

.p-top-topics {
    background-color: #2a2a404d
}

.p-top-topics .p-top-section__inner {
    display: flex;
    justify-content: flex-start;
    gap: clamp(4rem, 8vw, 10.5rem)
}

@media screen and (max-width: 767px) {
    .p-top-topics .p-top-section__inner {
        flex-direction: column;
        gap: 0
    }

    .p-top-topics__box01 {
        display: contents
    }

    .p-top-topics__box02 {
        order: 2
    }

    .p-top-topics__box01 a {
        order: 3;
        text-align: center
    }
}

.p-top-topics__box01 {
    flex-shrink: 0
}

.p-top-topics__box02 {
    display: grid;
    gap: 2rem;
    width: 100%;
    grid-auto-rows: max-content
}

.p-top-topics__item {
    position: relative;
    background-color: #ffffffe6;
    color: #1e1e26;
    line-height: 1;
    min-height: 13.2rem;
    font-size: 1.8rem;
    padding: 2.4rem 3.6rem;
    overflow: hidden;
    border: .1rem solid #C9C9D3
}

@media screen and (max-width: 768px) {
    .p-top-topics__item {
        padding: 1.2rem 1.6rem;
        min-height: 10.8rem
    }
}

.p-top-topics__item__inner {
    transition: transform .3s ease-out
}

.p-top-topics__item__time {
    font-size: 1.4rem;
    color: #666;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: .6rem
}

@media screen and (max-width: 768px) {
    .p-top-topics__item__time {
        font-size: 1.2rem
    }
}

.p-top-topics__item__time:before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../images/icon-event-time.svg) no-repeat center;
    pointer-events: none;
    transition: .3s
}

.p-top-topics__item__ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
    font-weight: 500;
    max-width: 71.4rem;
    padding-top: 1rem;
    padding-right: 4rem;
    color: #1e1e26
}

@media screen and (max-width: 768px) {
    .p-top-topics__item__ttl {
        font-size: 1.4rem
    }
}

.p-top-topics__item:after {
    content: "";
    position: absolute;
    right: 3.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    background: url(../images/icon_text_link.svg) no-repeat center;
    pointer-events: none;
    border-radius: 50%;
    border: .1rem solid #271671;
    transition: .3s
}

@media screen and (max-width: 768px) {
    .p-top-topics__item:after {
        right: 1.6rem
    }
}

@media (any-hover: hover) {
    .p-top-topics__item:hover .p-top-topics__item__inner {
        transform: translate(.4rem)
    }

    .p-top-topics__item:hover .p-top-topics__item__ttl {
        color: #271671
    }

    .p-top-topics__item:hover.p-top-topics__item:after {
        background-image: url(../images/icon_text_link_hover.svg);
        background-color: #271671;
        border-color: #271671
    }
}

.p-top-courses {
    background-color: #2716714d
}

.p-top-card-list {
    position: relative
}

@media screen and (max-width: 768px) {
    .p-top-card-list {
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3.2rem
    }
}

.p-top-course-card {
    width: auto;
    height: auto;
    padding: 2rem;
    background-color: #ffffffe6;
    border: .1rem solid #C9C9D3;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media screen and (max-width: 767px) {
    .p-top-course-card {
        width: 100%;
        min-height: auto;
        padding: 1.6rem
    }
}

.p-top-course-card-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.p-top-course-card-img img {
    aspect-ratio: 336/189;
    object-fit: cover;
    object-position: top
}

@media screen and (max-width: 767px) {
    .p-top-course-card-img img {
        display: block;
        margin: 0 auto
    }
}

.p-top-course-card-inner__img {
    margin-left: auto;
    margin-right: auto
}

.p-top-course-card-inner__img img {
    max-width: 51rem;
    aspect-ratio: 510/180;
    object-fit: cover;
    object-position: top
}

.p-top-course-card-inner__img.op-b img {
    object-position: bottom
}

.p-top-course-label {
    padding-top: .9rem;
    padding-bottom: .7rem;
    text-align: center;
    background: #8641e5;
    line-height: 1;
    color: #fff;
    font-weight: 600
}

@media screen and (max-width: 767px) {
    .p-top-course-label {
        font-size: 1.6rem;
        padding: .8rem
    }
}

.p-top-course-card-ttl {
    line-height: 1.5;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #1e1e26
}

@media screen and (max-width: 767px) {
    .p-top-course-card-ttl {
        font-size: 1.8rem
    }
}

.p-top-course-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 280/157;
    overflow: hidden
}

.p-top-course-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    will-change: transform;
    transition: all .3s ease
}

.p-top-course-card-box {
    margin-top: 1.6rem;
    font-size: 1.4rem
}

.p-top-course-card-box__text {
    margin-top: .8rem;
    line-height: 1.25
}

.p-top-course-card-box__text--free {
    margin-top: 1.2rem
}

.p-top-course-card-box__free {
    width: 100%;
    max-width: 5.2rem;
    min-height: 2.4rem;
    text-align: center;
    color: #fff;
    background-color: #8641e5;
    border: .1rem solid #8641E5;
    border-radius: .4rem;
    padding: .2rem 1.1rem
}

.p-top-course-card-box__caution {
    font-size: 1.2rem;
    color: #666;
    padding-top: .8rem;
    padding-left: 7rem
}

.p-top-course-card-tag {
    font-size: 1.2rem;
    color: #393653;
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    gap: .2rem .8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: auto;
    padding-top: 1.6rem
}

.p-top-course-card-tag li {
    display: inline-block;
    margin-right: .8rem
}

.p-top-course-card-more-link {
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
    gap: .8rem;
    color: #271671;
    margin-top: 2rem
}

.p-top-course-card-more-link span {
    border-bottom: .1rem solid #271671;
    padding-bottom: .1rem;
    line-height: 1
}

.p-top-course-card-more-link:after {
    content: "";
    display: inline-block;
    background: url(../images/icon_text_link.svg) no-repeat center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .1rem solid #271671;
    transition: .3s
}

.p-top-course-card-more-link a {
    border-bottom: .1rem solid #271671;
    padding-bottom: .1rem;
    line-height: 1
}

.p-top-course-card-box__text,
.p-top-course-card-box__text--free {
    display: flex;
    align-items: flex-start;
    margin-bottom: .5em
}

.p-top-course-card-box__value,
.p-top-course-card-box__free {
    flex: 1;
    word-break: break-word
}

.p-top-course-card-box__value {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.p-top-course-card-box__text--free {
    display: block
}

@media (any-hover: hover) {
    .p-top-course-card:hover .p-top-course-card-img img {
        transform: scale(1.1)
    }

    .p-top-course-card:hover .p-top-course-card-ttl {
        color: #271671
    }

    .p-top-course-card:hover .p-top-course-card-more-link:after {
        background-image: url(../images/icon_text_link_hover.svg);
        background-color: #271671;
        border-color: #271671
    }
}

.p-top-event-card-list {
    position: relative;
    color: #1e1e26
}

@media screen and (max-width: 768px) {
    .p-top-event-card-list {
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3.2rem
    }
}

.p-top-event-card {
    width: auto;
    height: auto;
    padding: 2rem;
    background-color: #ffffffe6;
    border: .1rem solid #C9C9D3;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media screen and (max-width: 767px) {
    .p-top-event-card {
        width: 100%;
        min-height: auto;
        padding: 1.6rem
    }
}

.p-top-event-card-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.p-top-event-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 280/157;
    overflow: hidden
}

.p-top-event-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    will-change: transform;
    transition: all .3s ease
}

.p-top-event-card-inner__img {
    margin-left: auto;
    margin-right: auto
}

.p-top-event-card-inner__img img {
    max-width: 51rem;
    aspect-ratio: 510/180;
    object-fit: cover;
    object-position: top
}

.p-top-event-card-inner__img.op-b img {
    object-position: bottom
}

.p-top-event-label {
    padding: .6rem 0;
    text-align: center;
    background: #4663c6;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem
}

@media screen and (max-width: 767px) {
    .p-top-event-label {
        font-size: 1.2rem;
        padding: .7rem
    }
}

.p-top-event-card-ttl {
    line-height: 1.5;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1e1e26
}

@media screen and (max-width: 767px) {
    .p-top-event-card-ttl {
        font-size: 1.4rem
    }
}

.p-top-event-card-box {
    margin-top: 1.6rem;
    font-size: 1.4rem
}

.p-top-event-card-box__label {
    font-weight: 700
}

.p-top-event-card-box__text {
    margin-top: .8rem;
    line-height: 1.25
}

.p-top-event-card-box__text--free {
    margin-top: 1.2rem
}

.p-top-event-card-box__free {
    width: 100%;
    max-width: 5.2rem;
    min-height: 2.4rem;
    text-align: center;
    color: #fff;
    background-color: #8641e5;
    border: .1rem solid #8641E5;
    border-radius: .4rem;
    padding: .2rem 1.1rem
}

.p-top-event-card-box__caution {
    font-size: 1.2rem;
    color: #666;
    padding-top: .8rem;
    padding-left: 7rem
}

.p-top-event-card-tag {
    font-size: 1.2rem;
    color: #393653;
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .8rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: auto;
    padding-top: 1.6rem
}

.p-top-event-card-tag li {
    display: inline-block;
    margin-right: .8rem
}

.p-top-event-card-more-link {
    margin-top: 2rem;
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
    gap: .8rem;
    color: #271671
}

.p-top-event-card-more-link a,
.p-top-event-card-more-link span {
    border-bottom: .1rem solid #271671;
    padding-bottom: .1rem;
    line-height: 1
}

.p-top-event-card-more-link:after {
    content: "";
    display: inline-block;
    background: url(../images/icon_text_link.svg) no-repeat center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .1rem solid #271671;
    transition: .3s
}

.p-top-event-card-box__text,
.p-top-event-card-box__text--free {
    display: flex;
    align-items: flex-start;
    margin-bottom: .5em
}

.p-top-event-card-box__value,
.p-top-event-card-box__free {
    flex: 1;
    word-break: break-word
}

.p-top-event-card-box__value {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.p-top-event-card-box__text--free {
    display: block
}

@media (any-hover: hover) {
    .p-top-event-search-btn:hover {
        color: #1e1e26;
        background: #bed514
    }

    .p-top-event-card:hover .p-top-event-card-img img {
        transform: scale(1.1)
    }

    .p-top-event-card:hover .p-top-event-card-ttl {
        color: #271671
    }

    .p-top-event-card:hover .p-top-event-card-more-link:after {
        background-image: url(../images/icon_text_link_hover.svg);
        background-color: #271671;
        border-color: #271671
    }
}

.p-top-section-concept {
    position: relative;
    width: 100%;
    background-image: radial-gradient(ellipse 70% 45%, #fcfcfc, #d5d5e3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0;
    margin-top: -.1rem
}

.p-top-section-concept:before {
    content: "";
    background-image: url(../images/concept_date-masamune@2x.png);
    width: 100%;
    max-width: 144rem;
    aspect-ratio: 1366/862;
    position: absolute;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
    bottom: 0;
    left: 0
}

@media screen and (min-width: 1920px) {
    .p-top-section-concept:before {
        left: 50%;
        transform: translate(-50%)
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-concept:before {
        background-image: url(../images/concept_date-masamune_sp@2x.png);
        aspect-ratio: 1024/1024;
        background-size: contain;
        background-position: center
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-concept:before {
        background-image: url(../images/concept_date-masamune_sp@2x.png);
        aspect-ratio: 1024/1024;
        background-size: contain;
        background-position: center
    }
}

.p-top-concept-ttl {
    font-size: 4.4rem;
    color: #281671;
    line-height: 1.25;
    margin-top: 3rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .p-top-concept-ttl {
        font-size: 3rem
    }
}

.p-top-concept__text-container--lead {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5
}

@media screen and (max-width: 767px) {
    .p-top-concept__text-container--lead {
        font-size: 2.4rem
    }
}

.p-top-section-concept .p-top-section__inner {
    position: relative
}

.p-top-section-concept .p-top-concept-ttl {
    color: #281671
}

.p-top-concept__text-container--txt {
    margin-top: 4.8rem;
    width: 100%;
    max-width: 120rem;
    color: #1e1e26
}

@media screen and (max-width: 767px) {
    .p-top-concept__text-container--txt {
        margin-top: 3.2rem;
        width: 91.2%
    }
}

.p-top-concept__text-container--lead {
    line-height: 1.5
}

.p-top-concept__text-container--txt p {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 4.2rem
}

@media screen and (max-width: 767px) {
    .p-top-concept__text-container--txt p {
        font-size: 1.4rem;
        margin-top: 1.2rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-concept .p-top-section__inner {
        min-height: clamp(134.9rem, 68.6rem + 86.328vw, 157rem)
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-concept .p-top-section__inner {
        min-height: clamp(91.2rem, 66.683rem + 62.865vw, 114.9rem)
    }
}

.p-top-concept__text-container {
    max-width: clamp(48.5rem, 13.933rem + 33.724vw, 60rem);
    margin-left: auto
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-concept__text-container {
        max-width: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px),
screen and (max-width: 767px) {
    .p-top-concept__text-container {
        max-width: none
    }
}

@media screen and (min-width: 1025px) {
    .p-top-concept__text-container .p-top-concept__text-container--txt {
        max-width: clamp(46.8rem, 7.123rem + 38.71vw, 60rem)
    }
}

@media screen and (max-width: 767px) {
    .p-top-concept__text-container--txt {
        width: 100%
    }
}

.p-top-merit {
    background-color: #ffffffe6
}

.p-top-merit-card {
    background-image: linear-gradient(#EFEFF4 .1rem, transparent .1rem), linear-gradient(to right, #EFEFF4 .1rem, transparent .1rem);
    background-size: 2rem 2rem;
    background-color: #fff;
    background-position: -1.4rem 1.4rem;
    border: .1rem solid #C9C9D3;
    padding: 4rem;
    color: #393653
}

@media screen and (max-width: 767px) {
    .p-top-merit-card {
        padding: 2.4rem 2.4rem 2.87rem
    }
}

.p-top-merit-card+.p-top-merit-card {
    margin-top: 3.05rem
}

.p-top-merit-card__inner {
    align-items: flex-start
}

@media screen and (max-width: 767px) {
    .p-top-merit-card__inner {
        flex-direction: column-reverse;
        align-items: center
    }
}

.p-top-merit-card__img {
    width: 100%;
    max-width: 24rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-card__img {
        max-width: 34.2rem
    }
}

.p-top-merit-card__inner {
    display: flex
}

.p-top-merit-ttl {
    margin-top: 3rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-ttl {
        font-size: 3rem
    }
}

.p-top-merit-inner__box {
    margin-top: 4.8rem;
    width: 100%
}

.p-top-merit-card+.p-top-merit-card {
    margin-top: 3rem
}

.p-top-merit-icon-point {
    width: 100%;
    max-width: 10.6rem;
    padding: .3rem 1.2rem;
    background: linear-gradient(270deg, #2a2a40, #404062, #2a2a40);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.p-top-merit-icon-point .num {
    line-height: 1;
    padding-left: .8rem;
    font-size: 2.4rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .p-top-merit-icon-point {
        max-width: 10rem
    }
}

.p-top-merit-icon-point .point {
    font-size: 1.6rem;
    line-height: 1.25
}

@media screen and (max-width: 767px) {
    .p-top-merit-icon-point .point {
        font-size: 1.4rem
    }
}

.p-top-merit-card__txt-block {
    padding-left: 4rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-card__txt-block {
        padding-left: 0;
        padding-bottom: 2.4rem
    }
}

.p-top-merit-card__txt-block h4+h4 {
    padding-top: 2.4rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-card__txt-block h4+h4 {
        padding-top: 2rem
    }
}

.p-top-merit-ttl-point {
    line-height: 1.25;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 2.4rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-ttl-point {
        font-size: 1.8rem;
        margin-top: 2rem
    }
}

.p-top-merit-txt-point {
    line-height: 2;
    padding-top: 2.4rem
}

@media screen and (max-width: 767px) {
    .p-top-merit-txt-point {
        padding-top: 1.2rem
    }
}

.swiper .swiper-slide {
    height: auto
}

.p-top-course-card.swiper-slide,
.p-top-event-card.swiper-slide {
    display: flex
}

.p-top-swiper__course--next {
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    background-image: url(../images/icon-top-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 52.2%;
    transform: translateY(-50%);
    background-color: #ffffffe6;
    box-shadow: 0 4px 12px #1e1e26cc;
    border-radius: 50%;
    z-index: 5;
    right: -2.2rem
}

.p-top-swiper__course--prev {
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    background-image: url(../images/icon-top-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffffe6;
    box-shadow: 0 4px 12px #1e1e26cc;
    border-radius: 50%;
    z-index: 5;
    transform: rotate(180deg);
    left: -2.2rem
}

.p-top-swiper__event--next {
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    background-image: url(../images/icon-top-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 52.2%;
    transform: translateY(-50%);
    background-color: #ffffffe6;
    box-shadow: 0 4px 12px #1e1e26cc;
    border-radius: 50%;
    z-index: 5;
    right: -2.2rem
}

.p-top-swiper__event--prev {
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    background-image: url(../images/icon-top-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffffe6;
    box-shadow: 0 4px 12px #1e1e26cc;
    border-radius: 50%;
    z-index: 5;
    transform: rotate(180deg);
    left: -2.2rem
}

.font-en {
    font-family: Mulish, sans-serif
}

.p-top-topics__empty {
    padding-top: 4rem;
    font-size: 1.4rem;
    font-weight: 400
}

@media screen and (max-width: 767px) {
    .p-top-topics__empty {
        margin: 0 auto
    }
}

.p-top-empty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2.4rem
}

.p-top-empty {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400
}

@media screen and (max-width: 767px) {
    .p-top-empty {
        padding: 4rem
    }
}

.p-top-mv-wrapper {
    position: relative;
    height: 200svh
}

.p-top-mv-wrapper:after {
    content: "";
    position: absolute;
    bottom: 99.9vh;
    left: 0;
    width: 100vw;
    height: 30.7rem;
    background: transparent linear-gradient(360deg, #3f3277, #3f3277ad 33%, #3f327761 67%, #3f327700) 0% 0% no-repeat padding-box;
    z-index: 1
}

.p-top-section-mv {
    position: sticky;
    top: 0;
    height: 100svh;
    transition: opacity .2s ease, visibility .2s ease
}

.p-top-section-mv.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.p-top-section-mv:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 8.1rem;
    background: transparent linear-gradient(180deg, #3f3277, #3f3277ad 33%, #3f327761 67%, #3f327700) 0% 0% no-repeat padding-box;
    z-index: 1
}

.p-top-mv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1366/768;
    overflow: hidden
}

.p-top-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right
}

.p-top-content {
    position: relative;
    z-index: 2;
    margin-top: -100vh
}

.p-top-section-hero {
    position: relative;
    z-index: 2;
    height: auto
}

.p-top-section-hero:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #3f3277;
    opacity: 1;
    transition: opacity .1s ease;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform
}

.p-top-section-hero .p-top-section__inner {
    display: flex;
    align-items: flex-start;
    min-height: 95rem
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section-hero .p-top-section__inner {
        min-height: 95rem
    }
}

@media screen and (max-width: 767px) {
    .p-top-section-hero .p-top-section__inner {
        min-height: 70rem
    }
}

.p-top-section-title {
    position: relative;
    min-height: 50rem;
    width: 100%
}

.p-top-section__inner__txt-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(48.6rem, -7.309rem + 54.545vw, 67.2rem);
    max-width: 67.2rem;
    left: auto
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-top-section__inner__txt-container {
        width: clamp(68.8rem, 73.6rem - 6.25vw, 67.2rem);
        max-width: 68.8rem;
        top: 0;
        left: 2.4rem;
        transform: translateY(-50%)
    }
}

@media screen and (max-width: 767px) {
    .p-top-section__inner__txt-container {
        top: 0;
        left: 2.4rem;
        transform: translateY(-50%);
        width: calc(100vw - 4.8rem)
    }
}

.bg-top-circle-container {
    position: fixed;
    width: 50vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: -1
}

.bg-top-circle {
    opacity: 0;
    transition: opacity .4s ease
}

.bg-top-circle-container.is-visible .bg-top-circle {
    opacity: .6
}

.bg-top-circle-container.is-strong .bg-top-circle {
    opacity: 1
}

.bg-top-circle-container.is-front {
    z-index: 3
}

.p-course-head-box {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-top: 2rem
}

@media screen and (max-width: 767px) {
    .p-course-head-box {
        margin-top: 1.6rem;
        font-size: 1.4rem
    }
}

.p-course-head-link {
    text-decoration: underline .1rem solid;
    padding-top: 2rem;
    font-weight: 500;
    display: inline-flex;
    gap: .8rem;
    align-items: center
}

.p-course-head-link:hover {
    color: #bed514
}

.p-course-head-icon {
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .1rem solid #FFFFFF;
    background-image: url(../images/icon_text_link_hover.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s
}

.p-course-head-link:hover .p-course-head-icon {
    background-image: url(../images/icon_text_link.svg);
    background-color: #bed514;
    border-color: #bed514
}

.p-course-search {
    background-color: #ffffff4d;
    padding: 3.6rem 0;
    margin-top: 4rem;
    border-radius: .4rem
}

@media screen and (max-width: 767px) {
    .p-course-search {
        padding: 2.4rem 0
    }
}

.p-course-search__wrap {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem
}

@media screen and (max-width: 767px) {
    .p-course-search__wrap {
        display: block
    }
}

.p-course-search__input:focus-within {
    box-shadow: 0 0 0 2px #007bff
}

.p-course-search__input--keyword:focus {
    outline: none;
    box-shadow: none
}

.p-course-search-btn {
    padding: 1.2rem 4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    max-width: 16rem;
    width: 100%;
    text-align: center;
    background-image: linear-gradient(90deg, #0f0f29, #5b5b8d);
    border: .1rem solid #1E1E26;
    border-radius: 999pt;
    transition: all .3s ease
}

@media screen and (max-width: 767px) {
    .p-course-search-btn {
        display: block;
        margin: 1.8rem auto 0
    }
}

.p-course-search__input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 4.8rem;
    max-width: 79rem;
    background: #fff;
    border: .1rem solid #ccc;
    border-radius: .4rem;
    overflow-x: auto;
    overflow-y: hidden
}

.p-course-search__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
    flex-shrink: 0
}

.p-course-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    background: #f2f2f2;
    border: .1rem solid #ccc;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 400
}

.p-course-tag-pill:first-child {
    margin-left: 1.6rem
}

.p-course-tag-pill__close {
    margin-left: .6rem;
    cursor: pointer;
    font-weight: 700
}

.p-course-search__input--keyword {
    flex: 1;
    min-width: 8rem;
    border: none;
    outline: none;
    line-height: 1.5;
    font-weight: 400;
    padding: 1.2rem
}

.p-course-tag {
    margin-top: 3.6rem
}

@media screen and (max-width: 767px) {
    .p-course-tag {
        margin-top: 2.4rem
    }
}

.p-course-section {
    margin-top: 1.2rem
}

@media screen and (max-width: 767px) {
    .p-course-section {
        margin-top: 2.4rem
    }
}

.p-course-box-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.p-course-section-title {
    font-size: 2rem;
    padding-left: 3.2rem;
    color: #fff
}

.p-course-sort {
    display: flex;
    justify-content: flex-end
}

.p-course-sort-wrap {
    max-width: 150rem;
    margin: 1.2rem auto 0
}

@media screen and (max-width: 767px) {
    .p-course-sort-wrap {
        margin: 3.6rem auto 0
    }
}

.p-course-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.635vw;
    justify-content: space-between;
    margin-top: 2.4rem;
    width: 100%;
    max-width: 150rem;
    color: #393653
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-course-card-list {
        grid-template-columns: 1fr 1fr;
        gap: 2.4rem
    }
}

@media screen and (max-width: 767px) {
    .p-course-card-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.4rem
    }
}

.p-course-card {
    width: auto;
    padding: 2rem;
    background-color: #ffffffe6;
    border: .1rem solid #C9C9D3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .p-course-card {
        width: 100%;
        min-height: auto;
        padding: 1.6rem
    }
}

.p-course-card-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.p-course-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 336/189;
    overflow: hidden
}

.p-course-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    will-change: transform;
    transition: all .3s ease
}

@media screen and (max-width: 767px) {
    .p-course-card-img img {
        display: block;
        margin: 0 auto
    }
}

.p-course-card-inner__img {
    margin-left: auto;
    margin-right: auto
}

.p-course-card-inner__img img {
    max-width: 51rem;
    aspect-ratio: 510/180;
    object-fit: cover;
    object-position: top
}

.p-course-card-inner__img.op-b img {
    object-position: bottom
}

.p-course-label {
    padding-top: .9rem;
    padding-bottom: .7rem;
    text-align: center;
    background: #8641e5;
    line-height: 1;
    color: #fff;
    font-weight: 600
}

@media screen and (max-width: 767px) {
    .p-course-label {
        font-size: 1.6rem;
        padding: .8rem
    }
}

.p-course-card-ttl {
    line-height: 1.5;
    margin-top: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1e1e26
}

@media screen and (max-width: 767px) {
    .p-course-card-ttl {
        font-size: 1.8rem
    }
}

.p-course-card-box {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem
}

.p-course-card-box__text {
    margin-top: .8rem;
    line-height: 1.25
}

.p-course-card-box__label {
    font-weight: 700
}

.p-course-card-box__text--free {
    margin-top: 1.2rem
}

.p-course-card-box__free {
    width: 100%;
    max-width: 5.2rem;
    min-height: 2.4rem;
    text-align: center;
    color: #fff;
    background-color: #8641e5;
    border: .1rem solid #8641E5;
    border-radius: .4rem;
    padding: .2rem 1.1rem
}

.p-course-card-box__caution {
    font-size: 1.2rem;
    color: #666;
    padding-top: .8rem;
    padding-left: 7rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.p-course-card-tag {
    margin-top: 1.6rem;
    font-size: 1.2rem;
    color: #393653;
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .8rem;
    font-weight: 400;
    margin-top: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.p-course-card-tag li {
    display: inline-block;
    margin-right: .8rem
}

.p-course-card-more-link {
    margin-top: 2rem;
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
    gap: .8rem;
    color: #271671;
    transition: all .3s ease
}

.p-course-card-more-link span,
.p-course-card-more-link a {
    border-bottom: .1rem solid #271671;
    padding-bottom: .1rem;
    line-height: 1
}

.p-course-card-more-link:after {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_text_link.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .1rem solid #271671;
    transition: .3s
}

.p-course-no-result {
    margin-top: 2.4rem
}

.p-course-card-box__text,
.p-course-card-box__text--free {
    display: flex;
    align-items: flex-start;
    margin-bottom: .5em
}

.p-course-card-box__value,
.p-course-card-box__free {
    flex: 1;
    word-break: break-word
}

.p-course-card-box__value--place {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.p-course-card-box__text--free {
    display: block
}

@media (any-hover: hover) {
    .p-course-search-btn:hover {
        color: #1e1e26;
        background: #bed514
    }

    .p-course-card:hover .p-course-card-img img {
        transform: scale(1.1)
    }

    .p-course-card:hover .p-course-card-ttl {
        color: #271671
    }

    .p-course-card:hover .p-course-card-more-link:after {
        background-image: url(../images/icon_text_link_hover.svg);
        background-color: #271671;
        border-color: #271671
    }
}

:focus-visible {
    box-shadow: 0 0 0 2px #007bff
}

.p-course-detail {
    display: block;
    margin-top: 4rem;
    margin-bottom: 10rem
}

.p-course-detail__inner {
    padding-bottom: 2.4rem;
    overflow-wrap: break-word;
    word-break: break-all
}

@media screen and (max-width: 767px) {
    .p-course-detail__inner {
        padding-bottom: 0
    }
}

.p-course-detail__bg {
    background-color: #00000080;
    cursor: pointer
}

.p-course-detail__box {
    background: #fff;
    width: 100%;
    max-width: 150rem;
    margin: 0 auto;
    position: relative
}

.p-course-detail__btn-wrap {
    position: sticky;
    bottom: 0;
    padding: 3.6rem 0;
    background-image: linear-gradient(0deg, #fff, transparent);
    text-align: center;
    z-index: 99;
    margin-top: 2.4rem
}

.p-course-detail__btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 51rem;
    margin-right: auto;
    margin-left: auto
}

@media screen and (max-width: 767px) {
    .p-course-detail__btn-wrap {
        margin-top: 0rem;
        margin-bottom: 0rem;
        padding: 4rem 0
    }

    .p-course-detail__btn-group {
        flex-direction: column-reverse;
        gap: 1.2rem;
        transform: translateY(8.3rem);
        transition: transform .3s ease
    }

    .p-course-detail__btn-group.is-visible {
        transform: translateY(0)
    }

    .p-course-detail-white-btn {
        opacity: 0;
        transform: translateY(12px);
        pointer-events: none;
        transition: opacity .3s ease, transform .3s ease
    }

    .p-course-detail__btn-group.is-visible .btn--white {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
    }
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) {
    .p-course-detail__btn-group {
        gap: 1.2rem;
        flex-wrap: nowrap
    }
}

.p-course-detail-label {
    padding-top: 1.6rem;
    padding-bottom: 1.4rem;
    font-size: 2rem;
    text-align: center;
    background: #8641e5;
    line-height: 1;
    color: #fff;
    font-weight: 600
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) {
    .p-course-detail-label {
        font-size: 1.6rem;
        padding-top: .8rem;
        padding-bottom: .8rem
    }
}

.p-course-detail__head {
    display: flex;
    padding: 4rem clamp(3rem, 5.1245vw, 7rem);
    background-color: #f5f5f8;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(3rem, 2.93vw, 4rem)
}

.p-course-detail__head__img-block {
    width: 24.16vw;
    flex-shrink: 0;
    aspect-ratio: 16/9;
    overflow: hidden
}

.p-course-detail__head__img-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.p-course-detail__head__txt-block {
    width: 100%
}

.p-course-detail__head__ttl {
    font-size: 3.2rem;
    color: #281671;
    font-weight: 700
}

.p-course-detail__head__detail {
    line-height: 1.5;
    margin-top: 1.6rem
}

.p-course-detail__head__detail__place {
    margin-top: .8rem
}

.p-course-detail__head__detail__curriculum p {
    white-space: nowrap;
    flex-shrink: 0
}

.p-course-detail__head__detail__curriculum,
.p-course-detail__head__detail__place {
    display: flex
}

.p-course-detail__head__detail__curriculum p:first-child,
.p-course-detail__head__detail__place p:first-child {
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0
}

.p-course-detail__head__item {
    margin-top: 1.2rem
}

.p-course-detail__free.p-course-detail__free {
    margin-top: .8rem
}

.p-course-detail-icon-free-wrap {
    display: flex;
    align-items: center;
    gap: .4rem
}

.p-course-detail-icon-free-wrap p {
    font-weight: 700
}

.p-course-detail-icon-paid-wrap {
    display: flex
}

.p-course-detail-icon-free-wrap div {
    width: 100%;
    max-width: 5.2rem;
    min-height: 2.4rem;
    text-align: center;
    background-color: #8641e5;
    border: .1rem solid #8641E5;
    border-radius: .4rem;
    padding: .2rem 1.1rem;
    line-height: 1
}

.p-course-detail-icon-free-wrap div span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.p-course-detail-icon-free-wrap span {
    color: #8641e5
}

.p-course-detail-caution {
    color: #666;
    margin-top: .4rem;
    font-size: 1.2rem
}

.p-course-detail-flyer {
    display: flex;
    gap: .6rem;
    margin-top: 2rem;
    align-items: center;
    font-weight: 400
}

.p-course-detail-flyer~.p-course-detail-flyer {
    margin-top: .8rem
}

@media screen and (max-width: 767px) {
    .p-course-detail-flyer~.p-course-detail-flyer {
        margin-top: 2rem
    }
}

.p-course-detail-flyer__link {
    color: #271671;
    text-decoration: underline
}

.p-course-detail-flyer__icon {
    background: #f74251;
    border-radius: 1.6rem;
    padding: .4rem .6rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.p-course-detail-caution li {
    padding-left: 8.3rem
}

.p-course-detail__head__detail__txt {
    font-size: 1.4rem;
    line-height: 1.75;
    font-weight: 500;
    margin-top: 2rem
}

.p-course-detail-tag {
    border: 1px solid #C9C9D3;
    max-width: 69rem;
    margin-top: 2rem;
    border-radius: .4rem
}

.p-course-detail-tag-list {
    display: flex;
    flex-wrap: wrap;
    color: #393653;
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
    font-weight: 400;
    gap: 0 .8rem
}

@media screen and (max-width: 767px) {
    .p-course-detail-tag-list {
        padding: .8rem 1.2rem
    }
}

.p-course-detail__head__item p {
    line-height: 1.5;
    font-weight: 700
}

.p-course-detail__content {
    margin: 6rem clamp(3rem, 5.1245vw, 7rem) 0
}

.p-course-detail__content__table {
    margin-top: 2.4rem;
    width: 100%;
    border-top: 1px solid #C9C9D3;
    border-bottom: 1px solid #C9C9D3
}

.p-course-detail__content__table tr+tr {
    border-top: 1px solid #C9C9D3
}

.p-course-detail__content__table th {
    width: 30%;
    max-width: 31.2rem;
    height: 8.46%;
    padding: 1.6rem;
    vertical-align: middle;
    background-color: #f5f5f8
}

.p-course-detail__content__table td {
    width: 70%;
    padding: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.75;
    vertical-align: middle;
    overflow-wrap: break-word;
    word-break: break-all
}

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

    .p-course-detail__content__table,
    .p-course-detail__content__table tbody,
    .p-course-detail__content__table tr,
    .p-course-detail__content__table th,
    .p-course-detail__content__table td {
        width: 100%;
        display: block
    }
}

.p-course-detail__content__ttl {
    font-weight: 500;
    line-height: 1
}

.p-course-detail__content__main__ttl {
    line-height: 1;
    padding-left: 3.2rem;
    font-size: 2rem;
    font-weight: 700
}

.p-course-detail__content__main__ttl.index {
    padding-left: 0
}

.p-course-detail-content_sub-list {
    margin-left: 1.4rem;
    padding-left: 0
}

.p-course-detail-content_sub-list li {
    position: relative;
    text-indent: -1.6rem;
    padding-left: 1.6rem
}

.p-course-detail-content_sub-list li:before {
    content: "-";
    width: 100%;
    max-width: 1.6rem;
    display: inline-block;
    text-indent: 0
}

.p-course-detail__content__schedule {
    display: flex;
    align-items: center
}

.p-course-detail__content__schedule__ttl {
    font-weight: 500;
    line-height: 1;
    margin-top: .8rem
}

.p-course-detail__content__schedule .icon {
    padding: .2rem 1.3rem .2rem 1rem;
    background: linear-gradient(270deg, #2a2a40, #404062, #2a2a40);
    color: #fff;
    font-weight: 700;
    align-items: center;
    flex-shrink: 0
}

.p-course-detail__content__schedule .icon .day {
    font-size: 1.2rem;
    line-height: 1.167
}

.p-course-detail__content__schedule .icon .num {
    font-size: 1.6rem;
    line-height: 1;
    padding-left: .5rem
}

.p-course-detail__content__schedule .date {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    padding-left: .6rem;
    word-break: break-all
}

.p-course-detail__content__schedule+.table__ttl {
    padding-top: .8rem
}

.p-course-detail__content__speaker {
    padding: 3rem;
    margin-top: 2.4rem
}

.p-course-detail__content__speaker__item {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 1.2rem
}

.p-course-detail__content__speaker__item--gray {
    display: block;
    background-color: #eee9;
    padding: 1.6rem
}

.p-course-detail__content__speaker__item .p-course-detail__content__speaker__item__box div {
    display: flex;
    gap: 4rem
}

.p-course-detail__content__speaker__item__img {
    width: 12rem;
    height: 12rem;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0
}

.p-course-detail__content__speaker__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.p-course-detail__content__speaker__name {
    font-size: 2rem
}

.p-course-detail__content__speaker__item .index {
    line-height: 1;
    font-size: 2rem
}

.p-course-detail__content__speaker__item .p-course-detail__content__speaker__item__box {
    line-height: 2;
    font-size: 1.6rem
}

.p-course-detail__content__speaker__item .txt {
    font-size: 1.4rem;
    line-height: 2;
    padding-top: 1.6rem
}

.p-course-detail__content__speaker__item+.p-course-detail__content__speaker__item {
    margin-top: 2.4rem
}

.p-course-detail__subcontent__speaker {
    margin-top: 2.4rem
}

.p-course-detail__subcontent__wrap {
    display: flex;
    align-items: flex-start;
    gap: 4rem
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-course-detail__subcontent__wrap {
        flex-direction: column;
        gap: 1.6rem
    }
}

.p-course-detail__subcontent__box {
    display: flex;
    gap: 2rem;
    align-items: center
}

.p-course-detail__subcontent__speaker__img {
    width: 12rem;
    height: 12rem;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0
}

.p-course-detail__subcontent__speaker__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.p-course-detail__subcontent__speaker__ttl {
    font-size: 1.4rem;
    line-height: 2
}

.p-course-detail__content__speaker__item,
.p-course-detail__subcontent__speaker__text {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2;
    flex: 1 1 60%;
    min-height: 12rem
}

.p-course-detail__subcontent__speaker__text {
    background-color: #ffffffe6;
    padding: 1.6rem
}

.p-course-detail__subcontent__speaker__name {
    font-size: 1.8rem
}

.card--grid--sub {
    background-image: linear-gradient(#fff .1rem, transparent .1rem), linear-gradient(to right, #fff .1rem, transparent .1rem);
    background-size: 2rem 2rem;
    background-color: #efeff4;
    background-position: -1.4rem 1.4rem;
    border: .1rem solid #C9C9D3;
    padding: 3rem
}

@media screen and (max-width: 767px) {
    .p-course-detail__head__detail {
        margin-top: 2.4rem
    }

    .p-course-detail__head {
        padding: 2rem 1.6rem;
        flex-direction: column;
        gap: 0
    }

    .p-course-detail__head__img-block {
        width: 100%
    }

    .p-course-detail__head__ttl {
        font-size: 2.2rem;
        margin-top: 2.4rem
    }

    .p-course-detail__head__item {
        margin-top: 2rem
    }

    .p-course-detail__content {
        margin: 4rem 1.6rem 0
    }

    .p-course-detail__content__schedule {
        margin-bottom: .8rem
    }

    .p-course-detail__content__ttl {
        font-size: 1.6rem;
        padding: 0
    }

    .p-course-detail__content__main__ttl {
        font-size: 1.8rem;
        padding-left: 2.8rem
    }

    .p-course-detail__content__speaker__item {
        flex-direction: column;
        gap: 0
    }

    .p-course-detail__content__speaker__item__txt {
        text-align: left;
        max-width: 19.6rem;
        width: 100%
    }

    .p-course-detail__content__speaker__item .index {
        font-size: 1.8rem
    }

    .p-course-detail__content__speaker__item .p-course-detail__content__speaker__item__box {
        padding-top: 1.6rem;
        font-size: 1.4rem;
        max-width: 19.6rem;
        width: 100%
    }

    .p-course-detail__content__speaker__item .p-course-detail__content__speaker__item__box div {
        flex-direction: column;
        gap: 0
    }

    .p-course-detail__content__speaker__item+.p-course-detail__content__speaker__item {
        margin-top: 2.4rem
    }

    .p-course-detail__content .card--grid {
        padding: 2rem
    }

    .p-course-detail__content__table th {
        width: 100%;
        max-width: none;
        padding: 1.6rem
    }

    .p-course-detail__content__table__curriculum th {
        padding: 1.6rem
    }

    .p-course-detail__content__table td {
        width: 100%;
        padding-bottom: 3rem
    }

    .ttl-circle:before {
        width: 1.6rem;
        height: 1.6rem
    }

    .p-course-detail__subcontent__speaker {
        display: flex;
        flex-direction: column;
        padding: 2rem
    }

    .p-course-detail__subcontent__speaker .p-course-detail__subcontent__wrap {
        flex-direction: column;
        gap: 1.6rem;
        align-items: center
    }

    .p-course-detail__subcontent__box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.6rem;
        max-width: 21rem;
        width: 100%
    }

    .p-course-detail__subcontent__speaker__img {
        max-width: 12rem;
        width: 100%
    }

    .p-course-detail__subcontent__speaker__ttl {
        width: 100%;
        text-align: left;
        font-size: 1.3rem
    }

    .p-course-detail__subcontent__speaker__name {
        width: 100%;
        text-align: left;
        font-size: 1.6rem
    }

    .p-course-detail__subcontent__speaker__text {
        width: 100%
    }

    .p-course-detail__subcontent__speaker.card--grid--sub {
        padding: 2rem
    }
}

.p-event-search {
    background-color: #ffffff4d;
    padding: 3.6rem 0;
    margin-top: 4rem;
    border-radius: .4rem
}

@media (max-width: 767px) {
    .p-event-search {
        padding: 2.4rem 0
    }
}

.p-event-search__wrap {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem
}

@media (max-width: 767px) {
    .p-event-search__wrap {
        display: block
    }
}

.p-event-search__input:focus-within {
    box-shadow: 0 0 0 2px #007bff
}

.p-event-search__input--keyword:focus {
    outline: none;
    box-shadow: none
}

.p-event-search-btn {
    padding: 1.2rem 4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    max-width: 16rem;
    width: 100%;
    text-align: center;
    background-image: linear-gradient(90deg, #0f0f29, #5b5b8d);
    border: .1rem solid #1E1E26;
    border-radius: 999pt;
    transition: all .3s ease
}

@media (max-width: 767px) {
    .p-event-search-btn {
        display: block;
        margin: 1.8rem auto 0
    }
}

.p-event-search__input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 4.8rem;
    max-width: 79rem;
    background: #fff;
    border: .1rem solid #ccc;
    border-radius: .4rem;
    overflow-x: auto;
    overflow-y: hidden
}

.p-event-search__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
    flex-shrink: 0
}

.p-event-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    background: #f2f2f2;
    border: .1rem solid #ccc;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 400
}

.p-event-tag-pill:first-child {
    margin-left: 1.6rem
}

.p-event-tag-pill__close {
    margin-left: .6rem;
    cursor: pointer;
    font-weight: 700
}

.p-event-search__input--keyword {
    flex: 1;
    min-width: 8rem;
    border: none;
    outline: none;
    line-height: 1.5;
    font-weight: 400;
    padding: 1.2rem
}

.p-event-tag {
    margin-top: 3.6rem
}

.p-event-sort {
    display: flex;
    justify-content: flex-end
}

.p-event-sort-wrap {
    max-width: 150rem;
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-event-sort-wrap {
        margin-top: 3.6rem
    }
}

.p-event-section {
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-event-section {
        margin-top: 2.4rem
    }
}

.p-event-box-wrap {
    display: flex;
    justify-content: space-between
}

.p-event-section-title {
    font-size: 2rem;
    font-weight: 700;
    padding-left: 3.2rem
}

@media (max-width: 767px) {
    .p-event-section-title {
        font-size: 1.8rem;
        padding-left: 2.8rem
    }
}

.p-event-card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 150rem;
    margin-top: 2.4rem
}

.p-event-card {
    position: relative;
    width: 100%;
    display: flex;
    gap: 1.2rem;
    padding: 2rem;
    background-color: #ffffffe6;
    border: .1rem solid #C9C9D3;
    box-sizing: border-box
}

@media (max-width: 767px) {
    .p-event-card {
        flex-direction: column;
        gap: 1.6rem;
        padding: 1.6rem
    }
}

.p-event-card-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column
}

.p-event-thumb {
    overflow: hidden
}

.p-event-thumb img {
    width: 30rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .3s ease
}

@media (any-hover: hover) {
    .p-event-card:hover .p-event-thumb img {
        transform: scale(1.1)
    }
}

@media (max-width: 767px) {
    .p-event-thumb img {
        width: 100%
    }
}

.p-event-label {
    width: 30rem;
    height: 3.2rem;
    padding: .6rem;
    background: #4663c6;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5
}

@media (max-width: 767px) {
    .p-event-label {
        width: 100%;
        font-size: 1.2rem
    }
}

.p-event-card-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 6.8rem;
    padding: 0 1.2rem
}

@media (max-width: 767px) {
    .p-event-card-detail {
        padding: 0;
        width: 100%;
        margin-bottom: 3.2rem
    }
}

.p-event-card-pubdate {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #666
}

@media (max-width: 767px) {
    .p-event-card-pubdate {
        font-size: 1.2rem
    }
}

.p-event-card-pubdate:before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .6rem;
    background-image: url(../images/Icon_ionic-md-time.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

@media (max-width: 767px) {
    .p-event-card-pubdate:before {
        width: 1.4rem;
        height: 1.4rem
    }
}

.p-event-card-ttl {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
    color: #1e1e26;
    margin-top: .8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden
}

@media (any-hover: hover) {
    .p-event-card:hover .p-event-card-ttl {
        color: #281671
    }
}

@media (max-width: 767px) {
    .p-event-card-ttl {
        font-size: 1.8rem;
        padding-right: 0;
        line-clamp: 2;
        -webkit-line-clamp: 2
    }
}

.p-event-card-box {
    margin-top: 2rem
}

@media (max-width: 767px) {
    .p-event-card-box {
        margin-top: 1.6rem
    }
}

.p-event-card-box__row {
    display: flex;
    align-items: flex-start;
    font-size: 1.4rem;
    line-height: 1.5
}

.p-event-card-box__label {
    font-weight: 700
}

.p-event-card-box__value {
    flex: 1;
    word-break: break-word;
    font-size: 1.4rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden
}

@media (max-width: 767px) {
    .p-event-card-box__value {
        line-clamp: 2;
        -webkit-line-clamp: 2
    }
}

.p-event-card-box__description {
    padding: .8rem 1.2rem;
    border: .1rem solid #C9C9D3;
    border-radius: .4rem;
    box-sizing: border-box;
    margin: .8rem 0
}

.p-event-card-box__description-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.p-event-card-tag {
    margin-top: auto;
    bottom: 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    color: #393653;
    flex-wrap: wrap;
    gap: .2rem .8rem;
    padding-right: 1.2rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 767px) {
    .p-event-card-tag {
        position: static;
        margin-top: .8rem;
        margin-bottom: 0;
        padding-right: 0
    }
}

.p-event-card-tag li {
    display: inline-block;
    margin-right: .8rem
}

.p-event-card-more-link {
    position: absolute;
    top: 10.6rem;
    right: 3.6rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #271671
}

.p-event-card-more-link:after {
    content: "";
    position: relative;
    display: inline-block;
    background: url(../images/icon_text_link.svg) no-repeat center;
    width: 2.4rem;
    height: 2.4rem;
    border: .1rem solid #271671;
    border-radius: 1.7rem
}

@media (any-hover: hover) {
    .p-event-card:hover .p-event-card-more-link:after {
        background-image: url(../images/icon_text_link_hover.svg);
        background-color: #271671;
        border-color: #271671
    }
}

@media (max-width: 767px) {
    .p-event-card-more-link {
        right: 1.6rem;
        bottom: 1.6rem;
        top: auto
    }
}

.p-event-no-result {
    margin-top: 2.4rem
}

.p-event-detail-layout {
    display: flex;
    gap: 4rem;
    max-width: 150rem;
    margin: 4rem auto 100px;
    align-items: flex-start
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-event-detail-layout {
        flex-direction: column
    }
}

@media (max-width: 767px) {
    .p-event-detail-layout {
        gap: 6rem;
        margin: 4rem auto 8rem;
        flex-direction: column
    }
}

.p-event-detail__detail {
    flex: 1;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all
}

.p-event-detail__detail-upper {
    flex: 1;
    position: relative;
    padding: 9rem clamp(3rem, 5.1245vw, 7rem) 4rem;
    box-sizing: border-box;
    background: #f5f5f8 0% 0% no-repeat padding-box
}

@media (max-width: 767px) {
    .p-event-detail__detail-upper {
        padding: 6rem 1.6rem 2rem
    }
}

.p-event-detail-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    padding: 1rem 0 1.2rem;
    background-color: #4663c6;
    z-index: 10
}

@media (max-width: 767px) {
    .p-event-detail-label {
        padding: .8rem 1.5rem;
        height: 4rem
    }
}

.p-event-detail-date {
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

@media (max-width: 767px) {
    .p-event-detail-date {
        font-size: 1.6rem
    }
}

.p-event-detail__fv {
    margin-bottom: 6rem
}

@media (max-width: 767px) {
    .p-event-detail__fv {
        margin-bottom: 4rem
    }
}

.p-event-detail__ttl {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 700;
    color: #281671
}

@media (max-width: 767px) {
    .p-event-detail__ttl {
        font-size: 2.2rem
    }
}

.p-event-detail__pubdate {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    line-height: 1;
    margin-top: 1.6rem
}

@media (max-width: 767px) {
    .p-event-detail__pubdate {
        font-size: 1.2rem
    }
}

.p-event-detail__pubdate:before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .6rem;
    background-image: url(../images/Icon_ionic-md-time.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

@media (max-width: 767px) {
    .p-event-detail__pubdate:before {
        width: 1.4rem;
        height: 1.4rem
    }
}

.p-event-detail-tag-list {
    margin-top: 2.4rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    list-style: none
}

.p-event-detail-tag-list__item {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: .4rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #393653;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail-tag-list__item {
        font-size: 1.4rem
    }
}

.p-event-detail__img-block {
    margin-top: 2rem;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.p-event-detail__img-block img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: auto
}

.p-event-detail__description {
    margin-top: 4rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0;
    color: #1e1e26;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__description {
        margin-top: 2.4rem;
        font-size: 1.4rem
    }
}

.p-event-detail__heading {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__heading {
        font-size: 2rem;
        line-height: 1.5
    }
}

.p-event-detail__heading:after {
    content: "";
    display: block;
    margin-top: .8rem;
    border-top: .3rem solid #332F4A
}

.p-event-detail__list {
    margin-top: 2.4rem
}

.p-event-detail__row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.4rem
}

@media (max-width: 767px) {
    .p-event-detail__row {
        flex-direction: column;
        gap: .8rem
    }
}

.p-event-detail__label {
    position: relative;
    padding-left: 1.6rem;
    min-width: 12rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    flex-shrink: 0
}

@media (max-width: 767px) {
    .p-event-detail__label {
        font-size: 1.4rem;
        padding-left: 1.8rem;
        min-width: auto
    }
}

.p-event-detail__label:before {
    content: "";
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: .6rem;
    height: .6rem;
    background: #a38f20;
    border-radius: 50%;
    transform: translateY(-50%)
}

.p-event-detail__value {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5
}

@media (max-width: 767px) {
    .p-event-detail__value {
        padding-left: 1.8rem;
        font-size: 1.4rem
    }
}

.p-event-detail__files {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.p-event-detail__file {
    display: flex;
    align-items: center;
    gap: 1rem
}

.p-event-detail__file-link {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #271671;
    text-decoration: underline
}

.p-event-detail__file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 1.6rem;
    background-color: #f74251;
    border-radius: 1.6rem;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    flex-shrink: 0
}

.p-event-detail__urls {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.p-event-detail__value a {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #281671;
    text-align: left;
    text-decoration: underline
}

.p-event-detail__detail-lower {
    flex: 1;
    position: relative;
    padding: 6rem clamp(3rem, 5.1245vw, 7rem);
    box-sizing: border-box;
    background-color: #fff
}

@media (max-width: 767px) {
    .p-event-detail__detail-lower {
        padding: 4rem 1.6rem
    }
}

.p-event-detail__article {
    margin-bottom: 6rem;
    background-color: #fff;
    min-height: 10rem
}

.p-event-detail__article>:first-child {
    margin-top: 0
}

.p-event-detail__article p {
    margin-bottom: 1.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0;
    color: #1e1e26;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article p {
        font-size: 1.4rem
    }
}

.p-event-detail__article strong {
    font-weight: 700
}

.p-event-detail__article s {
    text-decoration: line-through
}

.p-event-detail__article a {
    color: #281671;
    text-decoration: underline
}

.p-event-detail__article h2 {
    margin-top: 4.8rem;
    margin-bottom: 2.4rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article h2 {
        font-size: 2rem;
        line-height: 1.5
    }
}

.p-event-detail__article h2:after {
    content: "";
    display: block;
    margin-top: .8rem;
    border-top: .3rem solid #332F4A
}

.p-event-detail__article h3 {
    margin-top: 4.8rem;
    margin-bottom: 3.2rem;
    padding: .8rem;
    background-color: #e2def5;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article h3 {
        margin-top: 4rem;
        margin-bottom: 2.4rem
    }
}

.p-event-detail__article h4 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    padding: .2rem 0rem .2rem 1.6rem;
    border-left: .4rem solid #281671;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article h4 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-event-detail__article h5 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article h5 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-event-detail__article h6 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-event-detail__article h6 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-event-detail__article figure.wp-block-image {
    max-width: 48rem;
    max-height: 32rem;
    margin: 4.8rem auto 6rem
}

@media (max-width: 767px) {
    .p-event-detail__article figure.wp-block-image {
        margin-top: 4rem
    }
}

.p-event-detail__article figcaption {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: 0;
    color: #666;
    text-align: center;
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-event-detail__article figcaption {
        margin-top: .8rem;
        font-size: 1.2rem
    }
}

.p-event-detail__article ul {
    margin: 3.2rem 0;
    list-style: none
}

@media (max-width: 767px) {
    .p-event-detail__article ul {
        margin: 2.4rem 0
    }
}

.p-event-detail__article ul li {
    margin-bottom: .8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #1e1e26
}

@media (max-width: 767px) {
    .p-event-detail__article ul li {
        font-size: 1.4rem
    }
}

.p-event-detail__article ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: .6rem;
    height: .6rem;
    background: #a38f20;
    border-radius: 50%;
    transform: translateY(-50%)
}

@media (max-width: 767px) {
    .p-event-detail__article ul li:before {
        top: 50%;
        transform: translateY(-50%)
    }
}

.p-event-detail__article ol {
    margin: 3.2rem 0;
    list-style: none;
    counter-reset: item
}

@media (max-width: 767px) {
    .p-event-detail__article ol {
        margin: 2.4rem 0
    }
}

.p-event-detail__article ol li {
    margin-bottom: .8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #1e1e26;
    counter-increment: item
}

@media (max-width: 767px) {
    .p-event-detail__article ol li {
        font-size: 1.4rem
    }
}

.p-event-detail__article ol li:before {
    content: counter(item) ".";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #1e1e26
}

@media (max-width: 767px) {
    .p-event-detail__article ol li:before {
        top: 50%;
        transform: translateY(-50%)
    }
}

.p-event-detail__article .wp-block-columns {
    gap: 3.2rem
}

@media (max-width: 767px) {
    .p-event-detail__article .wp-block-columns {
        gap: 0rem
    }
}

.p-event-detail__article .wp-block-columns figure.wp-block-image {
    max-width: 100%;
    max-height: 100%
}

@media (max-width: 767px) {
    .p-event-detail__article>.wp-block-columns {
        margin-top: 1.6rem;
        margin-bottom: 6rem
    }

    .p-event-detail__article .wp-block-columns figure.wp-block-image {
        margin-bottom: 0rem
    }

    .p-event-detail__article .wp-block-columns figcaption {
        margin-bottom: .8rem
    }
}

.p-event-detail__article .wp-block-flexible-table-block-table {
    margin: 4.8rem 0
}

.p-event-detail__article .wp-block-flexible-table-block-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #C9C9D3
}

.p-event-detail__article .wp-block-flexible-table-block-table th,
.p-event-detail__article .wp-block-flexible-table-block-table td {
    padding: 1.6rem;
    border: 1px solid #C9C9D3;
    vertical-align: top;
    font-weight: 500;
    line-height: 1.5
}

.p-event-detail__article .wp-block-flexible-table-block-table th {
    font-size: 1.6rem;
    background-color: #f5f5f8
}

@media (max-width: 767px) {
    .p-event-detail__article .wp-block-flexible-table-block-table th {
        font-size: 1.4rem
    }
}

.p-event-detail__article .wp-block-flexible-table-block-table td {
    font-size: 1.4rem
}

@media (max-width: 767px) {
    .p-event-detail__article .wp-block-flexible-table-block-table td {
        font-size: 1.3rem
    }
}

.p-event-detail__article blockquote {
    position: relative;
    margin: 4.8rem 0;
    padding: 1.6rem 2rem
}

.p-event-detail__article blockquote p {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #999
}

.p-event-detail__article blockquote cite,
.p-event-detail__article blockquote cite a {
    font-size: 1.2rem;
    color: #999
}

.p-event-detail__article blockquote p:before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: -2.25rem;
    width: 18px;
    height: 16px;
    background: url(../images/icon_blockquote.svg) no-repeat center/contain;
    z-index: 1
}

.p-event-detail__article blockquote:before {
    content: "";
    position: absolute;
    left: 4.2rem;
    right: 0;
    top: 0;
    height: .3rem;
    background: #ddd;
    border-radius: 3px
}

.p-event-detail__article blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: .3rem;
    background: #ddd;
    border-radius: 3px
}

.p-event-detail__article .wp-block-embed {
    margin: 4.8rem 0;
    max-width: none;
    width: 100%
}

.p-event-detail__article .wp-block-embed__wrapper {
    width: 100%
}

.p-event-detail__article iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: none
}

.p-event-detail__bottom {
    text-align: center
}

.p-event-detail__btn-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

.p-event-detail__new-events {
    width: 24.8rem;
    flex-shrink: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-event-detail__new-events {
        width: 100%
    }
}

@media (max-width: 767px) {
    .p-event-detail__new-events {
        width: 100%
    }
}

.p-event-detail-section-ttl {
    letter-spacing: 0px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    margin-left: 3.2rem;
    margin-bottom: 1.2rem
}

@media (max-width: 767px) {
    .p-event-detail-section-ttl {
        margin-left: 2.8rem;
        font-size: 1.8rem
    }
}

.p-event-detail__new-events-inner {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-event-detail__new-events-inner {
        flex-direction: column;
        flex-wrap: nowrap
    }
}

.p-event-detail__no-result {
    width: 100%;
    margin: 4rem 2.4rem
}

.p-event-detail__no-result p {
    text-align: center;
    letter-spacing: 0px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400
}

.p-event-detail__new-events-card {
    width: 24.8rem;
    height: 9.5rem;
    background-color: #fff;
    overflow: hidden;
    flex-shrink: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-event-detail__new-events-card {
        width: 100%
    }
}

@media (max-width: 767px) {
    .p-event-detail__new-events-card {
        width: 100%
    }
}

.p-event-detail__new-events-upper {
    display: flex;
    height: 7rem;
    gap: .8rem;
    align-items: flex-start;
    padding: .8rem
}

.p-event-detail__new-events-thumbnail {
    width: 9.6rem;
    height: 5.4rem;
    flex-shrink: 0;
    overflow: hidden
}

.p-event-detail__new-events-thumbnail img {
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .3s ease
}

@media (any-hover: hover) {
    .p-event-detail__new-events-card:hover .p-event-detail__new-events-thumbnail img {
        transform: scale(1.1)
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-event-detail__new-events-thumbnail img {
        height: auto;
        width: 16vw
    }
}

.p-event-detail__new-events-ttl {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    color: #1e1e26;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word
}

@media (any-hover: hover) {
    .p-event-detail__new-events-card:hover .p-event-detail__new-events-ttl {
        color: #281671
    }
}

.p-event-detail__new-events-lower {
    height: 2.5rem
}

.p-event-detail__new-events-date {
    padding: .4rem .8rem;
    background: #efeff4;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #393653
}

@media (max-width: 767px) {
    .p-event-detail__new-events-date {
        font-size: 1.3rem;
        line-height: 1.25
    }
}

.p-topics-search {
    background-color: #ffffff4d;
    padding: 3.6rem 0;
    margin-top: 4rem;
    border-radius: .4rem
}

@media (max-width: 767px) {
    .p-topics-search {
        padding: 2.4rem 0
    }
}

.p-topics-search__wrap {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem
}

@media (max-width: 767px) {
    .p-topics-search__wrap {
        display: block
    }
}

.p-topics-search__input:focus-within {
    box-shadow: 0 0 0 2px #007bff
}

.p-topics-search__input--keyword:focus {
    outline: none;
    box-shadow: none
}

.p-topics-search-btn {
    padding: 1.2rem 4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    max-width: 16rem;
    width: 100%;
    text-align: center;
    background-image: linear-gradient(90deg, #0f0f29, #5b5b8d);
    border: .1rem solid #1E1E26;
    border-radius: 999pt;
    transition: all .3s ease
}

@media (max-width: 767px) {
    .p-topics-search-btn {
        display: block;
        margin: 1.8rem auto 0
    }
}

.p-topics-search__input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 4.8rem;
    max-width: 79rem;
    background: #fff;
    border: .1rem solid #ccc;
    border-radius: .4rem;
    overflow-x: auto;
    overflow-y: hidden
}

.p-topics-search__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
    flex-shrink: 0
}

.p-topics-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    background: #f2f2f2;
    border: .1rem solid #ccc;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 400
}

.p-topics-tag-pill:first-child {
    margin-left: 1.6rem
}

.p-topics-tag-pill__close {
    margin-left: .6rem;
    cursor: pointer;
    font-weight: 700
}

.p-topics-search__input--keyword {
    flex: 1;
    min-width: 8rem;
    border: none;
    outline: none;
    line-height: 1.5;
    font-weight: 400;
    padding: 1.2rem
}

.p-topics-tag {
    margin-top: 3.6rem
}

.p-topics-sort {
    display: flex;
    justify-content: flex-end
}

.p-topics-sort-wrap {
    max-width: 150rem;
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-topics-sort-wrap {
        margin-top: 3.6rem
    }
}

.p-topics-section {
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-topics-section {
        margin-top: 2.4rem
    }
}

.p-topics-box-wrap {
    display: flex;
    justify-content: space-between
}

.p-topics-section-title {
    font-size: 2rem;
    font-weight: 700;
    padding-left: 3.2rem
}

@media (max-width: 767px) {
    .p-topics-section-title {
        font-size: 1.8rem;
        padding-left: 2.8rem
    }
}

.p-topics-card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 150rem;
    margin-top: 2.4rem
}

.p-topics-card {
    position: relative;
    display: flex;
    gap: 1.2rem;
    padding: 2.4rem 3.6rem;
    background-color: #ffffffe6;
    border: .1rem solid #C9C9D3;
    box-sizing: border-box
}

@media (max-width: 767px) {
    .p-topics-card {
        flex-direction: column;
        padding: 1.2rem 1.6rem
    }
}

.p-topics-card-detail {
    position: relative;
    margin-right: 6.4rem;
    transition: transform .3s ease-out;
    width: 100%
}

@media (any-hover: hover) {
    .p-topics-card-detail:hover {
        transform: translate(4px)
    }
}

@media (max-width: 767px) {
    .p-topics-card-detail {
        margin-right: 0;
        padding-right: 4.4rem;
        width: 100%
    }
}

.p-topics-card-pubdate {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666
}

@media (max-width: 767px) {
    .p-topics-card-pubdate {
        font-size: 1.2rem
    }
}

.p-topics-card-pubdate:before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .6rem;
    background-image: url(../images/Icon_ionic-md-time.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

@media (max-width: 767px) {
    .p-topics-card-pubdate:before {
        width: 1.4rem;
        height: 1.4rem
    }
}

.p-topics-card-ttl {
    height: 5.3rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    color: #1e1e26;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden
}

@media (max-width: 767px) {
    .p-topics-card-ttl {
        height: 4.1rem;
        font-size: 1.4rem
    }
}

.p-topics-card:hover .p-topics-card-ttl {
    color: #281671
}

.p-topics-card-tag {
    bottom: 0;
    font-size: 1.2rem;
    font-weight: 400;
    color: #393653;
    display: flex;
    flex-wrap: wrap;
    min-height: 1.8rem;
    gap: .2rem .8rem;
    margin-top: 2.4rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 767px) {
    .p-topics-card-tag {
        margin-top: 2rem;
        position: static;
        padding-right: 0
    }
}

.p-topics-card-tag li {
    display: inline-block;
    margin-right: .8rem
}

.p-topics-card-more-link {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3.6rem;
    display: flex;
    align-items: center;
    color: #271671
}

@media (max-width: 767px) {
    .p-topics-card-more-link {
        right: 1.6rem
    }
}

.p-topics-card-more-link:after {
    content: "";
    position: relative;
    display: inline-block;
    background: url(../images/icon_text_link.svg) no-repeat center;
    width: 2.4rem;
    height: 2.4rem;
    border: .1rem solid #271671;
    border-radius: 1.7rem
}

.p-topics-card:hover .p-topics-card-more-link:after {
    background-image: url(../images/icon_text_link_hover.svg);
    background-color: #271671;
    border-color: #271671
}

.p-topics-no-result {
    margin-top: 2.4rem
}

.p-topics-detail-layout {
    display: flex;
    gap: 4rem;
    max-width: 150rem;
    margin: 4rem auto 100px;
    align-items: flex-start
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-topics-detail-layout {
        flex-direction: column
    }
}

@media (max-width: 767px) {
    .p-topics-detail-layout {
        gap: 6rem;
        margin: 4rem auto 8rem;
        flex-direction: column
    }
}

.p-topics-detail__detail {
    flex: 1;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all
}

.p-topics-detail__detail-upper {
    flex: 1;
    position: relative;
    padding: 4rem clamp(3rem, 5.1245vw, 7rem);
    box-sizing: border-box;
    background: #f5f5f8 0% 0% no-repeat padding-box
}

@media (max-width: 767px) {
    .p-topics-detail__detail-upper {
        padding: 2rem 1.6rem
    }
}

.p-topics-detail__ttl {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 700;
    color: #281671
}

@media (max-width: 767px) {
    .p-topics-detail__ttl {
        font-size: 2.2rem
    }
}

.p-topics-detail__pubdate {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    line-height: 1;
    margin-top: 1.6rem
}

@media (max-width: 767px) {
    .p-topics-detail__pubdate {
        font-size: 1.2rem
    }
}

.p-topics-detail__pubdate:before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .6rem;
    background-image: url(../images/Icon_ionic-md-time.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

@media (max-width: 767px) {
    .p-topics-detail__pubdate:before {
        width: 1.4rem;
        height: 1.4rem
    }
}

.p-topics-detail-tag-list {
    margin-top: 2.4rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    list-style: none
}

.p-topics-detail-tag-list__item {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: .4rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #393653;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail-tag-list__item {
        font-size: 1.4rem
    }
}

.p-topics-detail__detail-lower {
    flex: 1;
    position: relative;
    padding: 6rem clamp(3rem, 5.1245vw, 7rem);
    box-sizing: border-box;
    background-color: #fff
}

@media (max-width: 767px) {
    .p-topics-detail__detail-lower {
        padding: 4rem 1.6rem
    }
}

.p-topics-detail__article {
    margin-bottom: 6rem;
    background-color: #fff;
    min-height: 10rem
}

.p-topics-detail__article>:first-child {
    margin-top: 0
}

.p-topics-detail__article p {
    margin-bottom: 1.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0;
    color: #1e1e26;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article p {
        font-size: 1.4rem
    }
}

.p-topics-detail__article strong {
    font-weight: 700
}

.p-topics-detail__article s {
    text-decoration: line-through
}

.p-topics-detail__article a {
    color: #281671;
    text-decoration: underline
}

.p-topics-detail__article h2 {
    margin-top: 4.8rem;
    margin-bottom: 2.4rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article h2 {
        font-size: 2rem;
        line-height: 1.5
    }
}

.p-topics-detail__article h2:after {
    content: "";
    display: block;
    margin-top: .8rem;
    border-top: .3rem solid #332F4A
}

.p-topics-detail__article h3 {
    margin-top: 4.8rem;
    margin-bottom: 3.2rem;
    padding: .8rem;
    background-color: #e2def5;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article h3 {
        margin-top: 4rem;
        margin-bottom: 2.4rem
    }
}

.p-topics-detail__article h4 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    padding: .2rem 0rem .2rem 1.6rem;
    border-left: .4rem solid #281671;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article h4 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-topics-detail__article h5 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article h5 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-topics-detail__article h6 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: #281671;
    text-align: left
}

@media (max-width: 767px) {
    .p-topics-detail__article h6 {
        margin-top: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.p-topics-detail__article figure.wp-block-image {
    max-width: 48rem;
    max-height: 32rem;
    margin: 4.8rem auto 6rem
}

@media (max-width: 767px) {
    .p-topics-detail__article figure.wp-block-image {
        margin-top: 4rem
    }
}

.p-topics-detail__article figcaption {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: 0;
    color: #666;
    text-align: center;
    margin-top: 1.2rem
}

@media (max-width: 767px) {
    .p-topics-detail__article figcaption {
        margin-top: .8rem;
        font-size: 1.2rem
    }
}

.p-topics-detail__article ul {
    margin: 3.2rem 0;
    list-style: none
}

@media (max-width: 767px) {
    .p-topics-detail__article ul {
        margin: 2.4rem 0
    }
}

.p-topics-detail__article ul li {
    margin-bottom: .8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #1e1e26
}

@media (max-width: 767px) {
    .p-topics-detail__article ul li {
        font-size: 1.4rem
    }
}

.p-topics-detail__article ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: .6rem;
    height: .6rem;
    background: #a38f20;
    border-radius: 50%;
    transform: translateY(-50%)
}

@media (max-width: 767px) {
    .p-topics-detail__article ul li:before {
        top: 50%;
        transform: translateY(-50%)
    }
}

.p-topics-detail__article ol {
    margin: 3.2rem 0;
    list-style: none;
    counter-reset: item
}

@media (max-width: 767px) {
    .p-topics-detail__article ol {
        margin: 2.4rem 0
    }
}

.p-topics-detail__article ol li {
    margin-bottom: .8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #1e1e26;
    counter-increment: item
}

@media (max-width: 767px) {
    .p-topics-detail__article ol li {
        font-size: 1.4rem
    }
}

.p-topics-detail__article ol li:before {
    content: counter(item) ".";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #1e1e26
}

@media (max-width: 767px) {
    .p-topics-detail__article ol li:before {
        top: 50%;
        transform: translateY(-50%)
    }
}

.p-topics-detail__article .wp-block-columns {
    gap: 3.2rem
}

@media (max-width: 767px) {
    .p-topics-detail__article .wp-block-columns {
        gap: 0rem
    }
}

.p-topics-detail__article .wp-block-columns figure.wp-block-image {
    max-width: 100%;
    max-height: 100%
}

@media (max-width: 767px) {
    .p-topics-detail__article>.wp-block-columns {
        margin-top: 1.6rem;
        margin-bottom: 6rem
    }

    .p-topics-detail__article .wp-block-columns figure.wp-block-image {
        margin-bottom: 0rem
    }

    .p-topics-detail__article .wp-block-columns figcaption {
        margin-bottom: .8rem
    }
}

.p-topics-detail__article .wp-block-flexible-table-block-table {
    margin: 4.8rem 0
}

.p-topics-detail__article .wp-block-flexible-table-block-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #C9C9D3
}

.p-topics-detail__article .wp-block-flexible-table-block-table th,
.p-topics-detail__article .wp-block-flexible-table-block-table td {
    padding: 1.6rem;
    border: 1px solid #C9C9D3;
    vertical-align: top;
    font-weight: 500;
    line-height: 1.5
}

.p-topics-detail__article .wp-block-flexible-table-block-table th {
    font-size: 1.6rem;
    background-color: #f5f5f8
}

@media (max-width: 767px) {
    .p-topics-detail__article .wp-block-flexible-table-block-table th {
        font-size: 1.4rem
    }
}

.p-topics-detail__article .wp-block-flexible-table-block-table td {
    font-size: 1.4rem
}

@media (max-width: 767px) {
    .p-topics-detail__article .wp-block-flexible-table-block-table td {
        font-size: 1.4rem
    }
}

.p-topics-detail__article blockquote {
    position: relative;
    margin: 4.8rem 0;
    padding: 1.6rem 2rem
}

.p-topics-detail__article blockquote p {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #999
}

.p-topics-detail__article blockquote cite,
.p-topics-detail__article blockquote cite a {
    font-size: 1.2rem;
    color: #999
}

.p-topics-detail__article blockquote p:before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: -2.25rem;
    width: 18px;
    height: 16px;
    background: url(../images/icon_blockquote.svg) no-repeat center/contain;
    z-index: 1
}

.p-topics-detail__article blockquote:before {
    content: "";
    position: absolute;
    left: 4.2rem;
    right: 0;
    top: 0;
    height: .3rem;
    background: #ddd;
    border-radius: 3px
}

.p-topics-detail__article blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: .3rem;
    background: #ddd;
    border-radius: 3px
}

.p-topics-detail__article .wp-block-embed {
    margin: 4.8rem 0;
    max-width: none;
    width: 100%
}

.p-topics-detail__article .wp-block-embed__wrapper {
    width: 100%
}

.p-topics-detail__article iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: none
}

.p-topics-detail__bottom {
    text-align: center
}

.p-topics-detail__btn-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

.p-topics-detail__new-topics {
    width: 24.8rem;
    flex-shrink: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-topics-detail__new-topics {
        width: 100%
    }
}

@media (max-width: 767px) {
    .p-topics-detail__new-topics {
        width: 100%
    }
}

.p-topics-detail-section-ttl {
    letter-spacing: 0px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    margin-left: 3.2rem;
    margin-bottom: 1.2rem
}

@media (max-width: 767px) {
    .p-topics-detail-section-ttl {
        margin-left: 2.8rem;
        font-size: 1.8rem
    }
}

.p-topics-detail__new-topics-inner {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-topics-detail__new-topics-inner {
        flex-direction: column;
        flex-wrap: nowrap
    }
}

.p-topics-detail__no-result {
    width: 100%;
    margin: 4rem 2.4rem
}

.p-topics-detail__no-result p {
    text-align: center;
    letter-spacing: 0px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400
}

.p-topics-detail__new-topics-card {
    position: relative;
    width: 24.8rem;
    height: 9.7rem;
    background-color: #fff;
    overflow: hidden;
    flex-shrink: 0
}

@media (min-width: 768px) and (max-width: 1024px) {
    .p-topics-detail__new-topics-card {
        width: 100%
    }
}

@media (max-width: 767px) {
    .p-topics-detail__new-topics-card {
        width: 100%
    }
}

.p-topics-detail__new-topics-upper {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem
}

.p-topics-detail__new-topics-ttl {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    color: #1e1e26;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word
}

.p-topics-detail__new-topics-card:hover .p-topics-detail__new-topics-ttl {
    color: #281671
}

.p-topics-detail__new-topics-pubdate {
    position: absolute;
    display: inline-flex;
    align-items: center;
    right: 1.2rem;
    bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666
}

@media (max-width: 767px) {
    .p-topics-detail__new-topics-pubdate {
        font-size: 1.3rem;
        line-height: 1.25
    }
}

.p-topics-detail__new-topics-pubdate:before {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    margin-right: .6rem;
    background-image: url(../images/Icon_ionic-md-time.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.p-faq-txt {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-top: 2rem;
    line-height: 1.5
}

@media screen and (max-width: 767px) {
    .p-faq-txt {
        margin-top: 1.6rem;
        font-size: 1.4rem
    }
}

.p-faq-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    white-space: nowrap;
    text-decoration-line: underline;
    text-decoration-thickness: .1rem;
    text-underline-offset: .2rem
}

.p-faq-inline-link:hover {
    opacity: .8
}

.p-faq-inline-link .btn__icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0
}

@media (any-hover: hover) {
    .p-faq-inline-link:hover {
        color: #bed514
    }
}

.p-faq-section-inner {
    margin: 4rem 0 10rem
}

.p-faq-accordion__item {
    border-top: .1rem solid #C9C9D3;
    border-bottom: .1rem solid #C9C9D3;
    background-color: #ffffffe6
}

.p-faq-accordion__item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 3rem;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__head {
        padding: 1.6rem
    }
}

.p-faq-accordion__item__head__inner {
    display: flex;
    align-items: flex-start
}

.p-faq-accordion__item__head__inner__txt {
    line-height: 1.8;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 2rem;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__head__inner__txt {
        line-height: 1.5;
        font-size: 1.6rem
    }
}

.p-faq-accordion__item__head__arrow {
    width: 5.6rem;
    height: 5.6rem;
    position: relative
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__head__arrow {
        width: 4.8rem;
        height: 4.8rem
    }
}

.p-faq-accordion__item__head__arrow span {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    border-bottom: 3px solid #3F3177;
    border-right: 3px solid #3F3177;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform .5s
}

.p-faq-accordion__item__head.is-active .p-faq-accordion__item__head__arrow span {
    transform: translate(-50%, -50%) rotate(-135deg)
}

.p-faq-accordion__item__body {
    display: none;
    position: relative;
    padding: 1.6rem 3rem;
    border-top: none
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__body {
        padding: 1.6rem
    }
}

.p-faq-accordion__item__body:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    display: inline-block;
    width: calc(100% - 6rem);
    height: .1rem;
    background-color: #c9c9d3
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__body:before {
        width: calc(100% - 3.2rem)
    }
}

.p-faq-accordion__item__body__inner {
    display: flex;
    width: 100%;
    max-width: 114rem;
    align-items: flex-start
}

.p-faq-accordion__item__body__inner__txt {
    line-height: 1.5;
    margin-top: auto;
    margin-bottom: auto
}

@media screen and (max-width: 767px) {
    .p-faq-accordion__item__body__inner__txt {
        font-size: 1.4rem
    }
}

.p-faq-accordion__item+.p-faq-accordion__item {
    margin-top: 2rem
}

.p-faq-icon-faq {
    position: relative;
    width: 5.6rem;
    height: 5.6rem;
    margin-right: 2rem;
    flex-shrink: 0;
    font-family: Mulish, sans-serif
}

@media screen and (max-width: 767px) {
    .p-faq-icon-faq {
        width: 4rem;
        height: 4rem;
        margin-right: 1.2rem
    }
}

.p-faq-icon-faq:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Mulish, sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1
}

@media screen and (max-width: 767px) {
    .p-faq-icon-faq:before {
        font-size: 2.4rem
    }
}

.p-faq-icon-faq--q {
    background-color: #3f3178
}

.p-faq-icon-faq--q:before {
    content: "Q";
    color: #fff
}

.p-faq-icon-faq--a {
    background-color: #e2def5
}

.p-faq-icon-faq--a:before {
    content: "A";
    color: #3f3178
}

.p-contact__wrap {
    padding-top: 4rem;
    padding-bottom: 10rem
}

.p-contact__form-wrap {
    position: relative;
    height: calc(100vh - 24.6rem);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    background: #ecebf1
}

.p-contact__form {
    width: 100%
}

.p-contact__bottom {
    position: absolute;
    bottom: 14rem;
    width: 100%;
    z-index: 10
}

.p-contact__btn-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

.p-contact__btn-group .btn--middium {
    width: 100%;
    height: 4.8rem;
    max-width: 24.5rem
}

.p-contact__btn-group .btn--middium .btn__text {
    font-size: 1.8rem;
    width: 100%;
    max-width: 16.5rem
}

.p-contact__btn-group .btn--white {
    background-color: #fff;
    color: #1e1e26;
    border: .1rem solid #1e1e26
}

.p-contact__btn-group .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
    gap: .7rem
}

.p-contact__btn-group .btn__text {
    text-align: center
}

.p-error-section {
    position: relative;
    min-height: 100vh;
    text-align: center;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji"
}

.p-error-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-top: 24vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10rem
}

.p-error-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem
}

.p-error-icon {
    max-width: 15.3rem;
    width: 100%
}

.p-error-code {
    font-size: 10rem;
    font-weight: 700;
    font-family: Mulish
}

.p-error-title {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: Mulish
}

.p-error-item {
    margin-top: 4rem
}

.p-error-message-main {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1
}

.p-error-message-sub {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 3rem
}

.p-error-btn-wrap {
    margin: 0 auto;
    text-align: center
}

.p-error-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem
}

.footer__bottom.p-error-footer-wrap {
    display: block;
    text-align: end
}

@media screen and (max-width: 767px) {
    .p-error-body {
        margin-top: 20vh
    }

    .p-error-box {
        display: block;
        gap: 1.4rem
    }

    .p-error-code {
        font-size: 6.4rem
    }

    .p-error-title {
        font-size: 2rem
    }

    .p-error-item {
        margin-top: 3rem
    }

    .p-error-message-main {
        font-size: 2rem;
        line-height: 1.5
    }

    .p-error-message-sub {
        font-size: 1.4rem;
        line-height: 1.5;
        margin-top: 2rem
    }

    .footer__bottom.p-error-footer-wrap {
        text-align: center;
        padding: 2rem
    }
}

.p-maintenance-section {
    position: relative;
    min-height: 100vh;
    text-align: center;
    font-family: Noto Sans JP, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji"
}

.p-maintenance-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-top: 24vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10rem
}

.p-maintenance-icon {
    max-width: 15.3rem;
    width: 100%
}

.p-maintenance-item {
    margin-top: 4rem
}

.p-maintenance-message-main {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5.6rem
}

.p-maintenance-message-sub {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 3rem
}

@media screen and (max-width: 767px) {
    .p-maintenance-body {
        top: 20vh;
        width: calc(100% - 80px)
    }

    .p-maintenance-box {
        display: block;
        gap: 1.4rem
    }

    .p-maintenance-code {
        font-size: 6.4rem
    }

    .p-maintenance-title {
        font-size: 2rem
    }

    .p-maintenance-item {
        margin-top: 3rem
    }

    .p-maintenance-message-main {
        font-size: 2rem;
        line-height: 1.5
    }

    .p-maintenance-message-sub {
        font-size: 1.4rem;
        line-height: 1.5
    }
}

.u-hide {
    display: none !important
}

@media (max-width: 767px) {
    .u-hide--sp {
        display: none !important
    }
}

@media (min-width: 768px) {
    .u-hide--pc {
        display: none !important
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-vertical>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    inset: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}