@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #dc143c;
  --brand-color: #dc143c;
  --link-color: #dc143c;
  --link-hover-color: #efefef;
  --link-border-radius: 4px;
  --highlight-color: #0098cf;
  --card-border-radius: 8px;
  --card-border-color: #dcdcdc;
  --card-border-width: 1px;
  --card-bg-color: #fff;
  --body-color: #111;
  --body-background: none;
  --body-background-size: auto;
  --helper-color: rgba(17, 17, 17, .6);
  --logo-image-height: 32px;
  --header-link-color: #777;
  --header-color: #606060;
  --header-background: transparent;
  --header-background-size: auto;
  --form-border-color: #979797;
  --page-container-width: 760px;
  --subtitle-background: none;
  --subtitle-background-size: auto;
  --query-input-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .28);
  --query-input-border: 1px solid #dcdcdc;
  --kinds-selector-display: none
}

body {
  margin: 0;
  color: var(--body-color);
  min-height: 100vh;
  background: var(--body-background);
  background-size: var(--body-background-size);
  font-family: ヒラギノ角ゴシック, Hiragino Sans, メイリオ, NotoSansCJKjp, Meiryo, YuGothic, Yu Gothic, Roboto, SF Pro JP, SF Pro Text, SF Pro Icons, sans-serif;
  display: flex;
  flex-direction: column
}
a {
  color: var(--link-color);
  text-decoration: none;
  -webkit-touch-callout: none
}
a.link {
    color: #333;
}
a.link:hover{
    color: #dc143c;
}
p {
    font-weight: normal!important;
}
.header {
  padding: 0;
  color: var(--header-color);
  background: var(--header-background);
  background-size: var(--header-background-size)
}
.header h1.brand a:after {
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  margin-left: 16px;
  cursor: pointer
}
.navbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  margin: 0;
  position: relative;
  background-color: #212121;
  border-bottom: 1px solid #595959
}
.navbar h1.brand {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  margin: 0
}
.navbar h1.brand a {
  color: var(--brand-color);
  display: flex
}
.navbar h1.brand a:hover {
  background-color: transparent
}
.navbar h1.brand img {
  display: block;
  height: var(--logo-image-height);
  object-fit: contain;
  max-width: calc(100vw - 90px)
}
@media (max-width: 767px) {
  .navbar h1.brand {
    font-size: 24px
  }
}
.footer {
  text-align: center;
  font-size: 14px;
  margin-top: auto;
  padding-bottom: 0;
  margin-bottom: 5px;
  position: relative
}
.footer:after {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff903c, #ff0576);
  position: absolute;
  left: 0;
  bottom: -5px
}
.footer_licence, .footer_menu_block {
  list-style: none;
  padding: 0;
  margin: 0
}
.footer_wrap {
  padding: 15px 16px;
  background-color: #595959
}
.footer_menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  max-width: 800px;
  margin: 20px auto 0;
  gap: 0 8px
}
.footer_menu_block {
  font-size: 12px
}
.footer_menu_list {
  margin-bottom: 8px
}
.footer_menu_list_link {
  color: #fff
}
.footer_licence {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: left;
  font-size: 10px;
  max-width: 800px;
  margin: 28px auto 20px;
  gap: 16px
}
.footer_licence_list {
  margin-bottom: 8px;
  min-height: 26px
}
.footer_licence_list_link {
  color: #bcbcbc;
  display: flex;
  position: relative;
  padding-left: 37px
}
.footer_licence_list_link:before {
  content: "";
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0
}
.footer_licence_list_link-jasrac:before {
  background-image: url(../images/icon-jasrac.svg)
}
.footer_licence_list_link-nextone:before {
  background-image: url(../images/icon-nextone.svg)
}
.footer_licence_list_link-lmark:before {
  background-image: url(../images/icon-lmark.svg)
}
.footer_copy {
  font-size: 13px;
  color: #fff
}
.footer_powered-by-helpfeel a {
  font-size: 10px;
  color: #c6c6c6
}
.footer_powered-by-helpfeel a:hover {
  opacity: .6
}
/***追従するトップへ戻るボタン***/
.return {
  z-index: 10;
  position: fixed;
  right: -20px;
  bottom: 10px;
  text-align: center;
}
.return img {
  width: 34%;
}
.return p {
  padding-top: 5px;
  color: #000;
}
/***トップへ戻るボタンここまで***/
@media screen and (max-width: 456px) {
  .return {
    right: -47px;
  }
  .return img {
    width: 20%;
  }
  .return p {
    font-size: 10px;
  }
}
.container {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  position: relative
}
a {
  cursor: pointer
}
.externaltransmission .container {
  padding-top: 32px;
  padding-bottom: 32px
}
#indicator {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999
}
#indicator.fade-out {
  animation: fadeOut 100s;
  animation-fill-mode: both
}
@keyframes indicator_loading {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}