body {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
    font-size: 1em;
    /* width: 100vw; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

footer{
  margin-top: auto;
}

@media (max-width: 767px) {
    body {
    font-size: 0.8em;
    }
    h1,.h1 {
        font-size: 1.0em;
        margin-bottom: 0px;
    }
    h2,.h2 {
        font-size: 1em;
        margin-bottom: 0px;
    }
    h3,.h3 {
        font-size: 1.2em;
        margin-bottom: 0px;
    }
    h4,.h4 {
        font-size: 1em;
        margin-bottom: 0px;
    }
    .btn-lg{
      font-size: 1rem !important;
    }
}

.nowrap {
  white-space: nowrap;
}

.clamp {
  width:auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.linked{
  cursor: pointer;
}

.min-w-lg{
  min-width: 150px;
}
@media (max-width: 767px) {
  .min-w-lg{
    min-width: 100px;
  }
}

.break-all {
  word-break: break-all;
}
.nowrap {
  white-space: nowrap;
}

::placeholder {
  color: lightgray !important;
}

.site_icon{
  height: 30px;
  width: 30px;
  border-radius: 5px;
}

.font_100{
  font-size: 100%;
}

.table-sm td, .table-sm th{
  padding: 0.2em !important;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #ffe4c4;
}

.img-wrap-left {
    overflow: hidden;
    position: relative;
  }

  .img-wrap-left:before {
    animation: img-wrap-left 0.8s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }

  @keyframes img-wrap-left {
    100% {
      transform: translateX(100%);
    }
  }
  .img-wrap-right {
    overflow: hidden;
    position: relative;
  }

  .img-wrap-right:before {
    animation: img-wrap-right 0.8s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }

  @keyframes img-wrap-right {
    100% {
      transform: translateX(-100%);
    }
  }

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 60px auto;
  font-size: 9px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
}
@media (max-width: 576px) {
	.loader {
		font-size: 6px;
	}
}
@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}