/*
========================================================
** common
** membership modal
** join banner
** contact banner

** top page
  ** articles swiper section
  ** foundation adviser section
  ** gallery section
  ** movie section

** about page
** activities page

#responsive
  ** TAB - md
  ** TAB - un
  ** SP
========================================================
*/

/*
========================================================
** common
========================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap');

html {
    scroll-behavior: smooth;
}

.home .svccf-section_inner {
    padding: unset;
}

/* PC */
:target {
    scroll-margin-top: 150px;
}

/* TAB */
@media (max-width: 926px) {
    :target {
        scroll-margin-top: 120px;
    }
}

/* SP */
@media (max-width: 480px) {
    :target {
        scroll-margin-top: 90px;
    }
}


.svccf-mobile-nav .svccf-membership-modal-trigger {
    padding: 10px 40px;
    border: 1px solid #fff;
    border-radius: 999px;
}

.logged-in .svccf-modal-content {
    margin-top: 100px;
}

.page-template-page-template-EN-svccf .logged-in .svccf-modal-content {
    padding: 0 5.333333vw;
}

.svccf-modal-close {
    top: 45px;
}

/* ==========- */
/* モーダル本体 */
.svccf-mobile-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;

    visibility: hidden;
    overflow-y: auto;

    /* 背景色は付けない */
    background: transparent;
}

.svccf-mobile-modal.active {
    display: block;
    visibility: visible;
}

/* モーダル表示中、ページ本体へ #006385 を乗算 */
body:has(.svccf-mobile-modal.active)::before {
    content: "";
    position: fixed;
    inset: 0;

    background-color: #02202b;
    /* mix-blend-mode: multiply; */

    z-index: 9998;
    pointer-events: none;
}

/* ノイズだけを重ねる */
.svccf-mobile-modal::before {
    content: "";
    position: fixed;
    inset: 0;

    background:
        url(https://svccf.org/wp-content/uploads/2025/07/menu_bg.png) center top / cover no-repeat;

    mix-blend-mode: screen;
    opacity: 0.12;

    pointer-events: none;
    z-index: 0;
}

/* 内容をノイズより前へ */
.svccf-modal-content {
    position: relative;
    z-index: 2;
}

.svccf-modal-close {
    position: absolute;
    z-index: 3;
}

body:has(.svccf-mobile-modal.active)::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #02202b;
    /* mix-blend-mode: multiply; */
    z-index: 10000;
    pointer-events: none;
}

/* モーダルは乗算レイヤーより前 */
.svccf-mobile-modal {
    z-index: 10001;
    background: transparent;
}

.svccf-hamburger.active {
    display: none;
}

.svccf-btn-more:hover {
    color: #c7c7c7;
}

.svccf-u-w-20 {
    width: 20%;
}

.svccf-u-w-40 {
    width: 40%;
}

/*
========================================================
** membership modal
========================================================
*/

html.svccf-membership-modal-open,
body.svccf-membership-modal-open {
    overflow: hidden !important;
}

.svccf-membership-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.svccf-membership-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.svccf-membership-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 30, 31, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.svccf-membership-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: calc(100dvh - 56px);
    background: #f7f8f6;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 28px 70px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(18px) scale(0.985);
    transition: transform 0.4s ease;
    max-width: 940px;
}

.svccf-membership-modal.is-open .svccf-membership-modal__panel {
    transform: translateY(0) scale(1);
}

.svccf-membership-modal__scroll {
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
}

.svccf-membership-modal__inner {
    width: min(880px, calc(100% - 80px));
    margin: 0 auto;
    padding: 80px 0 180px;
}

.svccf-membership-modal__close {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.svccf-membership-modal__close:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: rotate(90deg);
}

.svccf-membership-modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 27px;
    height: 1.5px;
    background: #222;
    border-radius: 999px;
}

.svccf-membership-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.svccf-membership-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.svccf-membership-modal__header {
    margin-bottom: 28px;
    text-align: center;
}

.svccf-membership-modal__title {
    position: relative;
    margin: 0 !important;
    padding: 0 0 17px !important;
    color: #087fa4;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    background: none !important;
    border: 0 !important;
    display: inline-block;
}

.svccf-membership-modal__title::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #087fa4;
    transform: translateX(-50%);
}

.svccf-membership-modal__lead {
    margin-bottom: 100px;
    text-align: center;
}

.svccf-membership-modal__lead p {
    margin: 0;
    font-size: 18px;
    line-height: 2.4;
}

.svccf-membership-modal__lead p+p {
    margin-top: 8px;
}

.svccf-membership-modal__section {
    margin-top: 100px;
}

.svccf-membership-modal__heading {
    margin: 0 0 40px !important;
    padding: 0 !important;
    color: #3e3a39;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
    background: none !important;
    border: 0 !important;
}

.svccf-membership-modal__conditions {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 0 0 1.4em;
}

.svccf-membership-modal__conditions li {
    padding-left: 0.3em;
    font-size: 16px;
    line-height: 1.4;
}



.svccf-membership-conditions,
.svccf-membership-types {
    padding: 0 60px;
}


.svccf-membership-modal__table-scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

table:not(.has-border-color) :where(th, td) {
    border: none;
}

.svccf-membership-modal__table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 13px;
    line-height: 1.55;
}

.svccf-membership-modal__table th,
.svccf-membership-modal__table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(62, 58, 57, 0.28);
    vertical-align: middle;
}

.svccf-membership-modal__table thead th {
    color: #087fa4;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    background: #fff;
}

.svccf-membership-modal__table thead th:first-child {
    /* width: 52%; */
    color: transparent;
}

.svccf-membership-modal__table tbody th {
    font-weight: 400;
    text-align: left;
    background: none;
    font-size: 16px;
}

.svccf-membership-modal__table td {
    min-width: 150px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.svccf-membership-modal__table small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.svccf-membership-modal__fee-row th,
.svccf-membership-modal__fee-row td {
    font-weight: 700;
}

.svccf-membership-modal__fee-row td {
    color: #3e3a39;
    font-size: 14px;
}

.svccf-membership-modal__note {
    font-size: 12px;
    line-height: 1.4;
}

.svccf-membership-modal__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
    margin: 80px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.svccf-membership-modal__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 190px; */
    /* padding: 30px 20px; */
    /* background: rgba(255, 255, 255, 0.9); */
    /* border-radius: 50%; */
    text-align: center;
    gap: 20px;
}

.svccf-membership-modal__step::before {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background: #fff;
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -1;
}

.svccf-membership-modal__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5%;
    right: -36%;
    width: 60%;
    aspect-ratio: 170 / 20;
    /* height: 20px; */
    background: url(img/arrow_modal.svg) no-repeat center right / contain;

}

.svccf-membership-modal__step-number {
    /* margin-bottom: 8px; */
    color: #087fa4;
    font-family: "Roboto Flex", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
}

.svccf-membership-modal__step-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.svccf-membership-modal__step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.svccf-membership-modal__contact {
    margin-top: 150px;
    text-align: center;
}

.svccf-membership-modal__contact-lead {
    margin: 0 0 20px;
    font-size: 18px;
}

.svccf-membership-modal__mail {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 20px 30px;
    background: #087fa4;
    border-radius: 3px;
    color: #fff !important;
    font-family: "Roboto Flex", sans-serif;
    font-size: clamp(22px, 4vw, 35px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.svccf-membership-modal__mail:hover {
    color: #fff !important;
    opacity: 0.85;
    transform: translateY(-2px);
}

.svccf-membership-modal__mail-mark {
    margin: 0 0.15em;
    font-size: 0.72em;
}

.svccf-membership-modal__contact-note {
    margin: 8px 0 0;
    font-size: 10px;
}



.svccf-membership-modal__contact .svccf-contact-section {
    padding: 0;
    background: none;
}

.svccf-membership-modal__contact .svccf-contact-section::before {
    content: none;
}

.svccf-membership-modal__contact .svccf-contact-section .svccf-section-title-area {
    display: none;
}

.svccf-membership-modal__contact .svccf-contact_bg {
    display: none;
}

@media (prefers-reduced-motion: reduce) {

    .svccf-membership-modal,
    .svccf-membership-modal__panel,
    .svccf-membership-modal__close {
        transition: none;
    }
}

/*
========================================================
** join banner
========================================================
*/
.svccf-join-banner {
    padding: 80px 0;
}

.svccf-join-banner .svccf-section_inner {
    padding: 0;
}

.svccf-join-content {
    padding: 30px 40px;
    background: url("img/join_banner.jpg") center center / cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    margin: 0 auto;
    max-width: 900px;
}

.svccf-join-text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.svccf-join-title {
    margin: 0;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px #0078A2;
}

.svccf-join-description {
    margin: 22px 0 0;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    letter-spacing: -0.05em;
}

.svccf-join-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 227px;
    height: 34px;
    padding: 0 24px;
    border-radius: 999px;
    background: #fff;
    color: #087fa4;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: .25s ease;
}

.page-template-page-template-EN-svccf .svccf-join-button {
    font-size: 11px;
}

.svccf-join-button:hover {
    background: #f5fbfc;
    transform: translateY(-2px);
}

.page-id-1032 .svccf-contact-section .svccf-section-title-area,
.page-id-1032 .svccf-contact-section .svccf-contact_bg {
    display: none;
}

.page-id-1032 .svccf-contact-section,
.page-id-1032 .svccf-contact-section .svccf-section_inner {
    margin: 0;
    padding: 0;
}

/*
========================================================
** contact banner
========================================================
*/
.svccf-contact-section {
    padding: 80px 40px;
}

.home .svccf-contact-section .svccf-section_inner {
    padding: 0;
    margin: 0 auto;
}

.svccf-contact-section .svccf-section-title-area {
    margin: 0 0 15px;
}

.svccf-contact-banner {
    padding: 40px 30px;
    background: #087fa4;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 5px;
}

.svccf-contact-address {
    margin: 0;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.08em;
}

.svccf-contact-note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.svccf-contact-mark {
    display: inline-block;
    margin: 0 0.08em;
    font-size: 0.85em;
    line-height: 1;
    transform: translateY(-0.05em);
}


.svccf-footer-content {
    padding-top: 60px;
}


.svccf-modal-content .svccf-contact-section {
    padding: 0;
    margin: 0;
    background: none;
    width: 100%;
}

.svccf-modal-content .svccf-contact-section .svccf-section_inner {
    padding: 0;
}

.svccf-modal-content .svccf-contact-section::before {
    content: none;
}

.svccf-modal-content .svccf-section-title-area {
    margin: 0 0 25px 0;
    color: #fff;
}

.svccf-modal-content .svccf-section-subtitle {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding: 0 0 8px 0;
}

.svccf-modal-content .svccf-section-title-jp {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    padding: 8px 0 0 0;
}

.svccf-modal-content .svccf-contact-banner {
    color: #087fa4;
    background: #fff;
}

.svccf-modal-content .svccf-contact-note {
    color: #087fa4;
}

.svccf-modal-content .svccf-contact_bg {
    display: none;
}


/*
========================================================
** top page
========================================================
*/
.svccf-hero-fullscreen {
    height: calc(100vw * 650 / 1280);
}

.svccf-hero-text-section {
    padding: 40px 0;
}

.svccf-article-card {
    background: #fff;
    border-radius: 16px;
}

.svccf-article-content {
    padding: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #3E3A39;
    line-height: 1.6;
}

.svccf-article-date {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.svccf-article-title {
    min-height: 7em;
    font-size: 18px;
}

.svccf-article-dsc {
    font-size: 14px;
}

/* ==============================
** articles swiper section
============================== */
.svccf-articles-section {
    padding: 80px 0 170px;
}

.svccf-articles-slider-wrap {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.svccf-articles-slider {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.svccf-section_inner {
    overflow: visible;
}

.svccf-articles-slider .swiper-wrapper {
    align-items: stretch;
}

.svccf-articles-slider .swiper-slide {
    height: auto;
}

.svccf-article-card {
    height: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.4s ease;
}

.svccf-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
}

.svccf-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit !important;
    text-decoration: none !important;
}

.svccf-article-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.svccf-article-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 2s ease;
}

.svccf-article-card:hover .svccf-article-img {
    transform: scale(1.08);
}

.svccf-article-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 20px;
    color: #3e3a39;
    line-height: 1.6;
}

.svccf-article-card:hover .svccf-article-content {
    opacity: 0.5;
}

.svccf-article-date {
    display: block;
    margin: 0 0 10px;
    font-family: "Roboto Flex", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.svccf-article-title {
    min-height: 7em;
    margin: 0 0 10px !important;
    border-bottom: none !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12em;
    text-decoration: none !important;
}

.svccf-article-dsc {
    margin: 0;
    font-size: 14px;
}

/* Swiper controls */

.svccf-articles-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.svccf-articles-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin-top: 20px;
}

.svccf-articles-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background: #3e3a39;
    opacity: 0.25;
}

.svccf-articles-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.svccf-articles-prev,
.svccf-articles-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: min(44px, 3vw);
    height: min(44px, 3vw);
    padding: 0;
    border: 1px solid #3e3a39;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 20;
    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}


.svccf-articles-prev {
    left: -4vw;
}

.svccf-articles-next {
    right: -4vw;
}

.svccf-articles-prev::before,
.svccf-articles-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(8px, 0.6vw);
    height: min(8px, 0.6vw);
    border-top: 1px solid #3e3a39;
    border-right: 1px solid #3e3a39;
}

.svccf-articles-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.svccf-articles-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.svccf-articles-prev:hover,
.svccf-articles-next:hover {
    background-color: rgba(62, 58, 57, 0.08);
}

.svccf-articles-prev.swiper-button-disabled,
.svccf-articles-next.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}

.svccf-news-section {
    padding: 80px 0;
}

.svccf-news-list {
    margin: 0 auto 80px;
}

/* ==============================
** news section
============================== */
.svccf-news-item {
    border-bottom: 1px dotted #848382;
}

.svccf-news-item:last-child {
    border-bottom: 1px dotted #848382;
}

.home .svccf-news-section .svccf-section_inner {
    padding: 0 40px;
}

.news_section_bg {
    bottom: -10%;
}

/*
========================
** foundation adviser section
========================
*/
.svccf-fa-section {
    position: relative;
    padding: 90px 40px;
    overflow: hidden;
}

.svccf-fa-section .svccf-section_inner {
    max-width: 940px;
    width: 100% !important;
    padding: 0;
}

.svccf-container_bg01 {
    top: unset;
    bottom: -45%;
    left: 0;
}

.svccf-fa-grid {
    display: flex;
    gap: 20px;
    margin: 0 0 80px 0;
}

.svccf-fa-card {
    background: #fff;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: .5s;
}

.svccf-fa-card a {
    display: flex;
    position: relative;
    text-decoration: none;
}

.svccf-fa-anchor {
    justify-content: space-between;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .5s;
}

.svccf-fa-photo {
    width: 120px;
    aspect-ratio: 1/1;
}

.svccf-fa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.svccf-fa-content {
    width: calc(100% - 120px);
    padding: 20px;
    position: relative;
}

.svccf-fa-content p {
    display: none;
}

.svccf-fa-name {
    font-size: 20px;
}

.svccf-fa-position {
    font-size: 12px;
    letter-spacing: -0.03em;
}



/*
========================
** gallery section
========================
*/
.svccf-gallery-section {
    position: relative;
    background: rgb(243, 238, 223, .3);
    padding: 0 0 100px 0;
    z-index: -2;
    padding: 80px 0;
}

.svccf-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/top/gallery-bg.png) center no-repeat;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}


.svccf-gallery-section .svccf-section_inner {
    margin-top: 0;
    padding: 0;
    max-width: 1200px;
}

.svccf-gallery-section .svccf-title-area {
    margin-bottom: 10px;
}

.svccf-gallery-stage {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden
}

.svccf-gallery-tile {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 18px 42px -22px rgba(21, 40, 45, .55);
    will-change: opacity, transform;
}

.svccf-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.svccf-gallery-tile .svccf-gallery-ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: .8rem;
    letter-spacing: .08em;
    color: #3c6a59
}

.svccf-gallery-tile .svccf-gallery-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0))
}

.svccf-gallery-tile .svccf-gallery-cap {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    font-size: .74rem;
    letter-spacing: .06em;
    color: #fff;
    background: rgba(21, 40, 45, .42);
    backdrop-filter: blur(2px);
    padding: .25em .7em;
    border-radius: 6px
}

.svccf-gallery-g0 {
    background: linear-gradient(135deg, #DCEAE5, #A9D2C0)
}

.svccf-gallery-g1 {
    background: linear-gradient(135deg, #E7F0EC, #BFDDD0)
}

.svccf-gallery-g2 {
    background: linear-gradient(135deg, #23454C, #2D8C9D)
}

.svccf-gallery-g3 {
    background: linear-gradient(135deg, #1F6B79, #5BAE86)
}

.svccf-gallery-g4 {
    background: linear-gradient(135deg, #CFE3DC, #8FC6AE)
}

.svccf-gallery-g5 {
    background: linear-gradient(135deg, #2D8C9D, #80C8A3)
}

.svccf-gallery-g2 .svccf-gallery-ph,
.svccf-gallery-g3 .svccf-gallery-ph,
.svccf-gallery-g5 .svccf-gallery-ph {
    color: rgba(255, 255, 255, .82)
}

/*
========================
** movie section
========================
*/
.svccf-movie-section {
    padding: 80px 0 20px;
}

.svccf-movie-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
    margin-top: 0;
}

.svccf-movie-youtube {
    flex: 1;
}

body .svccf-movie-youtube .video-container {
    margin: 0 auto;
}

.svccf-movie-youtube .video-container .video {
    border-radius: 10px;
    margin-top: 0;
}

/*
========================================================
** about page
========================================================
*/
.svccf-main .company-hero-title,
.svccf-main .company-hero-subtitle {
    font-weight: 700;
}

.svccf-about-forum .svccf-articles-header {
    margin-bottom: 40px;
}

.company-hero-section {
    padding-bottom: 160px;
}

.company-hero-description p {
    margin-bottom: 0;
}

.svccf-member-text {
    margin-bottom: 40px;
}

.svccf-member-text p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    text-align: justify;
}

.page-template-page-template-EN-svccf .svccf-member-text p {
    text-align: left;
}

.svccf-member-name {
    margin-bottom: 0;
    line-height: 1.6;
}

.svccf-member-role {
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 0;
}

.company-info-section {
    margin: 220px auto 0;
}

.company-partners-grid.normal p {
    font-size: 16px;
}

.page-id-90 .svccf-contact-section .svccf-section_inner {
    padding: 0;
}

/*
========================================================
** activities page
========================================================
*/
.svccf-join-banner .svccf-section_inner {
    padding: 0 40px;
}

.svccf_activities .company-info-section {
    margin-top: 0;
}

.svccf_activities .activity-title {
    font-size: 20px;
    font-weight: bold;
}

.activities-image-area._02 {
    margin-bottom: 80px;
}

.svccf-teacher-list {
    width: min(100%, 1160px);
    margin: 0 auto;
}

.svccf-teacher-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 26px;
}

.svccf-teacher-img {
    width: 100%;
    aspect-ratio: 260 / 156;
    overflow: hidden;
    border-radius: 12px;
    background: #d9d9d9;
}

.svccf-teacher-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svccf-teacher-name {
    margin: 0 0 16px !important;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.page-template-page-template-EN-svccf .svccf-teacher-name {
    letter-spacing: -0.01em;
}

.activity-content p.svccf-teacher-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}


.svccf_brd_bt {
    border-bottom: 1px solid #3e3a39;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.svccf-harmony-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svccf-harmony-item {
    text-align: center;
}

.svccf-harmony-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #ddd;
    margin-bottom: 22px;
}

.svccf-harmony-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svccf-harmony-title {
    margin: 0 0 16px !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .08em;
}

.activity-content p.svccf-harmony-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.03em;
}


/*
========================================================
** responsive
========================================================
*/
/* ==============================
** TAB - md
============================== */
@media (max-width: 926px) {

    /* ** common ------------------------------ */
    /* .svccf-mobile-nav-item {
        font-size: 4.8vw;
    } */
    .svccf-pb0 {
        padding-bottom: 0 !important;
    }

    .svccf-mt120 {
        margin-top: 120px !important;
    }

    .svccf_mb0_md,
    .svccf_brd_bt h2+.activity-content p.svccf_mb0_md:first-child {
        margin-bottom: 0 !important;
    }

    .svccf-section-subtitle {
        font-size: 3.733333vw;
    }

    .svccf-section-title-jp {
        font-size: 6.4vw;
        line-height: 1.4;
        letter-spacing: -0.01em;
    }

    .svccf-section-subtitle {
        font-size: 3.7335vw;
    }

    .svccf-hamburger {
        gap: 2px;
    }

    .svccf-hamburger span {
        width: 20px;
    }

    .home .svccf-section_inner {
        padding: 0 10.667vw;
    }

    /* ** membership modal ------------------------------ */
    .svccf-membership-modal {
        padding: 5.333333vw;
    }

    .svccf-membership-modal__panel,
    .svccf-membership-modal__scroll {
        max-height: calc(100dvh - 10.666667vw);
    }

    .svccf-membership-modal__inner {
        width: min(720px, calc(100% - 14.4vw));
        padding-top: 17.333333vw;
    }

    .svccf-membership-modal__title {
        font-size: 6.4vw;
        padding: 0 0 4.533333vw !important;
    }

    .svccf-membership-modal__lead p+p {
        margin-top: 2.133333vw;
    }

    .page-template-page-template-EN-svccf .svccf-membership-modal__lead p {
        text-align: left;
    }

    .svccf-membership-modal__step:not(:last-child)::after {
        top: unset;
        right: 0;
        bottom: -40%;
        left: 0;
        margin: auto;
        transform: rotate(90deg);
        width: 20%;
        height: 5.333333vw;
        aspect-ratio: unset;
        background: url(img/arrow_modal.svg) no-repeat center right;
    }


    /* === */
    .svccf-membership-modal__lead {
        text-align: justify;
    }

    .svccf-membership-modal__lead p {
        font-size: 4.266667vw;
        line-height: 1.6;
    }

    .svccf-membership-modal__lead p br {
        display: none;
    }

    .svccf-membership-modal__header {
        margin-bottom: 10.666667vw;
    }

    .svccf-membership-modal__lead {
        margin-bottom: 16vw;
    }

    .svccf-membership-modal__heading {
        margin: 0 0 5.333333vw !important;
        font-size: 6.4vw;
    }

    .svccf-membership-modal__conditions {
        gap: 2.666667vw;
    }

    .svccf-membership-modal__conditions li {
        font-size: 4.266667vw;
    }

    .svccf-membership-conditions,
    .svccf-membership-types {
        padding: 0;
    }

    .svccf-membership-modal__section {
        margin-top: 16vw;
    }

    .svccf-membership-modal__table {
        min-width: unset;
        font-size: 3.466667vw;
        margin-bottom: 5.333333vw;
    }

    .svccf-membership-modal__table thead th {
        line-height: 1;
        font-size: 3.2vw;
    }

    .svccf-membership-modal__table tbody th {
        font-size: 3.466667vw;
        line-height: 1.3;
    }

    .svccf-membership-modal__table tbody td {
        font-size: 4.266667vw;
        line-height: 1.4;
    }

    .svccf-membership-modal__table tbody td small {
        font-size: 2.666667vw;
        line-height: 1.4;
    }

    .svccf-membership-modal__table tbody tr:last-child td {
        font-size: 3.2vw;
        font-weight: 400;
    }

    .svccf-membership-modal__steps {
        padding: 13.333333vw 0 0 0;
        gap: 32.533333vw;
        grid-template-columns: 1fr;
        width: min(280px, 100%);
        margin: 0 auto;
    }

    .svccf-membership-modal__table th,
    .svccf-membership-modal__table td {
        padding: 3.2vw 0.533333vw;
    }

    .svccf-membership-modal__table th {
        padding-left: 0;
    }

    .svccf-membership-modal__note {
        font-size: 3.2vw;
    }

    .svccf-membership-modal__step-title {
        margin: 0;
        font-size: 4.8vw;
    }

    .svccf-membership-modal__step p {
        font-size: 3.733333vw;
    }

    .svccf-membership-modal__step-number {
        font-size: 10.666667vw;
    }

    .svccf-membership-modal__step {
        gap: 5.333333vw;
    }

    .svccf-membership-modal__contact {
        margin-top: 32vw;
    }

    .svccf-membership-modal__contact-lead {
        margin: 0 0 5.333333vw;
        font-size: 4.266667vw;
        line-height: 1.6;
    }

    .svccf-membership-modal__step::before {
        width: 73vw;
    }

    .svccf-membership-modal__table small {
        font-size: 3.2vw;
    }

    /* ** join banner ------------------------------ */
    .svccf-join-banner .svccf-section_inner {
        padding: 0 5.333333vw;
    }

    .svccf-join-banner {
        padding: 21.333333vw 5.333333vw;
    }

    .svccf-join-description {
        margin-top: 4.8vw;
        font-size: 4.2vw;
        padding: 0 2.666667vw;
    }

    .svccf-join-content {
        padding: 10.666667vw 5.333333vw;
        background: url("img/join_banner_sp.jpg") center center / cover no-repeat;
    }

    .svccf-join-title {
        font-size: 6.4vw;
        text-align: center;
    }

    /* .svccf-join-title img {
        width: calc(100% - 5.333333vw);
        margin: 0 auto;
    } */

    .svccf-join-text {
        gap: 5.333333vw;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .svccf-join-button {
        font-size: 4vw;
        height: 9.066667vw;
        width: 100%;
    }

    .page-template-page-template-EN-svccf .svccf-join-button {
        font-size: 3vw;
    }

    /* ** contact banner ------------------------------ */
    .home #contact .svccf-section_inner {
        padding: 0;
    }

    .svccf-contact-section {
        padding: 10.666667vw 5.333333vw;
    }

    .svccf-contact-banner {
        margin-bottom: 0;
    }

    .svccf-contact-section .svccf-section-title-area {
        margin: 0 0 10.666667vw;
    }

    /* ** top page ------------------------------ */
    .svccf-hero-fullscreen {
        height: 133.333333vw;
    }

    .home .svccf-hero-text-section .svccf-section_inner {
        padding: 0 10.667vw;
    }

    .svccf-hero-description {
        text-align: justify;
        font-size: 4vw;
    }

    .page-template-page-template-EN-svccf .svccf-hero-description {
        text-align: left;
    }

    .svccf-hero-text-section {
        padding: 10.666667vw 0;
    }

    /* top page ** articles swiper section ------------------------------ */
    .home .svccf-articles-section .svccf-section_inner {
        padding: 0;
    }

    .svccf-articles-section {
        overflow: hidden;
        padding: 21.333333vw 0 50.666667vw;
    }

    .svccf-articles-slider-wrap {
        width: 100%;
        margin: 0;
    }

    .svccf-articles-slider {
        width: 100%;
    }

    .svccf-articles-pagination {
        margin-top: 5.333333vw;
    }

    .svccf-article-content {
        padding: 5.333333vw;
    }

    .svccf-article-title {
        font-size: 4.8vw;
        line-height: 1.6;
    }

    .svccf-article-date {
        font-size: 3.733333vw;
        line-height: 1;
        margin-bottom: 2.666667vw;
    }

    .svccf-article-dsc {
        font-size: 3.733333vw;
        line-height: 1.6;
    }

    .svccf-articles-pagination .swiper-pagination-bullet {
        width: 2.666667vw;
        height: 2.666667vw;
        margin: 0 1.6vw !important;
    }

    .articles_section_bg {
        bottom: -10%;
        width: 80vw;
    }

    .svccf-articles-prev,
    .svccf-articles-next {
        width: 8vw;
        height: 8vw;
    }

    .svccf-articles-prev {
        left: 2vw;
    }

    .svccf-articles-next {
        right: 2vw;
    }

    .svccf-articles-prev::before,
    .svccf-articles-next::before {
        width: 1.5vw;
        height: 1.5vw;
    }

    /* top page ** news ------------------------------------------ */
    .svccf-news-section {
        padding: 21.333333vw 0;
    }

    .home .svccf-news-section .svccf-section_inner {
        padding: 0 10.666667vw;
    }

    .svccf-news-list {
        margin-bottom: 16vw;
    }

    .svccf-news-section .svccf-title-area {
        margin-bottom: 10.666667vw;
    }

    .svccf-btn-more {
        font-size: 3.733333vw;
        border-radius: 999px;
        padding: 2.666667vw 10.666667vw;
    }

    .svccf-news-date {
        width: auto;
        margin: 5.333333vw 0 0 0;
    }

    .svccf-news-item {
        flex-direction: row;
        align-items: start;
    }

    .svccf-news-date,
    .svccf-news-link {
        letter-spacing: -0.02em;
        font-size: 3.733333vw;
    }

    .svccf-news-date {
        padding: 0 7.2vw 0 0;
    }

    .svccf-news-link {
        padding: 5.333333vw 0;
    }

    .news_section_bg {
        width: 50%;
    }

    /* top page ** foundation adviser section ------------------------------ */
    .home .svccf-fa-section .svccf-section_inner {
        padding: 0;
    }

    .svccf-fa-section .svccf-title-area {
        margin-bottom: 16vw;
    }

    .svccf-fa-section {
        padding: 24vw 5.333333vw;
    }



    .svccf-fa-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 4.266667vw;
        position: unset;
    }

    .svccf-fa-photo {
        width: 44%;
        /* min-width: 120px; */
    }

    .svccf-fa-grid {
        margin: 0;
        flex-direction: column;
        gap: 5.333333vw;
    }

    .svccf-fa-section .svccf-section_inner {
        width: 100%;
        padding: 0;
    }


    .svccf-fa-anchor {
        align-items: flex-start;
        position: relative;
    }


    .svccf-fa-content {
        width: 79%;
        padding: 2.666667vw 4.266667vw;
    }

    .svccf-fa-name {
        font-size: 5.333333vw;
    }

    .page-template-page-template-EN-svccf .svccf-fa-name {
        font-size: 4.333333vw;
    }

    .svccf-fa-position {
        font-size: 2.933333vw;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .svccf-fa-content p {
        white-space: nowrap;
        font-size: 2.666667vw;
        line-height: 1;
        position: absolute;
        bottom: 4.266667vw;
        right: 6.933333vw;
        display: inline-flex;
        align-items: center;
        gap: 3.733333vw;
        letter-spacing: -0.05em;
    }

    .svccf-fa-content p::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: calc(100% + 15px);
        height: 1px;
        background: #000;
    }

    /* 矢印 */
    .svccf-fa-content p::after {
        content: "";
        position: absolute;
        right: -15px;
        bottom: -5px;
        width: 10px;
        height: 1px;
        background: #000;
        transform: rotate(45deg);
        transform-origin: right center;
    }


    .svccf-fa-grid+.svccf-more-button {
        display: none;
    }

    .svccf-container_bg01 {
        width: 80%;
    }

    .svccf-container_bg01 img {
        width: 100%;
    }

    /* top page ** gallery section ------------------------------ */
    .svccf-gallery-section .svccf-section_inner {
        padding: 0;
    }

    .svccf-gallery-section {
        padding: 21.333333vw 0;
    }

    /* top page ** movie section ------------------------------ */
    .svccf-movie-section {
        padding: 21.333333vw 0 5.333333vw;
    }

    .svccf-movie-section .svccf-section_inner {
        padding: 0 5.333333vw;
    }

    .svccf-movie-contents {
        gap: 10.666667vw;
        flex-direction: column;
    }

    .svccf-movie-youtube {
        width: 100%;
    }

    /* ** about page ------------------------------ */

    .company-info-section {
        margin: 58.666667vw auto 0;
    }

    .company-hero-section {
        padding-bottom: 32vw;
    }

    .section-title {
        width: 100%;
        margin-bottom: 5.333333vw;
    }

    .company-section-title {
        font-size: 6.400000vw;
    }

    .table-content,
    .table-label {
        font-size: 3.733333vw;
    }

    .table-label {
        line-height: 1.4;
        margin-bottom: 0;
        padding: 0;
        width: 21.333333vw;
    }

    .table-row {
        flex-direction: row;
    }

    .table-row:has(.company-partners_box) {
        display: block;
    }

    .company-partners_box {
        padding: 0;
        width: 100%;
    }

    .company-partners_box .table-content {
        width: 100%;
        gap: 0;
    }

    .table-content {
        flex-wrap: nowrap;
        width: 57.333333vw;
    }

    .company-partners_box .table-content p {
        font-size: 3.733333vw;
        width: 21.333333vw;
    }

    .table-content>div:not(.history-section) {
        width: 57.333333vw;
    }

    .company-hero-title,
    .company-hero-subtitle {
        font-size: 6.4vw;
    }

    .company-partners-grid.normal,
    .company-partners-grid.small {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .company-partners_box .table-content p {
        min-width: unset;
    }

    .company-hero-description p {
        font-size: 4.266667vw;
        line-height: 2.2;
    }

    .partner-logo.normal {
        width: 100%;
        padding: 0;
    }

    .partner-logo.small {
        width: 100%;
        padding: 0;
    }

    .table-row {
        padding: 5.333333vw 0;
    }

    .company-partners_box .table-content {
        padding: 5.333333vw 0;
    }

    .simple-table-container {
        padding-bottom: 21.333333vw;
    }

    .history-section {
        width: 48%;
    }

    .company-partners_box .table-content .company-partners-grid,
    .company-partners-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .announcement-text {
        font-size: 2.666667vw;
        letter-spacing: -0.00;
    }

    .announcement-status::after {
        font-size: 2.133333vw;
        padding: 0.533333vw 1.333333vw;
        border-radius: 0.8vw;
        border: 1px solid #3E3A39;
        color: #3E3A39;
    }

    .partner-logo.normal p {
        width: 100%;
        font-size: 3.733333vw !important;
        line-height: 1.6;
    }

    .company-partners_box .table-content p {
        font-size: 3.2vw !important;
        line-height: 1.6;
        width: 21.333333vw;
    }

    .company-partners_box .table-content .company-partners-grid p {
        width: 51.33333vw;
    }

    .svccf-members-grid {
        gap: 16vw;
    }

    .svccf-member-card {
        width: 100% !important;
    }

    .svccf-member-photo {
        margin: 0 auto 5.333333vw;
    }

    .svccf-section-title-jp {
        padding-bottom: 0;
    }

    .svccf-member-text {
        margin-bottom: 8vw;
    }

    .svccf-member-text p {
        font-size: 3.733333vw;
    }

    .svccf-member-role {
        font-size: 3.733333vw;
        font-weight: bold;
    }

    .svccf-member-name {
        font-size: 8vw;
    }

    .svccf-member-position {
        font-size: 2.933333vw;
        line-height: 1.6;
    }

    .page-id-90 .svccf-contact-section {
        padding: 10.666667vw 5.333333vw;
    }



    /* ** activities page ------------------------------ */
    .svccf-section_inner {
        padding: min(120px, 21.666667vw) 10.666667vw 0;
    }

    .page-id-146 .svccf-main .company-hero-subtitle {
        letter-spacing: -0.03em;
    }

    .activity-content p {
        font-size: 4.266667vw;
        line-height: 1.6;
        text-align: justify;
    }

    .page-template-page-template-EN-svccf .activity-content p {
        text-align: left;
    }

    .activity-block.svccf-mb50 {
        margin-bottom: 13.333333vw;
    }

    .activity-block.svccf_brd_bt {
        padding-bottom: 10.666667vw;
        margin-bottom: 16vw;
    }

    .svccf_brd_bt h2+.activity-content p:first-child {
        font-size: 4.266667vw;
        margin-bottom: 18.666667vw;
    }

    .company-info-section>div:nth-child(10) .activity-content p {
        margin-bottom: 5.333333vw;
    }

    .company-hero-title {
        margin-top: 5.333333vw;
    }

    .svccf_activities .company-hero-description p {
        line-height: 2.2;
        font-size: 4.266667vw;
    }

    .activity-block {
        margin: 10.666667vw 0 21.333333vw;
    }

    .svccf_activities .svccf-join-banner {
        padding: 21.333333vw 10.666667vw;
    }

    .svccf_activities .company-hero-description p+p {
        margin-top: 1em;
    }

    .svccf-teacher-list {
        width: 100%;
    }

    .svccf-main .activity-title {
        font-size: 5.333333vw;
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: -0.01em;
        padding-bottom: 5.333333vw;
    }

    .company-section-header {
        padding-bottom: 2.666667vw;
        margin-bottom: 10.666667vw;
    }

    .highlight-link {
        font-weight: bold;
        text-decoration: none;
    }

    .svccf-main .activities-image-area {
        width: calc(100% + 22vw);
        margin: 0 -11vw;
    }

    .svccf-main .activities-image-area._02,
    .svccf-main .activities-image-area._03 {
        padding: 5.333333vw;
    }

    .svccf-main .activities-image-area._02 {
        margin-bottom: 21.333333vw;
    }

    .indentation .activity-block {
        padding: 16vw 0;
    }

    .svccf-main .indentation .activity-title+.activity-content p:not(.svccf-harmony-text) {
        margin-bottom: 16vw;
    }

    .svccf-teacher-item {
        display: block;
        margin-bottom: 8vw;
    }

    .svccf-teacher-img {
        width: 62%;
        margin: 0 auto 5.333333vw;
        aspect-ratio: 1.65 / 1;
        border-radius: 7px;
    }

    .svccf-teacher-body {
        width: 100%;
    }

    .svccf-teacher-name {
        margin-bottom: 2.666667vw !important;
        text-align: center;
    }

    .svccf-harmony-list {
        grid-template-columns: 1fr;
        gap: 5.333333vw;
    }

    .svccf-harmony-item {
        width: 100%;
        margin: 0;
    }

    .svccf-harmony-img {
        margin-bottom: 5.333333vw;
        border-radius: 8px;
    }

    .svccf-harmony-title {
        margin-bottom: 2.666667vw !important;
    }



    .activity-content p.svccf-harmony-text {
        font-size: 3.733333vw;
    }

    .company-info-section>div:nth-child(10) .activity-content p.svccf-harmony-text:last-child {
        margin-bottom: 0;
    }

    .cta-button::after {
        font-size: 2.133333vw;
        padding: 0.533333vw 1.333333vw;
        margin-left: 5.333333vw;
    }

    .svccf-contact-section {
        padding: 10.666667vw 5.333333vw;
    }

    .svccf-teacher-name {
        font-size: 6.400000vw;
    }

    .activity-content p.svccf-teacher-text {
        font-size: 3.733333vw;
    }

    .svccf-harmony-title {
        font-size: 4.8vw;
    }

    .activity-content_sup {
        font-size: unset;
    }

    .activity-content p.activities_context_text_s {
        font-size: 3.733333vw !important;
        text-align: left;
    }
}

@media (max-width: 799px) {
    .svccf-articles-header {
        margin-bottom: 16vw;
    }
}

@media (max-width: 767px) {
    .articles_section_bg {
        bottom: -10%;
        width: 80vw;
    }
}

/* ==============================
** TAB - un
============================== */
@media (max-width: 730px) {

    /* ** common ------------------------------ */
    /* ** membership modal ------------------------------ */
    .svccf-membership-modal {
        align-items: stretch;
        padding: 0;
    }

    .svccf-membership-modal__panel {
        width: 100%;
        max-height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .svccf-membership-modal__scroll {
        max-height: 100dvh;
    }

    .svccf-membership-modal__inner {
        width: calc(100% - 10.666667vw);
        padding: 72px 0 10.666667vw;
    }

    .svccf-membership-modal__close {
        position: fixed;
        top: 14px;
        right: 14px;

        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 3px 4.266667vw rgba(0, 0, 0, 0.09);
    }


    .svccf-membership-modal__table-scroll {
        /* width: calc(100% + 5.333333vw); */
        /* padding-bottom: 8px; */
    }

    /* ** join banner ------------------------------ */


    /* ** contact banner ------------------------------ */


    .svccf-contact-address {
        font-size: min(28px, 7vw);
    }

    .svccf-contact-note {
        margin-top: 2.666667vw;
        font-size: 2.933333vw;
    }


    /* ** top page ------------------------------ */
    /* top page ** articles swiper section ------------------------------ */
    .svccf-articles-section .svccf-section_inner {
        overflow: visible;
    }

    .svccf-articles-section .svccf-articles-header {
        margin-bottom: 21.333333vw;
    }

    .svccf-articles-section .svccf-section_inner.main_page {
        padding: 0;
    }

    .svccf-articles-slider {
        width: 100%;
        overflow: visible;
    }


    .svccf-article-title {
        min-height: 0;
    }

    /* .svccf-articles-controls {
    margin-top: 60px;
  } */

    /* top page ** news section ------------------------------ */



    /* top page ** foundation adviser section ------------------------------ */


    /* top page ** gallery section ------------------------------ */
    .svccf-gallery-section .svccf-section_inner {
        padding: 0;
    }

    .svccf-gallery-phot {
        margin: 0 -20%;
    }

    .svccf-gallery-stage {
        height: 173.333333vw
    }

    .svccf-gallery-tile .svccf-gallery-cap {
        font-size: .66rem
    }

    /* top page ** movie section ------------------------------ */
    .svccf-movie-contents {
        flex-direction: column;
    }

    .svccf-movie-youtube {
        width: 100%;
    }

    /* ** about page ------------------------------ */


    /* ** activities page ------------------------------ */
    .svccf-main .company-info-section .cta-button {
        width: calc(100% + 10.666667vw);
        text-align: center;
        margin: 21.333333vw -5.333333vw 0;
    }

    .svccf_activities .svccf-join-banner {
        padding: 21.333333vw 10.666667vw;
    }
}


/* ==============================
** SP
============================== */
@media (max-width: 480px) {

    /* ** common ------------------------------ */


    /* ** membership modal ------------------------------ */
    /* ** join banner ------------------------------ */
    /* ** contact banner ------------------------------ */
    .svccf-contact_bg {
        bottom: 0%;
    }

    .home #contact .svccf-section_inner {
        padding: 0;
    }

    /* ** top page ------------------------------ */
    /* top page ** articles swiper section ------------------------------ */
    /* top page ** foundation adviser section ------------------------------ */
    .svccf-fa-grid {
        flex-direction: column;
    }

    /* top page ** gallery section ------------------------------ */
    /* top page ** movie section ------------------------------ */
    /* ** about page ------------------------------ */
    .svccf-member-card {
        margin-bottom: 0 !important;
    }

    /* ** activities page ------------------------------ */
    .svccf-main .company-info-section .cta-button {
        width: calc(100% + 10.666667vw);
        text-align: center;
        margin: 21.333333vw -5.333333vw 0;
    }

    .svccf-main .activities-image-area {
        width: calc(100% + 21.333333vw);
        margin: 0 -10.666667vw;
    }

    .svccf-membership-modal__table td {
        min-width: 76px;
    }

    .svccf-membership-modal__table tbody td small {
        font-size: 3.1vw;
        line-height: 1.3;
    }

    .svccf-membership-modal__table thead th {
        font-size: 4.2vw;
    }

    .svccf-membership-modal__table th,
    .svccf-membership-modal__table td {
        padding: 5.2vw 0.533333vw;
    }

    .svccf-membership-modal__step-number {
        font-size: 11.666667vw;
    }

    .svccf-membership-modal__step p {
        font-size: 4vw;
    }

    .svccf-membership-modal__step-number {
        font-size: 11.666667vw;
    }

    .svccf-membership-modal__step {
        gap: 5.333333vw;
    }

    .svccf-membership-modal__step:not(:last-child)::after {
        bottom: -50%;
        width: 25%;
        transform: rotate(90deg) scale(1.5);
    }

    .svccf-membership-modal__steps {
        gap: 41.533333vw;
    }

    .svccf-membership-modal__step::before {
        width: 75vw;
        left: -18px;
    }

    .svccf-contact-banner {
        max-width: 100%;
        padding: 30px 0;
    }

    .svccf-contact-address {
        font-size: min(36px, 7vw);
    }

    .page-template-page-template-EN-svccf .svccf-modal-content .svccf-contact-banner {
        padding: 5.333333vw;
    }

    .svccf-contact-note {
        margin-top: 2.666667vw;
        font-size: 3.3vw;
    }
}


@media (max-width: 376px) {}

html[lang="en-US"] .svccf-membership-modal__step-title {
    font-size: 14px;
}

html[lang="en-US"] .svccf-membership-modal__step p {
    max-width: 200px;
}

@media (max-width: 480px) {
    html[lang="en-US"] .svccf-membership-modal__step:not(:last-child)::after {
        bottom: -34%;
        width: 37%;
    }

    html[lang="en-US"] .svccf-membership-modal__step::before {
        width: 84vw;
        left: -40px;
    }

    html[lang="en-US"] .svccf-membership-modal__table tbody tr:last-child td {
        font-size: 2.6vw;
        font-weight: 400;
    }

    html[lang="en-US"] .svccf-membership-modal__table tbody td small {
        font-size: 2.6vw;
        line-height: 1.3;
    }

    html[lang="en-US"] .svccf-membership-modal__table thead th {
        font-size: 2.4vw;
        line-height: 1.5;
    }
}

@media (max-width: 380px) {
    html[lang="en-US"] .svccf-membership-modal__step:not(:last-child)::after {
        bottom: -39%;
        left: -3%;
        width: 27%;
    }

    html[lang="en-US"] .svccf-membership-modal__step::before {
        width: 86vw;
        left: -24px;
    }
}
