/* 作業補助 */

/* * {
    background-color: #ffffcc;
    border: 1px solid #ffccaa;
} */

/* フォント設定 */

body {
    font-family: "Yu Gothic","メイリオ",sans-serif,serif;
}

/* リンクにホバーすると色が薄くなる */

a:hover {
    opacity: 0.7;
}

/* ヘッダー */

header {
    display: flex;
    padding: 30px;
    font-weight: bold;
}

header img {
    width: 3rem;
    margin: 0 20px;
}

header div {
    flex-grow: 1;
}

.title1 {
    font-size: 1rem;
}

.title2 {
    font-size: 1.8rem;
}

/* ｐｃ用ナビゲーション */

.pc-nav {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    background-color: rgb(172, 255, 152);
    font-weight: bold;
}

.pc-nav a {
    display: block;
    padding: 10px;
    width: 180px;
    text-align: center;
}

.pc-nav a:hover {
    background-color:  rgb(172, 255, 152);
}

.kakusu {
    display: none;
}

.mieru:hover > .kakusu {
    display: block;
    position: absolute;
    background-color: #dddddd;
    z-index: 1;
}

.mieru {
    border-left: 1px dotted #ffffff;
}

.mieru:last-of-type {
    border-right: 1px dotted #ffffff;
}

.kakusu a {
    border-top: 1px dotted #ffffff;
    font-size: 14px;
}

/* z-indexについて　　ホバーした時表示される部分 （画像を切り替えるＪＳ設定後は、z-indexで重なりを手前にしないと、pc-navが表示されない）*/

/* 閲覧中のページのナビ表示を変える */

#now {
    background-color:#99ccff;
}

/*************　ハンバーガーナビを消す　*************/

.nav-unshown {
    display: none;
}

#hum-nav {
    display: none;
}

/* トップの画像*/

.main-imgs {
    width: 80%;
    margin: auto;
    margin-top: 10px;
}

.main-imgs p {
    font-size: 20px;
}

.main-imgs p span {
    color: red;
    font-weight: bold;
}


/* 外側のボックス */

.outer-box {
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    line-height: 1.5;
}

/* ｈ２（各コンテンツのタイトル） */

.content-title {
    font-weight: bold;
    font-size: 20px;
    border-left: 10px solid  rgb(172, 255, 152);
    background-color: #eeeeee;
    margin: 30px auto 15px;
    padding: 8px;
    width: 100%;
}

/* 新着情報 */

.sintyaku {
    width: 100%;
}

.eventopic {
    text-align: left;
}
.eventopic a {
    color: red;
    font-weight: bold;
}


.eventopic img {
    margin-top: 8px;
    width: 80%;
}

.mitumori10 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
.mitumori10 p {
    font-size: x-large;
    margin-top: 8px;
}
.mitumori10 img {
    width: 100%;
}


/*　内側のボックス */


.inner-box {
    width: 21%;
    padding: 15px 0;
}

.inner-box img {
    width: 100%;
}

.inner-box p {
    padding: 5px;
}
.inner-box2 {
    width: 90%;
    padding: 15px 0;
    margin: auto;
}
.inner-box2 img {
    width: 100%;
}

.inner-box2 p {
    padding: 5px;

}

/* フッター */

footer {
    color: white;
    text-shadow: 1px 1px black;
    font-weight: bold;
    padding: 50px;
    margin: 50px 0 0;
    background-image: url(../images/footer1.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

footer p {
    padding: 5px;
}

#foot {
    font-size: 36px;
}

#foot2 {
    font-size: 16px;
}
.policy {
    margin-top: 5px;
    font-size: 18px;
}

.policy a {   
    color: red;
    text-decoration: underline;
}

/* トップへ戻るボタン */

#page-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background-color: #aaaaaa;
    padding: 1rem;
    border-radius: 50%;
    opacity: 0.7;
}

/* トップへの移動をスムーズにする */

html {
    scroll-behavior: smooth;
}

.intro {
    font-size: 18px;
}
