@charset "UTF-8";
/* ========================================================================== */
/* 画面切り替え設定
/* ========================================================================== */
/* ========================================================================== */
/* 余白・大きさ・幅の設定
/* ========================================================================== */
/* ========================================================================== */
/* フォント設定
/* ========================================================================== */
/* ========================================================================== */
/* 色の設定
/* ========================================================================== */
:root {
  --black-10: rgb(25.5, 25.5, 25.5);
  --black-20: #333333;
  --black-30: rgb(76.5, 76.5, 76.5);
  --black-40: #666666;
  --black-50: rgb(127.5, 127.5, 127.5);
  --black-60: #999999;
  --black-70: rgb(178.5, 178.5, 178.5);
  --black-80: #cccccc;
  --black-90: rgb(229.5, 229.5, 229.5);
}

/* ========================================================================== */
/* その他の設定
/* ========================================================================== */
/* ========================================================================== */
/* じゃらん HPDS
/* ========================================================================== */
.plan-serch {
  margin-inline: auto;
  border: 1px solid var(--search-box-line);
  border-radius: var(--radius-container);
  overflow: hidden;
}
.plan-serch__hl {
  background-color: var(--search-box-hl);
  color: var(--search-box-hl-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan-serch__hl__title {
  font-weight: var(--font-bold);
  margin-bottom: 0.25em;
}
.plan-serch__hl__sub {
  background-image: url(../img/plan-serch-icon.png);
  background-repeat: no-repeat;
  font-weight: var(--font-bold);
}
.plan-serch__form {
  background-color: var(--search-box-bg);
}
.plan-serch__form .searchform__item__hl {
  color: var(--search-text-color);
  font-weight: var(--font-bold);
  margin-bottom: 0.5em;
  display: block;
  margin-bottom: 0.5em;
  letter-spacing: 0.08em;
}
.plan-serch__form .searchform__item select {
  border: none;
  border-radius: var(--radius-control);
}
.plan-serch__form #res_submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: var(--radius-control);
  background-color: var(--search-select-submit);
  color: var(--search-select-submit-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all var(--baseanispeed) ease;
  transition: all var(--baseanispeed) ease;
}
.plan-serch__form #res_submit:hover {
  -webkit-filter: brightness(1.15);
          filter: brightness(1.15);
  opacity: 1;
}
.plan-serch__form__link .change-rsv {
  text-align: center;
}
.plan-serch__form__link .change-rsv a {
  color: var(--change-rsv-link);
}
.plan-serch__form__link .btn-reserve a {
  border-radius: var(--radius-control) !important;
}
@media (width < 960px) {
  .plan-serch {
    margin-top: 32px;
    margin-top: 8.5333333333vw;
    margin-bottom: 64px;
    margin-bottom: 17.0666666667vw;
    margin-left: var(--sp-body-padding);
    margin-right: var(--sp-body-padding);
  }
  .plan-serch select {
    font-size: 1.4rem;
    padding: 0.5em 0.75em 0.5em 0.5em;
  }
  .plan-serch__hl {
    font-size: 1.5rem;
    padding-block: var(--space-xs);
    border-radius: var(--radius-control) var(--radius-control) 0 0;
  }
  .plan-serch__hl__title {
    font-size: 2rem;
    padding-bottom: 6px;
  }
  .plan-serch__hl__sub {
    background-position: center top;
    padding-top: 34px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
  }
  .plan-serch__hl__sub br {
    display: none;
  }
  .plan-serch__form {
    padding: var(--space-sm);
  }
  .plan-serch__form .searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    margin-bottom: 6.4vw;
  }
  .plan-serch__form .searchform__item__hl {
    font-size: 1.4rem;
  }
  .plan-serch__form .searchform__item:first-child {
    width: 100%;
  }
  .plan-serch__form .searchform__item:first-child dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
  .plan-serch__form .searchform__item:first-child dd select:nth-of-type(1) {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .plan-serch__form .searchform__item:first-child dd select:nth-of-type(2), .plan-serch__form .searchform__item:first-child dd select:nth-of-type(3) {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .plan-serch__form .searchform__item:nth-child(2), .plan-serch__form .searchform__item:nth-child(3), .plan-serch__form .searchform__item:nth-child(4) {
    width: calc((100% - 24px) / 3);
  }
  .plan-serch__form .searchform__item:nth-child(2) dd select, .plan-serch__form .searchform__item:nth-child(3) dd select, .plan-serch__form .searchform__item:nth-child(4) dd select {
    width: 100%;
  }
  .plan-serch__form .searchform .serach-btn {
    width: 100%;
  }
  .plan-serch__form .searchform .serach-btn #res_submit {
    font-size: 1.6rem;
    width: 100%;
    padding: 0.25em 1.25em;
    height: 42px;
  }
  .plan-serch__form__link {
    width: 100%;
  }
  .plan-serch__form__link .btn-reserve {
    font-size: 1.5rem;
    margin-bottom: 0.75em;
  }
  .plan-serch__form__link .btn-reserve a {
    padding: 0.5em 0;
  }
  .plan-serch__form__link .change-rsv {
    font-size: 1.4rem;
  }
}
@media (960px <= width < 1280px) {
  .plan-serch {
    margin-top: 40px;
    margin-top: 4.1666666667vw;
    margin-bottom: 80px;
    margin-bottom: 8.3333333333vw;
    max-width: clamp(960px, 90vw, 1280px);
    padding-inline: var(--space-sm);
  }
  .plan-serch select {
    font-size: 1.5rem;
    padding: 0.5em 0.75em 0.5em 0.5em;
  }
  .plan-serch__hl {
    font-size: 1.5rem;
    padding-block: var(--space-xs);
    border-radius: var(--radius-control) var(--radius-control) 0 0;
  }
  .plan-serch__hl__title {
    font-size: 2.2rem;
    padding-bottom: 6px;
  }
  .plan-serch__hl__sub {
    background-position: center top;
    padding-top: 34px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
  .plan-serch__hl__sub br {
    display: none;
  }
  .plan-serch__form {
    padding: 3.2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
  .plan-serch__form .searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
  .plan-serch__form .searchform__item__hl {
    font-size: 1.5rem;
  }
  .plan-serch__form .searchform__item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    gap: 0.8333333333vw;
  }
  .plan-serch__form #res_submit {
    font-size: 1.5rem;
    height: 100%;
    padding: 0 1em;
  }
  .plan-serch__form__link {
    min-width: 200px;
  }
  .plan-serch__form__link .btn-reserve {
    font-size: 1.5rem;
    margin-bottom: 0.75em;
  }
  .plan-serch__form__link .btn-reserve a {
    padding: 0.5em 0;
  }
  .plan-serch__form__link .change-rsv {
    font-size: 1.4rem;
  }
}
@media (1280px <= width) {
  .plan-serch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 56px;
    margin-top: 4.375vw;
    margin-bottom: 100px;
    margin-bottom: 7.8125vw;
  }
  .plan-serch select {
    font-size: 1.8rem;
    padding: 0.4em 1em 0.4em 0.75em;
  }
  .plan-serch__hl {
    font-size: 1.8rem;
    width: 120px;
    width: 9.375vw;
  }
  .plan-serch__hl__title {
    font-size: 2.2rem;
    padding-bottom: 6px;
  }
  .plan-serch__hl__sub {
    background-position: center top;
    padding-top: 34px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
  .plan-serch__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1050px;
    width: 82.03125vw;
    padding: 3.2rem 2.4rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .plan-serch__form .searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    width: 76.8%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .plan-serch__form .searchform__item__hl {
    font-size: 1.5rem;
  }
  .plan-serch__form .searchform__item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    gap: 0.625vw;
  }
  .plan-serch__form #res_submit {
    font-size: 1.6rem;
    height: 100%;
    padding: 0 var(--space-md);
    height: 58px;
  }
  .plan-serch__form__link {
    width: 20.97%;
  }
  .plan-serch__form__link .btn-reserve {
    font-size: 1.5rem;
  }
  .plan-serch__form__link .btn-reserve a {
    padding: 0.25em 0;
  }
  .plan-serch__form__link .change-rsv {
    font-size: 1.4rem;
  }
}

@media (width < 960px) {
  .l-search {
    padding-inline: var(--sp-body-padding);
  }
}
@media (960px <= width < 1280px) {
  .l-search {
    padding-inline: var(--tab-body-padding);
  }
}
.l-search .plan-serch {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-search .plan-serch__hl {
  width: 100%;
}
.l-search .plan-serch__form {
  padding-inline: 0;
  width: 100%;
}
@media (width < 960px) {
  .l-search .plan-serch {
    padding-block: var(--sp-body-padding);
  }
  .l-search .plan-serch .plan-serch__form {
    gap: var(--space-lg);
    padding-inline: var(--space-xs);
  }
}
@media (960px <= width < 1280px) {
  .l-search .plan-serch {
    padding-block: var(--tab-body-padding);
  }
  .l-search .plan-serch__hl {
    width: 100%;
    padding-block: var(--space-sm);
  }
  .l-search .plan-serch__hl__sub br {
    display: none;
  }
  .l-search .plan-serch__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-lg);
    padding-inline: var(--space-sm);
  }
  .l-search .plan-serch__form__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-md);
    width: 100%;
  }
  .l-search .plan-serch__form__link .btn-reserve {
    font-size: 1.6rem;
    margin-bottom: 0.75em;
  }
  .l-search .plan-serch__form__link .btn-reserve a {
    padding: 0.75em 2em;
  }
}
@media (1280px <= width) {
  .l-search .plan-serch {
    width: 100%;
    max-width: 1000px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-search .plan-serch__hl {
    width: 100%;
    padding-block: var(--space-sm);
  }
  .l-search .plan-serch__hl__sub br {
    display: none;
  }
  .l-search .plan-serch .plan-serch__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-lg);
  }
  .l-search .plan-serch .plan-serch__form__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-md);
    width: 100%;
  }
  .l-search .plan-serch .plan-serch__form__link .btn-reserve {
    font-size: 1.6rem;
    margin-bottom: 0.75em;
  }
  .l-search .plan-serch .plan-serch__form__link .btn-reserve a {
    padding: 0.75em 2em;
  }
}/*# sourceMappingURL=search-hpds.css.map */