
#scroll-content {
    scroll-margin-top: 60px;
}

main {
    overflow-x: hidden;
}

/* barnner */
.main-barnner {
    background-image: url(../img/main-banner.webp);
    background-size: cover;
    position: relative;
    padding-top: 50%;
}
.main-barnner .content {
    position: absolute;
    top: 20%;
    width: 100%;
}
.main-barnner h1 {
    color:#fff;
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-family: 'Libre Baskerville', serif;
}
.barnner-text {
    color: #fff;
    font-size: 2rem;
    font-family: 'Hiragino Mincho ProN', serif;
}

/* barnner scroll */
.scroll-wrapper {
    position: absolute;
    bottom: 10%;
    width: 100%;
    animation: fadeIn 1.2s 2.5s forwards;
    opacity: 0;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}
.scroll-container {
    position: relative;
    width: 200px;
    height: 200px;
}
.scroll-wrapper .container-jmj {
    justify-content: end;
    display: flex;
}

.rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin 24s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12%;
    transform: translate(-50%, -50%);
}
.scroll-icon img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 1399px) {
    .main-barnner h1 {
        font-size: 3.8rem;
    }
    .barnner-text {
        font-size: 1.9rem;
    }
    .scroll-container {
        width: 180px;
        height: 180px;
    }
}
@media screen and (max-width: 1199px) {
    .main-barnner h1 {
        font-size: 3.5rem;
    }
    .barnner-text {
        font-size: 1.9rem;
    }
    .scroll-container {
        width: 170px;
        height: 170px;
    }
}
@media (max-width: 1120px) {
    .main-barnner h1 {
        font-size: 3.15rem;
    }
    .barnner-text {
        font-size: 1.85rem;
    }
}
@media (max-width: 1048px) {
    .main-barnner h1 {
        font-size: 3.1rem;
    }
    .barnner-text {
        font-size: 1.82rem;
    }
    .scroll-container {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 767px) {
    .main-barnner {
        background-image: url(../img/main-banner-sp.webp);
        padding-top: 180%;
        /* padding-top: 200%; */
    }
    .main-barnner .content {
        top: 18%;
    }
    .scroll-wrapper {
        bottom: 5%;
        height: auto;
        animation-delay: 2.5s;
    }

    .barnner-text p {
        color: #21368D;
    }
}
@media (max-width: 615px) {
    .main-barnner h1 {
        font-size: 3rem;
    }
    .barnner-text {
        font-size: 1.8rem;
    }       
}
@media (max-width: 480px) {
    .main-barnner h1 {
        font-size: 2.5rem;
    }
    .barnner-text {
        font-size: 1.5rem;
    }
    .scroll-container {
        width: 140px;
        height: 140px;
    }
    .scroll-wrapper .container-jmj {
        padding-right: 20px;
    }     
}
@media (max-width: 455px) {
    .barnner-text p br {
        display: none;
    }
}
@media (max-width: 398px) {
    .scroll-container {
        width: 115px;
        height: 115px;
    }  
    .scroll-icon {
        width: 14%;
    }    
}
@media (max-width: 382px) {
    .main-barnner h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .barnner-text {
        font-size: 1.3rem;
    }
}
@media (max-width: 326px) {
    .main-barnner h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .barnner-text {
        font-size: 1.2rem;
    }
    .scroll-container {
        width: 105px;
        height: 105px;
    }      
}

/* section */
.section-title {
    color: #21368D;
    font-weight: bold;
    font-size: 2.5rem;
    font-family: 'Libre Baskerville', serif;
}
.section-title span {
    font-size: 20px;
    font-weight: normal;
    margin-left: 1rem;
    font-family: 'Hiragino Mincho ProN', serif;
}
.section-title br {
    display: none;
}

/* button */
.view-all-button {
    display: block;
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 15px 4rem;
    border: 1px solid #21368D;
    border-radius: 8px;
    color: #21368D;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    font-family: 'Hiragino Mincho ProN', serif;
}
.view-all-button:hover {
    background: #21368D;
    color: white;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    .section-title span {
        font-size: 16px;
        margin-left: 0;
    }
    .section-title br {
        display: block;
    }
}

/* section01 */
.section01 {
    background-image: url(../img/about-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 0 0 5rem;
    font-family: 'Hiragino Mincho ProN', serif;
}
.section01 .col-md-5 {
    align-content: center;
    padding-right: 1rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.section01 .col-md-7 {
    margin-top: 5rem;
}
.section01 p {
    color: #21368D;
}
.section01 .title {
    font-size: 26px;
}
.section01 img {
    width: 100%;
}

@media (max-width: 767px) {
    .section01 {
        background-image: url(../img/about-bg-sp.webp);
        padding: 5rem 0 5rem;
    }
    .section01 .col-md-5 {
        margin-bottom: 2.75rem;
    }
    .section01 .col-md-7 {
        margin-top: 0;
    }
}
@media (max-width: 490px) {
    .section01 {
        padding: 3rem 0 4rem;
    }
    .section01 .col-md-5 {
        margin-bottom: 2rem;
    }
    .section01 .title {
        font-size: 22px;
    }
    .section01 .text {
        font-size: 15px;
    }
}
@media (max-width: 379px) {
    .section01 .title {
        letter-spacing: -0.5px;
    }
}
@media (max-width: 371px) {
    .section01 {
        padding: 3rem 0;
    }
    .section01 .col-md-5 {
        margin-bottom: 1rem;
    }
    .section01 .title {
        letter-spacing: 0;
    }
    /* .section01 .title {
        font-size: 21px;
    }
    .section01 .text {
        font-size: 14.5px;
    } */
}

/* section02 */
.section02 {
    background-image: url(../img/product-bg.webp);
    background-size: cover;
    background-position: top left;
    padding: 8rem 0;
}

.section02 .section-title {
    color: white;
    margin-bottom: 3rem;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.product-card {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    /* height: 380px; */
    height: 450px;
    padding: 0;
    padding-top: 2rem;
}
.product-card:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.product-image {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.product-image img {
    max-height: 95%;
    max-width: 95%;
    object-fit: contain;
    position: static;
    transition: transform 0.3s ease;
}
.product-title {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 1rem 0 0.5rem;
}
.product-title img {
    width: 65%;
}

.product-details {
    flex-grow: 1;
    padding: 0 1rem;
    /* transition: opacity 0.4s ease; */
    transition: opacity 0.7s ease;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    min-height: 140px;
}
.product-description {
    font-size: 12px;
    color: #333;
    margin: 0.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: start; 
    text-align: center;
}
.product-button {
    display: inline-block;
    margin: 1rem 0 2rem;
    padding: 8px;
    border: 1px solid #132f75;
    border-radius: 8px;
    background-color: #fff;
    color: #132f75;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    align-self: center;
    width: 80%;
    text-align: center;
    font-family: 'Hiragino Mincho ProN', serif;
}
.product-card:hover .product-button {
    background-color: #132f75;
    color: #fff;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* .img-hover-up:hover {
    transform: translateY(-2em) !important;
}
.img-hover-up {
    transition: transform .6s ease;
} */

/* products-accordion */
.products-accordion {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}
.products-accordion-item {
    background: #fff;
}
.products-accordion-header {
    cursor: pointer;
    padding: 15px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
    flex-direction: column;
}
.products-accordion-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.products-accordion-header-title .img-wrapper {
    width: 97%;
    text-align: center;
}
.products-accordion-header-title .icon-wrapper {
    width: 6%;
    margin-right: 5px;
}
.products-accordion-header-title img{
    width: 45%;
}
.products-accordion-header-title .icon {
    width: 20px;
    height: 20px;
    display: block;
}
.products-accordion-header p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin: 1rem 0 0;
    font-weight: normal;
}
.products-accordion-content {
    display: none;
    padding: 0 15px;
    background: #fff;
}
.products-accordion-content hr {
    width: 100%;
    background: #bdbdbd;
    margin: 0 0 1.5rem;
    border: none;
    height: 1px;
}
.products-accordion-content div {
    text-align: center;
    padding: 0 20px;
}
.products-accordion-content img {
    width: 75%;
}
.products-accordion-item.active .products-accordion-content {
    display: block;
    margin-bottom: 2rem;
}

@media (max-width: 1399px) {
    .product-card {
        height: 400px;
    }
}
@media (max-width: 1333px) {
    .product-card {
        height: 440px;
        padding-top: 1.5rem;
    }
    .product-image {
        height: 200px;
    }
}
@media (max-width: 1120px) {
    .product-card {
        height: 395px;
    }
    .product-image {
        height: 160px;
    }
}
@media (max-width: 767px) {
    .section02 {
        padding: 5rem 0 4rem;
    }
    .section02 .section-title {
        margin-bottom: 2rem;
    }
    .section02 .section-title span {
        margin-left: 0;
    }

    .product-button {
        margin: 1.5rem 0 0;
    }
}
@media (max-width: 480px) {
    .products-accordion-header-title .icon {
        width: 18px;
        height: 23px;
    }
    .products-accordion-header-title img {
        width: 42%;
    }
}
@media (max-width: 398px) {
    .products-accordion-header-title .icon {
        min-width: 20px;
        height: 20px;
    }
}
@media (max-width: 360px) {
    .products-accordion-header-title img {
        width: 45%;
    }
}

/* section03 */
.section03 {
    padding: 5rem 0;
}

.section03 .section-title span {
    margin-left: 0;
}

.section03 .section-title br {
    display: block;
    margin-left: 0;
}

.layout-container {
    display: grid;
    grid-template-columns: 20% 65% 15%;
    width: 100%;
    align-items: center;
    background: linear-gradient(to bottom left, #f2f2f2 0%, #ffffff 40.9%, #ffffff 61.7%, #fdfdfd 79.6%, #efefef 100%);
    padding: 5rem 3rem;
}
.title-column {
    padding-right: 2rem;
}

.section03 .section-title span {
    margin-top: 0.5rem;
}

/* Swiper Styles */
.campaign-slider {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}
.campaign-swiper {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}
.campaign-swiper-slide {
    text-align: center;
}
.campaign-swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* Pagination Column */
.pagination-column {
    /* display: flex; */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    gap: 1rem;
}

/* Custom Pagination */
.fraction-pagination {
    background: url('../img/0.png') no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #21368D;
    font-size: 15px;
    font-family: 'Hiragino Mincho ProN', serif;
}
.campaign-swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #21368D;
    padding: 3rem 1rem;
    border-radius: 100px;
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0;
    background: #4561D6;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 1399px)  {
    .layout-container {
        grid-template-columns: 23% 64% 15%;
    }
}
@media (max-width: 1199px) {
    .layout-container {
        grid-template-columns: 28% 59% 15%;
    }
}
@media (max-width: 767px) {
    .section03 {
        padding: 4rem 0;
        background: linear-gradient(to bottom left, #f2f2f2 0%, #ffffff 40.9%, #ffffff 61.7%, #fdfdfd 79.6%, #efefef 100%);
    }

    .title-column {
        text-align: start;
    }

    .layout-container {
        grid-template-columns: 100%;
        gap: 2rem;
        padding: 0;
    }
    .pagination-column {
        padding-left: 0;
        flex-direction: row;
        justify-content: space-between;
    }
    .campaign-swiper-pagination {
        flex-direction: row;
        padding: 0.8rem 1.5rem;
        gap: 0.5rem;
    }

    .fraction-pagination {
        width: 45px;
        height: 45px;
        font-size: 13px;
    }
}
@media (max-width: 490px) {
    .section03 {
        padding: 3rem 0;
    }

    .layout-container {
        gap: 1.5rem;
    }
}

/* section04 */
.section04 {
    padding: 5rem 0;
}

.section04 .section-title {
    margin-bottom: 3rem;
}

.section04 ul {
    list-style: none;
    padding: 0;
    border-top: 1px solid #21368D;
}
.section04 li {
    padding: 15px 7px 15px 15px;
    border-bottom: 1px solid #21368D;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.section04 li:hover {
    background: #efefef;
}
.section04 .news-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.section04 li small {
    font-size: 14px;
    color: #666666;
}

.section04 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section04 .icon-wrapper img {
    width: 20px;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .section04 ul {
        margin: 0 -15px;
    }
}
@media (max-width: 767px) {
    .section04 {
        padding: 5rem 0;
    }

    .section04 .section-title {
        margin-bottom: 2rem;
    }
    .section04 .section-title span {
        margin-left: 0;
    }

    .section04 li {
        font-size: 15px;
        padding: 15px 10px 15px 15px;
    }
    .section04 li small {
        font-size: 12px;
    }

    .section04 .icon-wrapper {
        justify-content: end;
    }
}
@media (max-width: 490px) {
    .section04 {
        padding: 3rem 0 4rem;
    }

    /* .section04 .icon-wrapper img {
        width: 70%;
    } */

    .section04 ul {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media (max-width: 371px) {
    .section04 {
        padding: 3rem 0;
    }
}

/* section05 */
.section05 {
    padding: 5rem 0;
}

.section05 .section-title {
    margin-bottom: 3rem;
}

/* .section05 .table-wrapper {
    margin: 0 -12px;
    width: calc(100% + 24px);
} */
.section05 table {
    width: 100%;
    border-collapse: collapse;
}
.section05 table thead {
    background-color: #fff;
    color: #21368D;
    font-size: 14px;
}
.section05 table th, .section05 table td {
    text-align: left;
    vertical-align: top;
}
.section05 table td div.animate {
    border-bottom: 1px solid #21368D;
}
.section05 table th {
    padding: 12px;
    font-size: 14px;
    text-align: center;
}
.section05 table td {
    font-size: 18px;
    position: relative;
    padding: 0;
}
.section05 table .data {
    color: #21368D;
    font-size: 18px;
    font-weight: bold;
}
.section05 table .data small {
    font-size: 15px;
}
.section05 table .data span {
    font-size: 16px;
}
.section05 .tag {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 18px;
    margin-top: 5px;
    width: 120px;
    text-align: center;
    margin-right: 2rem;
    margin-left: 1rem;
}
.section05 .tag.event {
    background-color: #F0F3FA;
    color: #21368D;
}
.section05 .tag.workshop {
    background-color: #F0F3FA;
    color: #21368D;
}
.section05 .tag.congress {
    background-color: #F8EDE9;
    color: #D56F4B;
}
.section05 .news-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    position: relative;
}
.section05 .news-link::after {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 17%;
    width: 1px;
    background-color: #21368D;
}
.section05 .news-link .date-cell {
    width: 17%;
    padding: 15px;
}
.section05 .news-link .date-cell .br-sp {
    display: none;
}
.section05 .news-link .content-cell {
    width: 83%;
    padding: 15px;
}
.section05 tr {
    transition: background-color 0.3s;
}
.section05 tbody tr:hover {
    background: #efefef;
}
.section05 thead tr {
    border: 1px solid #21368D;
    border-left: 0;
    border-right: 0;
}
.section05 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}
.section05 .icon-wrapper img {
    width: 20px;
    height: auto;
}

.section05 .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.section05 .content-text {
    flex: 1;
}
.section05 .content-text br {
    display: none;
}
.section05 table thead th:first-child {
    width: 17%;
    position: relative;
}
.section05 table thead th:last-child {
    width: 83%;
}
.section05 table thead th:first-child::after {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: 0;
    width: 1px;
    background-color: #21368D;
}

@media (max-width: 767px) {
    .section05 {
        padding: 1rem 0 5rem;
    }

    .section05 .section-title {
        margin-bottom: 2rem;
    }

    .section05 .table-wrapper {
        margin: 0 -12px;
        width: calc(100% + 24px);
    }
    .section05 .icon-wrapper {
        justify-content: end;
    }
    .section05 .news-link .date-cell .br-sp {
        display: block;
    }
    .section05 .content-text br {
        display: block;
    }
    .section05 .news-link::after {
        left: 25%;
    }
    .section05 .news-link .date-cell {
        width: 25%;
        padding: 20px 15px;
    }
    .section05 table thead th:first-child {
        width: 25%;
    }
    .section05 .news-link .content-cell {
        width: 75%;
        padding: 20px 15px;
    }
    .section05 table thead th:last-child {
        width: 75%;
    }
    .section05 table th {
        padding: 10px;
    }
    .section05 table td {
        font-size: 15px;
    }
    .section05 table td .tag {
        font-size: 12px;
        padding: 5px 10px;
        width: 90px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .section05 table .data {
        font-size: 14px;
    }
    .section05 table .data small {
        font-size: 12px;
    }
    .section05 table .data span {
        font-size: 14px;
    }
}
@media (max-width: 490px) {
    .section05 {
        padding: 0 0 4rem;
    }
}
@media (max-width: 371px) {
    .section05 {
        padding: 3rem 0;
    }
}

.section06 {
    background-image: url(../img/webinar-bg.webp);
    background-size: cover;
    background-position: top left;
    padding: 5rem 0;
    margin-top: 2rem;
}

.section06 .section-title {
    margin-bottom: 3rem;
}

/* Webinar Slider Styles */
.webinar-slider-container {
    position: relative;
    margin-left: 0;
    width: calc(100vw - ((100vw - 1600px) / 2));
    overflow: hidden;
}
.webinar-slider {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}
.webinar-swiper {
    overflow: visible;
}
.webinar-swiper-slide {
    width: 480px !important;
    height: auto !important;
    border: 1px solid transparent;
    transition: transform 0.2s;
}
.webinar-swiper-slide:hover {
    border: 1px solid #21368D;
}
.webinar-slide {
    background: linear-gradient(to bottom right,
        #e6eefa 0%,
        #f0f5fc 27.7%,
        #ffffff 49.2%,
        #ffffff 69%,
        #ebf1fb 100%);
    padding: 1.75rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}
.webinar-new-badge {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    padding: 0;
    font-size: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: #21368D transparent transparent transparent;
    font-family: 'Hiragino Mincho ProN', serif;
    z-index: 1;
}
.webinar-new-badge span {
    position: absolute;
    top: -50px;
    left: 5px;
    transform: rotate(-45deg);
    color: white;
}
.webinar-title {
    color: #21368D;
    font-size: 23px;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    /* padding-top: 1.5rem; */
    padding-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Hiragino Mincho ProN', serif;
}
.webinar-presenter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.webinar-presenter img {
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: 50%;
}
.presenter-info {
    font-size: 16px;
}
.presenter-info .clinic {
    color: #292929;
}

.section06 .controls-wrapper {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}
.section06 .controls-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}
.section06 .view-all-button {
    padding: 15px 4rem;
    margin: 0;
}
.section06 .nav-buttons {
    display: flex;
    gap: 1rem;
}
.webinar-nav-button {
    width: 59px;
    height: 59px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.webinar-nav-button img {
    width: 100%;
}
.webinar-progress-pagination {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #e6eefa;
    overflow: hidden;
}
.webinar-progress-pagination::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 7.14%); 
    background: #21368D;
    transition: width 0.3s ease;
}

@media (max-width: 767px) {
    .section06 {
        padding: 5rem 0 5rem;
        margin-top: 1rem;
    }

    .section06 .section-title {
        margin-bottom: 2rem;
    }

    /* .webinar-slider-container {
        width: 100% !important;
        margin: 0 auto;
    } */
    .webinar-slide {
        padding: 1rem 1.5rem;
    }
    .webinar-new-badge {
        font-size: 10px;
        border-width: 45px 45px 0 0;
    }
    .webinar-new-badge span {
        top: -37px;
        left: 3px;
    }
    .webinar-title {
        font-size: 15px;
    }
    .presenter-info {
        font-size: 10px;
    }
    .webinar-presenter img {
        width: 86.22px;
        height: 86.22px;
    }
    .webinar-swiper-slide {
        width: 325px !important;
    }

    .section06 .view-all-button {
        padding: 15px 2rem;
    }
}
@media (max-width: 490px) {
    .section06 {
        padding: 3rem 0 4rem;
    }
}
@media (max-width: 371px) {
    .section06 {
        padding: 3rem 0;
    }
}

/* section07 */
.section07 {
    padding: 5rem 0 0;
    text-align: center;
}
.section07 .title {
    font-size: 26px;
    color: #21368D;
    font-family: 'Libre Baskerville', serif;
    font-weight: bold;
}
.section07 .text {
    font-size: 18px;
    color: #333333;
}
.associations-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 2.5rem 0 0;
    /* padding: 0 10rem; */
    padding: 0 18rem;
}
.section07 .col-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.section07 .col-wrapper > div {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eff0f0;
    box-sizing: border-box;
}
.section07 .col-wrapper > div a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section07 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1399px) {
    .associations-logo {
        padding: 0 14rem;
    }
}
@media (max-width: 1199px) {
    .associations-logo {
        padding: 0 12rem;
    }
}
@media (max-width: 1120px) {
    .associations-logo {
        padding: 0 9rem;
    }
}
@media (max-width: 767px) {
    .section07 {
        padding: 5rem 0 0;
    }
    .section07 .title {
        font-size: 20px;
    }
    .section07 .text {
        font-size: 14px;
    }
    .associations-logo {
        margin: 2rem 0 0;
        padding: 0 1rem;
    }
}
@media (max-width: 490px) {
    .section07 {
        padding: 3rem 0 0;
    }

    .associations-logo {
        padding: 0;
    }
    .section07 .col-wrapper > div {
        flex: 100%;
        max-width: 100%;
    }
}
@media (max-width: 371px) {
    .section07 {
        padding: 3rem 0 0;
    }
}