/* page */

/* =============================== */
/* =============================== */
/* 全ての数値px を rem/10にて指定 */

@media screen and (min-width: 1222px) {
    /* 1.0remの時、画面幅1221px幅まで10px固定 */
}

@media screen and (max-width: 1221px) and (min-width: 768px) {
    /* 1.0remの時、画面幅1221px幅時に10pxになり、768pxまでvw縮小 */
}

@media screen and (max-width: 767px) {
    /* 1.0remの時、画面幅767px幅から375pxになる時に10pxになる */
}

/* =============================== */
/* =============================== */

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2.0rem;
}

h3 {
    font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.0rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.6rem;
    }
}

/* デフォルト下層ページのMV */
.page_mv {
    padding: 5.0rem 0;
    background: #eee;
}

.page__title {
    font-size: 2.6rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .page_mv {
        padding: 4.5rem 0;
    }

    .page__title {
        font-size: 2.1rem;
    }
}

hr.section-line {
    border-top: 1px dashed #122C89;
    margin-top: 6.0rem;
    margin-bottom: 6.0rem;
}

@media screen and (max-width: 767px) {
    hr.section-line {
        margin-top: 3.0rem;
        margin-bottom: 3.0rem;
    }
}

/* セミナー一覧 */
.seminar-hero {
    width: 100%;
    height: 40.0rem;
    background: url(../images/seminar/seminar-mv.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 0.5rem solid #122C89;
}

.seminar-hero__lead {
    font-size: 2.2rem;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    color: #122C89;
}

.seminar-hero__title {
    font-size: 5.4rem;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5rem;
    color: #122C89;
}

.seminar-hero__text {
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
    .seminar-hero {
        height: 15rem;
    }

    .seminar-hero__lead {
        font-size: 1.0rem;
        margin-bottom: 0.8rem;
    }

    .seminar-hero__title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .seminar-hero__text {
        font-size: 1.0rem;
    }
}

.seminar-category__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.0rem;
    margin-top: 1.0rem;
}

.seminar-category__chip {
    transition: 0.2s all;
    text-align: center;
    padding: 0.5rem 2.0rem;
    background: #fff;
    border-radius: 5.0rem;
    border: 0.1rem solid #B5B5B5;
    font-size: 1.3rem;
    cursor: pointer;
}

.seminar-category__chip:hover {
    background: #122C89;
    border: 0.1rem solid #122C89;
    color: #fff;
}

.seminar-category__chip.is-active {
    background: #122C89;
    border: 0.1rem solid #122C89;
    color: #fff;
    pointer-events: none;
}

.seminar-list__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4.0rem 2.1rem;
}

.seminar-card {
    width: calc(33.33% - 1.4rem);
    background: #F9F9F9;
    border-bottom: 0.1rem solid #122C89;
    border-left: 0.1rem solid #E6E9F3;
    border-right: 0.1rem solid #E6E9F3;
    border-top: 0.1rem solid #E6E9F3;
    position: relative;
    padding-bottom: 4.5rem;
}

.seminar-card__link {
    display: block;
    width: 100%;
    height: 100%;
}

.seminar-card__thumb {
    width: 100%;
    height: 19.0rem;
}

.seminar-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seminar-card__body {
    padding: 1.0rem 2.0rem;
}

.seminar-card__cat {
    padding: 0.7rem 1.5rem;
    line-height: 1.0;
    font-size: 1.4rem;
    width: fit-content;
    white-space: nowrap;
    color: #fff;
    background: #122C89;
    margin-bottom: 1.0rem;
    border-radius: 5.0rem;
}

.seminar-card__title {
    font-size: 1.8rem;
    color: #122C89;
    line-height: 1.3;
    margin-bottom: 1.0rem;
}

.seminar-card__meta {
    margin-bottom: 1.0rem;
}

.seminar-card__meta-row {
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.seminar-card__meta-row:first-child {
    margin-top: 0;
}

dl.seminar-card__meta-row {
    display: flex;
}

dl.seminar-card__meta-row dt {
    white-space: nowrap;
}

.seminar-card__cta {
    display: block;
    width: 100%;
    padding: 1.4rem 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.6rem;
    line-height: 1.0;
    border-top: 0.1rem solid #E6E9F3;
}

.seminar-card__cta-img {
    width: 4.4rem;
    height: 100%;
    background: #122C89;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.seminar-card__cta-img img {
    width: 2.65rem;
    height: 0.65rem;
}

/* ===== Pager ===== */
.seminar-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 6.0rem;
}

.seminar-pager__item {
    display: inline-flex;
    width: 3.4rem;
    height: 3.4rem;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid #122C89;
    background: #fff;
    font-size: 2.0rem;
    color: #2a3850;
}

.seminar-pager__item.seminar-pager__dots {
    border: 0;
}

.seminar-pager__next,
.seminar-pager__prev {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.4rem;
}

.seminar-pager__next img,
.seminar-pager__prev img {
    width: 100%;
    height: auto;
}

.seminar-pager__prev img {
    transform: rotate(-180deg) translatey(-0.1rem);
}

.seminar-pager__item.is-current {
    background: #122C89;
    border-color: #122C89;
    color: #fff;
}

.seminar-pager__dots {
    color: #122C89;
}

@media screen and (max-width:767px) {
    .seminar-category__wrap {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }

    .seminar-category__chip {
        padding: 0.5rem 1.5rem;
        font-size: 1.1rem;
    }

    .seminar-list__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 3.0rem 1.0rem;
    }

    .seminar-card {
        width: calc(50% - 0.5rem);
        padding-bottom: 4.5rem;
    }

    .seminar-card__thumb {
        height: 12.0rem;
    }

    .seminar-card__body {
        padding: 1.0rem 1.5rem;
    }

    .seminar-card__cat {
        padding: 0.7rem 1.5rem;
        font-size: 1.0rem;
    }

    .seminar-card__title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .seminar-card__meta {
        margin-bottom: 1.0rem;
    }

    .seminar-card__meta-row {
        margin-top: 0.5rem;
        font-size: 1.0rem;
    }

    .seminar-card__text {
        font-size: 1.0rem;
    }

    .seminar-card__cta {
        padding: 1.0rem 0;
        font-size: 1.2rem;
    }

    .seminar-card__cta-img {
        width: 3.4rem;
    }

    .seminar-card__cta-img img {
        width: 2.0rem;
        height: auto
    }

    .seminar-pager {
        margin-top: 4.0rem;
    }

    .seminar-pager__item {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.4rem;
    }

    .seminar-pager__next,
    .seminar-pager__prev {
        width: 2.6rem;
        height: 2.4rem;
    }

}


.speaker__card {
    display: flex;
    align-items: center;
    gap: 5.0rem;
}

.speaker__photo {
    width: 28.4rem;
}

.speaker__content {
    width: calc(100% - 33.4rem);
}

.speaker__name {
    font-size: 2.5rem;
    line-height: 1.0;
    margin-bottom: 1.0rem;
    color: #122C89;
}

.speaker__role {
    font-size: 1.6rem;
    line-height: 1.0;
    margin-bottom: 3.0rem;
    color: #122C89;
}

.speaker__text {
    font-size: 1.6rem;
    line-height: 2.0;
}

@media screen and (max-width:767px) {
    .speaker__card {
        flex-direction: column;
        gap: 2.0rem;
    }

    .speaker__photo {
        width: 100%;
    }

    .speaker__content {
        width: 100%;
    }

    .speaker__name {
        font-size: 1.8rem;
    }

    .speaker__role {
        font-size: 1.3rem;
        margin-bottom: 2.0rem;
    }

    .speaker__text {
        font-size: 1.4rem;
        line-height: 1.8;
    }
}

/* ===== Flow ===== */
.seminar-flow {
    background: #E6E9F3;
}

.flow__item {
    display: flex;
    align-items: flex-start;
}

.flow__item+.flow__item {
    margin-top: 4.0rem;
}

.flow__badge {
    padding: 1.3rem 2.0rem;
    background: #122C89;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 0.2rem solid #122C89;
}

.flow__body {
    width: 100%;
}

.flow__title {
    font-size: 2.0rem;
    font-weight: 700;
    padding: 1.0rem 0 1.0rem 4.0rem;
    border-bottom: 0.2rem dashed #122C89;
    color: #122C89;
}

.flow__text {
    font-size: 1.6rem;
    padding: 1.0rem 0 1.0rem 4.0rem;
}

@media screen and (max-width:767px) {
    .flow__item {
        flex-direction: column;
        align-items: center;
    }

    .flow__item+.flow__item {
        margin-top: 3.0rem;
    }

    .flow__badge {
        padding: 0.8rem 1.8rem;
        font-size: 1.4rem;
    }

    .flow__title {
        font-size: 1.6rem;
        font-weight: 700;
        padding: 1.0rem 0;
        text-align: center;
    }

    .flow__text {
        font-size: 1.4rem;
        padding: 1.0rem 0;
        text-align: center;
    }
}

.faq__item+.faq__item {
    margin-top: 0.4rem;
}

.faq__q {
    background: #E6E9F3;
    padding: 3.0rem 5.0rem 3.0rem 3.0rem;
    position: relative;
    cursor: pointer;
}

.faq__q .faq__icon {
    width: 1.5rem;
    height: 1.3rem;
    background: #122C89;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translatey(-50%);
}

.faq__q.open .faq__icon {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.faq__q>p {
    font-size: 2.0rem;
    color: #122C89;
}

.faq__a {
    padding: 3.0rem;
}

.faq__a>p {
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
    .faq__item+.faq__item {
        margin-top: 0.4rem;
    }

    .faq__q {
        padding: 2.0rem 4.0rem 2.0rem 2.0rem;
    }

    .faq__q .faq__icon {
        right: 2.0rem;
    }

    .faq__q>p {
        font-size: 1.6rem;
    }

    .faq__a {
        padding: 2.0rem;
    }

    .faq__a>p {
        font-size: 1.4rem;
    }
}

.cta-banner {
    width: 100%;
    height: 55rem;
    background: url(../images/seminar/seminar-cv-bg.jpg) no-repeat center center/cover;
    padding-bottom: 8.0rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cta-banner__copy {
    margin-bottom: 6.0rem;
}

.cta-banner__lead {
    color: #fff;
    font-size: 3.0rem;
    font-weight: 700;
    text-align: center;
}

.cta-banner__button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 2.0rem;
    font-weight: 700;
    color: #122C89;
    text-align: center;
    padding: 2.0rem 9.0rem;
    background: #fff;
    border-radius: 5.0rem;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
    position: relative;
    transform:scale(1.0);
}

.cta-banner__button .cta-banner__arrow {
    content: "";
    background: url(../images/common/blue-right-arrow.png) no-repeat center center/cover;
    width: 5.0rem;
    height: 0.9rem;
    position: absolute;
    top: 45%;
    right: 2.0rem;
    z-index: 1;
    transition: 0.2s all;
}

.cta-banner__button:hover {
    opacity: 1.0;
    transform:scale(1.05);
    /* color: #fff;
    background: #122C89; */
}

/* .cta-banner__button:hover .cta-banner__arrow {
    background: url(../images/common/wht-right-arrow.png) no-repeat center center/cover;
} */

@media screen and (max-width:767px) {
    .cta-banner {
        height: 30rem;
        padding-bottom: 3.0rem;
    }

    .cta-banner__copy {
        margin-bottom: 3.0rem;
    }

    .cta-banner__lead {
        font-size: 1.6rem;
    }

    .cta-banner__button {
        font-size: 1.4rem;
        padding: 1.4rem 5.0rem;
    }

    .cta-banner__button .cta-banner__arrow {
        width: 3.0rem;
        height: 0.6rem;
        top: 45%;
        right: 1.2rem;
    }
}

.policy {
    background: #F3F5FB;
}

.policy__title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.policy__item {
    padding-left: 1.6rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.policy__item::before {
    content: "・";
    font-size: 1.6rem;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:767px) {
    .policy__title {
        font-size: 1.6rem;
        margin-bottom: 1.0rem;
    }

    .policy__item {
        padding-left: 1.3rem;
        margin-bottom: 0.4rem;
        font-size: 1.3rem;
    }

    .policy__item::before {
        font-size: 1.3rem;
    }
}

/* セミナー詳細 */
.seminar-single-hero {
    background: #E6E9F3;
    padding: 8.0rem calc(8.0rem - 5%);
}

.seminar-single-hero__bg {
    width: 100%;
    height: 57rem;
    margin: auto;
}

.seminar-single-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    .seminar-single-hero {
        padding: 3.0rem 0;
    }

    .seminar-single-hero__bg {
        width: 100%;
        height: 24rem;
    }
}

.seminar-intro__date-label {
    margin-bottom: 2.0rem;
    line-height: 1.0;
}

.seminar-intro__date-date {
    font-size: 1.8rem;
    vertical-align: middle;
    display: inline;
}

.seminar-intro__date-cat {
    font-size: 1.4rem;
    vertical-align: middle;
    display: inline;
    padding: 0.1rem 1.0rem 0.2rem;
    background: #122C89;
    border-radius: 4.0rem;
    color: #ffff
}

.seminar-intro__title {
    font-size: 3.0rem;
    color: #122C89;
    line-height: 1.4;
    margin-bottom: 2.0rem;
}

.seminar-intro__text {
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
    .seminar-intro__date-label {
        margin-bottom: 1.5rem;
    }

    .seminar-intro__date-date {
        font-size: 1.4rem;
    }

    .seminar-intro__date-cat {
        font-size: 1.1rem;
    }

    .seminar-intro__title {
        font-size: 2.0rem;
        margin-bottom: 1.5rem;
    }

    .seminar-intro__text {
        font-size: 1.4rem;
    }
}

.seminar__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.0rem;
    margin-top: 6.0rem;
}

.btn {
    display: inline-flex;
    width: 37.5rem;
    align-items: center;
    justify-content: center;
    padding: 2.0rem 0;
    border-radius: 999px;
    /* きれいなカプセル形状 */
    font-weight: 700;
    font-size: 2.0rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* 光沢のはみ出し防止 */
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
    transition: 0.2s all;
}

/* 青ボタン */
.btn--primary {
    color: #fff;
    background: #122C89;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.35);
    border: 0.1rem solid #122C89;
    transition: 0.2s all;
    transform: scale(1.0);
}

.btn--primary::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0.5rem 0 52% 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.btn--primary::after {
    content: "";
    background: url(../images/common/wht-right-arrow.png) no-repeat center center/cover;
    width: 4.0rem;
    height: 0.98rem;
    position: absolute;
    top: 50%;
    right: 2.0rem;
    transform: translatey(-50%);
    z-index: 1;
    transition: 0.2s all;
}

.btn--primary:hover {
    opacity: 1.0;
    transform:scale(1.05);
    /* color: #122C89;
    background: #fff; */
}

/* .btn--primary:hover::after {
    background: url(../images/common/blue-right-arrow.png) no-repeat center center/cover;
} */

/* 白ボタン */
.btn--outline {
    color: #122C89;
    background: #fff;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.35);
    border: 0.1rem solid #122C89;
    transition: 0.2s all;
    transform:scale(1.0);
}

.btn--outline::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0.5rem 0 52% 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.btn--outline::after {
    content: "";
    background: url(../images/common/blue-right-arrow.png) no-repeat center center/cover;
    width: 4.2rem;
    height: 0.98rem;
    position: absolute;
    top: 50%;
    right: 2.0rem;
    transform: translatey(-50%);
    z-index: 1;
    transition: 0.2s all;
}

.btn--outline:hover {
    opacity: 1.0;
    transform:scale(1.05);
    /* color: #fff;
    background: #122C89; */
}

/* .btn--outline:hover::after {
    background: url(../images/common/wht-right-arrow.png) no-repeat center center/cover;
} */

@media screen and (max-width:767px) {
    .seminar__cta {
        flex-direction: column;
        justify-content: center;
        margin-top: 4.0rem;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 1.5rem 0;
        font-size: 1.6rem;
    }
}

.seminar-nav {
    padding-top:10rem;
    padding-bottom:3.0rem;
}
.seminar-nav__list {
    display: flex;
    gap: 4.0rem;
    justify-content: space-between;
}

.seminar-nav__item {
    width: 25%;
    position: relative;
    transition: 0.2s all;
}

.seminar-nav__item::after {
    content: "";
    background: #122C89;
    width: 3.0rem;
    height: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translatex(-50%) translatey(0);
    transition: 0.2s all;
}

.seminar-nav__item:hover::after {
    transform: translatex(-50%) translatey(0.5rem);
}

.seminar-nav__link {
    width: 100%;
    height: 5.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #122C89;
    color: #fff;
    border-radius: 5.0rem;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.35);
}

.seminar-nav__icon {
    margin-right: 1.5rem;
}

.seminar-nav__icon--outline {
    width: 2.6rem;
    height: auto;
}

.seminar-nav__icon--program {
    width: 3.7rem;
    height: auto;
}

.seminar-nav__icon--speaker {
    width: 4.4rem;
    height: auto;
}

.seminar-nav__icon--access {
    width: 2.8rem;
    height: auto;
}

.seminar-nav__label {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seminar-nav__label span {
    display: inline;
    line-height: 1.0;
}

.seminar-nav__label-ja {
    font-size: 2.0rem;
    margin-bottom: 0.3rem;
}

.seminar-nav__label-en {
    font-size: 1.2rem;
}

@media screen and (max-width:767px) {
    .seminar-nav {
        padding-top:7rem;
        padding-bottom:4.0rem;
    }
    .seminar-nav__list {
        flex-wrap: wrap;
        gap: 4.0rem 1.0rem;
    }

    .seminar-nav__item {
        width: calc(50% - 0.5rem);
    }

    .seminar-nav__item::after {
        bottom: -2.2rem;
    }

    .seminar-nav__link {
        height: 5.2rem;
    }

    .seminar-nav__icon {
        margin-right: 1.2rem;
    }

    .seminar-nav__icon--outline {
        width: 2.0rem;
    }

    .seminar-nav__icon--program {
        width: 3.2rem;
    }

    .seminar-nav__icon--speaker {
        width: 3.7rem;
    }

    .seminar-nav__icon--access {
        width: 2.2rem;
    }

    .seminar-nav__label-ja {
        font-size: 1.6rem;
    }

    .seminar-nav__label-en {
        font-size: 1.0rem;
    }
}


.seminar-outline__table tr th,
.seminar-outline__table tr td {
    border: 0.1rem solid #E8E8E8;
}

.seminar-outline__table tr th {
    background: #F2F2F2;
    padding: 3.0rem;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 2.0rem;
}

.seminar-outline__table tr td {
    padding: 3.0rem 2.0rem;
    background: #fff;
    vertical-align: middle;
    font-size: 1.6rem;
}

.seminar-outline__table tr td .url-link {
    /* overflow-wrap: anywhere; */
    word-break: break-all;
    color: #1a99f1;
    text-decoration: underline;
}

@media screen and (max-width:767px) {

    .seminar-outline__table tr th,
    .seminar-outline__table tr td {
        display: block;
    }

    .seminar-outline__table tr th {
        padding: 2.0rem;
        font-size: 1.6rem;
    }

    .seminar-outline__table tr td {
        padding: 2.0rem 1.5rem;
        font-size: 1.4rem;
    }
}

.seminar-program__item+.seminar-program__item {
    margin-top: 6.0rem;
}

.seminar-program__header {
    display: flex;
    margin-bottom: 2.5rem;
}

.seminar-program__time {
    padding: 4.0rem 6.0rem;
    color: #fff;
    background: #122C89;
    text-align: center;
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 3.0rem;
}

.seminar-program__name {
    padding: 4.0rem 2.0rem;
    background: #E6E9F3;
    font-weight: 700;
    flex-grow: 1;
    font-size: 1.6rem;
    line-height: 3.0rem;
}

.seminar-program__body {
    display: block;
}

.seminar-program__body.seminar-program__item--with-media {
    display: flex;
    gap: 5.0rem;
}
.seminar-program__text{
    font-size:1.6rem;
}
.seminar-program__body.seminar-program__item--with-media .seminar-program__text {
    width: 50%;
}

.seminar-program__body.seminar-program__item--with-media .seminar-program__media {
    width: 50%;
}

.seminar-program__body.seminar-program__item--with-media .seminar-program__media img {
    width: 100%;
}

@media screen and (max-width:767px) {
    .seminar-program__item+.seminar-program__item {
        margin-top: 4.0rem;
    }

    .seminar-program__header {
        margin-bottom: 2.0rem;
    }

    .seminar-program__time {
        padding: 2.0rem 1.0rem;
        font-size: 1.5rem;
        line-height: 2.0rem;
        white-space: nowrap;
    }

    .seminar-program__name {
        padding: 2.0rem 1.0rem;
        font-size: 1.4rem;
        line-height: 2.0rem;
    }

    .seminar-program__body.seminar-program__item--with-media {
        flex-direction: column;
        gap: 2.0rem;
    }
    .seminar-program__text{
        font-size:1.4rem;
    }
    .seminar-program__body.seminar-program__item--with-media .seminar-program__text {
        width: 100%;
    }

    .seminar-program__body.seminar-program__item--with-media .seminar-program__media {
        width: 100%;
    }
}

.assistant__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4.0rem;
}

.assistant__item {
    width: calc(25% - 3.0rem);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.0rem;
}

.assistant__icon {
    width: 3.2rem;
    height: 3.75rem;
}

.assistant__name {
    font-size: 2.0rem;
    font-weight: 600;
}

@media screen and (max-width:767px) {
    .assistant__list {
        gap: 1.5rem 1.0rem;
    }

    .assistant__item {
        width: calc(50% - 0.5rem);
    }

    .assistant__icon {
        width: 2.2rem;
        height: auto;
    }

    .assistant__name {
        font-size: 1.4rem;
    }
}

.seminar-access__grid {
    display: flex;
    gap: 4.0rem;
}

.seminar-access__info {
    width: 59%;
}

.seminar-access__map {
    width: calc(41% - 4.0rem);
}

.seminar-access__map iframe {
    width: 100%;
    height: 32.0rem;
}

.seminar-access__name {
    font-size: 2.0rem;
    color: #122C89;
    margin-bottom: 2.0rem;
}

.seminar-access__item+.seminar-access__item {
    margin-top: 1.5rem;
}

.seminar-access__htext {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.seminar-access__htext span {
    color: #122C89;
}

.seminar-access__text {
    display: block;
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
    .seminar-access__grid {
        flex-direction: column;
        gap: 2.0rem;
    }

    .seminar-access__info {
        width: 100%;
    }

    .seminar-access__map {
        width: 100%;
    }

    .seminar-access__map iframe {
        width: 100%;
        height: 20.0rem;
    }

    .seminar-access__name {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .seminar-access__item+.seminar-access__item {
        margin-top: 1.0rem;
    }

    .seminar-access__htext {
        font-size: 1.4rem;
    }

    .seminar-access__text {
        font-size: 1.4rem;
    }
}