.ctrl_wrapper {
    display: none;
}
#seminar_cms_area {
    margin: 0;
}

i, span {
    font: inherit;
}
.flex {
    display:flex;
    -webkit-display:flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    align-items: center;
    -webkit-align-items: center;
}
.smpbr {
    display: none;
}
.pcbr {
    display: inline;
}
:root {
    --page-color: #00698d;
    --site-color-rd: #d80183;
    --site-color-bl: #0196de;
    --link-color: #0196de;
}


#container {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.7;
    font-weight: 400;
    background-color: #170035;
    color: rgba(255 255 255 / 0.9);
}

#top-notice {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd), var(--site-color-bl));
    background-size: 300% 100%;
    animation: 20s linear 0s infinite normal forwards running gradation;
}
@keyframes gradation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}
#top-notice a {
    line-height: 1;
}
@media (hover: hover) {
    #top-notice a:hover {
        filter: opacity(0.8);
    }
}

#main {
    min-height: 400px;
    background: url("../img/main_title_bg.jpg") no-repeat center;
    background-size: cover;
}
#main.over {
    min-height: 360px;
}
.main-inner {
    width: min(90%, 1100px);
    margin: 0 auto;
}
.main-title {
    position: relative;
    text-align: center;
}
/* .main-title::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/main_title_shadow.png") no-repeat center;
    mix-blend-mode: multiply;
} */
.main-title img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}
.main-status {
    margin-top: -25px;
    text-align: center;
}

#report {
    display: block;
    margin-top: -50px;
}
#report .content-wrap {
    width: 100%;
    padding: 0 0 100px 0;
}
.report-head {
    width: min(90%, 1100px);
    margin: 0 auto;
    padding: 35px;
    text-align: center;
    border: 3px solid;
    border-image: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd)) 1;
}
.report-head span {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    background: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.post-container {
    position: relative;
    z-index: 2;
}
.post-wrap {
    position: relative;
    width: 100%;
    margin-top: 75px;
}
.post-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    /*flex-direction: row-reverse;*/
    gap: 0 20px;
    width: 100%;
    padding-left: calc((100% - 1100px) / 2);
    padding-right: calc((100% - 1100px) / 2);
    padding-bottom: 40px;
    overflow-x: scroll;
}
.post-inner::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.post-inner::-webkit-scrollbar-track {
    background-color: rgba(255 255 255 / 0.1);
    margin-left: calc((100vw - 1120px) / 2);
    margin-right: calc((100vw - 1120px) / 2);
}
.post-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd));
    border-radius: 4px;
}
.post-box {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 20px;
    min-width: 450px;
    max-width: 450px;
    padding: 45px 35px 45px 25px;
    /* background-color: rgba(255 255 255 / 0.125); */
    background-color: rgba(0 0 0 / 0.3);
    border-radius: 10px;
    opacity: 0;
    transform: translateX(50%);
    transition: all 0.3s 0s ease;
}
.post-box.show {
    opacity: 1;
    transform: translateX(0);
}
.post-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}
.post-icon img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    /*box-shadow: 0 0 0 1px rgba(255 255 255 / 0.15);*/
}
.post-content {
    flex: 1;
    padding-top: 5px;
}
.post-title {
    display: none;
}
.post-name-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 15px;
}
.post-name {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.post-date {
    font-size: 12px;
    opacity: 0.3;
}
.post-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    /*overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;*/
}
.post-text.open {
    -webkit-line-clamp: none;
}
.post-link {
    font-size: inherit;
    font-weight: bold;
}
@media (hover: hover) {
    .post-link:hover {
        filter: opacity(0.8);
    }
}
.post-img {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 5px;
}
.post-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: all 0.15s 0s ease;
}
@media (hover: hover) {
    .post-img:hover img {
        transform: scale(1.1);
    }
}
.post-new {
    position: absolute;
    top: 0;
    left: 0;
}

#photo {
    position: relative;
    margin-top: 75px;
    z-index: 1;
}
#photo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd), var(--site-color-bl));
    background-size: 200% 100%;
    animation: 24s linear 0s infinite normal forwards running gradation2;
    filter: opacity(0.8) blur(400px);
    z-index: -1;
}
@keyframes gradation2 {
    0% {
        background-position: 0% top;
    }
    100% {
        background-position: 200% top;
    }
}
.photo-head {
    width: min(90%, 1100px);
    margin: 0 auto 45px auto;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.photo-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: min(90%, 1100px);
    margin: 0 auto;
}
.photo-list li {
    width: calc((100% - 30px) / 3);
    cursor: pointer;
}
.photo-list li img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.15s 0s ease;
    border-radius: 2px;
}
@media (hover: hover) {
    .photo-list li:hover img {
        transform: scale(1.2);
        border-radius: 10px;
    }
}

.bottom-link {
    position: relative;
    margin-top: 75px;
    text-align: center;
    z-index: 1;
}
.bottom-link a {
    font-size: 16px;
    font-weight: bold;
    color: var(--link-color);
}
@media (hover: hover) {
    .bottom-link a:hover {
        opacity: 0.8;
    }
}

#digest,
#interview,
#session {
    width: min(90%, 1100px);
    margin-inline: auto;
    margin-top: 75px;
}
#digest iframe,
#interview iframe,
#session iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(50 50 50 / 1.0);
}
.session-box-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.session-box {
    width: calc((100% - 40px) / 2);
}
.comingsoon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(255 255 255 / 0.125);
    color: rgba(255 255 255 / 0.6);
    font-size: 16px;
}
.item-head {
    margin-bottom: 45px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: rgba(255 255 255 / 0.5);
}

#survey {
    position: relative;
    width: min(90%, 1100px);
    margin-inline: auto;
    margin-top: 75px;
    border: 2px solid;
    border-image: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd)) 1;
}
#survey::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: 0;
    left: 0;
    background: url("../img/survey_ribbon.png") no-repeat center;
    z-index: 2;
}
#survey::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd));
    filter: blur(200px) opacity(0.5);
    z-index: 0;
}
.survey-inner {
    position: relative;
    padding: 75px;
    background-color: #000;
    z-index: 1;
}
.survey-head {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.survey-text {
    font-size: 16px;
    text-align: center;
}
.survey-text strong {
    font-weight: bold;
    color: var(--site-color-bl);
}
.survey-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin: 60px 0;
}
.survey-child {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    background-color: rgba(255 255 255 / 0.1);
    border-radius: 10px;
}
.survey-question {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.survey-img {
}

#backnumber {
    width: min(90%, 1100px);
    margin-inline: auto;
    margin-top: 90px;
    padding-top: 45px;
    border-top: 1px solid rgb(51, 51, 51);
}
.backnumber-head {
    margin-bottom: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.backnumber-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.backnumber-list li {
    width: calc(25% - 30px);
}
.backnumber-img {
    border: 1px solid rgba(255 255 255 / 0.2);
}
.backnumber-img img {
    width: 100%;
    height: auto;
}
.backnumber-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}
@media (hover: hover) {
    .backnumber-list li a:hover {
        opacity: 0.8;
    }
}

.footer_container {
    margin-top: 0 !important;
}

@media (max-width: 1078px) {
    #report {
        margin-top: -100px;
    }
    .report-head span {
        font-size: 18px;
    }
    .report-head span br {
        display: none;
    }
    .post-inner {
        gap: 0 20px;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 40px;
    }
    .post-inner::-webkit-scrollbar-track {
        margin-left: 50px;
        margin-right: 50px;
    }
}
@media (max-width: 768px) {
    #container img {
        width: 100%;
        height: auto;
    }
    #main {
        padding-top: 15px;
        min-height: auto;
    }
    .main-inner {
        width: 100%;
    }
    #main .main-status img {
        width: 50%;
        height: auto;
    }
    #report {
        margin-top: 30px;
    }
    .report-head {
        padding: 25px;
        text-align: left;
        background-color: #000;
    }
    .report-head span {
        font-size: 16px;
    }
    .post-wrap {
        margin-top: 45px;
    }
    .post-inner {
        gap: 0 15px;
        padding-bottom: 30px;
    }
    .post-inner::-webkit-scrollbar-track {
        margin-left: 40px;
        margin-right: 40px;
    }
    .post-box {
        gap: 0 10px;
        min-width: 400px;
        padding: 35px 25px 35px 20px;
        border-radius: 10px;
    }
    .post-new {
        width: 56px;
        height: 56px;
    }
    #photo {
        margin-top: 60px;
    }
    .photo-head {
        margin: 0 auto 30px auto;
        font-size: 20px;
    }
    .photo-list {
        gap: 10px;
    }
    .photo-list li {
        width: calc((100% - 20px) / 3);
    }
}
@media (max-width: 599px) {
    #container {
        font-size: 14px;
        line-height: 1.7;
    }
    #container {
        padding: 0;
    }
    br.smpbr {
        display: inline !important;
    }
    br.pcbr {
        display: none;
    }
    div.page_scroll.cv_btn,
    .practice-info-box,
    div.sp_line {
        display: none;
    }
    
    #report .content-wrap {
        padding: 0 0 45px 0;
    }

    #top-notice {
        padding: 0 15px;
    }

    #main {
        background: url(../img/main_title_bg_s.jpg) no-repeat top center;
        background-size: cover;
    }
    .main-title {
        padding: 10px;
    }
    .main-status {
        margin-top: -10px;
    }
    .report-head {
        padding: 20px;
        border: 2px solid;
        border-image: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd)) 1;
    }
    .report-head span {
        font-size: 14px;
    }
    .post-wrap {
        margin-top: 30px;
    }
    .post-inner {
        gap: 10px;
        overflow-x: scroll;
        overflow-y: auto;
        padding-bottom: 15px;
    }
    .post-inner::-webkit-scrollbar-track {
        margin-left: 5vw;
        margin-right: 5vw;
    }
    .post-box {
        gap: 10px;
        min-width: 75vw;
        padding: 25px 20px;
        border-radius: 10px;
    }
    .post-icon {
        display: none;
        width: 30px;
        height: 30px;
        padding: 4px;
        border-radius: 15px;
    }
    .post-name-box {
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
        padding-left: 55px;
        height: 40px;
    }
    .post-name-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background: url("../img/post_icon.png") no-repeat center;
        background-size: contain;
    }
    .post-name {
        flex-grow: 0;
        flex-shrink: 0;
        font-size: 13px;
        line-height: 1;
    }
    .post-date {
        font-size: 9px;
        line-height: 1;
    }
    .post-text {
        font-size: 12px;
    }
    .post-img {
        margin-top: 20px;
    }
    .post-new {
        width: 40px;
        height: 40px;
    }
    #photo {
        margin-top: 45px;
    }
    .photo-head {
        margin: 0 auto 20px auto;
        font-size: 18px;
    }
    .photo-list li {
        width: calc((100% - 10px) / 2);
    }
    .bottom-link {
        padding: 0 5%;
        margin-top: 45px;
        text-align: center;
    }
    
    #digest,
    #interview,
    #session {
        margin-top: 45px;
    }
    #digest iframe,
    #interview iframe {
        border-radius: 5px;
    }
    
    #survey {
        margin-top: 45px;
        border: 1px solid;
        border-image: linear-gradient(90deg, var(--site-color-bl), var(--site-color-rd)) 1;
    }
    #survey::before {
        width: 70px;
        height: 70px;
        background-size: contain;
    }
    #survey::after {
        display: none;
    }
    .survey-inner {
        padding: 35px 25px 25px 25px;
    }
    .survey-head {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .survey-text {
        font-size: 14px;
        text-align: left;
    }
    .survey-text br {
        display: none;
    }
    .survey-box {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    .survey-child {
        padding: 30px;
        border-radius: 5px;
    }
    .survey-question {
        margin-bottom: 15px;
        font-size: 14px;
        text-align: left;
    }
    .survey-question br {
        display: none;
    }
    .survey-img {
        padding: 0 15px;
    }
    
    .item-head {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .session-box-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .session-box {
        width: 100%;
    }
    .comingsoon {
        height: 100px;
    }

    .backnumber-head {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .backnumber-list {
        gap: 20px;
    }

    .backnumber-list li {
        width: calc((100% - 20px) / 2);
    }

    #backnumber {
        margin-top: 60px;
        padding-top: 30px;
    }

    #main.over {
        margin-bottom: -80px;
    }
}