@charset "UTF-8";

.page_ttl {
    display: none;
    color: #fff;
    font-size: 16rem;
    margin-bottom: 40rem;
    text-align: center;
}

.page_ttl span {
    background: #3E201B;
    /*box-shadow: 3rem 3rem rgb(0 0 0 / 30%);*/
    padding: 8rem;
    position: relative;
}

.page_ttl span::after {
    content: "";
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0),radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0);
    background-size: 2rem 2rem;
    background-position: 0 0, 1rem 1rem;
    /*border-radius: 10rem;*/
    z-index: -1;
}

.page_ttl span i {
    margin-right: 3rem;
}

/*.breadcrumb {
    display: none;
    margin-bottom: 30rem;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16rem;
}

.breadcrumb ul li a::after {
    content: "＞";
    padding: 0 10rem;
}

.breadcrumb ul li:last-child {
    font-weight: bold;
}

.breadcrumb ul li:last-child a::after {
    display: none;
}*/

@media screen and (max-width: 767px) {
    
    .page_ttl {
        display: block;
        order: 1;
    }

    /*.breadcrumb {
        display: block;
        order: 1;
    }*/

}





/*-------------------------------------------
container
-------------------------------------------*/
#container {
    display: flex;
    justify-content: space-between;
    margin-top: 60rem;
    margin-bottom: 100rem;
}

main {
    /*width: 750rem;*/
    width: 1100rem;
}

main article {
    margin-bottom: 30rem;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /*-------------------------------------------
    container
    -------------------------------------------*/
    
    #container {
        /*flex-direction: column-reverse;*/
        flex-direction: column;
        margin-bottom: 50rem;
    }
    
    #container .archive {
        margin-bottom: 40rem;
    }
    
    #container .archive ul {
        display: flex;
        justify-content: space-between;
    }
    
    #page_enikki #container .archive ul li {
        font-size: 14rem;
        letter-spacing: -0.1em;
    }
    
    #container .archive ul li + li {
        margin-top: 0;
    }
    
    /*#container .archive ul li.sort0000 {
        margin-top: 5rem;
    }*/
    
    main {
        order: 3;
        width: 100%;
        margin-bottom: 50rem;
    }
    
    /*main img {
        border-radius: 5rem;
    }*/
    
}





/*-------------------------------------------
aside
-------------------------------------------*/
#sidebar {
    margin: 10rem;
    /*width: 180rem;*/
    width: 150rem;
}

#sidebar .side-title {
    font-size: 16rem;
    font-weight: bold;
    margin-bottom: 30rem;
    
    padding: 5rem 10rem;
    border-left: 5rem solid #522b26;
    background: radial-gradient(#ccc 30%, transparent 0);
    background-size: 4rem 4rem;
    text-align: left;
}

.archive {
    margin-bottom: 60rem;
}

.archive li {
    font-size: 16rem;
    text-align: left;
}

.archive li + li {
    margin-top: 10rem;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /*-------------------------------------------
    aside
    -------------------------------------------*/
    #sidebar {
        margin: 0;
        width: 100%;
        order: 2;
    }
}





/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/

.sort-btn li {
    cursor: pointer;
    display: table;
    padding: 5rem;
    text-decoration: none;
    line-height: 1;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
    color: #fff;
    background: #3E201B;
    /*box-shadow: 3rem 3rem rgba(0,0,0,0.3);*/
    position: relative;
}

.sort-btn li.active::after {
    content: "";
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0),radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0);
    background-size: 2rem 2rem;
    background-position: 0 0, 1rem 1rem;
    /*border-radius: 10rem;*/
    z-index: -1;
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
    position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
    display: block;
    position: absolute;
    /*width: 33%;*//*横並びで3つ表示*/
    /*width: 230rem;*/
    width: 250rem;
    margin: 10rem;
    z-index: 1;
    list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
    width: 100%;
    height: 100%;
}

.item-content a {
    display: block;
    position: relative;
}

.item-content img {
    border-bottom-right-radius: 5rem;
    border-bottom-left-radius: 5rem;
    /*filter: drop-shadow(3rem 3rem rgba(0,0,0,0.3));*/
    /*will-change: filter;*/ /*GPUレイヤーを作成（iOS崩れ対策）*/
}

/*.hoge {
    background: linear-gradient(0deg, rgba(230,255,100,0.2) 49rem, #fff 50rem), linear-gradient(90deg, rgba(230,255,100,0.2) 49rem, #fff 50rem);
    background-size: 50rem 50rem;
}*/

.item-content a::after {
    content: "";
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0),radial-gradient(rgba(0, 0, 0, 0.7) 30%, transparent 0);
    background-size: 2rem 2rem;
    background-position: 0 0, 1rem 1rem;
    border-radius: 5rem;
    z-index: -1;
}

.item-content.no-dot a::after {
    background: none;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
/*@media only screen and (max-width: 768px) {*/
@media only screen and (max-width: 767px) {
    .item {
        /*width: 49.5%;*//*横並びで2つ表示*/
        /*width: 149rem;*/
        width: 148.5rem;
    }
}

/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
/*Ver.3.5.7用*/
.fancybox-thumbs {
    background: transparent!important;
}

.fancybox-thumbs__list a:before {
    /*border: 6px solid #FA999B;*/
    border: 3px solid rgba(75,255,3,0.8) !important;
}

/*V4用*/
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-width: 3px !important;
    border-color: var(--fancybox-accent-color, rgba(75,255,3,0.8)) !important;
}

.fancybox__content {
    margin-bottom: 20rem !important;
}

.fancybox__caption {
    font-size: 16rem;
}

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

    .fancybox__caption {
        font-size: 14rem;
    }
    
    .item-content img {
        border-radius: 5rem;
    }

    .item-content::after {
        border-radius: 5rem;
    }

}

