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

/* --------------------start_共通パーツ-------------------- */

:root {
  --hoverOpacity: 0.8;
}

.sp {
  display: none;
}

.Common21__inner {
  width: 1024px;
  margin: 0 auto;
}

.Common21__section {
  margin-bottom: 60px;
}

.Common21__section--border-bottom {
  padding-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
}

.Common21__section-ttl-lev1 {
  width: 100%;
  position: relative;
  margin-bottom: 35px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.Common21__section-ttl-lev1::before,
.Common21__section-ttl-lev1::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -15px;
}

.Common21__section-ttl-lev1::before {
  left: 50%;
  transform: translateX(-100%);
  background: var(--corporate-color);
}

.Common21__section-ttl-lev1::after {
  left: 50%;
  background: #00a0e9;
}

.Common21__section-ttl-lev2 {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 0 0 10px;
  font-size: 2.1rem;
  font-weight: 600;
  border-top: 1px solid #e5e5e5;
}

.Common21__section-ttl-lev2::before,
.Common21__section-ttl-lev2::after {
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 36px;
}

.Common21__section-ttl-lev2::before {
  transform: translateY(-100%);
  background: var(--corporate-color);
}

.Common21__section-ttl-lev2::after {
  background: var(--sub-corporate-color);
}

/* start_Common21__line-btn */
.Common21__line-btn {
  display: inline-block;
  position: relative;
  padding: 15px 55px 15px 20px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  transition: border-color 0.3s, background-color 0.3s;
}

.Common21__line-btn:hover {
  border-color: var(--corporate-color);
  background-color: #f2fafe;
}

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

.Common21__line-btn::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}
/* end_Common21__line-btn */

/* start_Common21__fill-btn */
.Common21__fill-btn-wrap {
  margin-top: 20px;
  text-align: center;
}

.Common21__fill-btn {
  display: inline-block;
  position: relative;
  padding: 18px 85px 18px 60px;
  color: white;
  font-weight: 600;
  background: var(--corporate-color);
  border-radius: 4px;
  transition: color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.Common21__fill-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.Common21__fill-btn:hover {
  color: var(--corporate-color);
  background-color: white;
  box-shadow: 0px 0px 0px 1px var(--corporate-color) inset;
}

.Common21__fill-btn:hover::after {
  border-color: var(--corporate-color);
}
/* end_Common21__fill-btn */

/* --------------------end_共通パーツ-------------------- */

#PageName {
  display: block;
  width: 1024px;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 2.4rem;
  font-weight: 600;
}

#Keyvisual {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.Common21__inner--keyvisual {
  position: relative;
  display: flex;
  justify-content: space-between;
}

/* --------------------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-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_下部共通パーツ */

.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_検索（国内）-------------------- */

.Search__detail-contents--d .Search__form-label {
  width: 80px;
}

.Search__detail-contents--d .Search__form-content {
  width: calc(100% - 80px);
}

/* start_旅行日数 */
.Search__select--days {
  width: 45%;
}
/* end_旅行日数 */

/* start_旅行代金 */
.Search__select--price {
  width: 45%;
}
/* end_旅行代金 */

/* --------------------end_検索（国内）-------------------- */

/* --------------------start_検索（海外）-------------------- */

.Search__detail-contents--i .Search__form-label {
  width: 80px;
}

.Search__detail-contents--i .Search__form-content {
  width: calc(100% - 80px);
}

.Search__checkbox-label--various-places {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  line-height: 1.3;
}

/* start_早期割引チェックボックス（内外共通） */
.Search__form-group--hayawari-check {
  margin-bottom: 10px;
}

.Search__form-group--hayawari-check .Search__form-content {
  width: 100%;
  padding-left: 90px;
}

.Search__form-group--hayawari-check .Search__checkbox-label {
  height: auto;
}
/* end_早期割引チェックボックス（内外共通） */

/* --------------------end_検索（海外）-------------------- */

/* --------------------start_検索（バス）-------------------- */

.Search__form-group--bus-departure .Search__input-text:first-of-type {
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.Search__form-group--bus-departure .Search__input-text:last-of-type {
  border-radius: 0 0 4px 4px;
  background: url(../images/icn_busStop.svg) no-repeat right 10px center / 16px;
}

.Search__form-group--bus-departure .Search__input-text:last-of-type::after {
  content: none;
}

/* --------------------end_検索（バス）-------------------- */

/* --------------------start_フォーム切り替えタブ-------------------- */

.Search__tab-items {
  width: 105px;
}

.Search__tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
  margin-bottom: 3px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
}

.Search__tab-item.active {
  position: relative;
  background: white;
}

.Search__tab-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 100%;
  background-color: var(--corporate-color);
  border-radius: 6px 0 0 6px;
}

.Search__tab-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  display: block;
  width: 3px;
  height: 100%;
  background-color: white;
}

/* --------------------start_フォーム切り替えタブ-------------------- */

/* --------------------start_フォーム内タブ-------------------- */

.Search-form__tab-items {
  display: flex;
  justify-content: flex-start;
  height: 45px;
  margin-bottom: 20px;
}

.Search-form__tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: var(--corporate-color);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background: var(--active-color);
  border-radius: 3px;
}

.Search-form__tab-item:not(:last-child) {
  margin-right: 1.5%;
}

.Search-form__tab-item:not(.active) {
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.Search-form__tab-item:not(.active):hover {
  box-shadow: 0px 0px 0px 1px var(--corporate-color) inset;
}

.Search-form__tab-item.active {
  position: relative;
  color: white;
  background: var(--corporate-color);
}

.Search-form__tab-item.active::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--corporate-color) transparent transparent transparent;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/* --------------------end_フォーム内タブ-------------------- */

/* --------------------start_検索（国内ダイナミックパッケージ）-------------------- */

.Search--dpd .Search-form-wrap {
  padding-bottom: 55px;
}

/* start_カテゴリ */
.Search__form-category {
  margin-bottom: 10px;
}

.Search__form-category:first-of-type {
  margin-bottom: 20px;
}

.Search__category-ttl-wrap {
  display: flex;
  justify-content: space-between;
}

.Search__category-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.Search__category-ttl::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 5px;
  background: var(--corporate-color);
}

.Search__stay-txt {
  font-size: 1.4rem;
  font-weight: 600;
}

.Search__stay-q-icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  padding-left: 1px;
  color: var(--corporate-color);
  font-size: 1rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--corporate-color);
  background-color: var(--active-color);
  cursor: pointer;
}

.Search__stay-q-icn:hover {
  opacity: 0.7;
}

.Search__category-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}

.Search__category-inner:not(:last-child) {
  margin-bottom: 10px;
}

.Search__category-label {
  width: 20%;
}

.Search__category-label-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 15px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 24px;
  background: var(--sub-corporate-color);
}

.Search__category-label-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 10px;
  border-color: transparent transparent transparent var(--sub-corporate-color);
}

.Search__category-content {
  width: 100%;
}

.Search__category-content:not(:last-child) {
  margin-bottom: 10px;
}

.Search__category-label + .Search__category-content {
  width: 80%;
}

.Search__category-label + .Search__category-content .Search__form-content {
  width: calc((50 / 80) * 100% + 10px);
}

.Search__category-label + .Search__category-content .Search__form-label {
  width: calc((100% - ((50 / 80) * 100%)) - 10px);
  justify-content: flex-end;
}

.Search__category-label + .Search__category-content .Search__form-group {
  justify-content: flex-end;
}

/* start_宿泊 */
.Search__form-group--lodging .Search__input-text::after {
  content: none;
}

.Search__form-category--lodging .Search__form-group--date {
  margin-bottom: 10px;
}

.Search__form-group--women-only .Search__form-content {
  width: 100%;
  padding-left: 25px;
  text-indent: -25px;
}
/* end_宿泊 */

/* end_カテゴリ */

/* --------------------end_検索（国内ダイナミックパッケージ）-------------------- */

/* --------------------start_検索（海外航空券+ホテル）-------------------- */

/* start_フォーム内タブ */
.Search-form__tab-item--dp01 {
  width: 38.5%;
}

.Search-form__tab-item--dp02 {
  width: 60%;
}
/* end_フォーム内タブ */

/* start_追加条件 */
.Search__detail-contents-inner--dp {
  height: calc(100% - 45px - 20px);
  margin-top: calc(45px + 20px);
}

.Search__dp-detail-case-label {
  display: flex;
  align-items: center;
  width: 180px;
  padding-left: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  border-left: 4px solid var(--corporate-color);
}

.Search__form-label--in-dp-detail-case {
  width: 80px;
}

.Search__form-content--in-dp-detail-case {
  width: calc(100% - 180px - 80px);
}

.Search__dp-detail-flight-group-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.Search__form-group--dp-detail-flight {
  width: calc(50% - 10px);
}

.Search__form-group--dp-detail-flight:nth-last-child(2) {
  margin-bottom: 0;
}

.Search__form-group--dp-detail-date {
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.Search__form-content--in-dp-detail-case-date {
  width: calc(100% - 180px);
  padding-left: 0;
}
/* end_追加条件 */

/* --------------------end_検索（海外航空券+ホテル）-------------------- */

/* --------------------start_検索（海外航空券+ホテル / 複数ホテル）-------------------- */

/* start_部屋数・人数 */
.Search__overhang-1col-group
  .Search__form-group.Search__form-group--dp-tour-number {
  position: absolute;
  top: 363px;
  left: calc((480px - 105px - 3px - 40px) * -1);
  width: calc(480px - 105px - 3px - 40px);
  /* 480px / メインフォームの幅
  105px / タブの幅
  3px / タブとフォームの余白
  40px / メインフォームのpadding*2 */
}
/* end_部屋数・人数 */

/* start_宿泊地が異なる場合 */
.Search__overhang-1col-group
  .Search__form-group.Search__form-group--dp-tour-hotel-keyword {
  position: absolute;
  top: 415px;
  left: calc((480px - 105px - 3px - 40px) * -1);
  width: calc(480px - 105px - 3px - 40px);
  /* 480px / メインフォームの幅
  105px / タブの幅
  3px / タブとフォームの余白
  40px / メインフォームのpadding*2 */
}

.Search__form-group--dp-tour-hotel-keyword .Search__form-label {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
}

.Search__form-group--dp-tour-hotel-keyword .Search__form-content {
  width: 100%;
  padding-left: 0;
}
/* start_宿泊地が異なる場合 */

/* start_delete-btn */
.Search__delete-btn {
  position: relative;
  margin-top: 10px;
  color: var(--corporate-color);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: right;
  text-decoration: underline;
}

.Search__delete-btn .Search__icn-plus {
  display: inline-block;
  position: static;
  margin-left: 3px;
  vertical-align: -3px;
  transform: none;
}
/* end_delete-btn */

.Search__overhang-contents-inner--dp {
  margin-top: calc(45px + 20px);
}

/* --------------------end_検索（海外航空券+ホテル / 複数ホテル）-------------------- */

/* --------------------start_検索（海外航空券+ホテル / 海外航空券）-------------------- */

/* start_タブ */
.Search-form__tab-item--dp-air {
  width: calc((100% - 3%) / 3);
}
/* end_タブ */

/* start_人数 */
.Search__overhang-1col-group
  .Search__form-group.Search__form-group--dp-air-num {
  position: absolute;
  top: 361px;
  left: calc((480px - 105px - 3px - 40px) * -1);
  width: calc(480px - 105px - 3px - 40px);
  /* 480px / メインフォームの幅
  105px / タブの幅
  3px / タブとフォームの余白
  40px / メインフォームのpadding*2 */
}

.Search__form-group--dp-air-num .Search__form-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
}

.Search__dp-air-num-txtlink {
  text-decoration: underline;
  font-weight: 400;
}

.Search__form-group--dp-air-num .Search__form-content {
  width: 100%;
  padding-left: 0;
}

.Search__form-group--dp-air-num .Search__select {
  width: calc((100% - 20px) / 3);
}
/* end_人数 */

/* --------------------end_検索（海外航空券+ホテル / 海外航空券）-------------------- */

/* --------------------start_検索（海外航空券+ホテル / 海外ホテル）-------------------- */

/* start_都市 */
.Search__form-group--dp-hotel-keyword .Search__form-label {
  width: 100%;
  padding: 0 0 5px 0;
}

.Search__form-group--dp-hotel-keyword .Search__form-content {
  width: 100%;
  padding-left: 0;
}

.Search__dp-hotel-keyword-txtlink-wrap {
  display: block;
  width: 100%;
  margin-top: 5px;
  text-align: right;
}

.Search__dp-hotel-keyword-txtlink:hover {
  text-decoration: underline;
}

.Search__dp-hotel-keyword-txtlink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 1px;
}
/* end_都市 */

/* start_ホテルグレード */
.Search__form-group--dp-hotel-grade .Search__select {
  width: 45%;
}
/* end_ホテルグレード */

/* start_価格帯 */
.Search__form-group--dp-hotel-price .Search__select {
  width: 45%;
}

.Search__dp-hotel-price-note {
  margin-top: 5px;
  font-size: 1.2rem;
}
/* end_価格帯 */

/* start_施設サービス */
.Search__form-group--dp-hotel-service .Search__checkbox-label {
  width: 50%;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
}

.Search__form-group--dp-hotel-service
  .Search__checkbox-label:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}

#Search
  .Search__form-group--dp-hotel-service
  input[type="checkbox"]:checked
  + .Search__checkbox-label {
  background: transparent;
}
/* end_施設サービス */

/* --------------------end_検索（海外航空券+ホテル / 海外ホテル）-------------------- */

/* --------------------start_メインバナー-------------------- */

#MainBn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 372px);
}

.MainBn__swiper {
  --swiper-theme-color: var(--corporate-color);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.MainBn__slide img {
  transition: opacity 0.3s;
}

.MainBn__slide:hover img {
  opacity: var(--hoverOpacity);
}

.MainBn__link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.MainBn__img {
  display: block;
  border-radius: 11px;
  overflow: hidden;
  border: 5px solid white;
  background-color: white;
}

.MainBn__caption {
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: block;
  width: calc(100% - 10px);
  padding: 5px 10px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  background: rgba(0, 17, 26, 0.7);
  border-radius: 0 0 6px 6px;
}

.MainBn__swiper-control {
  display: inline-block;
  margin-top: 20px;
}

.MainBn__swiper-control-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 4px;
}

.MainBn__swiper-button-next,
.MainBn__swiper-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.MainBn__swiper-button-next::before,
.MainBn__swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  border-left: 1px dotted #c3c3c3;
}

.MainBn__swiper-button-next:hover,
.MainBn__swiper-button-prev:hover {
  background-color: var(--active-color);
}

.MainBn__swiper-button-next.swiper-button-disabled,
.MainBn__swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.MainBn__swiper-button-prev {
  transform: rotate(180deg);
}

.MainBn__swiper-pagination {
  padding: 0 10px;
}

.MainBn__swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0px 10px;
}

.Keyvisual__spot-name {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 5px;
  color: white;
  font-size: 1.2rem;
  background-color: rgba(0, 35, 51, 0.6);
}

/* --------------------end_メインバナー-------------------- */

/* --------------------start_コース番号検索-------------------- */

#SearchCourse {
  width: 1024px;
  margin: 20px auto 60px auto;
  text-align: center;
}

#SearchCourse ::placeholder {
  color: #888;
}

.SearchCourse__inner {
  display: inline-flex;
  justify-self: flex-start;
  align-items: center;
  padding: 10px 30px 10px 0;
  text-align: left;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
}

.SearchCourse__ttl {
  padding: 0 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

.SearchCourse__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;
}

.SearchCourse__form {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0 10px 30px;
  border-left: 1px dotted #888;
}

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

.SearchCourse__radio-label {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  font-size: 1.4rem;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

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

.SearchCourse__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;
}

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

.SearchCourse__input-text {
  width: 260px;
  margin-right: 10px;
  padding: 8px 10px;
  border: 1px solid #888;
  border-radius: 4px;
}

.SearchCourse__input-text-wrap {
  position: relative;
}

.SearchCourse__alert {
  position: absolute;
  bottom: -45px;
  left: 0;
  z-index: 1;
  padding: 5px 15px;
  color: #888;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 6px;
  background: white;
  border: 2px solid #c3c3c3;
  box-shadow: 0px 4px 7px -6px rgb(0 0 0 / 50%);
}

.SearchCourse__alert::before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #c3c3c3 transparent;
}

.SearchCourse__alert::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent white transparent;
}

.SearchCourse__alert-icn {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  color: white;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 16px;
  vertical-align: 1px;
  text-align: center;
  border-radius: 50%;
  background: #ffa301;
}

.SearchCourse__submit {
  padding: 0 15px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: var(--caution-color);
  border-radius: 3px;
}

.SearchCourse__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_コース番号検索-------------------- */

/* --------------------start_出発地ごとの情報を見る-------------------- */

.BotArea__items {
  padding: 40px;
  text-align: center;
  border: 2px solid var(--corporate-color);
  border-radius: 8px;
}
.BotArea__item {
  display: inline;
}
.BotArea__link {
  padding: 0 10px 0 7px;
}
.BotArea__link:hover {
  text-decoration: underline;
}
.BotArea__link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 2px;
}

/* --------------------end_出発地ごとの情報を見る-------------------- */

/* --------------------start_ツアー枠-------------------- */

.Tour {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 2.5rem 2rem -2rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.Tour:hover {
  box-shadow: 0 2.5rem 2rem -2rem rgba(0, 0, 0, 0);
}

.Tour__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.Tour__card-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 12px 10px;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 0;
  border-radius: 5px 0 6px 0;
  background-color: var(--sub-corporate-color);
}

.Tour__img {
  content-visibility: auto;
  contain-intrinsic-size: 189px;
  height: 189px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.Tour img {
  transition: opacity 0.3s;
}

.Tour:hover img {
  opacity: var(--hoverOpacity);
}

.Tour__txt {
  padding: 15px;
}

.Tour__caption {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.Tour:hover .Tour__caption {
  text-decoration: underline;
}

/* start_tag + name + price */
.Tour__tags {
  margin-bottom: 10px;
}

.Tour__tag {
  padding: 5px 10px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: var(--sub-corporate-color);
  border-radius: 2px;
}

.Tour__name {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 40px;
}

.Tour:hover .Tour__name {
  text-decoration: underline;
}

.Tour__price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--caution-color);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.Tour__price-unit {
  font-size: 1.4rem;
}
/* end_tag + name + price */

/* start_label + description */
.Tour__label {
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.3;
}

.Tour:hover .Tour__label {
  text-decoration: underline;
}

.Tour__description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.4rem;
}
/* end_label + description */

/* start_hotel */
.Hotel__txt {
  padding: 20px;
}

.Hotel__label {
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.3;
}

.Hotel__description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 60px;
  font-size: 1.4rem;
}

.Hotel__txt-link-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.Hotel__txt-link {
  display: block;
}

.Hotel__txt-link:hover {
  text-decoration: underline;
}

.Hotel__txt-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 1px;
}
/* end_hotel */

/* start_rank */
.Tour__rank {
  position: absolute;
  left: 10px;
  top: -10px;
  z-index: 5;
  color: var(--sub-corporate-color);
  font-weight: 600;
  padding: 2px 18px;
  background: #f5f5f5;
  border-radius: 10px 50px 50px 50px;
}

.Tour__rank::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 10px;
  margin-right: 3px;
  background: url(../images/icn_rank--blue.svg) no-repeat center / contain;
}

.Tour__rank--1::before,
.Tour__rank--2::before,
.Tour__rank--3::before {
  background-image: url(../images/icn_rank--white.svg);
}

.Tour__rank--1 {
  color: white;
  background: #e3ab00;
}

.Tour__rank--2 {
  color: white;
  background: #969a98;
}

.Tour__rank--3 {
  color: white;
  background: #976b2f;
}

.Tour__rank-unit {
  font-size: 1.3rem;
  font-weight: 400;
}
/* end_rank */

/* --------------------end_ツアー枠-------------------- */

/* --------------------start_ツアー枠swiper設定-------------------- */

.Tour__swiper-outer {
  position: relative;
}

.Tour__swiper {
  --swiper-theme-color: var(--corporate-color);
  margin: -10px auto 0 auto;
  padding: 10px 0 60px 0;
  position: static;
  overflow: hidden;
  list-style: none;
  z-index: 1;
}

.Tour__swiper .swiper-slide {
  height: auto;
  transition-property: transform, box-shadow;
}

/* start_swiper-arrow */
.Tour__swiper-button-next.swiper-button-disabled,
.Tour__swiper-button-prev.swiper-button-disabled {
  display: none;
}

.Tour__swiper-button-next,
.Tour__swiper-button-prev {
  position: absolute;
  top: 120px;
  z-index: 10;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  border: 2px solid var(--corporate-color);
  transition: background-color 0.3s;
  cursor: pointer;
}

.Tour__swiper-button-next:hover,
.Tour__swiper-button-prev:hover {
  background-color: var(--active-color);
}

.Tour__swiper-button-next {
  right: -25px;
}

.Tour__swiper-button-prev {
  left: -25px;
  transform: rotate(180deg);
}

.Tour__swiper-button-next:after,
.Tour__swiper-button-prev:after {
  content: none;
}

.Tour__swiper.swiper-container-horizontal > .swiper-scrollbar {
  height: 10px;
  z-index: 1;
  background: #f5f5f5;
}

.Tour__swiper .swiper-scrollbar-drag {
  background: #ccc;
}
/* end_swiper-arrow */

/* --------------------end_ツアー枠swiper設定-------------------- */

/* --------------------start_AsideLink-------------------- */

#AsideLink {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.Common21__inner--AsideLink {
  display: flex;
  justify-content: space-between;
}

.AsideLink__item {
  position: relative;
  width: 320px;
}

.AsideLink__item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: var(--corporate-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.AsideLink__item::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 18px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}

.AsideLink__link {
  display: block;
  padding: 20px;
  color: var(--corporate-color);
  font-weight: 600;
  text-align: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0px 0px 0px 1px #c3c3c3 inset,
    0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s;
}

.AsideLink__link:hover {
  box-shadow: 0px 0px 0px 2px var(--corporate-color) inset,
    0 2.5rem 2rem -2rem rgb(0 0 0 / 0);
}

.AsideLink__link::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.AsideLink__link--seminar::before {
  background-image: url(../images/icn_AsideLink--seminar.svg);
}

.AsideLink__link--advertising::before {
  background-image: url(../images/icn_AsideLink--advertising.svg);
}

.AsideLink__link--confirm::before {
  background-image: url(../images/icn_AsideLink--confirm.svg);
}

/* --------------------end_AsideLink-------------------- */

/* --------------------start_人気のキーワード-------------------- */

#Keyword {
  margin-bottom: 60px;
}

.Keyword__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 40px 30px 30px 40px;
  border: 4px solid #e5e5e5;
  border-radius: 10px;
}

.Keyword__link {
  display: block;
  margin: 0 10px 10px 0;
  padding: 10px 15px;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  transition: border-color 0.3s, background-color 0.3s;
}

.Keyword__link::before {
  content: "#";
  margin-right: 5px;
  color: var(--corporate-color);
}

.Keyword__link:hover {
  border-color: var(--corporate-color);
  background-color: #f2fafe;
}

/* --------------------end_人気のキーワード-------------------- */

/* --------------------start_新着情報-------------------- */

#WhatsNew {
  margin-bottom: 60px;
  padding: 60px 0;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.WhatsNew__items {
  padding: 20px 40px 40px 40px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.WhatsNew__item {
  padding: 20px 0;
  border-bottom: 1px dotted #888;
}

.WhatsNew__link {
  display: block;
  padding-left: 13px;
  color: var(--textLink-color);
  text-indent: -13px;
}

.WhatsNew__link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 1px;
}

.WhatsNew__link:hover {
  text-decoration: underline;
}

/* --------------------end_新着情報-------------------- */

/* --------------------start_旅の情報-------------------- */

#TravelInfo {
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 1px solid #e5e5e5;
}

/* start_Guide */
.Guide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.Guide__ttl {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.Guide__article {
  display: flex;
  justify-content: space-between;
  width: calc((100% - 30px) / 2);
  position: relative;
  padding: 20px;
  box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}

.Guide__article:hover {
  box-shadow: 0px 0px 0px 2px var(--corporate-color) inset;
}

.Guide__article-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.Guide__img {
  width: 150px;
  border-radius: 4px;
  overflow: hidden;
}

.Guide__img img {
  width: auto;
  height: 150px;
  transition: opacity 0.3s;
}

.Guide__article:hover img {
  opacity: var(--hoverOpacity);
}

.Guide__txt {
  width: calc(100% - 150px - 20px);
}

.Guide__article-ttl {
  color: var(--corporate-color);
  font-weight: 600;
}

.Guide__link {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
/* end_Guide */

/* start_Blog */
.Blog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Blog__ttl {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.Blog__ttl-note {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}

.Blog__article {
  position: relative;
  width: calc((100% - 90px) / 4);
  padding: 20px;
  box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}

.Blog__article:hover {
  box-shadow: 0px 0px 0px 2px var(--corporate-color) inset;
}

.Blog__article-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.Blog__article-img {
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.Blog__article-img img {
  width: auto;
  height: 147px;
  transition: opacity 0.3s;
}

.Blog__article:hover img {
  opacity: var(--hoverOpacity);
}

.Blog__article-date {
  color: #c3c3c3;
  font-size: 1.4rem;
}

.Blog__link {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
/* end_Blog */

/* --------------------end_旅の情報-------------------- */

/* --------------------start_ブランド-------------------- */

#Brand {
  margin-bottom: 60px;
}

.Brand__items {
  display: flex;
  justify-content: space-between;
}

.Brand__item {
  position: relative;
  width: calc((100% - 80px) / 5);
  padding: 15px;
  box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}

.Brand__item:hover {
  box-shadow: 0px 0px 0px 2px var(--corporate-color) inset;
}

.Brand__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.Brand__logo {
  display: block;
  width: 100px;
  height: 80px;
  margin: 0 auto 10px auto;
}

.Brand__txt {
  font-size: 14px;
}

.Brand__name {
  display: block;
  margin-bottom: 5px;
  color: var(--corporate-color);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* --------------------end_ブランド-------------------- */

/* --------------------start_Info-------------------- */

#Info {
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 1px solid #e5e5e5;
}

.Common21__inner--info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* .Common21__inner--info::after {
  content: "";
  display: block;
  width: 320px;
} */

.Info__notice {
  width: 100%;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.Info__notice-ttl {
  position: relative;
  padding-left: 9px;
  font-weight: 600;
}

.Info__notice-ttl::before,
.Info__notice-ttl::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
}

.Info__notice-ttl::before {
  transform: translateY(-100%);
  background: var(--corporate-color);
}

.Info__notice-ttl::after {
  background: var(--sub-corporate-color);
}

.Info__notice-item {
  padding: 10px 0;
}

.Info__notice-item:not(:last-child) {
  border-bottom: 1px dotted #888;
}

.Info__notice-link {
  color: var(--textLink-color);
}

.Info__notice-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 2px;
}

.Info__notice-link:hover {
  text-decoration: underline;
}

.Info__group {
  position: relative;
  width: 320px;
  margin-top: 30px;
  padding: 20px;
  box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}

.Info__group:not(.Info__group--txtlink):hover {
  box-shadow: 0px 0px 0px 2px var(--corporate-color) inset;
}

.Info__group-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Info__group:not(.Info__group--txtlink)::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--corporate-color);
  border-radius: 50%;
}

.Info__group:not(.Info__group--txtlink)::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: 17px;
  right: 18px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

.Info__group-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  color: var(--corporate-color);
  font-weight: 600;
  line-height: 1.3;
}

.Info__group-label::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  background-color: #dbecfa;
  border-radius: 50%;
}

.Info__group-label--inquiry::before {
  background-image: url(../images/icn_Info--inquiry.svg);
}

.Info__group-label--member::before {
  background-image: url(../images/icn_Info--member.svg);
}

.Info__group-label--ebook::before {
  background-image: url(../images/icn_Info--ebook.svg);
}

.Info__group-label--news::before {
  background-image: url(../images/icn_Info--news.svg);
}

.Info__group-label--sns::before {
  background-image: url(../images/icn_Info--sns.svg);
}

.Info__group-label--service::before {
  background-image: url(../images/icn_Info--service.svg);
}

.Info__group-description {
  font-size: 1.4rem;
}

.Info__txtlink-wrap {
  margin-top: 10px;
}

.Info__txtlink {
  display: inline-block;
  color: var(--textLink-color);
}

.Info__txtlink:hover {
  text-decoration: underline;
}

.Info__txtlink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 2px;
}

/* --------------------end_Info-------------------- */

/* --------------------start_関連リンク-------------------- */

#RelatedLinks {
  border-top: 1px solid #e5e5e5;
}

.Common21__section-ttl-lev2--RelatedLinks {
  border-top: none;
}

.RelatedLinks__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1024px;
}

.RelatedLinks__item {
  position: relative;
  width: 152px;
  margin-bottom: 20px;
}

.RelatedLinks__item:not(:nth-child(6n)) {
  margin-right: 20px;
}

.RelatedLinks__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.RelatedLinks__bn {
  width: 154px;
  margin-bottom: 5px;
}

.RelatedLinks__caption {
  font-size: 1.2rem;
  line-height: 1.3;
}

.RelatedLinks__item:hover .RelatedLinks__caption {
  text-decoration: underline;
}

/* --------------------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--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 0 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 {
  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_モーダル（カレンダー）-------------------- */

/* --------------------start_モーダル（ブランド）-------------------- */
.CommonModal--brand .Search__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* --------------------start_モーダル（ブランド）-------------------- */

/* --------------------start_モーダル（催行状況）-------------------- */
.CommonModal--do .Search__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* --------------------end_モーダル（催行状況）-------------------- */

/* --------------------start_モーダル（バス乗車地）-------------------- */

.CommonModal--bus-stop .CommonModal__contents-inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
}

.CommonModal--bus-stop-label {
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

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

.CommonModal--bus-stop .Search__checkbox-label {
  border-left: none;
}

.CommonModal--bus-stop .Search__checkbox-label:nth-of-type(3n) {
  border-right: none;
}

/* --------------------end_モーダル（バス乗車地）-------------------- */

/* --------------------start_モーダル（テーマ）-------------------- */

.CommonModal--bus-theme-ac-btn {
  display: block;
  width: 100%;
  margin-top: -1px;
  padding: 10px 15px;
  font-size: 1.4rem;
  font-weight: 600;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

.CommonModal--bus-theme-ac-contents {
  display: flex;
  flex-wrap: wrap;
}

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

.CommonModal--bus-theme .Search__checkbox-label:nth-of-type(3n) {
  border-right: none;
}

.CommonModal--bus-theme .Search__icn-plus {
  display: none;
}

/* --------------------end_モーダル（テーマ）-------------------- */

/* --------------------start_モーダル（客船）-------------------- */
.CommonModal--cruise-destination .Search__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* --------------------start_モーダル（客船）-------------------- */

/* --------------------start_モーダル（客船）-------------------- */
.CommonModal--cruise .Search__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* --------------------start_モーダル（客船）-------------------- */

/* --------------------start_モーダル（船ランク）-------------------- */
.CommonModal--i-ship-rank .Search__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* --------------------start_モーダル（船ランク）-------------------- */

/* --------------------start_モーダル（船会社・客船）-------------------- */

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

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

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

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

.CommonModal--ship-company-ac-contents-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-bottom: none;
}

.CommonModal--ship-company-label {
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

.CommonModal--i-ship-company .Search__checkbox-label {
  width: 50%;
  margin: -1px 0 0 0;
  padding-right: 70px;
  border-radius: 0;
  border-bottom: none;
  border-left: none;
}

.CommonModal--i-ship-company .Search__checkbox-label:nth-of-type(even) {
  border-right: none;
}

/* --------------------start_モーダル（船会社・客船）-------------------- */

/* --------------------start_モーダル（部屋数・人数を選択）-------------------- */

/* start_部屋数 */
.CommonModal__dp-room-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal__dp-room-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.CommonModal__dp-room-ttl {
  width: 20%;
  font-weight: 600;
}

.CommonModal__dp-room-contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
}
/* end_部屋数 */

/* start_人数 */
.CommonModal__dp-number-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.CommonModal__dp-number-items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.CommonModal__dp-number-ttl {
  width: 20%;
  font-weight: 600;
}

.CommonModal__dp-number-contents-wrap {
  display: flex;
  justify-content: flex-end;
  width: 80%;
}

.CommonModal__dp-number-contents:not(:last-child) {
  padding-right: 20px;
}

.CommonModal__dp-number-inner-contents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.CommonModal__dp-number-label {
  font-size: 1.4rem;
  font-weight: 600;
}

.CommonModal__dp-number-label .sp-break {
  font-size: 1.2rem;
}
/* end_人数 */

/* start_年齢 */
.CommonModal__dp-age-wrap {
  margin-left: 20%;
}

.CommonModal__dp-age-contents {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 6px;
}

.CommonModal__dp-age-contents:not(:last-child) {
  margin-bottom: 10px;
}

.CommonModal__dp-age-contents:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  right: 94px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #f5f5f5 transparent;
}

.CommonModal__dp-age-label {
  margin-right: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.CommonModal__dp-age-select-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 110px;
}

.CommonModal__dp-age-select-wrap .Search__select {
  background: white;
}

.CommonModal__dp-age-radio-wrap {
  margin-left: auto;
}

.CommonModal__dp-age-radio-wrap--disabled {
  opacity: 0.3;
}

.CommonModal__dp-age-radio-wrap--disabled .Search__radio-label {
  cursor: default;
}

.CommonModal__dp-age-radio-wrap .Search__radio-label {
  background: white;
}

.CommonModal__dp-age-radio-wrap .Search__radio-label {
  margin-bottom: 0;
}
/* end_年齢 */

/* start_注釈 */
.CommonModal__dp-number-note {
  margin-top: 20px;
  font-size: 1.4rem;
}

.CommonModal__dp-number-note-label {
  font-weight: 600;
}

.CommonModal__dp-number-note-txt {
  padding-left: 14px;
  text-indent: -14px;
}

.CommonModal__dp-number-txtlink {
  display: inline-block;
  margin-top: 10px;
}

.CommonModal__dp-number-txtlink:hover {
  text-decoration: underline;
}

.CommonModal__dp-number-txtlink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 1px;
}
/* end_注釈 */

/* start_input */
.CommonModal__dp-number-input-wrap {
  display: flex;
  justify-content: flex-start;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  overflow: hidden;
}

.CommonModal__dp-number-input-control {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.CommonModal__dp-number-input::-webkit-inner-spin-button,
.CommonModal__dp-number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.CommonModal__dp-number-input {
  width: 40px;
  height: 40px;
  text-align: center;
  border-left: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
}

.CommonModal__dp-number-input-unit {
  width: 30px;
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}
/* end_input */

/* start_dp-hotel */
#Search__dp-hotel-number .CommonModal__dp-age-wrap {
  margin-left: calc(100% - 200px);
}

#Search__dp-hotel-number .CommonModal__dp-age-contents {
  width: 200px;
}

#Search__dp-hotel-number .CommonModal__dp-age-label {
  width: calc(100% - 120px);
}
/* end_dp-hotel */

/* start_dpd */
.CommonModal__dpd-number .CommonModal__dp-number-contents:not(:last-child) {
  padding-right: 5px;
}

.CommonModal__dpd-number .CommonModal__dp-age-wrap {
  width: 150px;
  margin: 15px 0 0 0;
}

.CommonModal__dpd-number .CommonModal__dp-age-contents {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.CommonModal__dpd-number .CommonModal__dp-age-contents:first-child::before {
  right: calc(50% - 8px);
}

.CommonModal__dpd-number .CommonModal__dp-age-label {
  margin-bottom: 0.5rem;
}
/* end_dpd */

/* start_dpd-bus */
#Search__dpd-bus-number {
  width: 900px;
}
/* end_dpd-bus */

/* --------------------end_モーダル（部屋数・人数を選択）-------------------- */

/* --------------------start_モーダル（年齢について）-------------------- */

.Search__dp-air-about-age-note-wrap {
  margin-top: 15px;
}

.Search__dp-air-about-age-note {
  padding-left: 1em;
  text-indent: -1em;
}

/* --------------------end_モーダル（年齢について）-------------------- */

/* --------------------start_モーダル（人気都市から選ぶ）-------------------- */

#Search__dp-hotel-city {
  width: 800px;
}

#Search__dp-hotel-city .CommonModal__contents-inner {
  padding: 0;
}

.Search__dp-hotel-city-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.Search__dp-hotel-city-items:last-child {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.Search__dp-hotel-city-items:not(:last-child) {
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
}

.Search__dp-hotel-city-item {
  width: calc(100% / 4);
  border-bottom: 1px solid #e5e5e5;
}

.Search__dp-hotel-city-item:first-child {
  font-weight: 600;
  width: 100%;
}

.Search__dp-hotel-city-item:not(:nth-child(4n + 1)) {
  border-right: 1px solid #e5e5e5;
}

.Search__dp-hotel-city-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 35px 10px 15px;
}

.Search__dp-hotel-city-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: translateY(-50%) rotate(45deg);
}

.Search__dp-hotel-city-link:hover {
  color: var(--corporate-color);
  background-color: var(--active-color);
}

.Search__dp-hotel-city-item:not(:first-child) .Search__dp-hotel-city-link {
  padding-left: 30px;
}

.Search__dp-hotel-city-item:not(:first-child)
  .Search__dp-hotel-city-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transform: translateY(-75%);
}

/* --------------------end_モーダル（人気都市から選ぶ）-------------------- */
