@charset "utf-8";
/* ローディング */
aside {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-Content {
  position: relative;
  z-index: 0;
  padding: 0;
  width: 100%;
  margin: 12px;
  max-width: 500px;
}
.scoped-content {
  padding: 1.5rem;
  max-width: 500px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}
.scoped-title {
  font-size: 1.142rem;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.scoped-list {
  font-size: 0.865rem;
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1.5fr 2fr;
  justify-content: center;
  line-height: 1.75;
  padding: 1.25rem;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-align: left;
}
.isLoading .scoped-list li {
  width: 100%;
  text-align: center;
}
.scoped-list li {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
/* ========================================
    spinner
======================================== */
.chart-loader {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin: 0 auto;
  width: 100px;
  height: 50px;
}

/* 各バーのスタイル */
.chart-bar {
  width: 10px;
  background-color: #ff9f41;
  animation: bounce 1s infinite ease-in-out;
}

/* バーの高さとアニメーションのタイミングを調整 */
.chart-bar:nth-child(1) {
  height: 10px;
  animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
  height: 20px;
  animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
  height: 15px;
  animation-delay: 0.3s;
}

.chart-bar:nth-child(4) {
  height: 25px;
  animation-delay: 0.4s;
}

.chart-bar:nth-child(5) {
  height: 30px;
  animation-delay: 0.5s;
}

/* バーが上下にバウンドするアニメーション */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上下に動く距離 */
  }
}
/* ========================================
    search
======================================== */
.SearchForm__select {
  text-align: left;
}
.SearchForm__selectItem {
	margin-bottom: 0.6rem;
	counter-increment: list-item;
	position: relative;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
	border: 1px solid #ddd;
	background-color: #fff;
	border-radius: 4px;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
}
.SearchForm__selectItem:last-child {
	margin-bottom: 0;
}
.SearchForm__selectItem:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	pointer-events: none;
	border: 1px solid #ef530c;
	box-shadow: 0 0 0 1px #ef530c;
	border-radius: 4px;
	opacity: 0;
  width: 100%;
}
.SearchForm__selectItem.is-nextStep:after {
	-webkit-animation: blinkAnime-data-v-b7f0822e 0.8s infinite alternate linear;
	animation: blinkAnime-data-v-b7f0822e 0.8s infinite alternate linear;
}
@-webkit-keyframes blinkAnime-data-v-b7f0822e {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes blinkAnime-data-v-b7f0822e {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.SearchForm__selectItemLabelInner {
	font-size: 1rem;
  left: 0;
  position: relative;
	top: 50%;
	width: 40%;
	font-weight: 700;
	letter-spacing: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.SearchForm__selectItemLabelInner:before {
	content: counter(list-item) ".";
	color: #ff9f41;
	padding-right: 0.5em;
}
.SearchForm__selectItemIcon {
	position: absolute;
	display: block;
	top: 50%;
	right: 19px;
	color: #96a8c6;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	pointer-events: none;
}
.SearchForm__selectItemIcon .p-svgicon {
	width: 100%;
	height: 100%;
}
.SearchForm__select {
  position: relative;
  padding: 12px;
}
.searchFormModal,
.searchFormModal_container {
  background-color: #fff;
  position: relative;
  cursor: auto;
  width: 100%;
  border-radius: 4px;
  padding: 0.8rem 1.2rem;
}
.searchFormModal_closeBtn {
  cursor: pointer;
  position: absolute;
  width: 33px;
  top: -10px;
  right: -10px;
}
.searchFormModal_header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.searchFormModal_headerTextWrap {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  font-weight: 700;
}
.searchFormModal_headerNum {
  color: #ff9f41;
  margin-right: 0.4rem;
}
.searchFormModal .searchFormModal_scrollArea {
  position: relative;
}
.SearchForm__select label {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
.searchFormModal .searchFormModal_input {
  display: none;
}
.searchFormModal .searchFormModal_btnItem {
  cursor: pointer;
  box-shadow: 0 2px 0 rgb(0 0 0 / 8%);
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
  padding: 7px;
  margin-bottom: 1rem;
}
.searchFormModal {
  align-items: center;
  box-sizing: border-box;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-bottom: 1rem;
  position: fixed;
  display: flex;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2200;
}
@media (min-width: 0) and (max-width: 700px) {
  .searchFormModal {
      padding-left: 3.75vw;
      padding-right: 3.75vw;
  }
}
.searchFormModal_Back {
  border: unset;
  font-size: 1.1rem;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 5px;
  padding: 0;
  height: 3.4rem;
  background-color: #ffffff;
  width: 100%;
  color: #aaaaaa;
  font-weight: 700;
  text-align: center;
}
.searchFormModal_Back > span {
  text-decoration: underline;
}
.searchFormModal_Back:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  bottom: -7px;
  right: -4px;
  pointer-events: none;
  border: 1px solid #aaa;
  box-shadow: 0 0 0 1px #aaa;
  border-radius: 4px;
  opacity: 0;
}
.searchFormModal .searchFormModal_input[type="radio"]:checked + .searchFormModal_btnItem {
    border: solid 3px #ff9f41;
    padding: 11px;
}
.SearchForm__selectItemLabel > span:nth-child(2) {
  padding-left: 1.5rem;
  display: block;
}
