* {
    box-sizing: border-box;
}

body {
    margin: 0px;

    font-family: 'Noto Sans JP',ヒラギノ角ゴ ProN,Hiragino Kaku Gothic ProN,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
}

h1, h2, h3 {
    font-family: 'Zen Old Mincho';
}



a,
a:active,
a:hover {
    text-decoration: none;
    color: #000;
}



/* Common Header */

.container {
    max-width: 700px;
    margin: 0px auto;

    display: flex;
    flex-direction: column; /* top - bottom */
}
@media (min-width: 710px) {
    .container {
        border: 1px solid #ccc;
        border-top: none;
    }
}


    .index-head {
        display: flex;
        flex-direction: row; /* left - right */
    }

        .ih-item {
            min-width: 100px;
        }

        .ih-logo {
            flex: 0 1 auto;
        
            padding: 18px 13px;
        }
            .ih-logo-img {
                width: 80px;
            }
        
        .ih-title {
            flex: 1 0 auto;
        
            display: flex;
            flex-direction: column; /* top - bottom */
        
            font-weight: 700;
        
            justify-content: center;
        }
            .iht-subtitle {
                flex-direction: column;
                text-align: center;
                font-size: 14px;
            }
        
        .ih-none {
            flex: 0 1 auto;
        
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ih-search-icon {
            cursor: pointer;
        }
        
            .ih-search-img {
                width: 27px;
                height: 27px;
            }
        
    

    .index-navigation-text {
        color: #A6A294;
        margin: 0px 0px 10px 20px;
        font-size: 14px;
    }
        .index-navigation-text a {
            color: #A6A294;
        }
        .index-navigation-text div {
            display: inline-block;
            color: #A6A294;
        }

    .index-head-border {
        border-bottom: solid 2px #eee;
        margin-bottom: 6px;
    }


















/* Common Footer */
.index-foot {
    display: block;

    color: #fff;
    background-color: #5c9f55;

    padding: 10px 0px;

    font-size: 9px;

    width: 100%;
    text-align: center;
}
.foot-text {
    display: block;
    margin: 0 auto;
}


