body {
    margin: 0;
    padding: 0 0 5% 0;
    font-family: "ヒラギノ角ゴ proN";
    width: 100%;
    height: auto;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    margin-top: 5rem;
}

li {
    list-style: none;
}

.btn {
    text-align: center;
}

.btn:hover {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

a {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

.item-center {
    display: flex;
    justify-content: center;
}

.display-flex {
    display: flex;
}

.nowrap {
    white-space: nowrap;
}

/*幅*/
.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-50 {
    width: 50% !important;
}

.w-55 {
    width: 55% !important;
}

.w-70 {
    width: 70% !important;
}

.w-90 {
    width: 90% !important;
}

.w-97 {
    width: 97% !important;
}

/*margin*/
.mt-0 {
    margin-top: 0 !important;
}

.mt-2 {
    margin-top: 2% !important;
}

.mt-3 {
    margin-top: 3% !important;
}

.mt-5 {
    margin-top: 5% !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-2 {
    margin-right: 2%;
}

.mr-5 {
    margin-right: 5%;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5% !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-2 {
    margin-left: 2% !important;
}

.ml-auto {
    margin-left: auto !important;
}

.m-auto {
    margin: 0 auto !important;
}

/*padding*/
.pl-2 {
    padding-left: 2%;
}

.pt-2 {
    padding-top: 2%;
}

/*position*/
.relative {
    position: relative;
}

/*線*/
.br-blue {
    border-right: solid 1px #67A7CC;
}

/*背景グレー*/
.gray-bg {
    background-color: #f5f8fa;
}

/*背景白*/
.white-bg {
    background-color: #ffffff;
}

/*文字*/
.text-blue {
    color: #67A7CC!important;
}

.text-black {
    color: #152129;
}

.text-red {
    color: #E17979;
}

.text-green {
    color: #82C19F;
}

.text-orange {
    color: #EEAE7F;
}

.text-center {
    text-align: center;
}

/*submit ボタン*/
.btn-primary {
    background-color: #67A7CC;
    color: #ffffff;
    width: 25%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-primary:hover {
    cursor: pointer;
    background-color: #5E85A0;
}

/*cancel ボタン*/
.btn-cancel {
    background-color: #ffffff;
    color: #67A7CC;
    width: 25%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-cancel:hover {
    cursor: pointer;
}

/*変更ボタン*/
.btn-change {
    background-color: transparent;
    color: #67A7CC;
    width: 15%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #67A7CC;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-change:hover {
    cursor: pointer;
}

/*削除ボタン*/
.btn-delete {
    background-color: #ffffff;
    color: #E17979;
    width: 15%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

/*ダイアログ×ボタン*/
.close-dialog-btn {
    border: none;
    background-color: #ffffff;
}

/*ラジオボタン*/
.radio-box {
    display: flex;
}

.radio-btn {
    display: none;
}

.radio-box label {
    cursor: pointer;
    margin-right: 10%;
    padding-left: 9%;
    position: relative;
}

.radio-box label::before,
.radio-box label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio-box label::before {
    background-color: #ffffff;
    border: 1px solid #67A7CC;
    height: 20px;
    width: 20px;
    left: 5px;
}

.radio-box label::after {
    background-color: #67A7CC;
    opacity: 0;
    height: 10px;
    width: 10px;
    left: 11px;
}

.radio-btn:checked + .radio-label::after {
    opacity: 1;
}

/*ヘッダー*/
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #67A7CC;
    width: 100%;
    height: 5rem;
    display:flex;
    justify-content:space-between;
    align-items: center;
    z-index: 1;
}

#head-title {
    color: #ffffff;
    margin: 0 0 0 5%;
    width: 100%;
}

.header-nav {
    margin-right: 5%;
    width: 15%;
    color: #ffffff;
    height: 5rem;
}

.header-ul {
    font-size: 1.5vw;
    display: flex;
    margin-top: 2rem;
    padding: 0;
}

.header-li {
    margin-left: 10%;
    white-space: nowrap;
}

.header .nav-blue {
    background-color: #5E85A0;
}

#menu-btn:hover {
    cursor: pointer;
}

/*サイドバー*/
#sidebar {
    background-color: #ffffff;
    width: 15%;
    position: absolute;
    box-shadow: 0 3px 5px 0 rgba(242, 243, 248, 1);
    right: 5%;
    top: 100%;
}

#sidebar ul {
    padding-left: 1rem;
}

#sidebar li {
    padding: 0.5rem 0;
}

#sidebar li a {
    color: #152129;
    text-decoration: none;
}

#mypage-btn {
    border: none;
    background-color: transparent;
    font-size: 1.1vw;
    padding: 0;
    color: #152129;
    margin: 0;
}

#mypage-btn:hover {
    cursor: pointer;
}

/*入力フォーム*/
.form-box {
    background-color: #ffffff;
    width: 35%;
    margin: 10% auto;
    padding: 1% 0;
}

.form-contents {
    width: 75%;
    margin: 0 auto;
}

.form-contents h2 {
    margin-top: 5%;
    color: #152129;
}

.form-contents ul {
    padding: 0;
}

.form-li {
    margin: 5% 0;
}

.form-li .label {
    color: #9D99AC;
    font-size: 0.8vw;
}

.info-text, .border-gray {
    border-bottom: 1px solid #E8E6F8;
    color: #212121;
}

/*日付フォーム*/
.date-form {
    margin-left: 5%;
    width: 30%;
    border: solid 1px #C1D2DE;
    font-size: 1vw;
    padding: 1.5%;
    background-color: #ffffff;
}

/*入力フォーム(青)*/
.input-text-blue {
    width: 100%;
    height: 3rem;
    background-color: #F0F6FA;
    border: solid 1px #E8E6F8;
    border-radius: 0.3rem;
    padding-left: 2%;
}

.input-text-blue::placeholder {
    color: #67A7CC;
}

.select-blue {
    width: 100%;
    height: 3rem;
    background-color: #F0F6FA;
    border: solid 1px #E8E6F8;
    border-radius: 0.3rem;
    appearance: none;
    padding-left: 2%;
    color: #67A7CC;;
}

.password-li {
    position: relative;
}

.password-eye {
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 30%;
}

.password-eye:hover{
    cursor: pointer;
}

/*検索フォーム*/
.search-contents {
    display: flex;
    align-items: center;
}

.search-contents select {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: solid 1px #67A7CC;
    width: 2rem;
    height: 2rem;
    margin-left: 2%;
    margin-top: 2%;
    background-image: url("/images/down-blue.svg");
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
}

.search-contents select:hover {
    cursor: pointer;
}

.search-box {
    padding-left: 1%;
    white-space: nowrap;
    background-color: #ffffff;
    width: 30%;
    height: 3rem;
}

.search-box img {
    vertical-align: middle;
    margin-right: 3%;
}

.search-box img:hover{
    cursor: pointer;
}

.search-box input {
    width: 80%;
    height: 2.5rem;
    font-size: 1vw;
    border: none;
}

.search-box input::placeholder {
    color: #152129;
}

.search-date-box {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 2%;
}

#search-date {
    width: 100%;
    height: 2rem;
    position: absolute;
    opacity: 0;
}

/*ホーム画面*/
.home-tab-list {
    margin: 10rem auto 0 auto;
    display: flex;
    width: 80%;
}

.home-tab {
    position: relative;
}

.tab-title {
    position: absolute;
    background-color: #E1EDF5;
    color: #67A7CC;
    border-radius: 0.8rem;
    white-space: nowrap;
    bottom: 3.5rem;
    padding: 10%;
    width: auto;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab-title:before {
    content: "";
    position: absolute;
    top: 2.7rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #E1EDF5;
}

.home-tab-list span {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    margin-right: 0.3rem;
    background-color: #f5f8fa;
}

.home-tab-list span:hover {
    cursor: pointer;
    background-color: #E1EDF5;
}

.home-tab-blue {
    background-color: #67A7CC!important;
}

.gray-tab {
    background-color: #ececec!important;
}

.home-contents-box {
    background-color: #f5f8fa;
    width: 80%;
    margin: 0 auto;
    padding: 1% 0;
    border: solid 1px #C1D2DE;
}

.home-contents {
    width: 90%;
    margin: 0 auto;
}

.contents-top {
    display: flex;
    justify-content: space-between;
}

/*テーブル*/
.blue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1vw;
}

.blue-table-head th {
    background-color: #E1EDF5;
    color: #67A7CC;
    border: solid 1px #67A7CC;
    text-align: center;
}

.blue-table-body td {
    text-align: center;
    border: solid 1px #67A7CC;
    background-color: #ffffff;
    padding: 1rem;
}

.blue-table-body td p {
    padding: 0;
    margin: 0;
}

.blue-table img {
    width: 40%;
    margin-top: 5%;
}

/*ページネーション*/
.contents-pagination a {
    margin: 2% 0.5%;
    color: #152129;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.5rem;
    text-align: center;
    line-height: 1.8rem;
}

.contents-pagination span {
    position: relative;
}

.contents-pagination p {
    position: absolute;
    bottom: 7%;
}

.blue-page {
    background-color: #67A7CC;
    color: #ffffff !important;
}
