@charset "utf-8";
/* -------------------------------------------------
  全ページ共通読込ファイル
  
cssファイルは統合せずに管理したいです
（ページによって読み込むファイルを分ける対応で使い分けています

------------------------------------------------- */

/* ------------------------------------------------
  base style
 ------------------------------------------------ */
 /* font */
 html, body {
   font-family: "Hiragino Kaku Gothic ProN", 'Noto Sans JP', "Yu Gothic", "Meiryo", sans-serif;
   font-weight: 300;
 }

img {
  max-width: 100%;
  vertical-align: bottom;
}
 ul { list-style: none; }
  a { text-decoration: none; }

p {
  line-height: 1.8;
}

html, body, 
h1, h2, h3, h4, h5, h6 {
  font-size: 13px;
}

body {
  color: #33496B;
}

.sponly {
  display: none;
}

@media screen and (max-width: 767px) {
  html, body,
  h1, h2, h3, h4, h5, h6 {
    font-size: 12px;
  }

  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}

a {
  color: #a7a9b6;
}
a:hover {
  opacity: 0.8;
}

/* ------------------------------------------------
　jQuery動作系
 ------------------------------------------------ */
 /* タブ切り替え */
.jq-tablistTarget {
  display: none;
}
.jq-tablistTarget.is-show {
  display: block;
}

/* ------------------------------------------------
　フォーム系
 ------------------------------------------------ */
input, textarea {
  outline: none;
  border: 1px solid #ddd;
  padding: 6px;
  max-width: 100%;
}
textarea {
  width: 100%;
}
input[type="text"],
input[type="number"],
input[type="date"] {
  color: #333;
}
input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  background-color: #f7f7f7;
}
input[type="text"],
input[type="number"] {
  border: 1px solid #ddd;
  background-color: #fff;
  outline: none;
  padding: 6px;
}
select {
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  outline: none;
  padding: 6px;
  width: 100%;
}
.select {
  position: relative;
}
.select::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 40%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #bbb;
  z-index: 100;
}
input::-webkit-input-placeholder {
  color: #bbb;
}
input::-moz-placeholder {
  color: #bbb;
}
input:-ms-input-placeholder {
  color: #bbb;
}
input::-ms-input-placeholder {
  color: #bbb;
}
input::placeholder {
  color: #bbb;
}
textarea::placeholder {
  color: #bbb;
}
input[type="text"]:read-only,
input[type="number"]:read-only,
input[type="date"]:read-only,
textarea:read-only {
  background-color: #eee;
  cursor: default;
}

/* ------------------------------------------------
  共通パーツ
 ------------------------------------------------ */
/* コンテンツ幅設定 */
.inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .inner {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  /* .content {
    margin-top: 30px;
  } */
}
@media screen and (max-width: 767px) {
  .content {
    margin-top: 0;
  }
}

/* ------------------------------------------------
  基本レイアウト
 ------------------------------------------------ */
.main {
  overflow: hidden;
  background-color: #F7F9FA;
  min-height: 100vh;

  padding-top: 72px;
}
.sidebar {
  float: left;
  width: 100px;
}
.content {
  float: right;
  width: calc(100% - 100px);/* サイドバーの幅分 */
  padding: 2rem;
}
.content .panel {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(150,150,150,0.3);
}
.content .panel.complete .text {
  margin: 2rem 0;
}

@media screen and (max-width: 767px) {
  .content {
    padding: 1rem;
    width: 100%;
  }
  .sidebar {
    display: none;
  }
  .content .panel {
    padding: 1rem;
  }
  .main {
    padding-top: 50px;
  }
}

/* ------------------------------------------------
  ヘッダー
 ------------------------------------------------ */
.header {
  background-color: #112646;
  box-shadow: 0 0 5px rgba(100,100,100,0.3);
  color: #fff;
  display: -webkit-box;
  display: flex;
  height: 72px;
  width: 100%;
  justify-content: space-between;
  padding-right: 0;
  position: fixed;
  z-index: 500;
}
.header__logo {
  line-height: 72px;
  padding-left: 2rem;
}
.header__logo img {
  cursor: pointer;
  transition: 0.3s;
  vertical-align: middle;
  width: 150px;
}
.header__logo img:hover {
  opacity: 0.8;
}
.header__menu {
  align-items: center;
  display: flex;
}
.header__menu-calendar {
  background-color: #415779;
  border-radius: 0.5rem;
  border: 2px solid #9CA9BE;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-right: 1.5rem;
  transition: 0.3s;
  vertical-align: middle;
}
.header__menu-calendar::before {
  content: "\f073";
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.5em;
  font-weight: 300;
  margin-right: 0.5rem;
  margin-top: -0.2rem;
  transition: 0.3s;
}
.header__menu-calendar:hover {
  background-color: #9CA9BE;
  color: #fff;
  opacity: 1;
}
.header__menu-calendar:hover:before {
  color: #fff;
}
.header__menu-acname {
  color: #babecd;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-right: 1.5rem;
  text-align: right;
}
.header__menu-account {
  border-left: 1px solid #d5d7e8;
  color: #fff;
  font-size: 0.8rem;
  padding: 1.2rem;
  width: 80px;
  height: 72px;
  text-align: center;
  transition: 0.3s;
}
.header__menu-account::before {
  animation: rotationOut 0.3s;
  content: "\f013";
  display: block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
  font-size: 2.0em;
  margin-bottom: 0.2rem;
}
.header__menu-account:hover:before {
  animation: rotation 0.3s;
}
.header__menu-logout {
  border-left: 1px solid #d5d7e8;
  font-size: 0.8rem;
  height: 72px;
  width: 80px;
  padding: 1.2rem 0.5rem;
  text-align: center;
}
.header__menu-logout::before {
  content: "\f2f5";
  display: block;
  font-family: 'Font Awesome 5 Pro';
  font-size: 2.0em;
  font-weight: 600;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotationOut {
  0% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.header__menu-spbtn::before {
  color: #fff;
  content: "\f0c9";
  display: block;
  font-family: 'Font Awesome 5 Pro';
  font-size: 2.0em;
  font-weight: 600;
  padding: 1rem;
  width: 45px;
  text-align: center;
  transition: 0.3s;
}
.is-opened .header__menu-spbtn::before {
  transition: 0.3s;
  content: "\f00d";
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
  .header__logo {
    line-height: 1;
    padding-top: 1.2rem;
    text-align: center;
  }
  .header__logo img {
    width: 100px;
  }
  .header__menu {
    padding: 0;
    justify-content: flex-end;
  }
  .header__menu-acname {
    display: none;
  }
  .header__menu-calendar,
  .header__menu-account,
  .header__menu-logout {
    background-color: unset;
    border: none;
    color: #fff;
    height: auto;
    margin: 0;
    flex-grow: 0;
    padding: 1rem;
    width: auto;
    text-align: center;
  }
  .header__menu-calendar::before,
  .header__menu-account::before {
    font-size: 2rem;
    margin: 0;
  }
}

/* ------------------------------------------------
  サイドバー
 ------------------------------------------------ */
.sidebar {
  /* background-color: #fff; */
  box-shadow: 0 0 10px rgba(150,150,150,0.3);
  height: 100%;
  /* position: fixed; */
}
.sidebar__nav .iconnav {
  color: #5B7296;
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  transition: 0.3s;
}
.sidebar__nav-item {
  background-color: #fff;
  border-bottom: 1px solid #d2d2d5;
  cursor: pointer;
  font-size: 0.8rem;
  text-align: center;
  transition: 0.3s;
}
.sidebar__nav-item:hover {
  background-color: #5B7296;
}
.sidebar__nav-item a {
  color: #5B7296;
  display: block;
  padding: 1.4rem 0;
  transition: 0.3s;
}
.sidebar__nav-item:hover a,
.sidebar__nav-item:hover .iconnav {
  color: #fff;
  opacity: 1;
}
/* currentスタイル*/
.sidebar__nav-item.is--active {
  background-color: #02C5C7;
  color: #fff;
}
.sidebar__nav-item.is--active a,
.sidebar__nav-item.is--active .iconnav {
  color: #fff;
  opacity: 1;
}
.sidebar__nav-item.is--active:hover {
  background-color: #88d9e0;
}

/* cs menu */
.sidebar__nav-item.cs img {
  margin-right: 5px;
  width: 16px;
}
.sidebar__nav-item.cs {
  background-color: #5ec8ca;
}
.sidebar__nav-item.cs:hover {
  background-color: #64d6d8;
}
.sidebar__nav-item.cs a {
  color: #fff;
  padding: 0.7rem 0;
}
.sidebar__nav-item.cs a:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sidebar {
    box-shadow: none;
    margin-left: -150px;
    width: 150px; /* 幅を変更するときはcommon.jsも修正 */
    z-index: 30;
  }
  .sidebar__nav-item a {
    padding: 0.6rem 0;
  }
  .sidebar__nav-item img {
    width: 2rem;
  }
  .sidebar__nav-item {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.3rem;
    text-align-last: left;
  }
  .sidebar__nav .iconnav {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 0.3rem;
    text-align: center;
    vertical-align: middle;
    width: 2rem;
  }
}

/* ------------------------------------------------
  タブ｜コンテンツ大区切り
 ------------------------------------------------ */
.content .navtabmenu {
  margin: -2rem -2rem 2rem -2rem; /* .contentのpaddingの幅 */
}
.navtabmenu {
  background-color: #fff;
  border-bottom: 1px solid #d2d2d5;
  color: #707070;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-left: 100px; /* サイドバーの幅分 */
  padding-left: 1.9rem;
}
.panel .navtabmenu {
  margin: 0;
}
.navtabmenu .item {
  border-bottom: 5px solid transparent;
}
.navtabmenu .item a {
  color: #5B7296;
  display: block;
  font-weight: 500;
  padding: 1.5em;
  transition: 0.3s;
}
.navtabmenu .item:hover {
  border-bottom-color: #02C5C7;
}
.navtabmenu .item a:hover {
  color: #112646;
}
.navtabmenu .item.current {
  border-bottom-color: #02C5C7;
  color: #112646;
  cursor: default;
  font-weight: 500;
  padding: 1.5em;
}
@media screen and (max-width: 767px) {
  .navtabmenu {
    margin-left: 0;
    flex-wrap: wrap;
  }
  .navtabmenu .item.current,
  .navtabmenu .item a {
    padding: 0.8rem;
    padding-bottom: 0.4rem;
  }
  .navtabmenu .item.current {
    border-width: 2px;
  }
}

 /* ------------------------------------------------
モーダルcss 
 ------------------------------------------------ */
.modal_bg {
  display: none;
  background-color: rgba(98, 98, 98, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  height: 120%;
  width: 100%;
  z-index: 1000;
}
.jq-modal-content {
  background: #fff;
  box-sizing: border-box;
  position: fixed;
  display: none;
  height: 90vh;
  padding: 30px 2vw;
  max-height: 90vh;
  max-width: 1200px;
  margin: 0;
  width: 92%;
  z-index: 1001;
}
.modal_open {
  cursor: pointer;
}
.modal-delete {
  background-color: #454545;
  color: #fff;
  height: inherit;
  width: 65%;
}
.modal-delete__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.modal-delete p {
  display: inline-block;
}
.modal-delete .text {
  line-height: 1.8;
}
.modal-delete .text::before {
  content: "\f2ed";
  display: block;
  float: left;
  font-family: "Font Awesome 5 Pro";
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
  margin-right: 0.8rem;
  vertical-align: sub;
}
.modal-delete .btn {
  background-color: #454545;
  border-color: #fff;
  margin-left: 1rem;
}
.modal-delete .btn.btn-delete {
  color: #fff;
}
.modal-delete .btn.btn-cancel {
  border-color: #aaa;
  color: #aaa;
}
.modal-delete .btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #454545;
  cursor: pointer;
  opacity: 1;
}
.modal-btn-close {
  position: absolute;
  top: 0.2rem;
  right: 0.5rem;
}
.modal-btn-close::before {
  color: #a7a9b6;
  content: "\f00d";
  cursor: pointer;
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  font-weight: 600;
}
.modal-scrollable {
  margin-bottom: 0.5rem;
  max-height: 48vh;
  overflow-y:scroll;
}

@media screen and (max-width: 767px) {
  .modal-delete__inner {
    flex-direction: column;
  }
  .modal-delete .text {
    margin-bottom: 1rem;
  }
  .jq-modal-content {
    padding: 2rem 1rem;
    width: 95%;
  }
}

/* 開閉メニュー（検索メニュー） */
.jq-srchTglTarget {
  display: none;
}