/* スライドショー外枠 */
.main-visual { 
    width: 100%; 
    height: 600px; 
    overflow: hidden; 
    position: relative;
}

/* Swiper本体と画像 */
.mySwiper, 
.mySwiper .swiper-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.mySwiper {
    z-index: 1 !important;
}

/* 装飾レイヤー（スライドの上の透明な膜） */
.mv-decoration-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none; /* 下のスライド操作を邪魔しない */
}

/* mv-inner（中央揃えなどの基準が必要な場合用） */
.mv-inner {
    position: relative;
    width: 100%;
    height: 100%;
}


/* レスポンシブ設定 */
@media (max-width: 768px) {
    .main-visual {
        height: 450px; /* スマホでは高さを少し抑える */
    }
    
    .mv-sns-links {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .sns-icon i {
        font-size: 24px;
    }
}


/* 団体リストのスタイル（ポチを消す） */
.group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.group-list li {
    margin-bottom: 15px; /* 項目間の余白 */
}

.group-list li a {
    text-decoration: none;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

/* リンクの後ろにFont Awesomeのアイコンを追加 */
.group-list li a::after {
    font-family: "Font Awesome 5 Free"; /* Font Awesome 5 の場合 */
    font-weight: 900;
    content: "\f35d"; /* 外部リンクアイコンのコード */
    font-size: 0.8em;
    margin-left: 8px; /* 文字との隙間 */
    color: #aaa;      /* アイコンは少し薄めの色に */
    transition: color 0.3s;
}

/* ホバー時の演出 */
.group-list li a:hover {
    color: var(--main-green);
}

.group-list li a:hover::after {
    color: var(--main-green); /* ホバー時にアイコンも緑にする */
}