/* Required height of parents of the Half Page Carousel for proper displaying carousel itself */


html,
body,
.view {
  background-color: #f0ecea !important;
}

.cursor-pointer{
  cursor: pointer;
}

.bg-dark-blue {
    background-color: #2B4ED6;
}

.ctn {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.course-ctn {
    display: flex;
    flex-direction: column;
}

.btn.disabled, .btn:disabled {
    opacity: .25!important;
}

/* Webkit系ブラウザ用のスクロールバーのスタイル */
.design-scrollbar::-webkit-scrollbar {
  width: 12px;
}

/* スクロールバーのトラック（背景） */
.design-scrollbar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

/* スクロールバーのハンドル（つまみ） */
.design-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

@media (max-width: 740px) {
  .full-page-intro {
    height: 1000px; } }

/* Half Page Carousel itself*/
.carousel {
  height: 50%; }
  .carousel .carousel-inner {
    height: 100%; }
    .carousel .carousel-inner .carousel-item,
    .carousel .carousel-inner .active {
      height: 100%; }

/* Adjustment for mobile devices*/
@media (max-width: 776px) {
  .carousel {
    height: 100%; } }

/* Navbar animation */
.navbar {
  min-height: 66px;
}

/*
.top-nav-collapse {
  background-color: #1C2331; }
*/

/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
  .navbar-nav {
    margin: 10px 5px 10px 5px;
  }
  .w-sp-100 {
    width: 100%!important;
  }
}

/* Footer color for sake of consistency with Navbar */
.page-footer {
  color: #000!important;
  background-color: #1C2331;
  margin-top: auto;
  position: relative;
  bottom: 0;
  width: 100%;
}

.header-logo {
  height: 30px;
}

.full-page-intro {
  background-image: url("/static/img/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* login-formの装飾 */
.bg-light-gray {
    background-color: #F3F5F9;
    border: 1px solid #F3F5F9;
}

.text-dark-gray {
  color: #2b546a;
  opacity: 0.9;
}

.btn {
  margin-top: 3px !important;
}

.btn-to-desc {
  margin-bottom: 10px !important;
}

/* パスワードの再設定画面のメールアイコンの大きさ */
.mail-icon-size {
    font-size: 1.75rem;
}

/*------ オリジナルボタンの装飾 ------*/
/* 復習ボタン */
.btn-review {
    background-color: #3FD50A;
    color: #FFF;
}
/* 濃い青ボタン */
.btn-dark-blue{
    background-color: #2B4ED6;
    color: #FFF;
}
/* 白抜きの青ボタン */
.btn-outline-dark-blue {
    color: #2B4ED6;
    background-color: transparent;
    border: 2px solid #2B4ED6;
}
/* テスト実行ボタン */
.btn-dark-green {
    color: #FFF;
    background-color: #1D7100;
}
/* 各ボタンのホバー時の制御 */
.btn-dark-blue:hover{
    color: #FFF!important;
}
.btn-outline-dark-blue:hover{
    color: #2B4ED6;
}

/* mypage コース進捗のボタン */
.btn-outline-light-blue {
    color: 72DAFF;
    border: 2px solid 72DAFF;
}

body #level-tab .btn-outline-light-blue.active {
    color: #333550!important;
    background-color: #d5eef7!important
}

/*---- コースタイトルの装飾 ----*/
.course-title-bg {
    background: #72DAFF;
}

.course-title-radius {
    border-radius: 5px;
}

.course-title-header-radius {
    border-radius: 20px 20px 0 0!important;
    height: 20%;
}

/*---- チャプターの装飾 ----*/
.chapter-header {
    border-left: 9px solid #72DAFF;
}

/*---- card ----*/
.card-header-radius {
    border-radius: 10px 10px 0 0!important;
}

.monitor {
    padding: 1em;
    margin-bottom: 1em;
    width: 100%;
    background: #000;
    color: #fff;
    border: 8px solid #888;
    border-radius: 3px;
}

.blink {
    animation: flash 1s linear infinite;
}

@keyframes flash {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.commentout {
    color: #aaa;
}

h3, h5 {
    margin-top: 0;
    margin-bottom: 0;
}

h4 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal-bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal-content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}

textarea.console {
    background-color: #000 !important;
    color: #fff !important;
}

ul.errorlist {
  list-style: none;
}

ul.errorlist li {
  color: red;
  font-size: 0.8em;
}

.notice-box {
  margin-top: 25px;
  padding: 20px;
  background-color:white;
  border-radius: 5px;
}

.notice-row {
  margin-top: 30px;
}

.closebt {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	cursor:pointer;
}

.closebt:hover {
	transform:rotate(90deg);
}

.bg-slide-contents {
    background-color: #f5f5f5;
}

.tooltip {
    width: 300px;
	font-size: 12px;
	background:black;
}

.tooltip-inner {
  width: 300px;
  max-width: 300px;
	font-size: 12px;
	background:black;
	text-align: left;
}


.course-content {
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0,0,0,.2);
}

.course-content-icon {
  border-radius: 10px 0 0 10px;
}

.p-contact__pp {
  padding: 30px;
  width: 100%;
  height: 300px;
  overflow: auto;
  margin: 0 0 30px;
  text-align: left;
  background-color: #fcfcfc;
}

/* 無料会員登録ボタン */
.btn-user-register {
    font-size: 18px;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.bg-sky-blue {
  background-color: #92d9ff;
}

.shadow-bottom-right {
  box-shadow: 10px 5px 5px #ededed;
}

.min-h-75 {
  min-height: 500px;
}

@media (max-width: 768px) {
  .margin-t-md-3 {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .nav-flex-icons {
    display: block;
  }
}

@media (max-width: 991px) {
  .btn-md-sm {
    font-size: 12px!important;
    border-radius: 26px!important;
    padding: 8px 15px!important;
  }
}

@media (max-width: 500px) {
  .text-sm-sm {
    font-size: 0.7rem!important;
  }
}

.loader {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.loader2 {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #0e5312; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ハンバーガーメニューの横線の色を変更する */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='gray' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.rounded-image {
  border-radius: 50%;
  width: 100px; /* 画像の幅 */
  height: 100px; /* 画像の高さ */
}

.rounded-image-navbar {
  border-radius: 50%;
  width: 40px; /* 画像の幅 */
  height: 40px; /* 画像の高さ */
}

.image-button {
  border: none;
  outline: none;
  background: transparent;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-toggle::after {
  display: none !important;
}

.text-shadow-wh {
  text-shadow: 0 0 0.3em white;
}

.form-plain-text {
  padding: .375rem .75rem;
  margin-bottom: 0px;
}

.input-group > .input-group-append > button {
  box-shadow: none;
  border-radius: .25rem;
  padding-top: 0.3px;
  padding-bottom: 0.3px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-width: 1px;
  margin: 0px !important;
}
