/* エントランス */
.size img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.text-pink {
    background-color: #FA3FB7;
    color: #fff;

    &:hover {
        background-color: #fff;
        color: #FA3FB7;
    }
}

.text-blue {
    background-color: #0279F7;
    color: #fff;

    &:hover {
        background-color: #fff;
        color: #0279F7;
    }
}

.text-green {
    background-color: #5AAA15;
    color: #fff;

    &:hover {
        background-color: #fff;
        color: #5AAA15;
    }
}

.copyright {
    line-height: 2;
    color: #fff;
    text-align: center;
    background: #2F3D54;
}

@media screen and (max-width: 992px) {
    .size img {
        aspect-ratio: 3/3;
        object-fit: cover;
    }
}

/* ３つのページのCSS */

html {
    --pink: #FA3FB7;
}

html {
    --blue: #0279F7;
}

html {
    --green: #5AAA15;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

/* 共通CSS */
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 2rem;
}

.wrapper-2 {
    max-width: 1000px;
    margin: auto;
    padding: 0 2rem;
}

p {
    line-height: 1.5;
}

.back-bg {
    background-color: #F6F7FB;
}

.each-title {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #2F3D54;
    border-bottom: solid 2px var(--pink);
}

.each-title-blue {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #2F3D54;
    border-bottom: solid 2px var(--blue);
}

.each-title-green {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #2F3D54;
    border-bottom: solid 2px var(--green);
}

a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/* H2共通タイトルCSS */
.sub-title {
    color: var(--pink);
}

.sub-title-blue {
    color: var(--blue);
}

.sub-title-green {
    color: var(--green);
}

.title {
    color: #2F3D54;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(transparent 40%, #FCF6C7 60%);
}

/* ヘッダー */
.headline {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.headline-title {
    color: #2F3D54;
    font-weight: bold;
    font-size: 1.75rem;
}

.logo {
    width: 130px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-right: 1rem;
}

.main-nav a:hover {
    color: var(--pink);
}

.main-nav-blue {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-right: 1rem;
}

.main-nav-blue a:hover {
    color: var(--blue);
}

.main-nav-green {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-right: 1rem;
}

.main-nav-green a:hover {
    color: var(--green);
}

.nav-item {
    padding: 0.5rem 1rem;
    background: #FFF;
    border: solid 1px #000000;
    border-radius: 50px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-toggler {
    border: none;
}

.heading {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 0px 9px 10px -6px rgba(0, 0, 0, 0.3);
}

.splide__arrow {
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.splide__arrow:hover {
    background-color: #445c95;
}

s .maru-box {
    position: relative;
}

.maru {
    position: absolute;
    bottom: -0.25rem;
}

/* メイン */
.top-text {
    position: relative;
    margin-top: -4vw;
}

.confirmation-btn {
    position: relative;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.75rem 5rem;
    background: #FFF;
    border: solid 2px var(--pink);
    border-radius: 50px;
    border-bottom: solid 8px var(--pink);
    transition: all 0.3s ease;
}

.confirmation-btn:hover {
    background: var(--pink);
    color: #FFF;
    border-color: var(--pink);
    border-bottom: solid 8px #c72b93;
    cursor: pointer;
}

.confirmation-btn-blue {
    position: relative;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.75rem 3rem;
    background: #fff;
    border: solid 2px var(--blue);
    border-radius: 50px;
    border-bottom: solid 8px var(--blue);
    transition: all 0.3s ease;
}

.confirmation-btn-blue:hover {
    background: var(--blue);
    color: #FFF;
    border-color: var(--blue);
    border-bottom: solid 8px #445c95;
    cursor: pointer;
}

.confirmation-btn-green {
    position: relative;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.75rem 5rem;
    background: #FFF;
    border: solid 2px var(--green);
    border-radius: 50px;
    border-bottom: solid 8px var(--green);
    transition: all 0.3s ease;
}

.confirmation-btn-green:hover {
    background: var(--green);
    color: #FFF;
    border-color: var(--green);
    border-bottom: solid 8px #5AAA15;
    cursor: pointer;
}

.confirmation-btn:hover .confirmation-btn-arrow {
    color: #FFF;
}


.confirmation-btn-arrow {
    color: var(--pink);
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    display: flex;
    justify-content: end;
    transition: all 0.3s ease;
}

.confirmation-btn-arrow-blue {
    color: var(--blue);
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    display: flex;
    justify-content: end;
    transition: all 0.3s ease;
}

.confirmation-btn-arrow-green {
    color: var(--green);
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    display: flex;
    justify-content: end;
    transition: all 0.3s ease;
}

.slider-height {
    height: 750px;
}

/* イベント */
.event-title {
    padding-top: 1rem;
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 2行で省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;

}

.event-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* 6行で省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    /* max-height は削除してOK */
}

.viewmore-btn-wrapper {
    margin-top: 3rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.event-news-text {
    color: var(--pink);
}

.event-news-text-blue {
    color: var(--blue);
}

.event-news-text-green {
    color: var(--green);
}

.viewmore-btn {
    position: relative;
    font-size: 1.2rem;
    display: inline-block;
    color: #FFF;
    padding: 0.75rem 6rem;
    background: #2F3D54;
    border-radius: 50px;
}

.viewmore-btn:hover {
    background: #475e80;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.viewmore-btn-arrow {
    color: #FFF;
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    display: flex;
    justify-content: end;
    transition: transform 0.3s ease;
}

/* イベント情報画像 */
.event-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1/1;
    background-color: #F6F7FB;
}

.event-img-single {
    width: 100%;
}

/* 新着情報 */
.news-border {
    border-bottom: dotted 2px #2F3D54;
}

/* SNSのコンテンツ(仮） */
.sns {
    width: 150PX;
}

/* 施設のご案内 */
.information-wrapper {
    max-width: 850px;
}

.information-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    color: #2F3D54;
    font-weight: bold;
}

/* 料金表 */
table {
    width: 1050px;
    text-align: center;
    table-layout: fixed;
}

table.table-style th {
    background-color: #fce7f5 !important;
    padding: 1rem;
}

table.table-style-blue th {
    text-align: center;
    background-color: #e8f1f9 !important;
    padding: 15px;
}

table.table-style-green th {
    text-align: center;
    background-color: #E7F7D9 !important;
    padding: 15px;
}

table.table-style td {
    padding: 1rem;
}

.fee-text {
    font-weight: bold;
    margin-bottom: 1rem;
}

.qa-box-q {
    display: flex;
    align-items: center;
    background-color: #fce7f5;
}

.qa-box-q-blue {
    display: flex;
    align-items: center;
    background-color: #e8f1f9;
}

.qa-box-q-green {
    display: flex;
    align-items: center;
    background-color: #E7F7D9;
}

.question {
    color: #475e80;
    font-size: 1.5rem;
    padding: 1rem;
}

.answer {
    color: #EA4E33;
    font-size: 1.5rem;
    padding: 1rem;
}

.address {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2F3D54;
    padding-bottom: 1rem;
}

.dashed-box {
    display: flex;
    border-bottom: 1px dashed #333;
}

.pink-box {
    width: 5px;
    height: 20px;
    background: var(--pink);
}

.blue-box {
    width: 5px;
    height: 20px;
    background: var(--blue);
}

.green-box {
    width: 5px;
    height: 20px;
    background: var(--green);
}

/* フッター */
.footer-nav {
    background-color: #2F3D54;
}

.copyright {
    line-height: 2;
    color: #fff;
    text-align: center;
    background: var(--pink);
}

.copyright-blue {
    line-height: 2;
    color: #fff;
    text-align: center;
    background: var(--blue);
}

.copyright-green {
    line-height: 2;
    color: #fff;
    text-align: center;
    background: var(--green);
}

.smf-action .smf-button-control__control {
    position: relative;
    font-size: 1.2rem;
    display: inline-block;
    color: #FFF;
    padding: 0.75rem 6rem;
    background: #2F3D54;
    border-radius: 50px;
}

.smf-button-control__control:hover {
    background: #475e80;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.sp-only-br {
    display: none;
}

@media screen and (max-width: 1400px) {
    .logo {
        width: 80px;
    }

    .nav-item {
        padding: 0.2rem 0.1rem;
    }

    .headline-title {
        font-size: 17px;
    }

    .main-nav {
        gap: 0.25rem;
        font-size: 16px;
    }

    .main-nav-blue {
        gap: 0.25rem;
        font-size: 16px;
    }

    .main-nav-green {
        gap: 0.25rem;
        font-size: 16px;
    }

    .slider-height {
        height: 500px;
    }
}

@media screen and (max-width: 992px) {

    /* 959px以下に適用されるCSS（タブレット用） */
    .nav-item {
        padding: 0.2rem 1rem;
    }

    .top-text {
        position: relative;
        margin-top: 4vw;
    }

    .dashed-box {
        border-bottom: 1px dashed #333;
    }

    .footer-nav {
        background-color: #2F3D54;
    }

    .footer-nav a {
        margin: 0.5rem;
        padding: 0.25rem;
        border: 1px solid #fff;
        border-radius: 2rem;
        border-bottom: solid 3px #FFF;
    }

    .footer-nav a:hover {
        background-color: #475e80;
        transition: all 0.3s ease;
    }
}

@media screen and (max-width: 768px) {

    /* 768px以下に適用されるCSS（スマホ用） */
    table.table-style th {
        padding: 10px;
    }

    table.table-style td {
        padding: 10px;
    }

    .sp-only-br {
        display: inline;
        /* または block */
    }
}

/*# sourceMappingURL=sportscenter.css.map */