@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* facility */
/* ============================================ */
.search-box .inner {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .search-box .inner {
    padding: 32px 24px;
  }
}
.search-box .inner .tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 40px;
}
@media all and (max-width: 896px) {
  .search-box .inner .tabs {
    flex-direction: column;
  }
}
.search-box .inner .tabs .tab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc((100% - 80px) / 3);
  height: 64px;
  margin-bottom: 24px;
  padding-inline: 45px;
  text-align: center;
  border-radius: 100px;
  border: 2px solid #e6ecf2;
  background: #fff;
  color: #1e3963;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .search-box .inner .tabs .tab_item {
    width: 100%;
    margin-block: 20px 0;
  }
}
.search-box .inner .tabs .tab_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 9px;
  margin-top: -5px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  rotate: 90deg;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .search-box .inner .tabs .tab_item::after {
    right: 10px;
  }
}
.search-box .inner .tabs .tab_item:hover {
  border-color: #1e3963;
  background-color: #1e3963;
  color: #fff;
}
.search-box .inner .tabs .tab_item:hover::after {
  filter: brightness(0) invert(1);
}
.search-box .inner .tabs > input {
  display: none;
}
.search-box .inner .tabs > input:checked + .tab_item {
  border-color: #1e3963;
  background-color: #1e3963;
  color: #fff;
}
.search-box .inner .tabs > input:checked + .tab_item::after {
  rotate: -90deg;
  filter: brightness(0) invert(1);
}
.search-box .inner .tab_content {
  display: block;
  width: 100%;
  height: 0;
  text-align: left;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1s ease-out;
}
.search-box .inner .tab_content dl {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}
@media all and (max-width: 896px) {
  .search-box .inner .tab_content dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.search-box .inner .tab_content dl dt {
  display: flex;
  flex: none;
  justify-content: center;
  width: 162px;
  padding: 10px 24px;
  border-radius: 4px;
  background: #1e3963;
  color: #fff;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .search-box .inner .tab_content dl dt {
    width: 100%;
    padding-block: 6px;
  }
}
.search-box .inner .tab_content dl dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media all and (max-width: 896px) {
  .search-box .inner .tab_content dl dd {
    flex-direction: column;
  }
}
.search-box .inner .tab_content dl dd input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
}
.search-box .inner .tab_content dl.wide {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.search-box .inner .tab_content dl.wide dt {
  width: 240px;
}
@media all and (max-width: 896px) {
  .search-box .inner .tab_content dl.wide dt {
    width: 100%;
  }
}
.search-box .inner .tab_content .submitBtn {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .search-box .inner .tab_content .submitBtn {
    gap: 10px;
    margin-top: 20px;
  }
}
.search-box .inner .tab_content .submitBtn input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
}
.search-box .inner .tab_content .submitBtn input.clear {
  background: #fff;
  color: #1e3963;
}
.search-box .inner .tab_content .submitBtn input.send {
  background: #1e3963;
  color: #fff;
}
.search-box .inner #tab01:checked ~ #tab01_content,
.search-box .inner #tab02:checked ~ #tab02_content,
.search-box .inner #tab03:checked ~ #tab03_content {
  height: auto;
  opacity: 1;
  padding: 32px;
  border-radius: 20px;
  background: #e6ecf2;
}
@media all and (max-width: 896px) {
  .search-box .inner #tab01:checked ~ #tab01_content,
  .search-box .inner #tab02:checked ~ #tab02_content,
  .search-box .inner #tab03:checked ~ #tab03_content {
    margin-top: 20px;
    padding: 24px;
  }
}
.search-box .inner #tab01:checked ~ #tab02_content,
.search-box .inner #tab01:checked ~ #tab03_content,
.search-box .inner #tab02:checked ~ #tab01_content,
.search-box .inner #tab02:checked ~ #tab03_content,
.search-box .inner #tab03:checked ~ #tab01_content,
.search-box .inner #tab03:checked ~ #tab02_content {
  height: 0;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .search-box .inner #tab01_label {
    order: 0;
  }
  .search-box .inner #tab01_content {
    order: 1;
  }
  .search-box .inner #tab02_label {
    order: 2;
  }
  .search-box .inner #tab02_content {
    order: 3;
  }
  .search-box .inner #tab03_label {
    order: 4;
  }
  .search-box .inner #tab03_content {
    order: 5;
  }
}

.facility-box {
  margin-top: 30px;
}
.facility-box .inner {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .facility-box .inner {
    padding: 32px 24px;
  }
}
.facility-box .inner .acd-label {
  display: block;
  position: relative;
  cursor: pointer;
}
.facility-box .inner .acd-label::before, .facility-box .inner .acd-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 25px;
  height: 2px;
  background: #1e3963;
  transition: 0.3s;
}
.facility-box .inner .acd-label::after {
  margin-top: 1px;
  transform: translateY(-50%) rotate(-90deg);
}
.facility-box .inner .acd-content {
  height: 0;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
.facility-box .inner .acd-content h3 {
  margin-block: 40px 16px;
  color: #1e3963;
  font-size: 1.8rem;
  font-weight: 600;
}
.facility-box .inner .acd-content h3:first-child {
  margin-top: 0;
}
.facility-box .inner .acd-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
@media all and (max-width: 896px) {
  .facility-box .inner .acd-content ul {
    gap: 10px 24px;
  }
}
.facility-box .inner .acd-content ul li {
  width: calc((100% - 72px) / 4);
}
@media all and (max-width: 896px) {
  .facility-box .inner .acd-content ul li {
    width: calc((100% - 24px) / 2);
  }
}
.facility-box .inner .acd-check {
  display: none;
}
.facility-box .inner .acd-check:checked + .acd-label::after {
  transform: translateY(-50%);
}
.facility-box .inner .acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  padding-block: 32px;
  visibility: visible;
}

.anc {
  margin-bottom: 40px;
}

.result .inner {
  padding-block: 100px;
}
@media all and (max-width: 896px) {
  .result .inner {
    padding-block: 80px;
  }
}
.result .inner.no-result {
  padding-block: 0;
}
.result .inner .ttl span {
  margin-block: 0 12px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .result .inner .ttl span {
    font-size: 1.6rem;
  }
}
.result .inner .spec {
  margin-block: -16px 48px;
  text-align: center;
}
.result .inner > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
@media all and (max-width: 896px) {
  .result .inner > ul {
    flex-direction: column;
    gap: 20px;
  }
}
.result .inner > ul > li {
  width: calc((100% - 36px) / 2);
  border-radius: 40px;
  background: #fff;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li {
    width: 100%;
    border-radius: 20px;
  }
}
.result .inner > ul > li .exp {
  padding: 30px;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp {
    padding: 16px 24px;
  }
}
.result .inner > ul > li .exp-upper {
  display: flex;
  justify-content: space-between;
}
.result .inner > ul > li .exp-upper h3 {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 2px;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp-upper h3 {
    font-size: 2rem;
  }
}
.result .inner > ul > li .exp-upper i {
  flex: none;
  width: 59px;
  margin-left: 5px;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp-upper i {
    width: 48px;
  }
}
.result .inner > ul > li .exp .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .info {
    flex-direction: column;
    margin-top: 14px;
  }
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .info li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.result .inner > ul > li .exp .info li span {
  display: block;
  font-size: 1.3rem;
}
.result .inner > ul > li .exp .info li:first-child {
  max-width: 250px;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .info li:first-child {
    max-width: initial;
  }
}
.result .inner > ul > li .exp .info a {
  display: flex;
  position: relative;
}
.result .inner > ul > li .exp .info a:not([href^="tel:"]) {
  justify-content: center;
  align-items: center;
  height: 63px;
  padding-inline: 40px 70px;
  border: 2px solid #1e3963;
  border-radius: 100px;
  background: #1e3963;
  color: #fff;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .info a:not([href^="tel:"]) {
    width: 100%;
    height: 44px;
  }
}
.result .inner > ul > li .exp .info a:not([href^="tel:"])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.08vw;
  width: 10px;
  height: 10px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
.result .inner > ul > li .exp .info a[href^="tel:"] {
  padding-left: 35px;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .info a[href^="tel:"] {
    pointer-events: auto;
  }
}
.result .inner > ul > li .exp .info a[href^="tel:"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_tel.svg) no-repeat center/cover;
  transform: translateY(-50%);
  filter: brightness(0);
}
.result .inner > ul > li .exp .mutualtext {
  margin-top: 16px;
  font-size: 1.35rem;
}
.result .inner > ul > li .exp .mutualtext a[href^="tel:"] {
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .result .inner > ul > li .exp .mutualtext a[href^="tel:"] {
    pointer-events: auto;
  }
}
.result .inner > ul > li .exp .mutualtext ul {
  margin-block: 8px;
}
.result .inner > ul > li .exp .mutualtext ul.default > li {
  padding-left: 20px;
}
.result .inner > ul > li .exp .mutualtext ul.default > li::before {
  top: 6px;
  width: 13px;
  height: 13px;
}
.result .viala {
  background: #dde2ea;
}
.result .reserve {
  background: #1e3963;
}
.result .reserve .ttl,
.result .reserve .spec,
.result .reserve .no-result {
  color: #fff;
}

/*# sourceMappingURL=list.css.map */
