/* ==========================================
   基本
========================================== */

* {
    box-sizing: border-box;
}


body {

    margin: 0;

    background: #316e03;

    overflow-x: hidden;

    font-family:
        "Hiragino Maru Gothic Pro",
        "Yu Gothic",
        sans-serif;

}


/* ==========================================
   ロゴ
========================================== */

.container {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 50px;

}


/* ==========================================
   スライダー
========================================== */

.slider-wrapper {

    position: relative;

    width: 100%;

    overflow: hidden;

}


.viewport {

    position: relative;

    overflow: hidden;

    width: 100vw;

    background: #ffffff;

    cursor: grab;

}


.viewport:active {

    cursor: grabbing;

}


/* ==========================================
   写真を並べる部分
========================================== */

#track {

    display: flex;

    gap: 8px;

    width: max-content;

}


/* ==========================================
   写真
========================================== */

.slide {

    flex: 0 0 auto;

    overflow: hidden;

    background: #ffffff;

}


.slide img {

    display: block;

    height: 30vw;

    max-height: 260px;

    min-height: 150px;

    width: auto;

    cursor: pointer;

    transition:
        transform 0.8s ease;

}


/* ==========================================
   マウスを乗せたときの軽いズーム
========================================== */

.slide:hover img {

    transform: scale(1.04);

}


/* ==========================================
   左右ボタン
========================================== */

.arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 48px;

    height: 70px;

    border: none;

    border-radius: 8px;

    background:
        rgba(0,0,0,0.35);

    color: white;

    font-size: 48px;

    line-height: 60px;

    cursor: pointer;

    transition:
        background 0.3s;

}


.arrow:hover {

    background:
        rgba(0,0,0,0.65);

}


.arrow.prev {

    left: 10px;

}


.arrow.next {

    right: 10px;

}


/* ==========================================
   写真番号
========================================== */

#counter {

    position: absolute;

    right: 15px;

    top: 15px;

    z-index: 10;

    padding: 5px 12px;

    border-radius: 20px;

    background:
        rgba(0,0,0,0.55);

    color: white;

    font-size: 14px;

    letter-spacing: 1px;

}


/* ==========================================
   タイトルバー
========================================== */

.controls {

    width: 100%;

    background: #316e03;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 15px 10px;

}


/* ==========================================
   フォント
========================================== */

.title-left,
.title-right {

    font-family:
        "AR P丸ゴシック体E",
        "Arial Rounded MT Bold",
        "Hiragino Maru Gothic Pro",
        "Yu Gothic",
        sans-serif;

    color: #ffffff;

}


/* ==========================================
   左タイトル
========================================== */

.title-left {

    width: 260px;

    text-align: right;

    margin-right: 25px;

    line-height: 1.25;

}


.title-left div:first-child {

    font-size: 26px;

}


.title-left div:last-child {

    font-size: 22px;

}


/* ==========================================
   再生・停止ボタン
========================================== */

.button-area {

    width: 70px;

    text-align: center;

}


.control-button {

    border: none;

    background: transparent;

    padding: 0;

    cursor: pointer;

}


.control-button img {

    width: 50px;   /*  60px  */

    height: 50px;   /*  60px  */

}


/* ==========================================
   右タイトル
========================================== */

.title-right {

    width: 320px;

    margin-left: 25px;

    text-align: left;

    font-size: 36px;

    letter-spacing: 2px;

}


/* ==========================================
   拡大表示
========================================== */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 1000;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px;

    background: rgba(0,0,0,0.92);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.3s ease;
}


.lightbox.show {

    opacity: 1;

    visibility: visible;
}


/* ==========================================
   写真＋説明をまとめる
   ★写真と説明の幅を完全に統一
========================================== */

#lightboxContent {

    display: flex;

    flex-direction: column;

    align-items: stretch;

    max-width: 92vw;

    max-height: 90vh;
}


/* ==========================================
   拡大写真
========================================== */

#lightboxImage {

    display: block;

    width: auto;

    max-width: 92vw;

    max-height: 72vh;

    object-fit: contain;

    margin: 0 auto;
}


/* ==========================================
   ★白色説明エリア
========================================== */

#lightboxInfo {

    width: 100%;

    padding: 16px 22px 18px;

    background: #ffffff;

    color: #222222;

    text-align: center;

    box-sizing: border-box;
}


/* 写真タイトル */

#lightboxTitle {

    font-size: 24px;

    font-weight: bold;

    color: #333333;

    line-height: 1.4;
}


/* 写真説明 */

#lightboxText {

    margin-top: 6px;

    font-size: 16px;

    color: #555555;

    line-height: 1.6;
}

/* ==========================================
   閉じるボタン
========================================== */

.lightbox-close {

    position: absolute;

    top: 15px;

    right: 20px;

    z-index: 1001;

    width: 50px;

    height: 50px;

    border: none;

    background: transparent;

    color: white;

    font-size: 42px;

    cursor: pointer;

}


/* ==========================================
   スマホ
========================================== */

@media (max-width: 768px) {


    .container {

        height: 45px;

    }


    /* --------------------------------------
       写真
    -------------------------------------- */

    .slide img {

        height: 45vw;

        max-height: 210px;

        min-height: 130px;

    }


    /* --------------------------------------
       左右ボタン
    -------------------------------------- */

    .arrow {

        width: 36px;

        height: 55px;

        font-size: 36px;

    }


    .arrow.prev {

        left: 5px;

    }


    .arrow.next {

        right: 5px;

    }


    /* --------------------------------------
       写真番号
    -------------------------------------- */

    #counter {

        top: 8px;

        right: 8px;

        font-size: 12px;

        padding: 4px 9px;

    }


    /* --------------------------------------
       下部タイトル
    -------------------------------------- */

    .controls {

        padding: 8px 5px;

    }


    .title-left {

        width: 120px;

        margin-right: 8px;

    }


    .title-left div:first-child {

        font-size: 14px;

    }


    .title-left div:last-child {

        font-size: 12px;

    }


    /* --------------------------------------
       ボタン
    -------------------------------------- */

    .button-area {

        width: 48px;  /*  48px  */

    }


    .control-button img {

        width: 42px;  /*  42px  */

        height: 42px;  /*  42px  */

    }


    /* --------------------------------------
       右タイトル
    -------------------------------------- */

    .title-right {

        width: 160px;

        margin-left: 8px;

        font-size: 22px;

        letter-spacing: 1px;

    }


    /* --------------------------------------
       拡大写真
    -------------------------------------- */

    #lightboxContent {

        width: 96vw;

        max-height: 90vh;
    }

    #lightboxImage {

        width: 100%;

        max-width: 100%;

        max-height: 68vh;

    }


    /* --------------------------------------
       拡大時の白い説明欄
    -------------------------------------- */

    #lightboxInfo {

        width: 100%;

        padding: 10px 12px 12px;

    }


    #lightboxTitle {

        font-size: 18px;

    }


    #lightboxText {

        font-size: 13px;

        margin-top: 4px;

    }

}