.container {
	max-width: 768px !important;
}


#navigation {
display: none;
}

table img {
	margin-bottom: 6px;
	display: block;
}


@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

.main-color { 
	background: #F4D420 !important;
}

.main-color-btn-outline {
  border: 1px solid;
  border-color:  #F4D420 !important;
}

.grayed-out-color { 
	background: #f7f7f7 !important;
}

.main-border { 
	border-color: #F4D420 !important;
}

.main-text-color { 
	color: #F4D420 !important;
}

.sub-color {
	background: #F5FDFF !important;
}

.secondary-color {
	background: #dcdcdc !important;
}

.alert-color {
	color: #E20035 !important;
}

.primary-text-color { 
	color: #121B3C !important;
}

.secondary-text-color { 
	color: #eff8fe !important;
}

.nav-link {
	color: #121B3C !important;
}

table td.thumbnail {
	width: 11px;
}


/*クッキー同意
-------------------------------------*/
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -200px;
    left: calc(50% - 650px/2);
    width: 650px;
    font-size: 12px;
    background: #fff;
    padding: 1.2em;
    box-sizing: border-box;
    border: 1px solid #ddd;
    visibility: visible;
    transition: .5s;
  }
  .cookie-consent.is-show {
    bottom: 30px;
  }
  .cookie-text {
    width: 90%;
  }
  .cookie-agree {
    color: #fff;
    background: dodgerblue;
    padding: .5em 1.5em;
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* メディアクエリ */
  @media screen and (max-width: 650px) {
    .cookie-consent {
      flex-direction: column;
      width: 300px;
      left: calc(50% - 300px/2);
    }
    .cookie-text {
      width: 100%;
      margin-bottom: 1em;
    }
  }
  
.navbar-light-original .navbar-toggler-icon-original {	
	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='rgba(244, 212, 32, 1)' stroke-width='3' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");	
}
.navbar-toggler-icon-original{
	display:inline-block;
	width:1.5em;
	height:1.5em;
	vertical-align:middle;
	background-repeat:no-repeat;
	background-position:center;
	background-size:100%;
}

.form-check-input {
  border-color: #808080;        /* 枠線色 */
  background-color: #f8f9fa; /* 背景色（デフォルトは白） */
}

.custom-checkbox .form-check-input:checked {
	background-color: #F4D420; /* 好きな色に変更 */
	border-color: #ff5722;
}


/* バーグラフ */
progress {
  width: 70%;
  height: 20px;
  -webkit-appearance: none;
  appearance: none;
}

/* 背景部分（全体） */
progress::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}

/* 値の部分（WebKit系ブラウザ） */
progress::-webkit-progress-value {
	/* https://grabient.com/HQdgrAHANMAsDMAmGECMsoFoAMowE4pVhtYwtdZZkdhF5pbVFUZ5VHdIbcQA2eBWCpUfIYn5ES2bCj7JsQA?style=linearGradient&steps=8&angle=225 */
	background: linear-gradient(225deg, rgba(255, 62, 53, 1.000) 0.000%, rgba(255, 86, 37, 1.000) 14.286%, rgba(246, 111, 28, 1.000) 28.571%, rgba(216, 134, 24, 1.000) 42.857%, rgba(184, 157, 28, 1.000) 57.143%, rgba(149, 179, 38, 1.000) 71.429%, rgba(113, 200, 55, 1.000) 85.714%, rgba(78, 219, 76, 1.000) 100.000%);
	border-radius: 10px;
}

/* 値の部分（Firefox用） */
progress::-moz-progress-bar {
	background: linear-gradient(225deg, rgba(255, 62, 53, 1.000) 0.000%, rgba(255, 86, 37, 1.000) 14.286%, rgba(246, 111, 28, 1.000) 28.571%, rgba(216, 134, 24, 1.000) 42.857%, rgba(184, 157, 28, 1.000) 57.143%, rgba(149, 179, 38, 1.000) 71.429%, rgba(113, 200, 55, 1.000) 85.714%, rgba(78, 219, 76, 1.000) 100.000%);
}

.arrow-box {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #F4D420; /* ↓ の向き */
  animation: arrowSlide 0.8s infinite alternate ease-in-out;
}

.arrow-box-width {
  width: 70%;
  height: 20px;
}


/* tab control */
.tab-wrap {
	display: flex;
	flex-wrap: wrap;
}
.tab-label {
	order:-1;
}
.tab-content-chart {
	width: 100%;
	display: none;
}
.tab-switch:checked+.tab-label {
	background: #bcbfdb;
}
.tab-switch:checked+.tab-label+.tab-content-chart {
	display: block;
}
.tab-switch {
	display: none;
}

#dragDropArea{
  background-color: #f4f4f4;
  margin: 10px;
  padding: 10px;
  border: #ddd dashed 5px;
  min-height: 200px;
  text-align: center;
}
#dragDropArea p{
    color: #999;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4em;
}
#dragDropArea .drag-drop-buttons{
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2em;
}
.drag-drop-buttons input{
    margin: auto;
}


/*social アイコン
-------------------------------------*/
.social-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.note-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: auto 0;
  filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(101%) contrast(93%);
}

.custom {
  accent-color: #ff0000;
}

/*timingIndicator
-------------------------------------*/

  #arrowWrap{
    position: relative;        /* ％の基準にする */
    width: 65%;
    max-width: 480px;          /* デモ用に幅を可視化 */
    height: 10px;
    margin: 10px auto;
    border: 0px dashed #ccc;   /* 位置確認用 */
  }
  
  #arrow{
    position: absolute;        /* ％leftを効かせる */
    top: 50%;
    left: 0;                   /* 初期値を明示（重要） */
    transform: translateY(-50%);
    font-size: 28px;
    line-height: 1;
    will-change: left;
    pointer-events: none;
  }

/*table 制御
-------------------------------------*/
.table td,
.table th {
  background-color: transparent !important;
}