@charset "UTF-8";

/*===== base =====*/
/*全体設定*/
html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    background-color: rgb(50, 50, 50);
    box-shadow: 0 0 30px rgba(0, 0, 0, 1.0) inset;
}

body a {
    color: yellow;
}

body a:hover {
    color: rgb(200, 200, 0);
}

/*フォント設定*/
.alfa-slab-one-regular {
    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;
}

.anton-regular {
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
}

.m-plus-rounded-1c-regular {
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
}

.kaisei-opti-regular {
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
    font-style: normal;
}

/*２カラム配置*/
.flex-all {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.left {
    order: 1;
    width: 79%;
}

.right {
    order: 2;
    width: 21%;
}



/*=== side menu ===*/
.sidemenu-area {
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    position: sticky;
    top: 70px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    margin: 20px;
    margin-left: 0;
}

.sidemenu-scroll {
    height: 80vh;
    overflow-y: auto;
    /* スクロール可能にする */
}

.sidemenu-area::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.3;
    z-index: 2;
}

/*sidemenu-top*/
.sidemenu-top {
    width: 100%;
    background-color: white;
    color: black;
    border: 15px solid black;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1.0) inset;
}

/*sidemenu-content*/
.sidemenu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    font-size: 18px;
}

.sidemenu-content a {
    text-decoration: none;
    color: white;
}

.sidemenu-content a:hover {
    text-decoration: none;
    color: yellow;
}

.sidemenu-item {
    width: 90%;
    height: auto;
    border-top: 3px dashed white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidemenu-item-title {
    margin-bottom: 5px;
}

.sidemenu-pattern {
    width: 200px;
    height: auto;
}

.sidemenu-item-ul-1 {
    list-style-type: none;
    padding-left: 20px;
}

.sidemenu-item-ul-2 {
    list-style-type: none;
    padding-left: 40px;
}

.sidemenu-item-ul-1 li::before {
    content: 'ー';
    color: white;
    font-size: 1.0rem;
    margin-right: 5px;
}

.sidemenu-item-ul-2 li::before {
    content: '・';
    color: white;
    font-size: 1.0rem;
    margin-right: 0px;
}

/*sidemenu-footer*/
.sidemenu-footer {
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.0rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidemenu-footer-title {
    text-align: center;
}



/*=== main block ===*/
.main-block {
    width: 100%;
    height: auto;
    padding: 20px;
    padding-right: 10px;
    color: white;
}

/*メインタイトル*/
.pattern {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    ;
}

.main-title {
    width: 25rem;
    height: 50px;
    font-size: 1.0rem;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-02.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: 2;
}

.title-stripe {
    width: 100%;
    height: 15%;
    background: repeating-linear-gradient(45deg,
            white 0%,
            white 4%,
            black 4%,
            black 8%);
}



/*=== sub block container ===*/
.sub-block-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}



/*=== sub block ===*/
.sub-block {
    width: 49%;
    height: auto;
    padding: 10px;
    margin: 10px;
    margin-left: 0;
    background-color: rgb(30, 30, 30);
    border-radius: 15px;
}

.block-large {
    width: 100%;
}

/*サブタイトル*/
.sub-title {
    width: 10rem;
    height: 40px;
    font-size: 1.0rem;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sub-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-02.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: 2;
}

.title-long {
    width: 15rem;
}

.title-long-long {
    width: 20rem;
}



/*=== その他　装飾 ===*/
/*delete*/
.delete {
    display: none;
}

/*content*/
.content {
    width: auto;
    height: auto;
    padding-bottom: 20px;
}

/*color系*/
.black {
    color: black;
}

span {
    color: yellow;
    text-decoration: double;
}

/*margin系*/
.margin-left {
    margin-left: 20px;
}

/*border系*/
.white-border {
    border: 1px solid white;
    border-radius: 15px;
}

/*sentence系*/
.main-sentence {
    width: auto;
    height: auto;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 0;
    line-height: 1.8rem;
    font-size: 1.1rem;
}

.sub-sentence {
    width: auto;
    height: auto;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 0;
    line-height: 1.5rem;
    font-size: 1.0rem;
}

.sentence {
    width: auto;
    height: auto;
    padding: 10px;
}

.film-sentence {
    width: 220px;
}

.film-sentence-wide {
    width: 430px;
}

/*image系*/
.image {
    width: auto;
    height: auto;
    padding: 10px;
    margin: 10px;
    margin-left: 0;
    border: 1px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-image-content {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.simple-image {
    width: auto;
    height: auto;
    background-color: black;
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.simple-image::before {
    content: '';
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.3;
    z-index: 2;
}

.simple-image-border {
    width: auto;
    height: auto;
    padding: 10px;
    background-color: black;
    border: 2px dashed white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-image-img-x {
    width: 300px;
    height: auto;
    border-radius: 5px;
}

.simple-image-img-y {
    width: auto;
    height: 300px;
    border-radius: 5px;
}

.simple-image-img-x-small {
    width: 180px;
    height: auto;
    border-radius: 5px;
}

.simple-image-img-y-small {
    width: auto;
    height: 180px;
    border-radius: 5px;
}

/*flex系*/
.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

/*width調整*/
.width-60 {
    width: 60%;
    height: auto;
}

/*リンク装飾*/
.yellow {
    color: yellow;
}

/*見出し*/
.post-info {
    margin: 10px 0 10px 0;
    display: flex;
    align-items: center;
    color: white;
}

.post-title-section {
    padding: 10px;
}

/*画像エリア(film-stripe)*/
.film-image {
    width: 300px;
    height: clac(300px * 1.2);
    min-width: 300px;
    min-height: calc(300px * 1.2);
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.film-stripe-animated {
    width: 5%;
    min-height: 100%;
    background: repeating-linear-gradient(0deg,
            white 0,
            white 10px,
            black 10px,
            black 20px);
    background-size: 100% 40px;
    animation: moveStripes-y 2s linear infinite;
    display: block;
}

.film-stripe-static {
    width: 5%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            white 1%,
            white 5%,
            black 5%,
            black 9%);
}

.film-image img {
    width: 75%;
    height: auto;
    z-index: 3;
}

.no-image {
    width: 70%;
    height: 90%;
    z-index: 3;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*丸アイコン*/
.post-date {
    width: 80%;
    text-align: center;
    font-size: 1.00rem;
}

.post-date span {
    font-size: 0.8rem;
    border-top: 1px rgba(255, 255, 255, 0.5) solid;
    padding-top: 3px;
    text-align: center;
    line-height: 1.0rem;
    color: white;
    text-decoration: none;
    display: block;
}

.post-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5rem;
}

.date-circle {
    background-color: black;
    border-radius: 50%;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.date-circle::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: 2;
}

.inner-circle {
    background-color: black;
    border-radius: 50%;
    border: 5px dashed white;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*grid配置*/
.grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 150px);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin: auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 150px);
    grid-template-rows: repeat(1, auto);
    gap: 10px;
    margin: auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    grid-template-rows: repeat(1, auto);
    gap: 10px;
    margin: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: repeat(1, auto);
    gap: 10px;
    margin: auto;
}

.grid-name {
    margin-bottom: 10px;
}

.grid-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px;
    position: relative;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.3;
    z-index: 3;
}

.grid-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.item-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: white;
    border-radius: 10px;
    ;
    margin: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-image img {
    width: 100%;
    height: auto;
}





/*===== モバイル版 =====*/
@media (max-width: 800px) {

    /*===== base =====*/
    /*全体設定*/
    html {
        font-size: 80%;
    }

    /*２カラム配置*/
    .flex-all {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left {
        order: 2;
        width: 100%;
    }

    .right {
        order: 1;
        width: 100%;
    }

    /*=== side menu ===*/
    .sidemenu-area {
        width: 90%;
        margin: 0;
        position: relative;
        top: 0;
    }

    .sidemenu-scroll {
        height: auto;
        overflow: unset;
    }

    /*=== main block ===*/
    .main-block {
        width: 100%;
        height: auto;
        padding: 10px;
        color: white;
    }

    /*=== sub block container ===*/
    .sub-block-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    /*=== sub block ===*/
    .sub-block {
        width: 100%;
        height: auto;
        padding: 10px;
        margin: 0;
        margin-left: 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    /*=== その他　装飾 ===*/
    /*sentence系*/
    .main-sentence {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 0;
    }

    .sub-sentence {
        padding-top: 10px;
        padding-right: 0;
        padding-bottom: 10px;
        padding-left: 0;
    }

    .film-sentence {
        width: 100%;
        height: auto;
    }

    .film-sentence-wide {
        width: 100%;
        height: auto;
    }

    /*margin系*/
    .margin-left {
        margin-left: 0;
    }

    /*image系*/
    .simple-image-img-x {
        width: 300px;
        height: auto;
        border-radius: 5px;
    }

    .simple-image-img-y {
        width: auto;
        height: 300px;
        border-radius: 5px;
    }

    .simple-image-img-x-small {
        width: 120px;
        height: auto;
        border-radius: 5px;
    }

    .simple-image-img-y-small {
        width: auto;
        height: 120px;
        border-radius: 5px;
    }

    /*見出し*/
    .post-info {
        font-size: 0.85rem;
    }

    .post-title-section {
        padding: 10px;
    }

    /*画像エリア(film-stripe)*/
    .film-image {
        width: 100%;
        height: auto;
    }

    .film-stripe-animated {
        width: 5%;
        min-height: 100%;
        background: repeating-linear-gradient(0deg,
                white 0,
                white 10px,
                black 10px,
                black 20px);
        background-size: 100% 40px;
        animation: moveStripes-y 2s linear infinite;
        display: block;
    }

    .film-image img {
        width: 75%;
        height: auto;
        z-index: 3;
    }

    /*丸アイコン*/
    .post-date {
        font-size: 0.85rem;
    }

    .post-icon {
        width: 60px;
        height: 60px;
    }

    .date-circle {
        width: 60px;
        height: 60px;
    }

    .inner-circle {
        width: 55px;
        height: 55px;
        border: 3px dashed white;
    }

    /*grid配置*/
    .grid-8 {
        display: grid;
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(4, auto);
        gap: 10px;
        margin: auto;
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        margin: auto;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 32%);
        grid-template-rows: repeat(1, auto);
        gap: 10px;
        margin: auto;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(1, auto);
        gap: 10px;
        margin: auto;
    }
}