@charset "UTF-8";
.modal-area {
  z-index: 10001;
  position: fixed;
}

@media screen and (max-width: 640px) {
  .modalDd {
    padding: 20px !important;
  }
}

.typeChoice {
  display: block;
  padding: 50px 20px;
}

.modalToggle {
  margin-bottom: 10px;
  border: 1px solid #d6d6d6;
  box-shadow: none;
  color: #000;
  background-color: #f5f5f5;
  width: 100%;
  -webkit-appearance: none;
  font-size: 12px;
  line-height: 3;
  padding: 0 1em;
  width: 100%;
  max-width: 190px;
  border-radius: 10px;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalToggle.__pc {
    display: none;
  }
}

.modalCloseLayer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}
@media screen and (max-width: 640px) {
  .modalCloseLayer {
    padding: 5px;
  }
}
.modalCloseLayer.is-shown {
  opacity: 1;
  visibility: visible;
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
  z-index: 9999;
  width: 740px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.4s ease;
}
@media screen and (max-width: 640px) {
  .modal {
    top: 63px;
    left: 5px;
    transform: translate(0, 120%);
    width: calc(100% - 10px);
    height: calc(100% - 63px);
  }
}
.modal.is-shown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .modal.is-shown {
    transform: translate(0, 0);
  }
}
.modal_hl {
  position: relative;
  display: block;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
  background: #1cb5b6;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .modal_hl {
    font-size: 18px;
  }
}
.modal .back {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  font-size: 10px;
  font-weight: bold;
}
.modal .modalCloseIcon {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.modal .modalCloseIcon:before, .modal .modalCloseIcon:after {
  content: "";
  position: absolute;
  top: 15px;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}
.modal .modalCloseIcon:before {
  transform: rotate(45deg);
}
.modal .modalCloseIcon:after {
  transform: rotate(-45deg);
}

.stepBox {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
@media screen and (max-width: 640px) {
  .stepBox {
    position: relative;
    display: block;
    width: 100%;
    height: calc(100% - 48px);
    padding: 0;
    overflow: hidden;
  }
}

.stepInner {
  width: 325px;
}
@media screen and (max-width: 640px) {
  .stepInner {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
    border-radius: 0 0 10px 10px;
    background: #fff;
  }
}
@media screen and (max-width: 640px) {
  .stepInner:last-child {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(100%, 0, 0);
    padding-bottom: 12px;
  }
}

.stepTit {
  padding: 10px 0;
  background: #1cb5b6;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .stepTit {
    padding: 20px;
    text-align: center;
    background: #edf8f9;
    color: #1cb5b6;
  }
}
.stepTit span {
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  .stepTit span {
    display: inline-block;
  }
}
.stepTit .txtEn {
  margin-bottom: 5px;
  font-size: 11px;
}
@media screen and (max-width: 640px) {
  .stepTit .txtEn {
    margin: 0 5px 0 0;
  }
}
.stepTit .titBig {
  font-size: 15px;
}

.classifyingList,
.desiredArea {
  height: 310px;
  border: 2px solid #e1e1e1;
  border-top: 0;
  color: #535353;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .classifyingList,
  .desiredArea {
    height: 100%;
    border: none;
  }
}

.classifyingList {
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 640px) {
  .classifyingList {
    padding: 10px;
  }
}
.classifyingList li {
  position: relative;
  margin-bottom: 10px;
  padding: 20px 20px 20px 30px;
  background: #f4f4f4;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
}
.classifyingList li:after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  margin-left: auto;
  font-size: 10px;
  color: #1cb5b6;
  opacity: 0;
}
.classifyingList li:hover {
  background: #edf8f9;
}
.classifyingList li:last-child {
  margin-bottom: 0;
}
.classifyingList .small {
  font-size: 11px;
}
.classifyingList .setting {
  display: none;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.classifyingList .setting.__checked {
  display: block;
}
.classifyingList .act {
  background: #edf8f9;
  color: #1cb5b6;
}
.classifyingList .act:after {
  opacity: 1;
}

.defaultArea {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
}

.desiredArea {
  position: relative;
}

.desiredList {
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  overflow-y: scroll;
}
.desiredList.is-active {
  visibility: visible;
  opacity: 1;
}
.desiredList input[type=checkbox] {
  display: none;
}

.cstmCheck {
  position: relative;
  display: block;
  padding: 10px 10px 10px 60px;
  border-bottom: 2px solid #e1e1e1;
  font-size: 13px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .cstmCheck {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cstmCheck:after {
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
}
.cstmCheck:before {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 45%;
  left: 39px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 4px;
  height: 7px;
  border-right: 2px solid #1cb5b6;
  border-bottom: 2px solid #1cb5b6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 1;
}
.cstmCheck:hover {
  background: #edf8f9;
}

.level1 .cstmCheck,
.tit .cstmCheck {
  padding-left: 40px;
}
.level1 .cstmCheck:after,
.tit .cstmCheck:after {
  left: 15px;
}
.level1 .cstmCheck:before,
.tit .cstmCheck:before {
  left: 19px;
}

.level1 .cstmCheck {
  background: #f4f4f4;
}
@media screen and (max-width: 640px) {
  .level1 .cstmCheck {
    background: #fff;
  }
}

.tit .cstmCheck {
  font-weight: bold;
}

.desiredList .disabled {
  color: #ccc;
}
.desiredList .disabled:hover {
  background: transparent;
  border-top: 2px solid #efeee8;
}
.desiredList .disabled:hover + li {
  border-top: 2px solid #efeee8;
}

input[type=checkbox]:checked + .cstmCheck:before {
  opacity: 1;
}

.searchBtnBox {
  border-radius: 0 0 10px 10px;
  padding: 10px 0 20px;
  background: #edf8f9;
}
@media screen and (max-width: 640px) {
  .searchBtnBox {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all 0.4s ease;
  }
}

.btnBlockInner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .btnBlockInner {
    flex-direction: column;
  }
}

.modalClose {
  display: block;
  width: 260px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin: 0 -80px 0 auto;
  padding: 15px 0;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 3px 4px 0 #CCC;
  background: #3b9ad1;
  background: -moz-linear-gradient(top, #3b9ad1 0%, #0877b2 100%);
  background: -webkit-linear-gradient(top, #3b9ad1 0%, #0877b2 100%);
  background: linear-gradient(to bottom, #3b9ad1 0%, #0877b2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3b9ad1", endColorstr="#0877b2",GradientType=0 );
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.modalClose:hover {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 1px 0 0 #CCC;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .modalClose {
    margin: 0 auto;
  }
}

.condtionClear {
  margin-left: auto;
  padding: 10px 20px 0 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .condtionClear {
    margin: auto;
    padding: 20px 0 0;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .is-second .back {
    visibility: visible;
    opacity: 1;
  }
  .is-second .stepInner:last-child {
    transform: translate3d(0, 0, 0);
  }
  .is-second .searchBtnBox {
    opacity: 1;
    visibility: visible;
  }
}
.modalFilter {
  box-sizing: border-box;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter {
    padding: 58px 0 0;
    z-index: 9999;
  }
}
.modalFilter.is-shown {
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter.__second {
    display: none;
  }
}
.modalFilter_wp {
  max-width: 1020px;
  width: 100%;
  max-height: 640px;
  height: 100%;
  box-sizing: border-box;
  padding: 60px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_wp {
    max-height: none;
    padding: 70px 0 82px;
    border-radius: 0;
  }
}
.modalFilter_content {
  padding: 0 30px 30px;
  box-sizing: border-box;
  overflow-y: scroll;
  max-height: 100%;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_content {
    height: 100%;
    padding: 0;
  }
}
.modalFilter_content2 {
  height: 100%;
  position: relative;
  z-index: 1;
}
.modalFilter_inner dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #d6d6d6;
}
.modalFilter_inner dl dd,
.modalFilter_inner dl dt {
  border-bottom: 1px solid #d6d6d6;
}
.modalFilter_inner dl dt {
  border-left: 1px solid #d6d6d6;
  width: 170px;
  background-color: #f5f5f5;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  padding: 1.2em 0 1.2em 1.2em;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dt {
    font-size: 16px;
    padding: 0.75em 1em;
    width: 100%;
    border-right: 1px solid #ddd;
  }
  .modalFilter_inner dl dt + dd {
    opacity: 1;
    visibility: visible;
    height: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .modalFilter_inner dl dt .arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transition: 0.3s;
    display: block !important;
  }
  .modalFilter_inner dl dt.closed .arrow {
    transform: translateY(0, -50%) rotate(0deg);
  }
  .modalFilter_inner dl dt.closed + dd {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding-block: 0;
  }
}
.modalFilter_inner dl .icon {
  height: 23px;
  width: 23px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.modalFilter_inner dl .icon img {
  vertical-align: top;
  vertical-align: sub;
}
.modalFilter_inner dl .text-multiline {
  display: inline-block;
  vertical-align: top;
}
.modalFilter_inner dl dd {
  border-right: 1px solid #d6d6d6;
  font-size: 15px;
  line-height: 1.8;
  padding: 1.2em;
  width: calc(100% - 170px);
  box-sizing: border-box;
  transition: all 1s ease;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd {
    font-size: 13px;
    width: 100%;
    border-left: 1px solid #ddd;
    padding: 0;
  }
}
.modalFilter_inner dl dd.narrow, .modalFilter_inner dl dd.narrow-pc {
  padding: 0.7em 1.2em;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd.narrow-pc {
    padding: 0;
  }
}
.modalFilter_inner dl dd.narrow:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd.__chosed {
    padding: 13px;
  }
  .modalFilter_inner dl dd.__chosed .checkbox-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .modalFilter_inner dl dd.__chosed .checkbox-wrap:not(:has(input:checked)):before {
    content: "選択されていません";
  }
  .modalFilter_inner dl dd.__chosed .checkbox-wrap li {
    padding: 0;
    border-bottom: none;
    display: none;
  }
  .modalFilter_inner dl dd.__chosed .checkbox-wrap li:has(input:checked) {
    display: block;
  }
}
.modalFilter_inner dl dd .modalToggle {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 2.6;
  display: inline-block;
  vertical-align: top;
  max-width: none !important;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  width: auto;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd .modalToggle.__pc {
    display: none;
  }
}
.modalFilter_inner dl dd select {
  border: 1px solid #d6d6d6;
  box-shadow: none;
  color: #000;
  background-color: #f5f5f5;
  width: 100%;
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 2.6;
  padding: 0 1em;
  width: 100%;
  max-width: 190px;
  border-radius: 10px;
  box-sizing: border-box;
}
.modalFilter_inner dl dd .select-wrap {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 190px;
  margin-right: 0.5em;
}
.modalFilter_inner dl dd .select-wrap i {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #1CB5B6;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd .textbox-wrap {
    padding: 0.75em 1em;
  }
}
.modalFilter_inner dl dd .textbox-wrap input {
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 0 1em;
  line-height: 3;
  width: 100%;
  background: #f5f5f5;
  font-size: 14px;
  box-sizing: border-box;
}
.modalFilter_inner dl dd .textbox-wrap input:focus {
  outline: none;
}
.modalFilter_inner dl dd.__chosed {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd.__chosed {
    flex-direction: column;
    align-items: flex-start;
  }
}
.modalFilter_inner dl dd.__chosed .choseList {
  width: auto;
  margin-left: 0;
  min-height: auto;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd.__chosed .choseList.__hasList:before {
    display: none;
  }
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner dl dd.__chosed .choseList:before {
    content: "選択されていません";
    display: block;
  }
}
.modalFilter_inner dl dd .choseList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.modalFilter_inner dl dd .choseList li {
  width: 100%;
  position: relative;
}
.modalFilter_inner dl dd .choseList li input {
  display: none;
}
.modalFilter_inner dl dd .choseList li label {
  padding-left: 1.75em;
  line-height: 1.8;
  position: relative;
  display: block;
}
.modalFilter_inner dl dd .choseList li label:has(input:checked):before {
  opacity: 1;
}
.modalFilter_inner dl dd .choseList li label:before {
  transition: 0.3s;
  position: absolute;
  top: 13px;
  left: 3px;
  display: block;
  width: 4px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid #1CB5B6;
  border-bottom: 2px solid #1CB5B6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}
.modalFilter_inner dl dd .choseList li label:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
  z-index: 1;
}
.modalFilter_inner .btn-filter {
  display: none;
  border-radius: 4px;
  background-color: #00B2B3;
  color: #FFF;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner .btn-filter {
    display: block;
  }
}
.modalFilter_inner .checkbox-wrap:not(.area) > li {
  display: inline-block;
  padding-right: 20px;
}
.modalFilter_inner .checkbox-wrap.column-2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modalFilter_inner .checkbox-wrap.column-2 li {
  width: 50%;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner .checkbox-wrap.column-2 li {
    width: 100%;
  }
}
.modalFilter_inner .checkbox-wrap li {
  display: inline-block;
  min-width: 90px;
  padding: 5px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_inner .checkbox-wrap li {
    display: block;
    width: 100%;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .modalFilter_inner .checkbox-wrap li:last-child {
    border-bottom: none;
  }
}
.modalFilter_inner .checkbox-wrap li input {
  display: none;
}
.modalFilter_inner .checkbox-wrap li input:checked + label:before {
  opacity: 1;
}
.modalFilter_inner .checkbox-wrap li label {
  position: relative;
  display: block;
  padding: 0 0 0 1.75em;
  cursor: pointer;
}
.modalFilter_inner .checkbox-wrap li label:has(input:checked):before {
  opacity: 1;
}
.modalFilter_inner .checkbox-wrap li label:before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 13px;
  left: 3px;
  display: block;
  width: 4px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid #1CB5B6;
  border-bottom: 2px solid #1CB5B6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}
.modalFilter_inner .checkbox-wrap li label:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
  z-index: 1;
}
.modalFilter_inner .checkbox-list-wrap.sp ul:empty::before {
  content: "選択されていません";
  display: block;
}
.modalFilter_inner .checkbox-list-wrap ul {
  padding: 1em;
}
.modalFilter .cstmCheck:has(input:checked):before {
  opacity: 1;
}
.modalFilter .cstmCheck:before {
  z-index: 2;
}
.modalFilter .cstmCheck:after {
  z-index: 1;
}
.modalFilter .btn-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EDF8F9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter .btn-area {
    height: 82px;
    border-radius: 0;
  }
}
.modalFilter .btn-area .btn-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 60px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  background: #3b9ad1;
  background: linear-gradient(to bottom, #3b9ad1 0%, #0877b2 100%);
  border-radius: 5px;
  box-shadow: 0 3px 4px 0 #CCC;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter .btn-area .btn-search {
    width: 192px;
    font-size: 15px;
    height: 50px;
  }
}
@media (hover: hover) {
  .modalFilter .btn-area .btn-search:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #64890F;
  }
}
.modalFilter .btn-area .btn-search span {
  font-weight: bold;
}
.modalFilter .btn-area .btn-search span:before {
  content: "この条件で";
}
.modalFilter .btn-area .btn-form_clear {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  margin-left: 1em;
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 0;
  font-weight: bold;
  background: #b9b9b9;
  border-radius: 5px;
  box-shadow: 0 3px 0 0 #909090;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter .btn-area .btn-form_clear {
    width: 102px;
  }
}
@media (hover: hover) {
  .modalFilter .btn-area .btn-form_clear:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #909090;
  }
}
.modalFilter .btn-area i {
  margin-right: 0.5em;
}
.modalFilter_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilter_overlay {
    display: none;
  }
}
.modalFilter_hl {
  width: 100%;
  height: 65px;
  background-color: #1CB5B6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
.modalFilter_hl .modalCloseIcon {
  right: 16px;
}
.modalFilterClose {
  background-color: #1cb5b6;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: absolute;
  top: 16px;
  right: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilterClose {
    width: 100%;
    height: 70px;
    border-radius: 0;
    top: 0;
    right: 0;
    padding-left: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.modalFilterClose_txt {
  display: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilterClose_txt {
    display: block;
  }
}
.modalFilterClose .modalCloseIcon {
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  .modalFilterClose .modalCloseIcon {
    left: auto;
    right: 0;
  }
}
.modalFilter .stepBox {
  gap: 40px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-sizing: border-box;
}
.modalFilter .stepInner {
  width: calc((100% - 40px) / 2);
  height: 100%;
  box-sizing: border-box;
  padding-top: 56px;
  position: relative;
  box-sizing: border-box;
}
.modalFilter .stepInner .stepTit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modalFilter .stepInner .stepTit .txtEn {
  font-size: 11px;
  line-height: 1.4;
}
.modalFilter .stepInner .stepTit .titBig {
  font-size: 15px;
  line-height: 1.1;
}
.modalFilter .stepInner .classifyingList,
.modalFilter .stepInner .desiredArea {
  box-sizing: border-box;
  height: 100%;
}

.modalCloseIcon {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.modalCloseIcon:before, .modalCloseIcon:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 5px;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transform-origin: 50% 50%;
}
.modalCloseIcon:before {
  transform: rotate(45deg);
}
.modalCloseIcon:after {
  transform: rotate(-45deg);
}

.modal-sp {
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
}
.modal-sp.is-shown {
  opacity: 1;
  pointer-events: all;
}
.modal-sp.is-shown .modal-sp-footer .modal-sp-btn-finish {
  pointer-events: all;
}
.modal-sp-main {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  box-sizing: border-box;
  border: 2px solid #00b2b3;
  border-radius: 8px;
  padding: 0 15px 15px;
}
.modal-sp-title {
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
  font-weight: bold;
}
.modal-sp-title:after {
  content: "絞り込む";
  color: #00B2B3;
}
.modal-sp-close {
  width: 32px;
  height: 32px;
  background-color: #00B2B3;
  position: absolute;
  right: 15px;
  top: 15px;
  border-radius: 100%;
}
.modal-sp-close:before {
  font-size: 22px;
  line-height: 1;
  content: "✕";
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-sp-contents {
  height: 55vh;
  overflow: scroll;
}
.modal-sp-contents > .list-group {
  border: 1px solid #ccc;
}
.modal-sp-contents > .list-group .list-group-item {
  padding: 10px 12px;
}
.modal-sp-contents > .list-group .list-group-item:not(last-child) {
  border-bottom: 1px solid #ccc;
  padding: 10px 12px;
}
.modal-sp-contents > .list-group .list-group-item:has(input:checked) {
  background-color: #EFF8F9;
  color: #00B2B3;
  font-weight: bold;
}
.modal-sp-contents > .list-group label {
  padding: 0.4em 0 0.4em 1.75em;
  line-height: 1.2;
  position: relative;
  display: block;
}
.modal-sp-contents > .list-group label:has(input:checked):before {
  opacity: 1;
}
.modal-sp-contents > .list-group label:before {
  transition: 0.3s;
  position: absolute;
  top: 13px;
  left: 3px;
  display: block;
  width: 4px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid #1CB5B6;
  border-bottom: 2px solid #1CB5B6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}
.modal-sp-contents > .list-group label:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
}
.modal-sp-contents > .list-group label input {
  display: none;
}
.modal-sp-btn-finish {
  padding: 20px 30px;
  font-size: 20px;
  line-height: 1;
  border: none;
  border-radius: 6px;
  background-color: #00B2B3;
  color: #FFF;
  pointer-events: auto;
  cursor: pointer;
}
.modal-sp-footer {
  position: relative;
  z-index: 2;
}
.modal-sp-footer .modal-sp-btn-finish {
  pointer-events: none;
}
.modal.is-shown .modal-sp-footer .modal-sp-btn-finish {
  pointer-events: all;
}
.modal-sp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.modal-sp .list-area-group {
  border: 1px solid #ccc;
}
.modal-sp .list-area-group .search-area-arc-outer:nth-child(n+2) {
  border-top: 1px solid #ccc;
}
.modal-sp .list-area-group .search-area-arc-outer ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-sp .list-area-group .search-area-arc-outer li {
  padding: 10px 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}
.modal-sp .list-area-group .search-area-arc-outer li:has(input:checked) {
  background-color: #EFF8F9;
  color: #00B2B3;
  font-weight: bold;
}
.modal-sp .list-area-group .search-area-arc-outer li:nth-last-child(1), .modal-sp .list-area-group .search-area-arc-outer li:nth-last-child(2) {
  border-bottom: none;
}
.modal-sp .list-area-group .search-area-arc-outer li:nth-last-child(2):nth-child(even) {
  border-bottom: 1px solid #ccc;
}
.modal-sp .list-area-group .search-area-arc-outer li:nth-child(2n+1) {
  border-right: 1px solid #ccc;
}
.modal-sp .list-area-group label {
  padding: 0.4em 0 0.4em 1.75em;
  line-height: 1.2;
  position: relative;
  display: block;
}
.modal-sp .list-area-group label:has(input:checked):before {
  opacity: 1;
}
.modal-sp .list-area-group label:before {
  transition: 0.3s;
  position: absolute;
  top: 13px;
  left: 3px;
  display: block;
  width: 4px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid #1CB5B6;
  border-bottom: 2px solid #1CB5B6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}
.modal-sp .list-area-group label:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
}
.modal-sp .list-area-group label input {
  display: none;
}
.modal-sp .list-area-group .check-level1 {
  border-bottom: 1px solid #ccc;
  padding: 10px 12px;
  transition: all 0.3s ease;
}
.modal-sp .list-area-group .check-level1:has(input:checked) {
  background-color: #EFF8F9;
  color: #00B2B3;
  font-weight: bold;
}

.modal-sp-accordion {
  border: 1px solid #ccc;
}
.modal-sp-accordion_item:nth-child(n+2) {
  border-top: 1px solid #ccc;
}
.modal-sp-accordion_item:has(input:checked) .modal-sp-accordion_tit:after {
  display: inline-block;
}
.modal-sp-accordion_item.is-opened .modal-sp-accordion_tit:before {
  transform: translateY(-50%) rotate(-45deg);
}
.modal-sp-accordion_tit {
  background-color: #eee;
  padding: 10px 60px 10px 16px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  width: 100%;
  border: none;
  text-align: left;
  color: #000;
}
.modal-sp-accordion_tit:before {
  content: "";
  display: block;
  border-right: 2px solid #1CB5B6;
  border-top: 2px solid #1CB5B6;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%) rotate(135deg);
  z-index: 1;
}
.modal-sp-accordion_tit:after {
  content: "設定中";
  background-color: #EE7F31;
  color: #FFF;
  padding: 6px;
  margin-left: 10px;
  display: inline-block;
  line-height: 1;
  font-weight: normal;
  font-size: 16px;
  transition: all 0.3s ease;
  display: none;
}
.modal-sp-accordion_target {
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.modal-sp-accordion .list-group_item {
  transition: all 0.3s ease;
}
.modal-sp-accordion .list-group_item:not(last-child) {
  border-bottom: 1px solid #ccc;
  padding: 10px 12px;
}
.modal-sp-accordion .list-group_item:has(input:checked) {
  background-color: #EFF8F9;
  color: #00B2B3;
  font-weight: bold;
}
.modal-sp-accordion .list-group_item.level3 {
  padding-left: 24px;
}
.modal-sp-accordion label {
  padding: 0.4em 0 0.4em 1.75em;
  line-height: 1.2;
  position: relative;
  display: block;
}
.modal-sp-accordion label:has(input:checked):before {
  opacity: 1;
}
.modal-sp-accordion label:before {
  transition: 0.3s;
  position: absolute;
  top: 13px;
  left: 3px;
  display: block;
  width: 4px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid #1CB5B6;
  border-bottom: 2px solid #1CB5B6;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}
.modal-sp-accordion label:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #e1e1e1;
  content: "";
  border-radius: 2px;
  background: #fff;
}
.modal-sp-accordion label input {
  display: none;
}
.modal-sp-accordion .check-level1 {
  border-bottom: 1px solid #ccc;
  padding: 10px 12px;
  transition: all 0.3s ease;
}
.modal-sp-accordion .check-level1:has(input:checked) {
  background-color: #EFF8F9;
  color: #00B2B3;
  font-weight: bold;
}

html:has(.modalFilter.is-shown), html:has(.modal-sp.is-shown),
body:has(.modalFilter.is-shown),
body:has(.modal-sp.is-shown) {
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 640px), screen and (max-height: 450px) and (orientation: landscape) {
  html:has(.modalFilter.is-shown) .p-header#header, html:has(.modal-sp.is-shown) .p-header#header,
  body:has(.modalFilter.is-shown) .p-header#header,
  body:has(.modal-sp.is-shown) .p-header#header {
    pointer-events: all;
  }
}/*# sourceMappingURL=modal.css.map */