  .btn {
  white-space: normal;
  }
  
  a {
    color: #333;
  }
  a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  .tel a {
      text-decoration: underline;        
  }
  
  /* ------------------------------------------
  　ナビゲーションバー
  ---------------------------------------------*/
  .mod-navbar {
    position: relative;
    padding: 1rem 0;
  }
  
  /* ------------------------------------------
  　カテゴリラベル位置
  ---------------------------------------------*/
  .cate-label {
    top:0.5em;
    left: 1em;
    background: rgba(255, 255, 255, 0.8);
  }
  
  /* ------------------------------------------
  　フッター
  ---------------------------------------------*/
  /* sns アイコン */
  .sns-nav img{
    width: 36px;
  }
  /* トップへ戻る */
  .totop {
    border: 2px solid #02A7C3;
      top: 1rem;
      right: 0;
  }

  /* ヘルプテキストの色を変更 */
  .helptext {
    color: #444444;
    background-color: #D4ECEA;
    border-radius: 10px;
    margin: 10px 10px 15px 20px;
    padding: 10px 10px 0px 10px;

  }

  .bg-lightdark {
    background: rgb(233, 233, 233);
  }

  .elearn-color {
    background: rgb(30, 63, 120) linear-gradient(to top left, rgb(30, 63, 120) 0%, rgb(58, 111, 206) 100%);
  }

  .union-color {
    background: rgb(85, 0 ,11) linear-gradient(to top left, rgb(85, 0 ,11) 0%, rgb(149, 0, 27) 100%);
  }

  .test-color {
    background-color: #edfcf7f8;
  }

  .header-title-1 {
    margin-top: -9px;
    margin-bottom: -5px;
  }

  .header-title-2 {
    margin-top: -6px;
  }

  .header-title-3 {
    margin-left: 0px;
  }

  .header-title-4 {
    margin-top: 12px;
  }

  .header-line {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .sidebar-bottom {
    margin-bottom: -24px;
  }
  
  /* ページネーションの色変更 */
  .page-link-org{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#0C78CB;background-color:#fff;border:1px solid #dee2e6}
  .page-link-org:hover{z-index:2;color:#0C78CB;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}
  .page-link-org:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgb(54, 117, 199)}
  .page-link-org:not(:disabled):not(.disabled){cursor:pointer}
  .page-item:first-child 
  .page-link-org{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}
  .page-item:last-child 
  .page-link-org{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}
  .page-item.active 
  .page-link-org{z-index:1;color:#fff;background-color:#0C78CB;border-color:#0C78CB}
  .page-item.disabled 
  .page-link-org{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}
  .pagination-lg 
  .page-link-org{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}
  .pagination-lg 
  .page-item:first-child 
  .page-link-org{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}
  .pagination-lg 
  .page-item:last-child 
  .page-link-org{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}
  .pagination-sm 
  .page-link-org{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}
  .pagination-sm 
  .page-item:first-child 
  .page-link-org{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}
  .pagination-sm 
  .page-item:last-child 
  .page-link-org{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}

  .form-year{
    width: 82px;
    height: 36px;
    margin-top: 1px;
    font-size: medium;
  }

  .form-month-and-day{
    width: 60px;
    height: 36px;
    margin-top: 1px;
    font-size: medium;
  }

  .form-year-s{
    width: 78px;
    font-size: medium;
  }

  /*モーダルウィンドウ*/
  .modal-window{
    width:calc(100vw - 100px);
    height:calc(100vh - 140px);
    min-height:100px;
    max-height:250px;
    background: #f9f9f9;
    border:solid 1px #bababa;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 3px #e9e9e9;
    position:fixed;
    top:calc(50% - ((100vh - 100px) / 2));
    left:calc(50% - ((100vw - 100px) / 2));
    z-index: 999;/*最前面に配置する*/
    opacity: 0;
    transform:scale(0);
    transition: .5s ease-in-out;
  }
  .modal-window.active{
    opacity: 1;
    transform: scale(1);
    transition: .5s ease-in-out;
  }
  @media only screen and (min-width:900px){
    .modal-window{
        width:400px;
        left:calc(50% - 200px);
    }
  }
  /*モーダルウインドウ内*/
  /*タイトル*/
  .modal-title-2{
    padding: 7px;
    background:#999;
    color: #f9f9f9;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  /*メイン*/
  .modal-contents{
    height: 154px;
    background: #f9f9f9;
    /*text-align: center;*/
    padding: 22px 10px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-description{
    height: 100px;
    background: #f9f9f9;
    /*text-align: center;*/
    padding: 22px 0px 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media (max-width:380px) {
    .modal-description{
      height: 100px;
      background: #f9f9f9;
      /*text-align: center;*/
      padding: 22px 0px 10px 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 85%;
    }
    .modal-button{
      text-align: center;
      background: #e9e9e9;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      font-size: 85%;
    }
  }
  .modal-password{
    height: 54px;
    background: #f9f9f9;
    /*text-align: center;*/
    padding: 10px 0px 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*モーダルウインドウ内ボタン*/
  .modal-button{
    text-align: center;
    background: #e9e9e9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .modal-button span{
    display: inline-block;
    width:calc(80% / 2 - 10px);
    font-weight:bold;
    border-radius: 5px;
    color: #f9f9f9;
    padding: 5px;
    margin: 5px;
  }
  .modal-button span:hover{
    cursor: pointer;
    opacity: .8;
  }
  /*オーバーレイ*/
  .modal-overray{
    display: none;
    width:100%;
    height: 100%;
    background: #666;
    position: fixed;
    top:0;
    left: 0;
    z-index: 99;/*モーダルウィンドウの下に配置する*/
    opacity: .5;
  }
  .modal-overray.active{
    display: block;
  }
  /*モーダルウィンドウが開いていた時はスクロール不可*/
  body.active{
    height: 100vh;
    overflow: hidden;
  }

  .movie-title {
    margin: 0 0 10px;
    padding: 10px 0 10px 5px;
    min-height: 36px;
    border-top: none;
    border-left: 4px solid #1671a3;
    background: #deebf2;
    color: #464646;
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
  
  @media (max-width:767px) {
    .video_contents {
      width: 100%;
      text-align: center;
      margin: 0;
      padding: 5px;
      background: #e6e6e6;
    }
  
    .video_main {
      width: 100%;
      max-width: 767px;
    }
  }

  @media (min-width:767px) {
    .video_contents {
      width: 80%;
      text-align: center;
      margin: 0;
      padding: 5px;
      background: #e6e6e6;
    }
  
    .video_main {
      width: 100%;
      max-width: 920px;
    }
  }

/* チェックボックスリセット */
.status-checkbox  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックスデザイン */
.status-checkbox {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}
.status-checkbox::before,
.status-checkbox::after {
  content: "";
  display: block; 
  position: absolute;
}
.status-checkbox::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #666464;
  width: 24px;/*チェックボックスの横幅*/
  height: 24px;/*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
  border-radius: 4px;
}
.status-checkbox::after {
  background-color: #fff;
  border-radius: 0%;
  border-bottom: 3px solid #000000;/*チェックの太さ*/
  border-left: 3px solid #000000;/*チェックの太さ*/
  opacity: 0;/*チェック前は非表示*/
  height: 10px;/*チェックの高さ*/
  width: 14px;/*チェックの横幅*/
  transform: rotate(-45deg);
  top: 2px;/*チェック時の位置調整*/
  left: 10px;/*チェック時の位置調整*/
}
.status-checkbox:checked::after {
  opacity: 1;/*チェック後表示*/
}

.forgot {
  font-size: 15px;
}

.aggregate_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.aggregate_tab > label {
  flex: 1 1;
  order: -1;
  opacity: .5;
  min-width: 70px;
  padding: .6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #2589d0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.aggregate_tab > label:hover {
  opacity: .8;
}
.aggregate_tab input {
  display: none;
}
.aggregate_tab > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}
.aggregate_tab label:has(:checked) {
  opacity: 1;
}
.aggregate_tab label:has(:checked) + div {
  display: block;
}
@media (max-width:768px) {
  .mypage-col{flex:0 0 auto; width: 100%}
  .mypage-dev{margin-top:0px; margin-left: 0px;}
  .mycard-col{flex:0 0 auto; width: 100%}
  .password-col{flex:0 0 auto; width: 100%}
  .menu-style{height: 100%;}
  .side-style-1{height: 100px;}
  .side-style-2{height: 100px;}
  .side-style-3{height: 100px;}
  .side-width{width: 100%;}
  .header-title-1 {margin-top: -9px; margin-bottom: -5px;}
  .header-title-2 {margin-top: -6px;}
  .header-title-3 {margin-left: 0px;}
  .header-title-4 {margin-top: 12px; width: 100%;}
  .header-line {padding-top: 2px; padding-bottom: 2px;}
  .sidebar-bottom {margin-bottom: -24px;}
  .aggregate-width{max-width: 100%;}
  .aggregate-time{margin-left: 36px;}
  .test-comment{line-height: 30px;font-size: 12px;}
  .test-width{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .d-xxl-none{display:block}
}
@media (min-width:768px) {
  .mypage-col{flex:0 0 auto; width: 100%}
  .mypage-dev{margin-top:0px; margin-left: 0px;}
  .mycard-col{flex:0 0 auto; width: 75%}
  .password-col{flex:0 0 auto; width: 75%}
  .menu-style{height: 100%;}
  .side-style-1{height: 100px;}
  .side-style-2{height: 100px;}
  .side-style-3{height: 100px;}
  .side-width{width: 100%;}
  .header-title-1 {margin-top: -9px; margin-bottom: -5px;}
  .header-title-2 {margin-top: -6px;}
  .header-title-3 {margin-left: 0px;}
  .header-title-4 {margin-top: 12px; width: 100%; margin-right: 8px; margin-top: -26px;}
  .header-line {padding-top: 2px; padding-bottom: 2px;}
  .sidebar-bottom {margin-bottom: -24px;}
  .aggregate-width{max-width: 100%;}
  .aggregate-time{margin-left: 36px;}
  .test-comment{line-height: 30px;font-size: 12px;}
  .test-width{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%;margin: 0 auto 0 20px;}
  .d-xxl-none{display:block}
}
@media (min-width:1025px) {
  .mypage-col{flex:0 0 auto; width: 100%}
  .mypage-dev{margin-top:0px; margin-left: 0px;}
  .mycard-col{flex:0 0 auto; width: 75%}
  .password-col{flex:0 0 auto; width: 75%}
  .menu-style{height: 83.2vh; margin-bottom: -14px}
  .side-style-1{height: 322px;}
  .side-style-2{height: 100px;}
  .side-style-3{height: 322px;}
  .side-width{width: 218px;}
  .header-title-1 {margin-top: -9px; margin-bottom: -5px;}
  .header-title-2 {margin-top: -6px;}
  .header-title-3 {margin-left: 8px;}
  .header-title-4 {margin-top: 12px; width: auto;}
  .header-line {padding-top: 2px; padding-bottom: 2px;}
  .sidebar-bottom {margin-bottom: -16px;}
  .aggregate-width{max-width: 100%;}
  .aggregate-time{margin-left: 36px;}
  .test-comment{line-height: 30px;font-size: 15px;}
  .test-width{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;margin: 0 auto 0 30px;}
  .d-xxl-none{display:block}
}
@media (min-width:1400px) {
  .mypage-col{flex:0 0 auto; width: 66.66666667%;}
  .mypage-dev{margin-top:3px; margin-left: 3px;}
  .mycard-col{flex:0 0 auto; width: 58.33333333%}
  .password-col{flex:0 0 auto; width: 66.66666667%}
  .menu-style{height: 86.2vh; margin-bottom: -14px}
  .side-style-1{height: 474px;}
  .side-style-2{height: 72px;}
  .side-style-3{height: 380px;}
  .side-width{width: 218px;}
  .header-title-1 {margin-top: -9px; margin-bottom: -5px;}
  .header-title-2 {margin-top: -6px;}
  .header-title-3 {margin-left: 10px;}
  .header-title-4 {margin-top: 12px; width: 70%; margin-left: 62px;}
  .header-line {padding-top: 2px; padding-bottom: 2px;}
  .sidebar-bottom {margin-bottom: -24px;}
  .aggregate-width{max-width: 100%;}
  .aggregate-time{margin-left: -28px;}
  .test-comment{line-height: 30px;font-size: 15px;}
  .test-width{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;margin: 0 auto 0 160px;}
  .d-xxl-none{display:none!important}
}

@media (max-width:410px) {
  #fc-dom-1{font-size:1.0em;margin:0;width:56px;text-align:center}
}
@media (min-width:410px) {
  #fc-dom-1{font-size:1.25em;margin:0}
}
@media (min-width:768px) {
  #fc-dom-1{font-size:1.75em;margin:0}
}

/*週*/
.fc-col-header-cell{
	background: #d3d3d3;
}
/*日付*/
.fc-daygrid-day{
	background: #fff;
}
/*日曜*/
.fc-daygrid-day.fc-day-sun{
	background: #F2F2F2;
	color: #ee827c;
}
/*日曜*/
.fc-daygrid-day.fc-day-sat{
	background: #F2F2F2;
	color: #ee827c;
}
/*イベントあり*/
.fc-daygrid-day:has(.fc-event){
	background-color: #FFE2DB;
}
