@charset "UTF-8";

/*-----------------------------------------------------------------------------
　各ページごとに設定するコンテンツのスタイル
（このCSSが一番最後に読み込まれる）
-----------------------------------------------------------------------------*/

/*==================== 0.共通 ====================*/

/* =======================================
　ヘッダー透かし文字
======================================= */
.bg-text-giant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400 !important;
    font-size: 20vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
}

/*==================== 1.ホームページ ====================*/

/* =======================================
　ヒーローセクション
======================================= */

.hero {
    display: flex;
    border-bottom: var(--border-width) solid var(--white);
    min-height: calc(100vh - var(--header-height));
}

@media (min-width: 782px) {
    .hero {
        flex-direction: row;
        height: 90vh;
    }
}

.hero-image-area {
    flex: 2;
    position: relative;
    background: var(--zinc-800);
    min-height: 40vh;
    overflow: hidden;
    border-bottom: var(--border-width) solid var(--white);
}

@media (min-width: 782px) {
    .hero-image-area {
        border-bottom: 0;
        border-right: var(--border-width) solid var(--white);
    }
}

.hero-image-area .smb-spider-slider__figure-wrapper {
    height: 100vh;
    width: 100%;
}

@media (max-width: 781px) {
    .hero-image-area .smb-spider-slider__figure-wrapper {
        height: 50vh;
    }
}

.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(1) brightness(0.7);
}

@media (max-width: 781px) {
    .hero-image-area img {
        height: 50vh;
        object-position: center center;
    }
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    color: var(--bg-black);
    padding: 8px 16px;
    font-size: 20px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: var(--bg-black);
}

.hero-title {
    font-size: clamp(60px, 10vw, 96px);
    line-height: 0.8;
    letter-spacing: -0.005em;
    margin-bottom: 0 !important;
}

.hero-desc {
    font-size: 14px;
    color: var(--zinc-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (min-width: 768px) {
    .md\:h-full {
        height: 100%;
    }
}



/* =======================================
　マーキーアニメーション
======================================= */

.marquee {
    padding: 16px 0;
    background: var(--neon-yellow);
    overflow: hidden;
    border-bottom: var(--border-width) solid var(--white);
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee-move 20s linear infinite;
    font-size: 32px;
    color: var(--bg-black);
}

@keyframes marquee-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* =======================================
　グランドオープンセクション
======================================= */
/* Grand Opening Section */
.opening {
    padding: 100px 24px !important;
    background: var(--white);
    color: var(--bg-black);
    border-bottom: var(--border-width) solid var(--white);
    position: relative;
    overflow: hidden;
}

.opening-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

@media (min-width: 782px) {
    .opening-container {
        flex-direction: row;
        align-items: center;
    }
}

.opening-info {
    flex: 1;
}

.opening-tag {
    background: var(--bg-black);
    color: var(--white);
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.opening-title {
    font-size: clamp(48px, 6vw, 72px);
    line-height: 0.85;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--bg-black) !important;
}

.opening-details {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.4;
}

.opening-visual {
    flex: 1;
    border: 4px solid var(--bg-black);
    padding: 20px;
    background: var(--white);
    transform: rotate(2deg);
}

.opening-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Archivo Black', sans-serif;
    font-size: 25vw;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.opening-visual>div {
    height: 100%;
    text-align: center;
}

.opening-visual div.smb-box__background {
    background: #000;
    color: #fff;
    height: 100%;
}

.opening-visual div.smb-box__body {
    padding: 40px;
}

@media (max-width: 639px) {
    .opening-visual div.smb-box__body {
        padding: 16px;
    }
}


/* =======================================
　キャンペーンセクション
======================================= */

.campaign {
    padding: 80px 24px !important;
    max-width: 1200px !important;
    margin: 0 auto;
}

.campaign-box {
    background: #111;
    border: var(--border-width) solid var(--neon-yellow);
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .campaign-box {
        flex-direction: row;
        align-items: center;
        padding: 60px;
    }
}

.campaign-box::after {
    content: 'LIMITED';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--white);
    color: var(--bg-black);
    padding: 4px 40px;
    transform: rotate(45deg);
    font-family: var(--font-expo);
    font-weight: 900;
    font-size: 12px;
}

.campaign-left {
    flex: 1;
}

.campaign-left span {
    color: var(--neon-yellow);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.campaign-left h2 {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 0.9;
    letter-spacing: -1px;
}

.campaign-right {
    flex: 2;
    border-top: var(--border-width) solid var(--white);
    padding-top: 32px;
}

@media (min-width: 782px) {
    .campaign-right {
        border-top: 0;
        border-left: var(--border-width) solid var(--white);
        padding-top: 0;
        padding-left: 40px;
    }
}

.campaign-price-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.campaign-badge {
    background: var(--neon-yellow);
    color: var(--bg-black);
    font-size: 32px;
    padding: 4px 16px;
}

.campaign-text {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    padding-bottom: 0 !important;
}




/* =======================================
　ニュースセクション
======================================= */
/* News Section */
#news {
    padding: 120px 24px !important;
    border-top: var(--border-width) solid var(--white);
    position: relative;
    overflow: hidden;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.news-header {
    border-bottom: var(--border-width) solid var(--white);
    padding-bottom: 16px;
    margin-bottom: 40px;
}

.news-header>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-header h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 0 !important;
}

.news-header p {
    padding-bottom: 0 !important;
}

.news-item li {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    border-bottom: 1px solid var(--zinc-800);
    transition: 0.3s;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .news-item li {
        flex-direction: row;
        align-items: center;
    }
}

.news-item li:hover {
    background: var(--neon-yellow);
    color: var(--bg-black);
    transition: all 0.5s;
}

.news-date {
    width: 180px;
}

.news-date a {
    font-size: 24px;
    color: var(--zinc-400) !important;
    text-decoration: none !important;
    display: block;
}

.news-item li:hover .news-date {
    color: rgba(0, 0, 0, 0.5);
}

.news-content {
    margin-bottom: 0 !important;
}

.news-content>div {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 24px 16px;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .news-content>div {
        flex-direction: row;
        align-items: center;
    }
}

h3.news-title {
    margin-bottom: 0 !important;
}

h3.news-title a {
    font-weight: 700;
    font-size: 20px !important;
    text-decoration: none !important;
    color: #FFF !important;
    display: block;
}

.news-item li:hover h3.news-title a {
    color: var(--bg-black) !important;
}

.news-tag {
    min-width: 100px;
}

.news-item .news-tag a {
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 900;
    border: 1px solid currentColor;
    padding: 2px 8px;
    margin-right: 16px;
    display: inline-block;
}

.news-item li:hover .news-tag a {
    color: var(--bg-black) !important;
    border: 1px solid var(--bg-black);
}


/* =======================================
　aboutセクション
======================================= */

#top-about {
    padding: 120px 24px 80px !important;
    border-top: var(--border-width) solid var(--white);
    overflow: hidden;
}

.top-about-outer {
    gap: 4em;
}

#top-about h2 {
    font-size: 6rem;
    letter-spacing: -0.02em;
    font-style: italic;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 6rem;
}

.top-about-box1 {
    margin-bottom: 4rem;
}


.top-about-box1 h3,
.top-about-box2 h3 {
    margin-bottom: 1.4rem;
    font-style: italic;
    font-size: 24px;
}

.top-about-box1 p,
.top-about-box2 p {
    font-size: calc(var(--size-primary-font) * .9);
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
    padding-bottom: 0 !important;
}

.top-about-box1>div {
    padding-left: 3rem;
    border-left: 4px solid var(--neon-yellow);
}

.top-about-box2>div {
    padding-left: 3rem;
    border-left: 4px solid var(--white);
}


.relative.aspect-square {
    position: relative;
}

.top-about-outer .grayscale {
    border: 2px solid var(--white);
    margin-bottom: 0 !important;
    position: relative;
}

.top-about-outer .grayscale img {
    --tw-grayscale: grayscale(100%);
    filter: grayscale(1) brightness(0.7);
    position: relative;
    z-index: 5;
}

.space-box {
    position: absolute;
    opacity: 0.5;
    border: 2px solid #ffffff;
    width: 100%;
    height: 43vw;
    max-height: 603px;
    z-index: 2;
    top: -2.5rem;
    right: -2.5rem;
}

@media screen and (max-width:781px) {
    .space-box {
        height: 100%;
        max-height: unset;
    }
}

.top-about-outer .grayscale figcaption {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    z-index: 10;
    background: var(--color-accent01);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    color: var(--bg-black);
    margin-bottom: 0 !important;
}


/*==================== 2.下層共通 ====================*/

/* =======================================
　ヒーローセクション
======================================= */
.under-header {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
    border-bottom: 2px solid var(--white);
}

.under-header h1 {
    font-size: 13rem;
    line-height: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.under-header p.sub-title {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / 1);
    letter-spacing: 0.1em;
    font-size: 1.4rem;
    line-height: 1.2;
}


@media screen and (max-width:780px) {
    .under-header h1 {
        font-size: 10rem;
    }
}

@media screen and (max-width:640px) {
    .under-header h1 {
        font-size: 6.4rem;
    }
}


/*==================== 3.インストラクター ====================*/

/* =======================================
　ヘッドインストラクター
======================================= */

#head-instructor {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
    border-bottom: 2px solid var(--white);
}


.head-instructor-outer {
    gap: 4em;
    margin-bottom: 0 !important;
}

.head-instructor-img-outer {
    position: relative;
    height: 100%;
}

.head-instructor-img-outer .grayscale.relative {
    border: 2px solid var(--white);
    margin-bottom: 0 !important;
    position: relative;
}

.head-instructor-img-outer .grayscale.relative img {
    position: relative;
    z-index: 5;
}

.head-instructor-img-outer .grayscale.relative figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    z-index: 10;
    background: var(--color-accent01);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.1em;
    padding: 0 12px;
    color: var(--bg-black);
    margin-bottom: 0 !important;
}

.head-instructor-img-outer .white-box {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 580px;
    z-index: 1;
    border: 2px solid var(--white);
    top: -3rem;
    left: -3rem;
    margin-bottom: 0 !important;
}

@media screen and (max-width:780px) {
    .head-instructor-img-outer .white-box {
        display: none;
    }
}

#head-instructor h2 {
    font-size: 6rem;
}

@media screen and (min-width:1360px) {
    #head-instructor h2 {
        font-size: 8.4rem;
    }
}

#head-instructor p.post {
    font-size: 22px;
    line-height: 1.75rem;
}

#head-instructor p.belt-color {
    font-size: 14px;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / 1);
}


#head-instructor ul li {
    color: #a1a1aa;
}


/* =======================================
　サブインストラクター
======================================= */

#sub-instoructer {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}


#sub-instoructer h2 {
    font-size: 4.4rem;
    position: relative;
}

#sub-instoructer h2:after {
    content: "";
    border: 1px solid rgb(161 161 170 / .4);
    width: 60vw;
    max-width: 970px;
    right: 0;
    top: calc(50% - 1px);
    position: absolute;
}

@media screen and (max-width:720px) {
    #sub-instoructer h2:after {
        width: 40vw;
    }
}

@media screen and (max-width:430px) {
    #sub-instoructer h2:after {
        width: 24vw;
    }
}


.sub-instoructer-box {
    margin-top: 6rem;
    padding: 0 !important;
}

#sub-instoructer .grayscale.relative {
    border: 2px solid var(--white);
    position: relative;
}

#sub-instoructer .grayscale.relative img {
    position: relative;
    z-index: 5;
}

#sub-instoructer .grayscale.relative figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    z-index: 10;
    background: var(--color-accent01);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.1em;
    padding: 0 12px;
    color: var(--bg-black);
    margin-bottom: 0 !important;
}


.sub-instoructer-content-outer {
    padding: 32px !important;
}

.sub-instoructer-content-outer h3 {
    font-style: italic;
    font-size: 3.2rem;
    margin-bottom: 0 !important;
}

.sub-instoructer-content-outer p.leading-relaxed {
    line-height: 1.2;
}








/*====================4.クラス ====================*/

/* =======================================
　コース
======================================= */

#course {
    padding-top: 12rem !important;
    padding-top: 12rem !important;
    border-bottom: 2px solid var(--white);
}

.course-title-outer {
    margin-bottom: 4rem;
}

.course-title-outer h2 {
    font-size: 4rem;
    margin-bottom: 0 !important;
}


.course-card-outer {
    margin-bottom: 8rem;
}


.course-card {
    padding: 24px !important;
    border: 2px solid var(--white) !important;
    width: 100%;
    height: 100%;
}

.kids .course-card {
    padding: 32px !important;
}

.course-card:hover {
    background: var(--color-accent01);
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px white;
    transition: all .2s;
}

.course-card .course-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 6.4rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    color: var(--white);
    opacity: 0.1;
    position: absolute;
    top: -1.4rem;
    right: 0;
}

.course-card:hover .course-number {
    color: var(--bg-black);
}

.kids .course-card .course-number {
    color: var(--neon-yellow);
    opacity: 0.1;
}

.kids .course-card:hover .course-number {
    color: var(--bg-black);
}

.course-card .category-tag {
    font-size: 10px;
    padding: 2px 8px;
    border: 1px solid currentColor;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
}

.course-card:hover .category-tag {
    border: 1px solid var(--bg-black);
    color: var(--bg-black);
}

.course-card h3 {
    font-size: 2.8rem;
}

.course-card h3 a:hover {
    color: var(--bg-black) !important;
    opacity: 1 !important;
}

.course-card:hover h3 {
    color: var(--bg-black) !important;
    opacity: 1 !important;
}


#class-contact-area {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}


/*==================== 5.クラス下層共通 ====================*/

/* =======================================
　ヒーローセクション
======================================= */

.class-hero {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    border-bottom: 2px solid var(--white);
    margin-bottom: 6rem;
}

.class-hero h1 {
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.class-hero .beginner-label,
.class-hero .no-sparring-label,
.class-hero .flame-label {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 2rem;
}


/* =======================================
　タイトル
======================================= */
.class-child h2 {
    font-size: 40px;
}

/* =======================================
　ラベル
======================================= */

.beginner-label {
    position: relative;
    background: var(--white);
    padding: 4px 16px 4px 48px;
    display: inline-table;
    color: var(--bg-black);
    border-radius: 6px;
    margin-bottom: 2rem !important;
    border: 2px solid var(--neon-yellow);
}


.beginner-label:before {
    position: absolute;
    content: "";
    background: url(../../images/class/biginner.png);
    width: 15.488px;
    height: 24.012px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 16px;
    top: 7px;
}


.no-sparring-label {
    position: relative;
    background: var(--white);
    padding: 4px 16px 4px 48px;
    display: inline-table;
    color: var(--bg-black);
    border-radius: 6px;
    margin-bottom: 2rem !important;
    border: 2px solid var(--neon-yellow);
}

.no-sparring-label:before {
    position: absolute;
    content: "";
    background: url(../../images/class/no-sparring.png);
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 16px;
    top: 8px;
}


.flame-label {
    position: relative;
    background: var(--white);
    padding: 4px 16px 4px 48px;
    display: inline-table;
    color: var(--bg-black);
    border-radius: 6px;
    margin-bottom: 2rem !important;
    border: 2px solid #ff953e;
}

.flame-label:before {
    position: absolute;
    content: "";
    background: url(../../images/class/flame.png);
    width: 19.432px;
    height: 26.544px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 16px;
    top: 6px;
}




/* =======================================
　コンセプト
======================================= */
.concept-section {
    padding-bottom: 6rem !important;
    border-bottom: 2px solid var(--white);
}

.concept-grid {
    gap: 3em;
}



/* =======================================
　練習フロー
======================================= */
.flow-list {
    padding-top: 12rem !important;
    padding-bottom: 10rem !important;
    border-bottom: 2px solid var(--white);
}


.flow-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.flow-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 70px;
    bottom: -45px;
    width: 2px;
    background: var(--zinc-800);
}

.flow-item:last-child:before {
    display: none;
}

.flow-num p {
    color: var(--bg-black);
    padding-bottom: 0 !important;
    font-size: 20px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    background: var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.flow-item h3 {
    margin: 0;
    font-size: 24px;
}


/* =======================================
　特徴
======================================= */
.feature-section {
    padding-top: 12rem !important;
    padding-bottom: 10rem !important;
    border-bottom: 2px solid var(--white);
}

.feature-card {
    height: 100%;
    padding: 32px !important;
}

.card-icon {
    margin-bottom: 2rem !important;
}

@media screen and (max-width: 639px) {
    .feature-card {
        padding: 16px !important;
    }
}



/* =======================================
　CTAセクション
======================================= */
.cta-box {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.cta-box h2 {
    font-size: 56px;
}

.cta-box p {
    padding-bottom: 4rem !important;
}

.cta-box a.smb-btn {
    border: 2px solid var(--bg-black) !important;
    font-size: 24px;
}

.cta-box a.smb-btn:hover {
    border: 2px solid var(--bg-black) !important;
    color: var(--bg-black) !important;
}




/*==================== 6.システム＆料金 ====================*/

#system-fee-area {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

/* =======================================
　料金表　通常料金
======================================= */
.system-fee-outer {
    gap: 1em !important;
    margin-bottom: 6rem;
}

.system-fee-outer .wp-block-snow-monkey-blocks-box.smb-box:nth-child(n+2) {
    margin-top: 0;
}

.system-fee-outer .system-fee-box h3 {
    font-size: 32px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 0;
}

.system-fee-outer .system-fee-money {
    line-height: 1.2;
    margin-top: 2rem;
}


/* =======================================
　料金表　特別料金
======================================= */
.system-special-outer {
    gap: 1em !important;
    margin-bottom: 6rem;
}

.system-special-outer .wp-block-snow-monkey-blocks-box.smb-box:nth-child(n+2) {
    margin-top: 0;
}

.system-special-outer .system-special-box {
    position: relative;
    padding-top: 4rem;
}

.system-special-outer .system-special-box .system-special-label {
    position: absolute;
    top: -54px;
    background: var(--white);
    color: var(--bg-black);
    padding: 2px 8px;
}

.system-special-outer .system-special-box h4 {
    font-size: 32px;
}

.system-special-outer .system-special-box ul {
    list-style: none;
}

.system-special-outer .system-special-box ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #272727;
    display: flex;
    justify-content: space-between;
}

.system-special-outer .system-special-box ul li span {
    font-family: var(--font-expo);
}


/* =======================================
　料金表　入会金
======================================= */
.system-admission-outer .wp-block-snow-monkey-blocks-box.smb-box:nth-child(n+2) {
    margin-top: 0;
}



/* =======================================
　駐車場
======================================= */
#system-parking-area {
    border-top: 2px solid var(--white);
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

#system-parking-area .system-parking-box {
    padding: 40px !important;
}

@media screen and (max-width: 639px) {
    #system-parking-area .system-parking-box {
        padding: 16px !important;
    }
}


#system-parking-area h3 {
    font-size: 32px;
}


#system-parking-area .system-parking-time-box {
    height: 100%;
}


#system-parking-area .system-parking-ticket-box {
    height: 100%;
    padding: 32px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (max-width: 639px) {
    #system-parking-area .system-parking-ticket-box {
        padding: 16px !important;
    }
}

/* =======================================
　退会・休会
======================================= */
#system-leave-area {
    border-top: 2px solid var(--white);
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}


#system-leave-area .system-leave-box {
    padding: 40px !important;
}

@media screen and (max-width: 639px) {
    #system-leave-area .system-leave-box {
        padding: 16px !important;
    }
}

#system-leave-area h3 {
    font-size: 32px;
}

#system-leave-area .system-leave-example-box {
    padding: 32px !important;
    border-left: 1px solid var(--white);
}

@media screen and (max-width: 639px) {
    #system-leave-area .system-leave-example-box {
        padding: 16px !important;
        border-top: 1px solid var(--white);
        border-left: none;
    }
}

/* =======================================
　システム　ルール　共通項目
======================================= */
#system-rules-area {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}

#system-rules-area h2,
#system-rules-area h3,
#system-rules-area h4,
#system-rules-area h5,
#system-rules-area p,
#system-rules-area ul {
    color: var(--bg-black);
}


/* =======================================
　システム　ルール　詳細
======================================= */
#system-rules-area {
    counter-reset: number 00;
}

#system-rules-area h3 {
    font-size: 32px;
    display: flex;
    align-items: center;
}

#system-rules-area h3:before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    color: var(--white);
    font-size: 20px;
    background: var(--bg-black);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.system-rules-inner {
    margin-top: 4rem;
}

.system-rules-inner .system-rules-box {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 1.6rem;
}

.system-rules-inner .system-rules-box h4 {
    margin-bottom: 0.6rem;
    font-size: 20px;
    font-weight: 700;
}

.system-rules-inner .system-rules-box p {
    padding-bottom: 0;
    font-size: 14px
}

.system-rules-inner .system-rules-box .smb-box__background {
    border: none;
    border-radius: 0;
}

.system-rules-inner .system-rules-inner-left .system-rules-box .smb-box__background {
    border-left: 4px solid var(--neon-yellow);
}

.system-rules-inner .system-rules-inner-right .system-rules-box .smb-box__background {
    border-left: 4px solid var(--bg-black);
}




/*==================== 6-2.特定商取引法に基づく表記 ====================*/

@media screen and (max-width: 639px) {
    .system-child h1 {
        margin-bottom: 16px;
    }
}


.legal-notice-table td {
    border: none !important;
    border-bottom: 1px solid var(--zinc-800) !important;
    padding-top: 24px !important;
}

.legal-notice-table tr:last-child td {
    border-bottom: none !important;
    padding-bottom: 24px !important;
}



/*==================== 6-3.個人情報保護方針 ====================*/

.policy-box {
    padding: 32px !important;
}

@media screen and (max-width: 639px) {
    .policy-box {
        padding: 16px !important;
    }
}

.policy-box h3 {
    position: relative;
    border-left: 4px solid var(--neon-yellow);
    color: var(--neon-yellow) !important;
    font-weight: 400 !important;
    padding-left: 16px;
    font-size: 18px !important;
    margin-top: 2rem;
}

.policy-box p,
.policy-box ul li {
    font-weight: 400 !important;
}

/*==================== 7.よくあるご質問 ====================*/

.faq-header-label {
    background: var(--color-accent01);
    color: var(--bg-black);
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 2rem;
}

#faq-area {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

/* =======================================
　質問内容
======================================= */
.faq-outer .wp-block-snow-monkey-blocks-box.smb-box:nth-child(n+2) {
    margin-top: 0;
}

.faq-outer {
    gap: 1.6em;
}

.faq-outer .faq-box {
    padding: 40px 40px 60px;
}

@media screen and (max-width: 639px) {
    .faq-outer .faq-box {
        padding: 32px 24px 48px;
    }
}

.faq-outer .faq-box .smb-box__background {
    background-color: #0a0a0a;
}

.faq-outer .faq-box h3 {
    position: relative;
    padding-left: 32px;
    padding-right: 16px;
}

.faq-outer .faq-box h3:before {
    position: absolute;
    content: "Q";
    font-weight: 900;
    font-family: var(--font-expo) !important;
    font-size: 32px;
    color: var(--color-accent01);
    left: 0;
    top: -6px;
}

.faq-outer .faq-box p {
    position: relative;
    padding-left: 32px;
    padding-right: 16px;
}

.faq-outer .faq-box p:first-of-type:before {
    position: absolute;
    content: "A";
    font-weight: 900;
    font-family: var(--font-expo) !important;
    font-size: 32px;
    color: var(--white);
    left: 0;
    top: -6px;
}

.faq-outer .faq-box p:last-of-type:after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    /* hoverしていない時の横幅は0に指定 */
    height: 3px;
    /* 線の太さ */
    background-color: var(--color-accent01);
    /* 線色 */
    transition: .3s;
    /* アニメーション時間 */
}

.faq-outer .faq-box:hover p:last-of-type:after {
    width: 100%;
}



#faq-contact-area {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}