﻿/*
    共通レイアウト(_Layout.cshtml)で使用するスタイル
*/

/********************* ヘッダーの領域定義 *********************/
.header-content {
    width: 100%;
    min-height: 1px;
    padding: 10px 15px;
    float: left;
    border-bottom: 5px double #8D9ED6
}

/* ヘッダーの上部 */
.header-content-top {
    width: 100%;
    height: 50px;
}
/* ヘッダー上部の左側のコンテンツ */
.header-content-top-left {
    width: 460px;
    float: left;
}
/* ヘッダー上部の右側のコンテンツ */
.header-content-top-right {
    width: calc(100% - 460px);
    text-align: right;
    float: left;
}
/* ヘッダーの下部 */
.header-content-buttom {
    width: 100%;
    height: 25px;
    padding-top: 5px;
}
/* ヘッダー下部の左側のコンテンツ */
.header-content-buttom-left {
    width: 600px;
    min-height:1px;
    float: left;
    padding:7px 0;
}
/* ヘッダー下部の右側のコンテンツ */
.header-content-buttom-right {
    width: calc(100% - 600px);
    min-height: 1px;
    float: left;
    text-align: right;
}
/* ロゴのサイズ */
.header-logo-size {
    width: 210px;
    height: 45px;
}
/* ガイダンスのサイズ */
.header-guidance-size {
    width: 240px;
    height: 45px;
}

/* メニューの区切り */
span.separator {
    padding: 0 10px;
}

/* パスワードの有効期限をアナウンスするメッセージ */
.password-expired-message {
    color: blue;
    font-weight: bold;
}

/********************* コンテンツの領域定義 *********************/
.main-content {
    width:100%;
    float:left;
    height:80vh;
    min-height:450px;
    padding:10px 15px;
}

/********************* フッターの領域定義 *********************/
.footer-content {
    width: 100%;
    min-height: 1px;
    padding: 10px 15px;
    text-align: center;
    float: left;
    border-top: 5px double #8D9ED6
}

/* リンク */
.footer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

    .footer-flex p {
        width: 33%;
        margin: 0 0 0;
    }

.footer-inquiry-link {
    text-align: right;
    vertical-align: middle;
}

/* コピーライト */
.footer-copyright {
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
}

/*  */
#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10
}

/* ナビゲーションメニュー */
nav {
}

    nav ul {
        display: table;
        margin: 0;
        margin-left: auto;
        padding: 0;
        text-align: center;
    }

        nav ul li {
            display: table-cell;
            min-width: 50px;
            border-right: 1px solid #ccc;
        }

            nav ul li:first-child {
                border-left: 1px solid #ccc;
            }

            nav ul li a {
                display: block;
                width: 100%;
                padding: 7px 20px;
                text-decoration: none;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

                nav ul li a:hover {
                    color: white;
                    background-color: #8D9ED6;
                }