/* aboutページ専用のスタイル */
.main-content {
    background-color: #414393; 
    background-image: none; /* 画像を削除 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 3;
} 

.middle-container {
    top: 32vh;
    height: calc(43vh - 10px);  /* 43vhから10pxを引く */
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 10px;
}

.bottom-container {
    top: 75vh;
    height: 25vh;
}

/* aboutページのスクロール */
.about-scroll {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    z-index: 0;
    gap: 1.5rem;
    padding: 0px 0px 10px 0px;
    scroll-snap-type: x mandatory;
    height: 95%;
}

.about-card {
    width: auto;
    min-width: fit-content;
    height: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    border: 1px solid var(--color-orange);
    border-radius: 10px;
    background-color: rgba(255, 130, 0, 0);
    position: relative;
}

.about-card h2 {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin: 0 0 1rem 0;
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
}

.about-content {
    height: 250px;
    overflow-y: auto;
    width: 100%;
    padding-top: 0;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.about-content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;  /* "・"のためのスペース */
}

.about-content li::before {
    content: "・";
    color: var(--color-orange);
    position: absolute;
    left: 0;
    font-size: 2rem;  /* "・"のサイズを大きく */
    line-height: 1;  /* 行の高さを調整 */
    top: 50%;  /* 中央配置のため追加 */
    transform: translateY(-50%);  /* 中央配置のため追加 */
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;  /* 上部マージンを削除 */
}

/* 「Verk」の説明の段落に下マージンを追加 */
.about-content p:nth-of-type(2) {
    margin-bottom: 1rem;
}

/* スクロールバーのスタイル */
.about-content::-webkit-scrollbar {
    width: 3px;
}

.about-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.about-content::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 5px;
}

.about-content::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}

/* スクロールバーのスタイル */
.middle-container::-webkit-scrollbar {
    height: 10px;
}

.middle-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.middle-container::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 5px;
}

.middle-container::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}

.about-logo {
    position: absolute;
    bottom: 5%;
    right: 2%;  /* 5%から2%に変更して右に寄せる */
    width: auto;
    height: 230px;
    opacity: 0.4;
    z-index: -1;
    mix-blend-mode: normal;
}

.footer-info {
    display: none;
}

.logo-images {
    display: flex;
    gap: 4rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.logo-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: auto;
}

.logo-image-container:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.logo-description {
    color: white;
    font-size: 0.8rem;
    margin: 0;
}

.cinema-image {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 5px;
}

.logo3 {
    margin: 0px 0px 0px 20px;
}

.about-content p2 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;  /* 上部マージンを削除 */
}

.member-bar {
    box-sizing: border-box;
    width: calc(100% - 2vh);
    height: calc(100% - 15px);
    background-color: #1b1b1b;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    position: relative;
    z-index: 998;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.members-text {
    color: var(--color2);
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 999;
    transition: color 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}

.member-popup {
    display: none;
    position: fixed;
    bottom: calc(25vh + 10px);
    right: calc((100% - 70px - 4vh) * 0.15);
    width: calc((100% - 70px - 4vh) * 0.85);
    height: auto;
    background-color: #1a1a1a;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-sizing: border-box;
    z-index: 999;
    margin-bottom: 0px;
    padding: 20px;
    overflow: visible;
}

.member-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 997;
}

.card-arrow-narrow {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 15px solid #fff;
    margin: 0 10px;
    display: inline-block;
    align-self: center;
}

