@charset "UTF-8";

/*border*/

.border-bottom-white-1px {
  border-bottom: solid 1px #ffffff;
}

.border-gray-1px {
  border: solid 1px #777777;
}

/*width*/

.w450px {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .w450px {
    width: 450px;
  }
}

.width150px-200px {
  width: 150px;
}

@media screen and (min-width: 768px) {
  .width150px-200px {
    width: 200px;
  }
}



/*height*/


/*位置*/
.transform-translate-n50 {
  transform: translate(-50%, -50%);
}

.top--25 {
  top: -25%;
}


.z-99 {
  z-index: 99 !important;
}

.z-999 {
  z-index: 999 !important;
}

.nav-item.text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
  /* iOSの慣性スクロール対応 */
  scrollbar-width: none;
  /* Firefoxでスクロールバー非表示 */
}

.overflow-x-auto::-webkit-scrollbar {
  display: none;
  /* Chrome/Safariでスクロールバー非表示 */
}

/* 下層ナビ横の線 */
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: #111;
    margin: 0 5px;
  }
}

/* 下層パンくず */
.breadcrumb {
  --bs-breadcrumb-divider: ">";
}

.breadcrumb li a {
  color: #777777 !important;
  text-decoration: none;
}

/* フォントサイズ */
@media screen and (min-width: 768px) {
  .fs-lg-12 {
    font-size: 3.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .fs-lg-10 {
    font-size: 3rem !important;
  }
}

.fs15px-20px {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .fs15px-20px {
    font-size: 20px;
  }
}

.fs12px-14px {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .fs12px-14px {
    font-size: 14px;
  }
}

/* テキスト飾り */
.text-border-bottom-blue {
  text-align: center;
  padding-bottom: 10px;
}

.text-border-bottom-blue::after {
  content: '';
  display: block;
  width: 65px;
  height: 3px;
  background: #1247ba;
  margin: 8px auto 0;
}

/* ボタン */
.btn-blue {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  background-color: #164b93;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.btn-blue:hover {
  opacity: 0.8;
}

.btn-circle-right::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

.btn-circle-right::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #164b93;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

