@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

body {
    margin: 0px;
    /* font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"; */
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
}

.header {
    border-bottom: solid 1px #cccccc;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px;
}

.header_description {
    font-size: small;
    margin-left: 10px;
}

.sitelogo {
    margin: 5px;
    padding: 0px;
    width: 300px;
    height: 45px;
    /*画像の下の隙間を消す*/
    vertical-align: bottom;
}

.main {
    box-sizing: border-box;
    display: flex;
    max-width: 1200px;
    margin: 0px auto;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    box-sizing: border-box;
    border-top: solid 1px #cccccc;
    max-width: 1200px;
    margin: 20px auto;
}

.copyright {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    font-size: small;
}

/* 文字列の強調 */
.emphasis{
    font-weight: bold;
    color:crimson;
}

h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

h2 {
    font-size: 1.3em;
    color: #292929;
    background-color: #ffdde9;
    border-left: 15px solid #FF7BAC;
    box-shadow: 0 5px 6px rgba(0, 0, 0, .5);
    padding: 10px;
    margin: 3px 10px 20px;
    /*上3,横10,下20px*/
    line-height: 1;
    text-align: center;
}

h3 {
    margin: 10px;
    font-size: 1.2em;
}

.hover_effect:hover{
    opacity: 0.6;
}

/*spnoneはスマホ時に非表示にさせる*/
.spnone {
    display: inline;
}

/*スマホ限定で使用する。他の時は非表示。*/
.sponly {
    display: none;
}

/*PC向け*/
@media (max-width: 1199px) {

    .header {
        width: 100%;
    }

    .main {
        width: 100%;
    }

    .footer {
        width: 100%;
    }
}

/*スマホ向け*/
@media (max-width: 767px) {

    .header {
        text-align: center;
    }

    .main {
        display: block;
    }

    /*スマホでは表示しない*/
    .spnone {
        display: none;
    }

    /*スマホの時だけ表示*/
    .sponly {
        display: inline;
    }

    .header_description {
        display: none;
    }

}