@charset "utf-8";

#pc .nav-menu-list li:nth-child(1) {
    background-color: #006837;
}

/* キービジュアル */
#keyvisual {
    background-color: #000;
}

#keyvisual img {
    display: block;
    margin: 0 auto;
}

/* ページリンク画像のキャプション */
.headline {
    background-color: #333;
}


/* h2 */

h2 {
    text-align: center;
    font-family: "Sawarabi Mincho";
    font-size: 2.4em;
    font-weight: 500;
    color: #fff;
    padding-top: 15px;
    background-color: #000;
}

h4 {
    background-color: #333;
}


#catch {
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    margin-top: -30px;
    margin-bottom: 25px;
    padding-top: 20px;
}

.key_text {
    font-family: "Sawarabi Mincho";
    font-size: 17px;
    color: #fff;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
}

/* キービジュアル H2フェードイン */

@keyframes fadeIn {
    0% {
        top: 45%;
        opacity: 0;
    }

    100% {
        top: 50%;
        opacity: 1;
    }
}

h2,
.key_text {
    animation: fadeIn 3s ease-in-out;
}


h3 {
    margin-top: 8px;
}


/* キャッチのテキスト */
.text {
    text-align: center;
}


/* 展示物について restor */
.restor_img {
    display: flex;
    justify-content: space-between;
}

.restor_img li {
    width: 49%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.restor_img li p {
    font-size: 0.9em;
    text-align: end;
}


/* ご挨拶 */
.greeting {
    overflow: hidden;
}

.lh_photo {
    width: 45%;
    float: left;
    margin-right: 20px;
}


.name {
    text-align: end;
}



/* ここからレスポンシブ対応 */

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

    /* ご挨拶の正面画像 */
    .lh_photo {
        width: 60%;
    }
}

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

    /* キービジュアル  */
    h2 {
        font-size: 2em;
    }
}


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


    /* キービジュアル  */
    h2 {
        padding-top: 30px;
        padding-bottom: 20px;
        font-size: 1.6em;
    }

    .key_text {
        line-height: 2.5;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    /* レストア前後の写真 */
    .restor_img li {
        width: 100%;
    }

    /* ご挨拶の正面画像  */
    .lh_photo {
        width: 100%;
    }

}