/* カテゴリトップpc共通css */

/* --------------------start_検索（ベース）-------------------- */

#Search {
  width: 372px;
  display: flex;
  justify-content: space-between;
}

#Search.Search--has-tab {
  width: 480px;
}

#Search ::placeholder {
  color: #333;
}

.Search__form {
  width: 100%;
  padding: 20px;
  background: white;
  border-radius: 6px;
}

.Search__form--has-tab {
  display: flex;
  width: calc(480px - 105px - 3px);
  border-radius: 0 6px 6px 6px;
}

.Search-form-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 120px;
}

.Search-form-wrap:not(.active) {
  display: none;
}

.Search-form:not(:first-of-type) {
  display: none;
}

.Search__form-ttl {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.Search__form-ttl::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: -2px;
  background: url(../../../sharing/common21/images/icn_search--black.svg)
    no-repeat center / contain;
}

.Search__form-heading {
  margin-bottom: 10px;
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 0;
  text-align: center;
  background-color: #f5f5f5;
}

.Search__form-heading-inner {
  position: relative;
}

.Search__form-heading-inner::before,
.Search__form-heading-inner::after {
  content: "";
  position: absolute;
  top: 47%;
  display: block;
  width: 5px;
  height: 1px;
  background: #333;
}

.Search__form-heading-inner::before {
  left: -10px;
}

.Search__form-heading-inner::after {
  right: -10px;
}

.Search__form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.Search__form-group:not(:last-of-type) {
  margin-bottom: 10px;
}

.Search__form-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.Search__form-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 60px);
  padding-left: 10px;
  font-size: 1.4rem;
}

/* start_ラジオボタン */
#Search input[type="radio"] {
  display: none;
}

.Search__radio-label {
  display: inline-block;
  height: 40px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

#Search input[type="radio"]:checked + .Search__radio-label {
  background: var(--active-color);
}

.Search__radio-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: -5px;
  border-radius: 50%;
  border: 2px solid #888;
  background-color: white;
}

#Search input[type="radio"]:checked + .Search__radio-label .Search__radio-btn {
  border: 6px solid var(--corporate-color);
}
/* end_ラジオボタン */

/* start_チェックボックス（枠あり） */
#Search input[type="checkbox"] {
  display: none;
}

.Search__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

#Search input[type="checkbox"]:checked + .Search__checkbox-label {
  background: var(--active-color);
}

.Search__checkbox-btn {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: -5px;
  border-radius: 4px;
  border: 2px solid #888;
  background-color: white;
}

#Search
  input[type="checkbox"]:checked
  + .Search__checkbox-label
  .Search__checkbox-btn {
  border: none;
  background-color: var(--corporate-color);
}

#Search
  input[type="checkbox"]:checked
  + .Search__checkbox-label
  .Search__checkbox-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -70%) rotate(-45deg);
}
/* end_チェックボックス（枠あり） */

/* start_チェックボックス（枠なし） */
.Search__checkbox-label--simple {
  margin-bottom: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

#Search input[type="checkbox"]:checked + .Search__checkbox-label--simple {
  background: transparent;
}
/* end_チェックボックス（枠なし） */

/* start_セレクトボックス */
.Search__select {
  width: 100%;
  position: relative;
  border: 1px solid #888;
  border-radius: 4px;
}

.Search__select::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #c3c3c3;
  border-bottom: 2px solid #c3c3c3;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-80%) rotate(45deg);
}

#Search select {
  width: 100%;
  height: 40px;
  padding: 8px 30px 8px 10px;
}
/* end_セレクトボックス */

/* start_input-text */
#Search input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 9px 30px 8px 10px;
  text-overflow: ellipsis;
}

#Search input[type="text"]::placeholder {
  color: #999;
}

#Search input[type="text"]:disabled {
  color: var(--disable-font-color);
  background-color: var(--disable-bg-color);
  pointer-events: none;
  border-color: var(--disable-font-color);
}

.Search__input-text {
  position: relative;
  width: 100%;
  border: 1px solid #888;
  border-radius: 4px;
}

.Search__input-text::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c3c3c3;
  border-right: 2px solid #c3c3c3;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}
/* end_input-text */

/* start_グレー */
.CommonModal input[type="checkbox"]:disabled + .Search__checkbox-label {
  color: var(--disable-font-color);
  background-color: var(--disable-bg-color);
  pointer-events: none;
}

.CommonModal
  input[type="checkbox"]:disabled
  + .Search__checkbox-label
  .Search__checkbox-btn {
  opacity: 0.3;
}
/* end_グレー */

/* start_下部共通パーツ */

.Search__submit-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* start_該当件数 */
.Search__hit-wrap {
  font-size: 1.3rem;
  line-height: 1.2;
}

.Search__hit {
  margin-right: 3px;
  color: var(--caution-color);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
/* end_該当件数 */

/* start_条件を追加する */
.Search__detail-btn {
  display: inline-block;
  position: relative;
  padding: 11px 40px 11px 20px;
  color: var(--corporate-color);
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid var(--corporate-color);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.Search__detail-btn:hover {
  background-color: var(--active-color);
}

.Search__icn-plus {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--corporate-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.Search__icn-plus[data-lv="2"] {
  background-color: #f5f5f5;
}

.Search__icn-plus-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.Search__icn-plus-inner::before,
.Search__icn-plus-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2px;
  height: 8px;
  background-color: white;
  transform: translate(-50%, -50%);
}

.Search__icn-plus[data-lv="2"] .Search__icn-plus-inner::before,
.Search__icn-plus[data-lv="2"] .Search__icn-plus-inner::after {
  background-color: var(--corporate-color);
}

.Search__icn-plus-inner::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.trans-minus .Search__icn-plus-inner::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.trans-minus.Search__icn-plus[data-lv="2"] {
  background-color: white;
}

.Search__detail-btn--no-hit {
  /* 該当件数表示なしの場合 */
  margin-left: auto;
}
/* end_条件を追加する */

/* start_検索ボタン */
.Search__submit {
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: var(--caution-color);
  border-radius: 3px;
  transition: opacity 0.3s;
}

.Search__submit:hover {
  opacity: 0.7;
}

.Search__submit::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: -2px;
  background: url(../../../sharing/common21/images/icn_search--white.svg) no-repeat center / contain;
}
/* end_検索ボタン */

/* end_下部共通パーツ */

/* start_基本幅拡張 */
.Search__overhang-contents {
  position: absolute;
  top: -20px;
  right: calc((1024px - 480px + 20px) * -1);
  z-index: 2;
  width: calc(1024px - 480px + 20px);
  height: calc(100% + 40px);
  padding: 20px;
  background: white;
  border-radius: 0 6px 6px 0;
}

.Search__overhang-contents-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.Search__overhang-2col-group {
  width: calc((100% - 20px) / 2);
}

.Search__form-label--short-label {
  width: 45px;
}

.Search__form-content--short-label {
  width: calc(100% - 45px);
}

.Search__overhang-1col-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.Search__overhang-1col-group .Search__form-group {
  width: calc((100% - 20px) / 2);
  margin-bottom: 0;
}
/* end_基本幅拡張 */

/* start_追加条件 */
.Search__detail-contents {
  position: absolute;
  top: -20px;
  right: calc((1024px - 480px + 20px) * -1);
  z-index: 2;
  width: calc(1024px - 480px + 20px);
  height: calc(100% + 40px);
  padding: 20px;
  background: white;
  border-radius: 0 6px 6px 0;
}

.Search__detail-contents--half-width {
  right: calc((500px - 105px - 3px + 20px) * -1);
  width: calc(500px - 105px - 3px + 20px);
}

.Search__detail-contents:not(.active) {
  display: none;
}

.Search__detail-contents-inner {
  height: 100%;
  padding-left: 20px;
  border-left: 1px dotted #888;
}
/* end_追加条件 */

/* --------------------end_検索（ベース）-------------------- */

/* --------------------start_検索（基本項目）-------------------- */

/* start_交通手段 */
.Search__form-group--transport .Search__radio-label:nth-of-type(odd) {
  width: calc(60% - 5px);
}

.Search__form-group--transport .Search__radio-label:nth-of-type(even) {
  width: calc(40% - 5px);
}

.Search__form-group--transport .Search__radio-label:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}
/*  end_交通手段 */

/* start_出発地 */
.Search__form-group--detailed-departure .Search__select:first-child {
  border-radius: 4px 4px 0 0;
}

.Search__form-group--detailed-departure .Search__select:nth-child(2) {
  border-radius: 0;
  border-top: none;
  border-bottom: none;
}

.Search__form-group--detailed-departure .Search__select:last-child {
  border-radius: 0 0 4px 4px;
}
/* end_出発地 */

/* start_目的地 */
.Search__form-group--destination .Search__select:first-child {
  border-radius: 4px 4px 0 0;
}

.Search__form-group--destination .Search__select:nth-child(2) {
  border-radius: 0;
  border-top: none;
  border-bottom: none;
}

.Search__form-group--destination .Search__select:last-child {
  border-radius: 0 0 4px 4px;
}
/*  end_目的地 */

/* start_出発日 */
.Search__form-group--date .Search__input-text::after {
  content: none;
}

.Search__form-group--date .Search__input-text {
  background: url(../images/icn_calendar.svg) no-repeat right 10px center / 16px;
}
/* end_出発日 */

/* start_air2col出発地 */
.Search__2col-input-air-departure .Search__form-label::after,
.Search__2col-input-air-arrival .Search__form-label::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
}

.Search__2col-input-air-departure .Search__form-label::after {
  background: url(../images/icn_departure.svg) no-repeat center / contain;
}

.Search__2col-input-air-arrival .Search__form-label::after {
  background: url(../images/icn_arrival.svg) no-repeat center / contain;
}

.Search__2col-input-air-departure .Search__select::after,
.Search__2col-input-air-arrival .Search__select::after {
  top: 56%;
  transform: rotate(45deg);
}
/* end_air2col出発地 */

/* start_bus2col出発地 */
.Search__2col-input-bus-stop .Search__form-label::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: url(../images/icn_busStop.svg) no-repeat center / contain;
}

.Search__2col-input-bus-stop .Search__select::after {
  top: 56%;
  transform: rotate(45deg);
}
/* end_bus2col出発地 */

/* start_横並びinput/select */
.Search__2col-input {
  position: relative;
  width: 50%;
}

.Search__2col-input .Search__form-label {
  position: absolute;
  top: 8px;
  left: 10px;
  padding-top: 0;
  width: calc(100% - 16px);
  height: auto;
  font-size: 1.2rem;
}

.Search__2col-input .Search__form-content {
  width: 100%;
  padding-left: 0;
}

/* start_input */
.Search__2col-input:first-child .Search__input-text {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.Search__2col-input:last-child .Search__input-text {
  border-radius: 0 4px 4px 0;
}

#Search .Search__2col-input input[type="text"] {
  padding-top: 26px;
  height: auto;
}

.Search__2col-input .Search__input-text {
  background-position: right 10px bottom 11px;
}
/* end_input */

/* start_select */
.Search__2col-input:first-child .Search__select {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.Search__2col-input:last-child .Search__select {
  border-radius: 0 4px 4px 0;
}

#Search .Search__2col-input select {
  padding-top: 26px;
  height: auto;
}
/* end_select */

/* end_横並びinput/select */

/* start_直行便チェックボックス */
.Search__form-group--direct-flight .Search__form-content {
  padding-left: 70px;
}

.Search__form-group--direct-flight .Search__checkbox-label {
  height: auto;
}
/* end_直行便チェックボックス */

/* start_添乗員 */
.Search__checkbox-label--conductor {
  width: calc(50% - 5px);
  margin-bottom: 0;
}

.Search__checkbox-label--conductor:nth-of-type(n + 3) {
  margin-top: 10px;
}

.Search__checkbox-label--d-conductor--fz-small {
  padding: 8px 6px;
  font-size: 1.2rem;
  white-space: nowrap;
}

.Search__checkbox-label--d-conductor--fz-small .Search__checkbox-btn {
  margin-right: 3px;
}

.Search__checkbox-label--i-conductor--fz-small {
  padding: 8px;
  font-size: 1.3rem;
  white-space: nowrap;
}
/* end_添乗員 */

/* start_キーワード */
.Search__form-group--keyword .Search__input-text::after {
  content: none;
}
/* end_キーワード */

/* start_催行状況 */
.Search__checkbox-label--do {
  width: calc(50% - 5px);
  margin-bottom: 0;
}
/* end_催行状況 */

/* --------------------end_検索（基本項目）-------------------- */

/* --------------------start_モーダル（共通設定）-------------------- */

body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow-y: scroll;
}

.js_commonModal {
  cursor: pointer;
}

.CommonModal {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 100;
  width: 700px;
  font-size: 1.5rem;
  background: white;
  border-radius: 6px;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.CommonModal.active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.CommonModal__ttl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal__ttl {
  margin-left: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

/* #Search .CommonModal__ttl:not(.CommonModal__ttl--no-icn)::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: -2px;
  background: url(../../../sharing/common21/images/icn_search--black.svg) no-repeat center / contain;
} */

.CommonModal__contents-inner {
  padding: 20px;
}

.CommonModal--search .CommonModal__contents-inner {
  padding: 0;
}

.CommonModal__scroll-area {
  /* height: calc(100vh - 40px - 50px - 85px); */
  max-height: calc(700px - 50px - 85px);
  /*
  100vh(画面の高さ)
  50px(モーダル見出しの高さ)
  85px（モーダル下部ボタンエリアの高さ）
  700px（モーダル最大の高さ）
  */
  overflow-y: auto;
}

.CommonModal .Search__checkbox-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  border-color: #e5e5e5;
  height: auto;
  min-height: 45px;
  line-height: 1.3;
}

.Search__checkbox-txt {
  width: calc(100% - 25px);
  line-height: 1.3;
}

.CommonModal__btn-detail {
  position: absolute;
  top: 50%;
  right: 15px;
  padding: 5px 10px 5px 12px;
  color: var(--corporate-color);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #7ecff3;
  border-radius: 100px;
  background: white;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.CommonModal__btn-detail:hover {
  background-color: var(--active-color);
}

/* start_閉じるボタン */
.js_commonModal-close {
  cursor: pointer;
}

.CommonModal__close {
  display: block;
  position: relative;
  width: 50px;
  height: 100%;
  background: #888;
  border-radius: 0 5px 0 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.CommonModal__close:hover {
  opacity: 0.7;
}

.CommonModal__close::before,
.CommonModal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
}

.CommonModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.CommonModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* end_閉じるボタン */

/* start_決定/設定ボタン */
.CommonModal__set-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
  border-top: 1px solid #e5e5e5;
  transform: translateY(-1px);
}

.CommonModal__set-btn {
  width: 240px;
  padding: 10px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 3px;
  background-color: var(--caution-color);
  transition: opacity 0.3s;
}

.CommonModal__set-btn:hover {
  opacity: 0.7;
}
/* end_決定/設定ボタン */

/* start_オーバーレイ */
.CommonModal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00111a;
  z-index: 20;
  opacity: 0.7;
}
/* end_オーバーレイ */

/* --------------------end_モーダル（共通設定）-------------------- */

/* --------------------start_モーダル（開催エリア）-------------------- */

.CommonModal--area-ac-wrap {
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal--area-ac-btn {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
}

.CommonModal--area-ac-btn.active {
  background: #f5f5f5;
}

.CommonModal--area-ac-contents {
  display: none;
  border-top: 1px solid #e5e5e5;
}

.CommonModal--area-ac-contents-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 30px);
  margin: 15px auto;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
}

.CommonModal--area .Search__checkbox-label {
  margin-bottom: 0;
  width: calc(100% / 3);
  border-radius: 0;
  border-top: none;
  border-left: none;
}

.CommonModal--area .Search__checkbox-label:nth-of-type(3n + 1) {
  border-right: none;
}

.CommonModal--area .Search__checkbox-label:first-of-type {
  font-weight: 600;
  width: 100%;
  border-right: none;
}

.CommonModal--area .CommonModal--destination-ac-wrap:first-of-type .Search__checkbox-label:first-of-type {
	width: 33% !important;
	border-right: 1px solid #e5e5e5;
}

/* --------------------end_モーダル（開催エリア）-------------------- */

/* --------------------start_モーダル（方面）-------------------- */

.CommonModal--departure-ac-wrap {
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal--departure-ac-btn {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
}

.CommonModal--departure-ac-btn.active {
  background: #f5f5f5;
}

.CommonModal--departure-ac-contents {
  display: none;
  border-top: 1px solid #e5e5e5;
}

.CommonModal--departure-ac-contents-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 30px);
  margin: 15px auto;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
}

.CommonModal--departure .Search__checkbox-label {
  margin-bottom: 0;
  width: calc(100% / 3);
  border-radius: 0;
  border-top: none;
  border-left: none;
}

.CommonModal--departure .Search__checkbox-label:nth-of-type(3n + 1) {
  border-right: none;
}

.CommonModal--departure .Search__checkbox-label:first-of-type {
  font-weight: 600;
  width: 100%;
  border-right: none;
}

/* --------------------end_モーダル（方面）-------------------- */

/* --------------------start_モーダル（目的地）-------------------- */

.CommonModal--destination-ac-wrap {
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal--destination-ac-btn {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
}

.CommonModal--destination-ac-btn[data-lv="2"] {
  font-weight: 400;
}

.CommonModal--destination-ac-btn:not(:first-of-type) {
  border-top: 1px solid #e5e5e5;
}

.CommonModal--destination-ac-btn.active {
  background: #f5f5f5;
}

.CommonModal--destination-ac-contents {
  display: none;
  margin-bottom: -1px;
  border-top: 1px solid #e5e5e5;
}

.CommonModal--destination-ac-contents[data-lv="2"] {
  padding-bottom: 15px;
}

.CommonModal--destination-ac-contents-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 30px);
  margin: 15px auto;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
}

.CommonModal--destination .Search__checkbox-label {
  margin-bottom: 0;
  width: calc(100% / 3);
  border-radius: 0;
  border-top: none;
  border-left: none;
}

.CommonModal--destination .Search__checkbox-label:nth-of-type(3n + 1) {
  border-right: none;
}

.CommonModal--destination .Search__checkbox-label:first-of-type {
  font-weight: 600;
  width: 100%;
  border-right: none;
}

/* --------------------end_モーダル（目的地）-------------------- */

/* --------------------start_モーダル（カレンダー）-------------------- */

.CommonModal--calendar .CommonModal__contents-inner {
  padding: 0;
}

.CommonModal-day-wrap {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 80px);
  margin: 40px auto 0 auto;
}

.CommonModal-day-month {
  width: 294px;
}

.CommonModal-day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.CommonModal-day-ttl {
  font-size: 1.5rem;
  font-weight: 600;
}

.CommonModal-day-select-month {
  padding: 13px 15px;
  color: #666;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #c3c3c3;
  border-radius: 50px;
  transition: opacity 0.3s;
}

.CommonModal-day-table th,
.CommonModal-day-table td {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #e5e5e5;
}

.CommonModal-day-table th:first-child,
.CommonModal-day-table td:first-child,
.CommonModal-day-table td.holiday {
  color: #ff6666;
}

.CommonModal-day-table th:last-child,
.CommonModal-day-table td:last-child {
  color: #6397f7;
}

.CommonModal-day-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.CommonModal-day-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.CommonModal-day-table th .CommonModal-day-bg {
  background: #f5f5f5;
}

.CommonModal-day-bg:hover,
.CommonModal-day-table th .CommonModal-day-bg:hover {
  background: var(--active-color);
}

.CommonModal-day-bg.active,
.CommonModal-day-table th .CommonModal-day-bg.active {
  color: white;
  background: var(--corporate-color);
}

.CommonModal-day-empty {
  background: #e5e5e5;
}

.CommonModal-day-g {
  opacity: 0.3;
}

.CommonModal-day-control-wrap {
  display: flex;
  justify-content: center;
  width: calc(100% - 80px);
  padding: 15px 0;
  margin: 0 auto;
}

.CommonModal-day-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  background-color: #f5f5f5;
  border-radius: 50px;
}

.CommonModal-day-control--g {
  opacity: 0.3;
}

.CommonModal-day-control:not(.CommonModal-day-control--g) {
  cursor: pointer;
  transition: box-shadow 0.3s, background-color 0.3s;
}

.CommonModal-day-control:not(.CommonModal-day-control--g):hover {
  box-shadow: 0px 0px 0px 1px var(--corporate-color) inset;
  background-color: var(--active-color);
}

.CommonModal-day-control::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--sub-corporate-color);
  border-right: 2px solid var(--sub-corporate-color);
  transform: rotate(45deg);
}

.CommonModal-day-control--prev {
  margin-right: 15px;
}

.CommonModal-day-control--prev::before {
  transform: rotate(-135deg);
}

.CommonModal-day-display-wrap {
  display: flex;
  justify-content: center;
  background: #f5f5f5;
  border-top: 1px solid #e5e5e5;
}

.CommonModal-day-display-group {
  padding: 3px 10px 5px 10px;
}

.CommonModal-day-display-group:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}

.CommonModal-day-display-ttl {
  color: var(--sub-corporate-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.CommonModal-day-display-content {
  font-size: 1.5rem;
  line-height: 1;
}

/* --------------------end_モーダル（カレンダー）-------------------- */

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: none !important;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: none !important;
}

.Search__clear {
  background-color: #8E8E8E;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  padding: 1rem 2rem;
  transition: opacity 0.3s;
  margin-top: -40px;
  line-height: 1;
}

.Search__clear:hover {
  opacity: 0.7;
}