@charset "UTF-8";
/* @Reference site */
/* @MEMO */
@-webkit-keyframes pulldownFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulldownFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.search {
  position: relative;
  width: 100%;
}

.search * {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@media (max-width: 705px) {
  .search {
    padding: 35px 0 150px;
  }
  .search.-bottomarea {
    padding-bottom: 36px;
  }
}
@media (min-width: 706px) {
  .search {
    padding: 0 0 320px;
  }
  .search.-bottomarea {
    padding-bottom: 44px;
  }
}
.search__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search__bg::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 705px) {
  .search__bg::before {
    background: linear-gradient(
      135deg,
      #ff7a0a 0%,
      #ff7d0e 15.67%,
      #ff841b 31.9%,
      #ff902f 48.4%,
      #ffa24c 65.09%,
      #ffb872 81.92%,
      #ffd49f 98.65%,
      #ffd6a3 100%
    );
    opacity: 0.95;
  }
}
@media (min-width: 706px) {
  .search__bg::before {
    background: linear-gradient(90deg, #ffc799 0%, #ff7005 100%);
    opacity: 1;
  }
}
.search__bg::after {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 705px) {
  .search__bg::after {
    /*  background-image: url(../img/search/bg_nrw.jpg);*/
  }
}
@media (min-width: 706px) {
  .search__bg::after {
    background-attachment: fixed;
    /* background-image: url(../img/search/bg.jpg);*/
  }
}
@media (min-width: 706px) {
  .search__bgtext {
    left: -15px;
    max-width: 692px;
    position: absolute;
    top: 35px;
    width: 36vw;
  }
}
.search__title {
  margin: 0 auto;
  opacity: 0;
  position: relative;
  transform: translate(0, 20px);
  transition: transform 0.35s ease-out, opacity 0.2s ease-out;
}
@media (max-width: 705px) {
  .search__title {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    width: 92vw;
  }
}
@media (min-width: 706px) {
  .search__title {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    width: 580px;
  }
}
.search__title.-viewed {
  opacity: 1;
  transform: translate(0, 0);
}
.search__tab {
  border-radius: 10px 10px 0 0;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.search__tab__item {
  background-color: #fadadc;
  border-bottom: 2px solid #fadadc;
  color: #faaab0;
  cursor: pointer;
  font-feature-settings: "palt";
  font-weight: bold;
  line-height: 1;
  list-style: none;
  text-align: center;
  width: 50%;
}
@media (max-width: 705px) {
  .search__tab__item {
    font-size: 1rem;
    padding: 16px 0;
  }
}
@media (min-width: 706px) {
  .search__tab__item {
    font-size: 1.5rem;
    padding: 16px 0;
  }
  .search__tab__item:hover {
    background-color: #ff7083;
    color: #fff;
  }
}
.search__tab__item:first-child {
  border-right: 2px solid #fadadc;
}
@media (max-width: 705px) {
  .search__content {
    padding: 25px 0;
  }
}
@media (min-width: 706px) {
  .search__content {
    padding: 30px 0;
  }
}
.search__tools {
  margin: 0 auto;
}
@media (max-width: 705px) {
  .search__tools {
    width: 80.8vw;
  }
}
@media (min-width: 706px) {
  .search__tools {
    display: flex;
    justify-content: space-between;
    width: 838px;
  }
}
.search__selects__item {
  display: none;
}
.search__selects select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ff7083;
  border-radius: 8px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 705px) {
  .search__selects select {
    height: 40px;
    width: 100%;
  }
}
@media (min-width: 706px) {
  .search__selects select {
    height: 64px;
    width: 286px;
  }
}
.search__selects select::before {
  border-bottom: 2px solid #ff7083;
  border-right: 2px solid #ff7083;
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
}
@media (min-width: 706px) {
  .search__selects select::before {
    height: 14px;
    width: 14px;
  }
}
.search__selects option {
  text-align: center;
}
@media (max-width: 705px) {
  .search__selects option {
    font-size: 1rem;
  }
}
@media (min-width: 706px) {
  .search__selects option {
    font-size: 1.375rem;
  }
}
@media (max-width: 705px) {
  .search__selects .area {
    margin-top: 16px;
  }
}
@media (min-width: 706px) {
  .search__selects .area {
    margin-left: 20px;
  }
}
.search__note {
  color: #787878;
  line-height: 1.5 !important;
  margin-top: 16px;
  padding-bottom: 0 !important;
}
@media (max-width: 705px) {
  .search__note {
    font-size: 0.625rem;
    text-align: center;
  }
}
@media (min-width: 706px) {
  .search__note {
    font-size: 0.875rem;
    padding-right: 40px;
    text-align: right;
  }
}
.search__kensaku {
  display: block;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.2));
}
@media (max-width: 705px) {
  .search__kensaku {
    margin: 15px auto 0;
    width: 45.8vw;
  }
}
@media (min-width: 706px) {
  .search__kensaku {
    margin-top: -4px;
    width: 214px;
  }
}
.search .learning,
.search .area {
  position: relative;
}
.search__trigger {
  align-items: center;
  border: 2px solid #213e60;
  border-radius: 8px;
  color: #213e60;
  cursor: pointer;
  display: flex;
  font-weight: bold;
  justify-content: center;
  padding: 0 40px;
  position: relative;
  text-align: center;
  transition: opacity 0.5s ease-out;
}
@media (max-width: 705px) {
  .search__trigger {
    font-size: 1rem;
    height: 40px;
    width: 100%;
  }
}
@media (min-width: 706px) {
  .search__trigger {
    font-size: 1.375rem;
    height: 64px;
    width: 286px;
  }
}
@media (min-width: 706px) {
  .search__trigger:hover {
    opacity: 0.5;
  }
}
.search__trigger::after {
  background: #213e60;
  content: "";
  -webkit-mask-image: url(../img/search/ico_select_arrow.svg);
  mask-image: url(../img/search/ico_select_arrow.svg);
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 705px) {
  .search__trigger::after {
    height: 13px;
    width: 13px;
  }
}
@media (min-width: 706px) {
  .search__trigger::after {
    height: 19px;
    width: 19px;
  }
}
.search__select {
  background-color: #5c5c5c;
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 100;
}
@media (max-width: 705px) {
  .search__select {
    border-radius: 4px;
    width: 100%;
  }
}
@media (min-width: 706px) {
  .search__select {
    border-radius: 6px;
    width: 286px;
  }
}
.search__select.-active {
  -webkit-animation: pulldownFadeIn 0.35s ease-out;
  animation: pulldownFadeIn 0.35s ease-out;
  display: block;
}
.search__select__inner {
  overflow-y: scroll;
  /*スクロールバー全体*/
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}
@media (max-width: 705px) {
  .search__select__inner {
    height: 385px;
  }
}
@media (min-width: 706px) {
  .search__select__inner {
    height: 475px;
  }
}
.search__select__inner::-webkit-scrollbar {
  width: 4px;
}
.search__select__inner::-webkit-scrollbar-track {
  background-color: rgba(30, 45, 59, 0.3);
  border-radius: 3px;
}
.search__select__inner::-webkit-scrollbar-thumb {
  background-color: #1e2d3b;
  border-radius: 3px;
}
.search__select__label {
  border-bottom: 4px solid #787878;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (max-width: 705px) {
  .search__select__label {
    font-size: 1rem;
    padding: 10px;
  }
}
@media (min-width: 706px) {
  .search__select__label {
    font-size: 1.3125rem;
    padding: 15px 10px;
    transition: background-color 0.35s ease-out;
  }
  .search__select__label:hover {
    background-color: #707070;
  }
}
.search__select__label span {
  display: inline-block;
  position: relative;
}
@media (max-width: 705px) {
  .search__select__label span {
    padding: 0 23px;
  }
}
@media (min-width: 706px) {
  .search__select__label span {
    padding: 0 28px;
  }
}
.search__select__label span::before {
  background: url(../img/search/ico_check.svg) 0 0/100% auto no-repeat;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}
@media (max-width: 705px) {
  .search__select__label span::before {
    height: 16px;
    width: 15px;
  }
}
@media (min-width: 706px) {
  .search__select__label span::before {
    height: 20px;
    width: 19px;
  }
}
.search__select__label.-active span::before {
  visibility: visible;
}
.search__select dt {
  background-color: #4c4747;
  color: #d2d2d2;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 705px) {
  .search__select dt {
    font-size: 0.875rem;
    padding: 10px 10px 10px 30px;
  }
}
@media (min-width: 706px) {
  .search__select dt {
    font-size: 1.125rem;
    padding: 15px 10px 15px 35px;
  }
}
.search__select__btn {
  color: #fff;
  cursor: pointer;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 705px) {
  .search__select__btn {
    font-size: 0.9375rem;
    padding: 10px 10px 10px 30px;
  }
}
@media (min-width: 706px) {
  .search__select__btn {
    font-size: 1.25rem;
    padding: 10px 10px 10px 35px;
    transition: background-color 0.35s ease-out;
  }
  .search__select__btn:hover {
    background-color: #707070;
  }
}
.search__select__btn:not(:first-child) {
  border-top: 2px solid #787878;
}
.search__select__btn::before {
  background: url(../img/search/ico_check.svg) 0 0/100% auto no-repeat;
  content: "";
  display: block;
  left: 10px;
  position: absolute;
  top: 50.5%;
  transform: translate(0, -50%);
  visibility: hidden;
}
@media (max-width: 705px) {
  .search__select__btn::before {
    height: 16px;
    width: 15px;
  }
}
@media (min-width: 706px) {
  .search__select__btn::before {
    height: 20px;
    width: 19px;
  }
}
.search__select__btn.-active::before {
  visibility: visible;
}
.search [data-key="dai"] .search__tab__item.-dai {
  background-color: #ff7083;
  color: #fff;
}
.search [data-key="dai"] .search__selects__item.-dai {
  display: block;
}
@media (min-width: 706px) {
  .search [data-key="dai"] .search__selects__item.-dai {
    display: flex;
  }
}
.search [data-key="send"] .search__tab__item.-sen {
  background-color: #ff7083;
  color: #fff;
}
.search [data-key="send"] .search__selects__item.-sen {
  display: block;
}
@media (min-width: 706px) {
  .search [data-key="send"] .search__selects__item.-sen {
    display: flex;
  }
}
.search__main {
  background-color: #fff;
  border-radius: 10px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
  margin: 20px auto 0;
  position: relative;
  z-index: 100;
}
@media (max-width: 705px) {
  .search__main {
    width: 91.4vw;
  }
}
@media (min-width: 706px) {
  .search__main {
    margin-top: 18px;
    width: 920px;
  }
}
.search__main.-viewed {
  opacity: 1;
  transform: translate(0, 0);
}
.search__content {
  background-color: transparent !important;
}
@media (max-width: 705px) {
  .search__content {
    padding: 25px 0;
  }
}
@media (min-width: 706px) {
  .search__content {
    padding: 34px 0 40px;
  }
}
.search__tools {
  margin: 0 auto;
}
@media (max-width: 705px) {
  .search__tools {
    width: 80.8vw;
  }
}
@media (min-width: 706px) {
  .search__tools {
    display: flex;
    justify-content: space-between;
    width: 838px;
  }
}
.search__selects__item {
  display: none;
}
.search__selects select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/search/ico_select_arrow.svg) no-repeat;
  background-position: calc(100% - 15px) 50%;
  border: 2px solid #fadadc;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  padding: 0 10px;
  position: relative;
  text-align: center;
  transition: opacity 0.5s ease-out;
}
@media (max-width: 705px) {
  .search__selects select {
    background-size: 13px auto;
    font-size: 1rem;
    height: 40px;
    width: 100%;
  }
}
@media (min-width: 706px) {
  .search__selects select {
    background-size: 19px auto;
    font-size: 1.375rem;
    height: 64px;
    width: 286px;
  }
}
@media (min-width: 706px) {
  .search__selects select:hover {
    opacity: 0.5;
  }
}
.search__selects option {
  text-align: center;
}
@media (max-width: 705px) {
  .search__selects .area {
    margin-top: 16px;
  }
}
@media (min-width: 706px) {
  .search__selects .area {
    margin-left: 20px;
  }
}
.search__note {
  color: #787878;
  margin-top: 16px;
}
@media (max-width: 705px) {
  .search__note {
    font-size: 0.6875rem;
    text-align: center;
  }
}
@media (min-width: 706px) {
  .search__note {
    font-size: 0.875rem;
    padding-right: 30px;
    text-align: right;
  }
}
.search__note span {
  display: none;
}
.search__kensaku {
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
@media (max-width: 705px) {
  .search__kensaku {
    margin: 15px auto 0;
    max-width: 172px;
    width: 45.8vw;
  }
}
@media (min-width: 706px) {
  .search__kensaku {
    margin-top: -4px;
    width: 214px;
  }
}
.search__kensaku a {
  display: block;
  opacity: 0.3;
  pointer-events: none;
}
.search__kensaku a.-active {
  opacity: 1;
  pointer-events: initial;
}
.search__link {
  line-height: 1.5 !important;
  padding-bottom: 0 !important;
  text-align: center;
}
.search__link a {
  color: #213e60;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
}
@media (max-width: 705px) {
  .search__link a {
    font-size: 0.75rem;
    margin-top: 20px;
    padding-right: 15px;
  }
}
@media (min-width: 706px) {
  .search__link a {
    font-size: 1.25rem;
    margin: 30px 0 0 28px;
    padding-right: 20px;
  }
}
.search__link a::after {
  border-bottom: 2px solid #213e60;
  border-right: 2px solid #213e60;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
@media (max-width: 705px) {
  .search__link a::after {
    height: 10px;
    right: 3px;
    width: 10px;
  }
}
@media (min-width: 706px) {
  .search__link a::after {
    height: 15px;
    width: 15px;
  }
}
.search__link span {
  border-bottom: 2px solid #213e60;
  display: inline-block;
}
.search__noentry {
  color: #ea6740;
  display: none;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 5px;
  padding: 0;
  text-align: center;
}
.search__noentry.-active {
  display: block;
}
.search .search__main[data-key="dai"] .search__tab__item.-dai {
  background-color: #ff7083;
  color: #fff;
}
.search .search__main[data-key="dai"] .search__selects__item.-dai {
  display: block;
}
@media (min-width: 706px) {
  .search .search__main[data-key="dai"] .search__selects__item.-dai {
    display: flex;
  }
}
.search .search__main[data-key="dai"] .search__note .-dai {
  display: inline-block;
}
.search .search__main[data-key="sen"] .search__tab__item.-sen {
  background-color: #ff7083;
  color: #fff;
}
.search .search__main[data-key="sen"] .search__selects__item.-sen {
  display: block;
}
@media (min-width: 706px) {
  .search .search__main[data-key="sen"] .search__selects__item.-sen {
    display: flex;
  }
}
.search .search__main[data-key="sen"] .search__note .-sen {
  display: inline-block;
}

.searchtools {
  display: none;
  pointer-events: none;
  z-index: -1;
}
