@charset "UTF-8";

/*************************************
各種パーツ
**************************************/

/* サイドバー */
.sidebar {
    padding: 10px;
    height: 100%;
    position: sticky;
    top: 0;
    left: 0;
}

/* サイドバーアイコン用ボックス */
.sidebar-icon-box {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.sidebar-icon-box:hover {
    background-color: #f6f9fc;
}

/* サイドバーアイコン */
.sidebar-icon {
    font-size: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* メニュー */
.menu {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: .5s;
}

/* メニューアイコン用ボックス */
.menu-icon-box {
    margin-top: 10px;
    margin-left: 10px;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    text-align: center;
    line-height: 94px;
    cursor: pointer;
    position: relative;
}

.menu-icon-box:hover {
    background-color: #f6f9fc;
}

/* メニューアイコン */
.menu-icon {
    font-size: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* メニューリスト用ボックス */
.menu-list-box {
    margin-left: 10px;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.menu-list-box:hover {
    background-color: #f6f9fc;
}

/* メニューリスト用アイコン */
.menu-list-icon {
    font-size: 32px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* メニューリスト用アイコン(細身) */
.menu-list-icon-narrow {
    font-size: 32px;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
}

/* メニューリスト用文字定義 */
.menu-list-character {
    margin-left: 20px;
    padding-left: 60px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #8898aa;
}

/* ヘッダ用ボックス */
.header-box {
    background-color: #172b4d;
}

/* タイトル用文字定義 */
.title-character {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 28px;
}

/* ユーザアイコン用ボックス */
.user-icon-box {
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}

/* ユーザアイコン */
.user-icon {
    color: #172b4d;
    font-size: 18px;
}

/* ユーザ名用文字定義 */
.user-character {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

/* コンテンツ用ボックス */
.content-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(44, 40, 40, .11);
}

/* コンテンツ用ボックス(ヘッダ部分) */
.content-box-header {
    background-color: #ffffff;
    border-radius: 10px 10px 0 0;
    /* box-shadow: 0 3px 6px rgba(44, 40, 40, .11); */
}

/* コンテンツタイトル用文字定義 */
.content-character {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #8898aa;
}

/* コンテンツアイコン用ボックス */
.content-icon-box {
    background-color: #2dce98;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* コンテンツアイコン */
.content-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 24px;
}

/* 上下ボタン */
.turn-button {
    border: 1px solid #e8e9ec;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: .5s;
}

/* 上下ボタンアイコン */
.turn-icon {
    color: #cccccc;
    font-size: 20px;
}

/* 上下ボタンにマウスポインタが乗った時の表示 */
.turn-button:hover {
    outline-offset: 0;
    outline-style: auto;
    outline-color: #e8e9ec;
    outline-width: 2px;
}

/* ラジオボタン(元来のボタンは非表示) */
.radio-button {
    display: none;
}

/* ラジオボタン(表示用) */
.radio-label {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    border-radius: 3px;
    transition: .5s;
}

/* ラジオボタンが選択された時の表示 */
.radio-button:checked+.radio-label {
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, .7);
}

/* ラジオボタンにマウスポインタが乗った時の表示 */
.radio-button:hover+.radio-label {
    outline-offset: 0;
    outline-style: auto;
    outline-width: 2px;
}

/* チェックボタン(元来のチェックボックスは非表示) */
.check-button {
    display: none;
}

/* チェックボタン(表示用) */
.check-label {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    border-radius: 3px;
    transition: .5s;
}

/* チェックボタンが選択された時の表示 */
.check-button:checked+.check-label {
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, .7);
}

/* チェックボタンにマウスポインタが乗った時の表示 */
.check-button:hover+.check-label {
    outline-offset: 0;
    outline-style: auto;
    outline-width: 2px;
}

/* コンテンツボックス内の線 */
.content-line {
    border: 1px solid rgba(136, 152, 170, .2);
}

/* 入力テキストボックス */
.input-text-box {
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #f7fafc;
    color: #8898aa;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* 入力コンボ(セレクト)ボックス */
.input-select-box {
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #f7fafc;
    color: #8898aa;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* 入力コンボ(セレクト)ボックス外枠(アイコン表示用) */
.input-select-box-wrapper {
    position: relative;
}

/* 入力コンボ(セレクト)ボックスアイコン */
.input-select-box-wrapper::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 16px;
    content: '\f078';
    color: #8898aa;
    pointer-events: none;
}

/* 入力日付用ボックス */
.input-date-box {
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #f7fafc;
    color: #8898aa;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    cursor: pointer;
}

/* 入力日付用ボックス外枠(アイコン表示用) */
.input-date-box-wrapper {
    position: relative;
}

/* 入力日付用ボックスアイコン */
.input-date-box-wrapper::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 16px;
    content: '\f073';
    color: #8898aa;
    pointer-events: none;
}

/* テキストエリア */
.input-textarea {
    resize: none;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #f7fafc;
    /* color: black; */
    color: #8898aa;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* 入力チェックボックス(本体は非表示) */
.input-check-box {
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

/* 入力チェックボックス(ボックスは隣接のspanタグで描画) */
.input-check-box+span::before {
    display: inline-block;
    content: '';
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #f7fafc;
    color: #8898aa;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    text-align: center;
}

/* 入力チェックボックスにチェックが入った時の表示 */
.input-check-box:checked+span::before {
    content: '\f00c';
}

/* 入力用ボタン */
.input-button {
    border: 1px solid #e8e9ec;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: .5s;
}

/* 入力用ボタンアイコン */
.input-icon {
    color: #ffffff;
}

/* 入力用ボタンにマウスポインタが乗った時の表示 */
.input-button:hover {
    outline-offset: 0;
    outline-style: auto;
    outline-color: #e8e9ec;
    outline-width: 2px;
}

/* リスト内のテキストボックス */
.list-text-box {
    border: 1px solid #8898aa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #ffffff;
    color: #8898aa;
    text-align: left;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* リスト内のコンボ(セレクト)ボックス */
.list-select-box {
    border: 1px solid #8898aa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #ffffff;
    color: #8898aa;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* リスト内のコンボ(セレクト)ボックス外枠(アイコン表示用) */
.list-select-box-wrapper {
    position: relative;
}

/* リスト内のコンボ(セレクト)ボックスアイコン */
.list-select-box-wrapper::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 16px;
    content: '\f078';
    color: #8898aa;
    pointer-events: none;
}

/* リスト内のチェックボックス(本体は非表示) */
.list-check-box {
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

/* リスト内のチェックボックス(ボックスは隣接のspanタグの疑似要素で描画) */
.list-check-box+span::before {
    display: inline-block;
    content: '';
    border: 1px solid #8898aa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(23, 23, 23, .18);
    padding: 8px;
    font-size: 18px;
    background-color: #ffffff;
    color: #8898aa;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    text-align: center;
}

/* リスト内のチェックボックスにチェックが入った時の表示 */
.list-check-box:checked+span::before {
    content: '\f00c';
}

/* プッシュボタン */
.push-button {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border: 1px solid;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: .5s;
    
}


.push-button:hover {
    outline-offset: 0;
    outline-style: auto;
    outline-width: 2px;
}

/* フッタ用ボックス */
.footer-box {
    background-color: #172b4d;
}

/* コピーライト */
.copyright {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    padding-top: 20px;
    color: #ffffff;
    font-size: 16px;
}

/*************************************
DatePicker(jQuery UI)による
土日祝日の色付け
**************************************/
.ui-datepicker-calendar .day-sunday>a,
.ui-datepicker-calendar .day-holiday>a {
    background: #ffc0c0;
}

.ui-datepicker-calendar .day-saturday>a {
    background: #c0d0ff;
}

@media(max-width: 376px){
    .push-button{
        font-size: 14px;
    }
}

@media(max-width:1024px) and (min-width:768px) {
    .push-button {
        font-size: 14px;
    }
}



