/* ダミーボタン */

.dmy-btn:hover {
  background-color: lightgray !important;
  cursor: pointer;
}

.dmy-btn-tran:hover {
  opacity: 66%;
  cursor: pointer;
}

/* スクロールバー */

.hide-sbar {
  scrollbar-width: thin;
  scrollbar-color: var(--bs-body-bg) var(--bs-body-bg);
}

  .hide-sbar:hover {
    scrollbar-color: var(--bs-body-bg);
  }
  
  /* --------------------------------------------------------------------------------------------------------------------
  キーフレーム
--------------------------------------------------------------------------------------------------------------------- */

/* サイズ ------------------------------------------------------------------------------------------------------------ */

/* 拡大 */

@keyframes expand-width {
  from {
    width: 0;
  }
}

@keyframes expand-height {
  from {
    height: 0;
  }
}

/* 縮小 */

@keyframes contract-width {
  to {
    width: 0;
  }
}

@keyframes contract-height {
  to {
    height: 0;
  }
}

/* ズーム */

@keyframes zoom-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes zoom-out {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}

/* 表示 ------------------------------------------------------------------------------------------------------------- */

/* フェード */

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* 点滅 */

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

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

/* スライド */

@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* 移動・回転 -------------------------------------------------------------------------------------------------------- */

/* バウンド */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* 回転 */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------------------------------------------------------------------------
  デフォルトCSS
--------------------------------------------------------------------------------------------------------------------- */

/* HTML・BODY ------------------------------------------------------------------------------------------------------- */

/* モバイルのタッチ操作によるブラウザの更新（Y方向）と戻る・進む（X方向）を無効化 */

body {
  overscroll-behavior: none;
}

/* ボタン ----------------------------------------------------------------------------------------------------------- */

/* ボタンの文字の折り返しを禁止 */

.btn {
  white-space: nowrap;
}

/* ドロップダウン ---------------------------------------------------------------------------------------------------- */

/* オートスクロールとシャドウ */

.dropdown-menu {
  max-height: 7.1rem;
  overflow-y: auto;
  box-shadow: var(--bs-box-shadow) !important;
}

/* ツールチップ ------------------------------------------------------------------------------------------------------- */

/* マウスオンする要素とツールチップを横並びにする */

.c-tooltip {
  display: inline-block;
  position: relative;
}

/* ツールチップ共通の設定 */

.c-tooltip::before, .c-tooltip::after {
  -webkit-transition: all 0.2s;
  opacity: 0;
  position: absolute;
  transition: all 0.2s;
  visibility: hidden;
  z-index: 11;
}

/* ツールチップ吹き出しのひげ */

.c-tooltip::before {
  -webkit-transform: translateY(-50%);
  border-color: transparent #5f6368 transparent transparent;
  border-style: solid;
  border-width: 3px 7px 3px 0;
  content: "";
  height: 0;
  left: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

/* ツールチップ吹き出しの本体 */

.c-tooltip::after {
  -webkit-transform: translateY(-50%);
  background: #5f6368;
  border-radius: 3px;
  color: #fff;
  content: attr(data-tooltip);
  display: block;
  font-size: 11px;
  font-weight: 600;
  left: calc(100% + 13px);
  padding: 5px 10px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

/* マウスオンしたときのカーソルの設定 */

.c-tooltip:hover {
  cursor: pointer;
}

.c-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

.c-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------------------------------------------------
  CSSクラス
--------------------------------------------------------------------------------------------------------------------- */

/* アニメーション  ---------------------------------------------------------------------------------------------------- */

/* 拡大 */

.anim-expand-width {
  animation: expand-width 0.2s ease-out forwards;
  overflow: hidden;
}

.anim-expand-height {
  animation: expand-height 0.2s ease-out forwards;
  overflow: hidden;
}

/* 縮小 */

.anim-contract-width {
  animation: contract-width 0.2s ease-out forwards;
  overflow: hidden;
}

.anim-contract-height {
  animation: contract-height 0.2s ease-out forwards;
  overflow: hidden;
}

/* ズーム */

.anim-zoom-in {
  animation: zoom-in 0.5s ease-out backwards;
}

.anim-zoom-out {
  animation: zoom-out 0.5s ease-in backwards;
}

/* フェード */

.anim-fade-in {
  animation: fade-in 0.2s ease-in-out both;
}

.anim-fade-out {
  animation: fade-out 0.2s ease-in-out both;
}

/* 点滅 */

.anim-flash {
  animation: flash 0.5s ease-in-out infinite;
}

.anim-half-flash {
  animation: half-flash 0.5s ease-in-out infinite;
}

/* スライド */

.anim-slide-in {
  animation: slide-in 0.5s ease-out forwards;
}

.anim-slide-out {
  animation: slide-out 0.5s ease-in forwards;
}

/* バウンド */

.anim-bounce {
  animation: bounce 0.5s ease-in-out infinite;
}

/* 回転 */

.anim-rotate {
  animation: rotate 1s linear infinite;
}

/* アプリケーション --------------------------------------------------------------------------------------------------- */

/* 文字選択を無効化 */

.disable-text-selection {
  user-select: none;
}

/* タッチ操作を無効化 */

.disable-touch-action {
  touch-action: none;
}

/* ドラッグ操作を無効化 */

.nodrag {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

/* 文字省略 ---------------------------------------------------------------------------------------------------------- */

/* 文字制限 */

.para-truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.para-truncate-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.para-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.para-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* テーブルセルの文字省略 */

.cell-turncate-0 {
  max-width: 0rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-turncate-1 {
  max-width: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-turncate-2 {
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-turncate-3 {
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-turncate-4 {
  max-width: 15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-turncate-5 {
  max-width: 30rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------------------------------------------------
  以下、BootstrapStudioから追記
--------------------------------------------------------------------------------------------------------------------- */

/* 基本設定 */

:root {
  font-size: 16px;
}

/* Contact-Details-icons */

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Login-Form-Basic-icons */

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* 各要素（自動追加） */

._bvwsyqjg {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

._ziybertk {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 4rem;
  flex-wrap: wrap;
  padding: 0 1rem 0 1rem;
  box-shadow: var(--bs-box-shadow-sm) !important;
  color: #000 !important;
  background: linear-gradient(30deg, rgba(255,206,103,0.66), white);
  position: sticky;
  top: 0;
  z-index: 1029;
}

._umefjias {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
  max-width: 1400px;
}

._mjzydhbp {
  background: var(--bs-secondary-bg);
  width: 100%;
  text-align: end;
}

._kwanrqif {
  display: flex;
}

._hcbdswig {
  display: flex;
  align-items: center;
  gap: 2rem;
}

._vfqatsui {
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

._kjeinvqf {
  padding: 0;
  white-space: nowrap;
  text-decoration: none;
  color: RGBA(var(--bs-dark-rgb),var(--bs-link-opacity,1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1)) !important;
}

._qgyzmbiu {
  text-decoration: none;
}

._yigxjntv {
  white-space: nowrap;
}

._vdmykcqg {
  background: none;
}

._mrcayfjk {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._ugbdtzfq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb),var(--bs-bg-opacity,1)) !important;
}

._upsqwtdz {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-left: 1rem;
}

._hqejyzki {
  border-radius: 0;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

._crhwikvy {
  margin: 2rem 0 2rem 0;
  text-align: center;
}

._nrzkdbap {
  border-radius: 0;
  width: 100%;
  display: block;
  margin: 2rem 0 2rem 0;
}

._njbguytw {
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: var(--bs-box-shadow-sm) !important;
  background: linear-gradient(30deg, rgba(255,206,103,0.44), white);
}

._afuzyhnw {
  border-radius: 0;
}

._xzskdrta {
  text-align: center;
  border-radius: 0;
  padding: 0 0.5rem 0 0.5rem;
}

._gkdyaqfx {
  border-radius: 0;
  padding: 0 0.5rem 0 0.5rem;
}

._wzdprhqc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._gsvcheum {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

._rywmunit {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

._kpjqtwgi {
  max-width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

._fcknymux {
  text-align: start;
  border-radius: 0;
  padding: 0 0.5rem 0 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._cmpuzinf {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
}

._vgrueqba {
  cursor: pointer;
  border-radius: 0;
  padding: 0 0.5rem 0 0.5rem;
}

._ryziukph {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

._iawcrvpe {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 4rem;
  flex-wrap: wrap;
}

._vnwskxhm {
  border-bottom: 1px solid var(--bs-emphasis-color);
  display: flex;
  align-items: center;
}

._diqabpjr {
  width: 15rem;
  border: none;
  outline: none;
}

._rnabzpgx {
  padding: 0 0.2rem 0 0.2rem !important;
}

._istmjzye {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

._rxpbatkm {
  margin-right: 1rem;
}

._ixvrhbwf {
  margin: 0;
}

._aybgpcdi {
  display: flex;
  gap: 0.5rem;
}

._imecvqfp {
  cursor: pointer;
}

._uziybptm {
  width: 100%;
  text-align: center;
}

._vtpwdcsm {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

._giebmxrz {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

._beinyvud {
  font-size: 0.75rem;
}

._wykejhcu {
  border-radius: 0;
  max-height: 12.5rem;
  overflow-y: auto;
  box-shadow: var(--bs-box-shadow) !important;
}

._qdwgnvcr {
  border-radius: 0;
  padding: 0;
  text-decoration: none;
}

._tyrjhnsk {
  width: 6.5rem;
  padding-left: 1rem;
  text-align: center;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  outline: none;
}

._xpanheyb {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  gap: 2rem;
  border: 0.1rem dotted var(--bs-tertiary-color);
}

._tzqedygp {
  width: 6rem;
  height: 5rem;
  object-fit: cover;
}

._rqysjeud {
  font-weight: 400;
  text-align: center;
  white-space: nowrap !important;
}

._aktbpquz {
  text-align: center;
  white-space: nowrap !important;
}

._cjvhriam {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

._pdlgiveu {
  font-size: 1.5rem;
  margin-left: -0.5rem;
  cursor: pointer;
  color: var(--bs-danger);
}

._k2usdia4 {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  flex-grow: 1;
  flex-wrap: wrap;
}

/* モーダル */

._backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* 省略 */

.truncate-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* アニメーション */

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

._fade-in {
  animation: fade-in 0.2s ease-in-out;
}

.custom-btn {
  transition: .3s;
  cursor: pointer;
}

.custom-btn:hover {
  opacity: 0.6;
}

.custom-btn-flash {
  transition: 0.3s;
  outline: 0.01rem solid;
  outline-color: #333;
  outline-offset: 0;
  display: inline-block;
  cursor: pointer;
}

.custom-btn-flash:hover {
  animation: custom-btn_light .8s infinite;
}

.custom-btn-flash-w {
  transition: 0.3s;
  outline: 0.01rem solid;
  outline-color: #ddd;
  outline-offset: 0;
  display: inline-block;
  cursor: pointer;
}

.custom-btn-flash-w:hover {
  opacity: 0.8;
  animation: custom-btn_light .8s infinite;
}

@keyframes custom-btn_light {
  100% {
    outline-color: transparent;
    outline-offset: 0.6rem;
  }
}

@media (min-width: 1200px) {
  .index-panel2 {
    height: 20rem;
  }
}

@media (min-width: 1200px) {
  .index-panel1 {
    height: 16rem;
  }
}

@container (min-width: 480px) {
  .index-panel {
  }
}

@media (min-width: 576px) {
  .mw576 {
    height: 12rem;
  }
}

