@charset "UTF-8";

/* ------------------------------

index2

------------------------------　*/
/* 共通部分 */
.area {
    padding: 2.8rem 0;
}

.wrapper {
    margin: 0 auto;
    max-width: 600px;
}

.heading {
    margin-bottom: 1.8rem;
    text-align: center;
}

.heading-large {
    font-size: 2.2em;
    color:#96514D
}

.heading-sub {
    font-size: .8em;
}

.hr1 {
    border: none;
    border-top: 1px solid #96514D;
}

.tomorrow-regular {
  font-family: "Tomorrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tomorrow-medium {
    font-family: "Tomorrow", sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* メニュー */

.menu-inner {
    margin-top: 1.25rem;
    border-radius: 15px 15px 0 0;
    background: #96514D;
}

.menu-logo {
    display: flex;
    justify-content: center;
    padding: 1.25rem 0 .8rem;
    margin: 0 auto;
}

.menu-logo img {
    width: 262px;
}

.menu {
    display: flex;
    flex-direction: row;
}

.menu li,
.menu li a {
    margin: 0 auto;
    padding: 0.3rem;
    padding-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

/* メイン */
.index2-area {
    margin: .8rem;
}

.index2-inner {
    display: block;
    padding: 0 1rem;
    border-radius: 0 0 15px 15px;
    background: rgba(255, 255, 255, .8);
}

/* about */
.about-link-banner {
    margin: 1.2rem;
    text-align: center;
}

/* news */
.news-box {
    width: auto;
    height: 485px;
    padding: 20px;
    border: 1px solid #96514D;
    overflow: auto;
    overflow-y: scroll;
    background-color: lightyellow;
}

.news-box::-webkit-scrollbar {
    display: none;
}

.news-box dl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #96514D;
    display: flex;
}

.news-box dt {
    line-height: 1.7;
    margin-right: 2.5em;
    margin-top: .15em;
    font-size: .8em;
    font-weight: bold;
    color: gray;
}

.news-box dd {
    line-height: 1.7;
    width: calc(100% - 2.5em);
}

.news-box dd a {
    font-weight: bold;
    text-decoration: underline;
}

/* works */
.works-area {
    text-align: center;
}

.works-list li img {
    margin: .2rem 0;
    width: 400px;
}

.works-bnr {
    position: relative;
    display: inline-block;
}

.works-bnr:hover a {
    filter: brightness(1.05);
    transition: 0.3s;
}

/* works-label */
.works-bnr::before {
    position: absolute;
    bottom: 4px;
    right: 4px;
    color: #fff;
    font-size: .8em;
    font-weight: bold;
    padding: 2px 4px;
    z-index: 2;
}

.label-now::before {
    content: '公開中';
    background-color: lightseagreen;
}

.label-now2::before {
    content: 'Xfolioにて公開中';
    background-color: lightseagreen;
}

.label-tbd::before {
    content: '未定';
    background-color: gray;
}

.label-end::before {
    content: '公開終了';
    background-color: red;
}

/* link */
.link-area {
    text-align: center;
}

.heading-link {
    line-height: 1.2;
    margin: .8em 0;
    font-size: 1em;
}

.link-btn {
    margin: .8em 0;
    font-size: .95em;
    font-weight: bold;
    text-decoration: underline #cc3300;
}

.hr2 {
    border: none;
    border-top: 1px dashed #96514D;
    margin: 3rem 0;
}

.copyright p {
    text-align: center;
    line-height: 1.5;
    padding: 0 0 2rem;
    margin-bottom: 1.25rem;
}

/* デスクトップ版
        ------------------------------ */
@media (min-width: 821px) {


    /* メニュー */
    .menu-inner {
        display: flex;
        justify-content: space-between;
    }

    .menu-logo {
        padding: 1.25rem;
        margin: 0;
    }

    .menu {
        align-items: center;
        margin: 1rem 1rem 0 0;
    }

    .menu li {
        margin: 0.5rem;
    }

    /* index2 */

    .index2-area {
        margin: 0 auto;
        max-width: 900px;
    }

    /* about */

    /* news */
    .news-box {
        height: 300px;
        /* << 5個以上超えたら height:"auto"から"300px"に変更 */
    }

    /* works */
    .works-area {
        display: flex;
    }

    .works-list li img {
        margin: .2rem 0;
        width: 280px;
    }

    .works-bnr {
        display: block;
    }

    .works-bnr::before {
        bottom: 8px;
        right: 8px;
        font-size: .75em;
    }

    /* link */
    .link-area {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
    }

    .link-inner {
        flex: 1;
        padding: 20px;
        box-sizing: border-box;
    }
}