/*! 海外トップpc用 */


/* --------------------start_キービジュアル-------------------- */
.Common21__inner--keyvisual {
  position: relative;
}

.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_キービジュアル-------------------- */

#Result {
  margin-bottom: 60px;
  padding: 60px 0;
  background-color: #fafafa;
}

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

/* --------------------start_ソート-------------------- */

.Result__heading {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.Result__sort-wrap {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
}

/* start_条件 */
.Result__sort-condition {
  position: relative;
  border: 1px solid #888;
  border-radius: 4px;
  background: white;
}

.Result__sort-condition::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);
}

.Result__sort-condition-select {
  width: 100%;
  height: 100%;
  padding: 10px 30px 10px 10px;
}

/* end_条件 */

/* start_表示件数 */
.Result__sort-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10px;
  border: 1px solid #888;
  border-radius: 4px;
  background: white;
}

.Result__sort-display::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);
}

label[for="Result__sort-display"] {
  color: #666;
  padding-left: 10px;
}

.Result__sort-display-select {
  position: relative;
  padding: 10px 30px 10px 0;
}

/* end_表示件数 */

/* --------------------end_件数 / ソート-------------------- */

/* --------------------start_ツアー枠-------------------- */
.tourOneBlockDefault:not(:last-child), .tourOneBlockHover:not(:last-child), .tourOneBlockSelect:not(:last-child), .tourOneBlockSelectHover:not(:last-child) {
  margin-bottom: 40px;
}

.Result__tour-wrap {
  margin-bottom: 20px;
}

.Result__tour {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  background-color: white;
  box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 5%);
}

.Result__tour:not(:last-child) {
  margin-bottom: 40px;
}

.Result__tour-heading {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.Result__tour-ttl {
  font-weight: 600;
}

.Result__tour-ttl:hover {
  text-decoration: underline;
}

.Result__tour-caption {
  font-size: 1.5rem;
}

.Result__tour-info {
  margin-bottom: 10px;
  color: #666;
  font-size: 1.3rem;
  font-weight: 600;
}

.Result__tour-info-label {
  display: inline-block;
}

.Result__tour-info-label:not(:first-child) {
  margin-left: 10px;
}

.Result__tour-info-content {
  display: inline-block;
}

.Result__tour-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.Result__tour-tag {
  padding: 5px 10px;
  color: var(--sub-corporate-color);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #99cae1;
}

.Result__tour-tag:not(:first-child) {
  margin-left: 5px;
}

.Result__tour-photo-group {
  width: 481px;
}

.Result__tour-photo-wrap {
  display: flex;
  justify-content: space-between;
}

.Result__tour-photo {
  width: 240px;
}

.Result__tour-price-group {
  width: 452px;
}

.Result__tour-price-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.Result__tour-price-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  font-weight: 600;
}

.Result__tour-price-ttl {
  margin-right: 5px;
  font-size: 1.3rem;
}

.Result__tour-price {
  color: var(--caution-color);
  font-size: 2.1rem;
}

.Result__tour-price-unit {
  font-size: 1.8rem;
}

/* start_お気に入りアイコン */
.icn_tour-favorite-wrap {
  display: block;
  width: 35px;
  height: 35px;
  border: 1px solid #c3c3c3;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}

.icn_tour-favorite {
  border-radius: 50%;
}

.icn_tour-favorite-wrap .cls-1,
.icn_tour-favorite-wrap .cls-3 {
  fill: white;
}

.icn_tour-favorite-wrap .cls-2 {
  fill: #c3c3c3;
}

/* start_active */
.icn_tour-favorite-wrap.active {
  border: none;
}

.icn_tour-favorite-wrap.active .cls-1,
.icn_tour-favorite-wrap.active .cls-3 {
  fill: #ff6978;
}

.icn_tour-favorite-wrap.active .cls-2 {
  fill: white;
}

.icn_tour-favorite-wrap.active .icn_tour-favorite {
  animation: icn_tour-favorite linear .6s forwards;
}

@keyframes icn_tour-favorite {
  0% {
    transform: scale(0);
  }

  30% {
    transform: scale(1.3);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* end_active */

/* end_お気に入りアイコン */

.Result__tour-period {
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 1.3rem;
  line-height: 1;
  background-color: #f5f5f5;
}

.Result__tour-period-label {
  display: inline-block;
  margin-right: 10px;
  color: #666;
  font-weight: 600;
}

.Result__tour-period-content {
  display: inline-block;
}

.Result__tour-table {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.Result__tour-table th,
.Result__tour-table td {
  padding: 5px 10px;
  border: 1px solid #c9c9c9;
}

.Result__tour-table th {
  width: 110px;
  color: #666;
  font-weight: 600;
}

.Result__tour-table td {
  width: calc(100% - 110px);
}

.Result__tour-table-txtlink {
  text-decoration: underline;
}

.Result__tour-table-txtlink:hover {
  color: var(--corporate-color);
}

.Result__tour-reserve-wrap {
  text-align: right;
}

.Result__tour-reserve {
  display: inline-block;
  padding: 15px 70px;
  color: white;
  font-weight: 600;
  background-color: var(--caution-color);
  border-radius: 3px;
  transition: opacity .3s;
}

.Result__tour-reserve:hover {
  opacity: .7;
}

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

/* --------------------start_pager-------------------- */

.Result__pager-items {
  /* display: flex;
  justify-content: space-between;
  width: 270px;
  margin: 0 auto; */
  text-align: center;
}

.Result__pager-items li {
  display: inline-block;
  margin: 0 6px;
}

.Result__pager-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: var(--sub-corporate-color);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 3px;
  background-color: white;
  transition: box-shadow .3s;
}

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

.Result__pager-item--prev,
.Result__pager-item--next {
  position: relative;
  background-color: transparent;
}

.Result__pager-item--prev::before,
.Result__pager-item--next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--sub-corporate-color);
  border-right: 2px solid var(--sub-corporate-color);
}

.Result__pager-item--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.Result__pager-item--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.Result__pager-item.active {
  cursor: default;
  pointer-events: none;
  color: white;
  background-color: var(--sub-corporate-color);
}

/* --------------------end_pager-------------------- */

/* --------------------start_地図から探す-------------------- */
#Map {
  position: relative;
  height: 560px;
  margin-bottom: 60px;
  background-color: #f5f5f5;
  background-image: url(../images/map_i--pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.Map__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1024px;
  height: 100%;
  padding: 60px 0;
  transform: translateX(-50%);
}

.Map__item {
  position: absolute;
}

.Map__item::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  background: var(--corporate-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

/*start_ボタンposition*/
.Map__item--europe {
  top: 179px;
  left: 105px;
}

.Map__item--asia {
  top: 204px;
  left: 351px;
}

.Map__item--japan {
  top: 250px;
  left: 520px;
}

.Map__item--hawaii {
  top: 320px;
  right: 330px;
}

.Map__item--oceania {
  bottom: 120px;
  left: 437px;
}

.Map__item--antarctica-arctic {
  bottom: 60px;
  left: 321px;
}

.Map__item--northAmerica {
  top: 190px;
  right: 148px;
}

.Map__item--caribbean {
  top: 304px;
  left: 790px;
}

.Map__item--latinAmerica {
  top: 401px;
  right: 78px;
}

.Map__item--cruise {
  top: 385px;
  left: 0;
}

.Map__item--world {
  bottom: 60px;
  left: 0;
}

/*end_ボタンposition*/

.Map__link {
  display: inline-block;
  position: relative;
  padding: 10px 50px 10px 30px;
  background: white;
  border-radius: 3px;
  border: 1px solid white;
  box-shadow: 0px 10px 7px -5px rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s, background-color 0.3s, border-color 0.3s;
}

.Map__link:hover {
  border-color: var(--corporate-color);
  background-color: var(--active-color);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0);
}

.Map__link--link::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}

.Map__link--modal::before,
.Map__link--modal::after {
  content: "";
  display: block;
  width: 6px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 2;
  background-color: white;
  transform: translateY(-50%);
}

.Map__link--modal::after {
  transform: translateY(-50%) rotate(90deg);
}

/* start_モーダル */
.MapModal {
  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;
}

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

.MapModal__inner {
  position: relative;
}

.MapModal__header {
  display: flex;
  font-weight: 600;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 20px;
  color: #888;
}

.MapModal__close-icn {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  cursor: pointer;
  background: #888;
  border-radius: 0 5px 0 0;
  transition: opacity .3s;
}

.MapModal__close-icn:hover {
  opacity: .7;
}

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

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

.MapModal__close-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.MapModal__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 6px 6px 0 0;
}

.MapModal__item {
  width: calc(100% / 2);
  border-bottom: 1px solid #e5e5e5;
}

.MapModal__item:first-child {
  width: 100%;
}

.MapModal__item:not(:nth-child(2n + 1)) {
  border-right: 1px solid #e5e5e5;
}

.MapModal__link {
  position: relative;
  display: block;
  height: 100%;
  padding: 12px 20px 12px 40px;
  font-weight: 600;
  line-height: 1.3;
  text-indent: -20px;
}

.MapModal__link--parent {
  border-radius: 6px 6px 0 0;
  pointer-events: none;
}

.MapModal__link.MapModal__link--parent::after {
  content: none;
}

.MapModal__link:not(.MapModal__link--parent)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px dotted #888;
  border-bottom: 1px dotted #888;
  vertical-align: 4px;
  margin-right: 10px;
}

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

.MapModal__link:hover {
  color: var(--corporate-color);
  background-color: var(--active-color);
}

.MapModal__close-wrap {
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
  transform: translateY(-1px);
}

.MapModal__close-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #f5f5f5;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.MapModal__close-btn-icn {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.MapModal__close-btn-icn::before,
.MapModal__close-btn-icn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #333;
}

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

.MapModal__close-btn-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.MapModal__close-btn:hover {
  opacity: 0.7;
}

.MapModal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00111a;
  z-index: 20;
  opacity: 0.7;
  cursor: pointer;
}

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

/* end_モーダル */
/* --------------------end_地図から探す-------------------- */

/* --------------------start_クルーズツアー新着情報-------------------- */

#WhatsNew {
  padding: 0;
  background-color: transparent;
  border-top: none;
  border-bottom: none;
}

.More-btn {
  display: inline-block;
  position: relative;
  width: 173px;
  height: 46px;
  color: var(--textLink-color);
  border-radius: 50px;
  transition: color 0.3s, box-shadow 0.3s, background-color 0.3s;
  border: 1px solid #e5e5e5;
  padding: 10px 20px 0 0;
}

.More-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 47%;
  right: 19px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: translateY(-50%) rotate(135deg);
  transition: border-color 0.3s;
}

.WhatsNew__release-date {
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 25px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
}

/* --------------------end_クルーズツアー新着情報-------------------- */

/* --------------------start_魅力-------------------- */

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

.Charm__items {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.Charm__item {
  position: relative;
  width: 243px;
  padding: 195px 15px 15px 15px;
  background: white;
  border-radius: 6px;
}

.Charm__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.Charm__ttl {
  margin-bottom: 5px;
  color: var(--sub-corporate-color);
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.8em;
}

.Charm__ttl-icn {
  position: absolute;
  top: -15px;
  left: 15px;
  z-index: 1;
  padding: 3px 15px;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 100px;
  background: var(--sub-corporate-color);
}

.Charm__ttl-icn-num {
  font-size: 18px;
}

.Charm__txt {
  font-size: 1.4rem;
}

.Charm__link {
  display: block;
  margin-top: 10px;
  padding-left: 12px;
  font-size: 1.4rem;
  line-height: 1.3;
  text-indent: -12px;
}

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

.Charm__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_魅力-------------------- */

/* --------------------start_ツアー部分-------------------- */
.Section__txt {
  margin-bottom: 35px;
}

.ta-c {
  text-align: center;
}

.Tour__name {
  /*margin-bottom: 10px;*/
	    margin-bottom: 50px;
}

.Tour__stays {
  display: flex;
  font-size: 12px;
  /*margin-bottom: 10px;
	    margin-bottom: 40px;*/
}

.Tour__stays .departure-date {
  color: var(--sub-corporate-color);
  font-weight: 600;
}

.Tour__stays span {
  white-space: nowrap;
}

.Tour__price {
  /*position: static;*/
}

/* --------------------end_ツアー部分-------------------- */


/* --------------------start_船からクルーズ旅行を探す-------------------- */

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

.Cruise__ship-item {
  width: 320px;
}

.Ship__img img {
  border-radius: 6px;
}

.Cruise__ship-txt {
  margin-top: 15px;
  height: 140px;
}

.Cruise__ship-ttl {
  padding-left: 12px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

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

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

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

.Cruise__ship-description {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.Cruise__ship-datas {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 6px;
}

.Cruise__ship-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.Cruise__ship-data:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ship-data-ttl {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub-corporate-color);
  width: 24%;
}

.ship-data-txt {
  font-size: 14px;
  width: 76%;
}

.Cruise__class-about {
  display: none;
}

.Cruise__class {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.Cruise__class-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.Cruise__class-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.Cruise__class-ttl {
  width: 23%;
}

.Cruise__class-ttl span {
  padding-left: 12px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

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

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

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

.Cruise__class-links {
  width: 77%;
}

.Cruise__class-item {
  display: inline-block;
  margin: 0 10px 5px 5px;
}

.Cruise__class-item a {
  font-size: 16px;
}

.Cruise__class-item a:hover {
  text-decoration: underline;
}

.Cruise__class-item a::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;
}

/* --------------------start_船からクルーズ旅行を探す-------------------- */


/* --------------------start_QA-------------------- */
#QA .Common21__section-ttl-lev2 {
  border: none;
}

#QA {
  margin-bottom: 60px;
}

.QA__group {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.QA__group:not(:last-child) {
  margin-bottom: 20px;
}

.QA__q {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  color: var(--sub-corporate-color);
  font-weight: 600;
  font-size: 1.8rem;
  cursor: pointer;
}

.QA__q::before {
  content: "Q";
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: white;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0;
  border-radius: 50%;
  background: var(--sub-corporate-color);
}

.QA__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: -1;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--corporate-color);
  transform: translateY(-50%);
}

.QA__q-inner {
  position: relative;
  width: calc(100% - 50px);
}

.QA__q-inner::before,
.QA__q-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  display: block;
  width: 8px;
  height: 2px;
  background-color: white;
  transform: translateY(-50%);
}

.QA__q-inner::before {
  transform: translateY(-50%) rotate(90deg);
}

.open .QA__q-inner::before {
  transform: translateY(-50%) rotate(0);
}

.QA__a {
  display: none;
  border-top: 1px solid #e5e5e5;
}

.QA__a-inner {
  display: block;
  position: relative;
  padding: 20px 20px 20px 70px;
}

.QA__a-inner::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: var(--sub-corporate-color);
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0;
  border-radius: 50%;
  border: 1px solid var(--sub-corporate-color);
}

.QA__link {
  text-align: center;
}

/*カード*/
.QA__a-group {
  display: flex;
  justify-content: space-between;
}

.QA__img-card {
  width: 29%;
  margin-top: -12px;
}

.QA__img-card figure {
  display: flex;
  justify-content: space-between;
}

.QA__img-card figure img {
  width: 165px;
  height: 123px;
}

.QA__img-card figcaption {
  font-size: 1.2rem;
  text-indent: -1em;
  padding: 4em 0 0 1em;
}

.QA__a-cabin-items {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cabin-item {
  width: 205px;
}

.cabin-item figcaption {
  font-size: 14px;
  margin-bottom: 5px;
}

.cabin-txt {
  font-size: 14px;
  margin-top: 5px;
}

.QA__a-flow li {
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}

/* --------------------end_QA-------------------- */


/* --------------------start_クルーズクラスモーダル-------------------- */

.CruiseClass-Modal {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 100;
  width: 590px;
  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;
}

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

.CruiseClass-Modal__inner {
  position: relative;
}

.CruiseClass-Modal__header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

.CruiseClass-Modal__header::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;
}

.Modal__header-sub {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
}

.Cruise__info-link {
  text-align: right;
  margin-top: 10px;
}

.Cruise__info-link a::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;
}

.CruiseClass-Modal__close-icn {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  cursor: pointer;
  background: #888;
  border-radius: 0 5px 0 0;
  transition: opacity .3s;
}

.CruiseClass-Modal__contents {
  padding: 30px 50px;
}

.CruiseClass-Modal__close-icn:hover {
  opacity: .7;
}

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

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

.CruiseClass-Modal__close-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.CruiseClass-Modal__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 6px 6px 0 0;
}

.CruiseClass-Modal__item {
  width: calc(100% / 2);
  border-bottom: 1px solid #e5e5e5;
}

.CruiseClass-Modal__item:not(:nth-child(2n)) {
  border-right: 1px solid #e5e5e5;
}

.CruiseClass-Modal__link {
  position: relative;
  display: block;
  height: 100%;
  padding: 12px 20px 12px 40px;
  font-weight: 600;
  line-height: 1.3;
  text-indent: -20px;
}

.CruiseClass-Modal__link--parent {
  border-radius: 6px 6px 0 0;
  border-top: 1px solid #e5e5e5;
}

.CruiseClass-Modal__link:not(.CruiseClass-Modal__link--parent)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px dotted #888;
  border-bottom: 1px dotted #888;
  vertical-align: 4px;
  margin-right: 10px;
}

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

.CruiseClass-Modal__link--parent {
  pointer-events: none;
}

.CruiseClass-Modal__link--parent::after {
  border: none;
}

.CruiseClass-Modal__link:hover {
  color: var(--corporate-color);
  background-color: var(--active-color);
}

.CruiseClass-Modal__link--parent:hover {
  color: initial;
  background-color: initial;
}

.CruiseClass-Modal__close-wrap {
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
  transform: translateY(-1px);
}

.CruiseClass-Modal__close-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #f5f5f5;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.CruiseClass-Modal__close-btn-icn {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.CruiseClass-Modal__close-btn-icn::before,
.CruiseClass-Modal__close-btn-icn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #333;
}

.CruiseClass-Modal__close-btn-icn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.CruiseClass-Modal__close-btn-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.CruiseClass-Modal__close-btn:hover {
  opacity: 0.7;
}

.CruiseClass-Modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00111a;
  z-index: 20;
  opacity: 0.7;
  cursor: pointer;
}

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

/* --------------------end_クルーズクラスモーダル-------------------- */






/* --------------------start_詳細条件-------------------- */

/*#Condition {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  padding-bottom: 80px;
  background: white;
  transition: opacity .6s;
}*/

.condition-open #Condition {
  opacity: 1;
  pointer-events: auto;
}

.condition-open .HideGroup {
  display: none;
}

/* start_共通 */

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

/* start_ラジオボタン（枠あり） */

#Condition input[type="radio"] {
  display: none;
}

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

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

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

#Condition input[type="radio"]:checked+.Condition__radio-label .Condition__radio-btn {
  border: 6px solid var(--corporate-color);
}

/* end_ラジオボタン（枠あり） */

/* start_ラジオボタン（枠なし） */

.Condition__radio-label--simple {
  margin-bottom: 0;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
}

#Condition input[type="radio"]:checked+.Condition__radio-label--simple {
  background: transparent;
}

/* end_ラジオボタン（枠なし） */

/* start_チェックボックス（枠あり） */

#Condition input[type="checkbox"] {
  display: none;
}

.Condition__checkbox-label {
  display: inline-block;
  height: 45px;
  margin-bottom: 10px;
  padding: 10px 15px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

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

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

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

#Condition input[type="checkbox"]:checked+.Condition__checkbox-label .Condition__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_チェックボックス（枠なし） */

.Condition__checkbox-label--simple {
  height: auto;
  margin: 5px 0 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

#Condition input[type="checkbox"]:checked+.Condition__checkbox-label--simple {
  background: transparent;
}

/* end_チェックボックス（枠なし） */

/* start_セレクトボックス */

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

.Condition__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);
}

#Condition select {
  width: 100%;
  height: 40px;
  padding: 8px 30px 8px 10px;
}

/* end_セレクトボックス */

/* start_input-text */

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

#Condition input[type="text"]::placeholder {
  color: #999;
}
#p_free_word_text::placeholder {
  color: #999 !important;
}

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

.Condition__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 */

/* end_共通 */

/* start_Condition__header */

.Condition__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.Condition__ttl {
  font-size: 1.8rem;
  font-weight: 600;
}

.Condition__ttl::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: -3px;
  background: url(../../sharing/common21/images/icn_condition--black.svg) no-repeat center / contain;
}

.Condition__btn-close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 75px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  background-color: #888;
  border-radius: 3px;
  transition: opacity .3s;
}

.Condition__btn-close:hover {
  opacity: .7;
}

/* end_Condition__header */

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

.Condition__table {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.Condition__group {
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid #e5e5e5;
  width: 100%;
}

.Condition__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 235px;
  padding-left: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  background: #f5f5f5;
  border-right: 1px solid #e5e5e5;
}

.Condition__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 235px);
  padding: 15px;
  font-size: 1.5rem;
}

/* start_中身が2列 */

.Condition__group--2col .Condition__content {
  padding: 0;
}

.Condition__group--2col .Condition__inner-group {
  width: 50%;
  padding: 15px;
}

.Condition__group--2col .Condition__inner-group:not(:nth-child(even)) {
  border-right: 1px solid #e5e5e5;
}

.Condition__group--2col .Condition__inner-group:nth-child(n + 3) {
  border-top: 1px solid #e5e5e5;
}

/* start_中身が2列 */

/* start_中身が3列 */

.Condition__group--3col .Condition__content {
  padding: 0;
}

.Condition__group--3col .Condition__inner-group {
  width: calc(100% / 3);
  padding: 15px;
}

.Condition__group--3col .Condition__inner-group:not(:nth-child(3n)) {
  border-right: 1px solid #e5e5e5;
}

.Condition__group--3col .Condition__inner-group:nth-child(n + 4) {
  border-top: 1px solid #e5e5e5;
}

/* start_中身が3列 */

.Condition__inner-heading {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.Condition__inner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* start_交通手段 */

.Condition__group--transport {
  border-bottom: 1px solid #e5e5e5;
}

.Condition__group--transport .Condition__radio-label {
  width: 167px;
}

.Condition__group--transport .Condition__radio-label:not(:last-of-type) {
  margin-right: 10px;
}

/* end_交通手段 */

/* start_出発地 */

.Condition__group--departure {
  width: 50%;
  border-top: none;
}

/* end_出発地 */

/* start_バス乗車地 */

.Condition__group--bus {
  border-top: none;
  width: 50%;
}

.Condition__group--bus .Condition__content {
  position: relative;
}

/* start_アラート */

.Condition__group--bus .Condition__content .SearchCourse__alert {
  bottom: -30px;
  left: auto;
  right: 15px;
}

.Condition__group--bus .Condition__content .SearchCourse__alert::before {
  left: auto;
  right: 15px;
}

.Condition__group--bus .Condition__content .SearchCourse__alert::after {
  left: auto;
  right: 16px;
}

/* end_アラート */

.Condition__group--bus .Condition__input-text {
  background: url(../../sharing/common21/images/icn_busStop.svg) no-repeat right 10px center / 16px;
}

.Condition__group--bus .Condition__input-text::after {
  content: none;
}

/* end_バス乗車地 */

/* start_出発日 */

.Condition__inner-group--day .Condition__input-text::after {
  content: none;
}

.Condition__inner-group--day .Condition__input-text {
  background: url(../../attending/common/images/icn_calendar.svg) no-repeat right 10px center / 16px;
}

/* end_出発日 */

/* start_旅行日数 */

.Condition__inner-group--days .Condition__select {
  width: 45%;
}

/* end_旅行日数 */

/* start_旅行代金 */

.Condition__inner-group--price .Condition__select {
  width: 45%;
}

/* end_旅行代金 */

/* start_添乗員 */

.Condition__group--conductor .Condition__checkbox-label {
  width: 170px;
  margin-right: 10px;
}

/* end_添乗員 */

/* start_こだわり条件 */

.Condition__group--commitment .Condition__content {
  padding: 0;
}

/* start_ブランド */

.Condition__inner-group--brand {
  width: 50%;
  padding: 15px;
  border-right: 1px solid #e5e5e5;
}

/* end_ブランド */

/* start_テーマ */

.Condition__inner-group--theme {
  width: 50%;
  padding: 15px;
}

/* end_テーマ */

/* start_キーワード */

.Condition__inner-group--keyword {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #e5e5e5;
}

.Condition__inner-group--keyword .Condition__inner-content {
  justify-content: flex-start;
}

.Condition__inner-group--keyword .Condition__input-text {
  width: 364px;
  margin-right: 10px;
}

.Condition__inner-group--keyword .Condition__input-text::after {
  content: none;
}

.Condition__btn-keyword {
  position: relative;
  margin-left: auto;
  padding: 10px 35px 10px 15px;
  font-size: 1.4rem;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .3s, background-color .3s;
}

.Condition__btn-keyword:hover {
  background-color: var(--active-color);
  border-color: var(--corporate-color);
}

.Condition__keyword-input-wrap {
  width: 100%;
  margin-top: 5px;
}

.Condition__keyword-input-wrap .Condition__radio-label {
  margin-right: 10px;
}

/* end_キーワード */

/* start_除外キーワード */

.Condition__inner-group--ex-keyword {
  display: none;
  width: calc(100% - 30px);
  padding: 15px;
  margin: 0 auto 15px auto;
  background: #f5f5f5;
  border-radius: 4px;
}

.Condition__inner-group--ex-keyword .Condition__inner-content {
  justify-content: flex-start;
}

.Condition__inner-group--ex-keyword .Condition__input-text {
  width: 364px;
  margin-right: 10px;
  background: white;
}

.Condition__inner-group--ex-keyword .Condition__input-text::after {
  content: none;
}

.Condition__ex-keyword-input-wrap {
  width: 100%;
  margin-top: 5px;
}

.Condition__ex-keyword-input-wrap .Condition__radio-label {
  margin-right: 10px;
}

/* end_除外キーワード */

/* start_催行状況 */

.Condition__inner-group--do {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #e5e5e5;
}

.Condition__inner-group--do .Condition__checkbox-label {
  width: 167px;
}

/* end_催行状況 */

/* end_こだわり条件 */

/* start_footer */

.Condition__footer {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 80px;
  background: white;
  border-top: 1px solid #e5e5e5;
}

.Condition__footer--inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 1024px;
  margin: 0 auto;
}

.Condition__hit-wrap {
  margin-right: 20px;
}

.Condition__hit-label {
  font-size: 1.4rem;
  font-weight: 400;
}

.Condition__hit {
  font-size: 1.4rem;
  line-height: 1;
}

.Condition__hit-num {
  margin-right: 3px;
  color: var(--caution-color);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
}

.Condition__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 75px;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  background-color: var(--caution-color);
  border-radius: 3px;
  transition: opacity .3s;
}

.Condition__btn::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;
}

.Condition__btn:hover {
  opacity: .7;
}

/* end_footer */

/* --------------------end_詳細条件-------------------- */

/* --------------------start_モーダル-------------------- */

.CommonModal {
  width: 700px;
}

.CommonModal__contents {
  position: relative;
}

.CommonModal__scroll-area {
  min-height: 400px;
}

.CommonModal__contents-inner {
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
  padding: 0;
}

.CommonModal .Condition__checkbox-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-color: #e5e5e5;
  height: auto;
  min-height: 45px;
}

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

.CommonModal .CommonModal__set-btn-wrap {
  transform: translateY(-1px);
}

.ConditionModal__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 .3s;
}

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

.CommonModal .Search__icn-plus {
  right: 15px;
}

/* start_出発地 */

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

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

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

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

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

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

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

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

/* end_出発地 */

/* start_バス乗車地 */

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

.ConditionModal--bus-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;
}

#ConditionModal--bus .Condition__checkbox-label {
  width: calc(100% / 3);
  margin: 0;
  border-radius: 0;
  border-top: none;
}

#ConditionModal--bus .Condition__checkbox-label {
  border-left: none;
}

#ConditionModal--bus .Condition__checkbox-label:nth-of-type(3n) {
  border-right: none;
}

/* end_バス乗車地 */

/* start_目的地 */

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

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

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

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

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

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

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

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

#ConditionModal--destination .Condition__checkbox-label {
  /* margin-bottom: 0;
  width: calc(100% / 3);
  border-radius: 0;
  border-top: none;
  border-left: none; */
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

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

#ConditionModal--destination .Condition__checkbox-label:first-of-type {
  /* font-weight: 600; */
  width: 100%;
  border-right: none;
}

/* end_目的地 */

/* start_出発日 */

#ConditionModal--day .CommonModal__contents-inner {
  box-shadow: none;
}

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

.ConditionModal-day-month {
  position: relative;
  width: 294px;
}

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

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

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

.ConditionModal-day-select-month:hover {
  opacity: .7;
}

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

.ConditionModal-day-table td.hol {
  background-color: #FFD7CB;
}

.ConditionModal-day-table th:first-child, .ConditionModal-day-table td:first-child {
  color: var(--caution-color);
}

.ConditionModal-day-table th:last-child, .ConditionModal-day-table td:last-child {
  color: var(--corporate-color);
}

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

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

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

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

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

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

.ConditionModal-day-g {
  opacity: .3;
}

.ConditionModal-day-control-wrap {
  display: flex;
  justify-content: center;
  width: calc(100% - 80px);
  padding: 15px 0;
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;
}

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

.ConditionModal-day-control--g {
  opacity: .3;
}

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

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

.ConditionModal-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);
}

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

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

/* end_出発日 */

/* start_目的地 */

/* end_目的地 */

/* start_航空会社 */

#ConditionModal--airplane .CommonModal__contents-inner {
  display: flex;
  flex-wrap: wrap;
}

#ConditionModal--airplane .Condition__checkbox-label {
  width: 50%;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-top: none;
}

#ConditionModal--airplane .Condition__checkbox-label {
  border-left: none;
}

#ConditionModal--airplane .Condition__checkbox-label:nth-of-type(even) {
  border-right: none;
}

/* end_航空会社 */

/* start_新幹線・特急 */

#ConditionModal--shinkansen .CommonModal__contents-inner {
  display: flex;
  flex-wrap: wrap;
}

#ConditionModal--shinkansen .Condition__checkbox-label {
  width: calc(100% / 3);
  margin: 0;
  border-radius: 0;
  border-top: none;
}

#ConditionModal--shinkansen .Condition__checkbox-label {
  border-left: none;
}

#ConditionModal--shinkansen .Condition__checkbox-label:nth-of-type(3n) {
  border-right: none;
}

/* end_新幹線・特急 */

/* start_クルーズ船 */

#ConditionModal--cruise .Condition__checkbox-label,
#ConditionModal--cruise-p_ship_class .Condition__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* end_クルーズ船 */

/* start_ホテルランク */

#ConditionModal--hotel-rank .CommonModal__contents-inner {
  box-shadow: none;
}

#ConditionModal--hotel-rank .Condition__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.ConditionModal--hotel-rank-note {
  width: calc(100% - 30px);
  margin: 15px auto;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.ConditionModal--hotel-rank-label {
  padding: 10px 15px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}

.ConditionModal--hotel-rank-txt {
  padding: 15px;
}

/* end_ホテルランク */

/* start_ホテル・旅館 */

#ConditionModal--hotel {
  width: 800px;
}

/* start_タブ */

.ConditionModal--hotel-tab-items {
  display: flex;
  width: 100%;
  height: 50px;
  background: white;
}

.ConditionModal--hotel-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 2px solid #c3c3c3;
}

.ConditionModal--hotel-tab-item:not(.active) {
  transition: color .3s;
  cursor: pointer;
}

.ConditionModal--hotel-tab-item:not(.active):hover {
  color: var(--corporate-color);
}

.ConditionModal--hotel-tab-item.active {
  color: var(--corporate-color);
  background: var(--active-color);
  border-color: var(--corporate-color);
}

/* end_タブ */

#ConditionModal--hotel .CommonModal__scroll-area {
  max-height: unset;
  height: calc(700px - 50px - 85px - 50px);
  /*
      700px（モーダル最大の高さ）
      50px(モーダル見出しの高さ)
      85px（モーダル下部ボタンエリアの高さ）
      50px（モーダルタブの高さ）
      */
}

#ConditionModal--hotel .CommonModal__contents--map .CommonModal__scroll-area {
  height: calc(700px - 50px - 50px);
  /*
      700px（モーダル最大の高さ）
      50px(モーダル見出しの高さ)
      50px（モーダルタブの高さ）
      */
}

#ConditionModal--hotel .CommonModal__contents-inner {
  box-shadow: none;
}

/* start_絞り込む */

.ConditionModal--hotel-sort-wrap {
  height: 140px;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.ConditionModal--hotel-sort-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ConditionModal--hotel-sort-group:not(:first-child) {
  margin-top: 15px;
}

.ConditionModal--hotel-sort-ttl {
  width: 180px;
  font-size: 1.4rem;
  font-weight: 600;
}

.ConditionModal--hotel-sort-content {
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 180px);
  overflow-x: auto;
}

/* start_ランクで */

.ConditionModal--hotel-sort-items {
  display: flex;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: 600;
}

.ConditionModal--hotel-sort-item:not(:last-child) {
  margin-right: 10px;
}

.ConditionModal--hotel-sort-wrap .Condition__checkbox-label {
  min-height: unset;
  margin-bottom: 0;
  padding: 10px 12px;
  white-space: nowrap;
}

#Condition .ConditionModal--hotel-sort-wrap input[type="checkbox"]:checked+.Condition__checkbox-label {
  color: var(--corporate-color);
  background: var(--active-color);
  border-color: var(--corporate-color);
}

/* end_ランクで */

/* start_ホテル名で */

.CommonModal__contents--map .ConditionModal--hotel-sort-wrap {
  height: 80px;
}

.CommonModal__contents--map .ConditionModal--hotel-sort-group--name {
  display: none;
}

.ConditionModal--hotel-sort-wrap .Condition__input-text {
  position: relative;
  margin-right: 10px;
  width: 320px;
}

.ConditionModal--hotel-sort-wrap .Condition__input-text::after {
  content: none;
}

.ConditionModal--hotel-sort-name-btn-clear {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.ConditionModal--hotel-sort-name-btn-clear:hover {
  opacity: .7;
}

.ConditionModal--hotel-sort-name-btn-clear::before, .ConditionModal--hotel-sort-name-btn-clear::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50%;
  left: 50%;
}

.ConditionModal--hotel-sort-name-btn-clear::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ConditionModal--hotel-sort-name-btn-clear::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ConditionModal--hotel-sort-btn-narrow {
  display: block;
  padding: 10px 20px;
  font-size: 1.4rem;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  transition: opacity .3s;
  cursor: pointer;
}

.ConditionModal--hotel-sort-btn-narrow::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: -3px;
  background: url(../../sharing/common21/images/icn_search--black.svg) no-repeat center / contain;
  opacity: .8;
}

.ConditionModal--hotel-sort-btn-narrow:hover {
  opacity: .7;
}

/* end_ホテル名で */

/* end_絞り込む */

#ConditionModal--hotel .CommonModal__contents-inner {
  margin-top: -1px;
}

.ConditionModal--hotel-tab-contents {
  display: none;
}

.ConditionModal--hotel-tab-contents.active {
  display: block;
}

/* start_一覧から選択 */

.ConditionModal--hotel-list-ac-btn {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
}

.ConditionModal--hotel-list-ac-btn:not(.js_condition-modal-ac-btn), .ConditionModal--hotel-list-ac-btn.active {
  background: #f5f5f5;
}

.ConditionModal--hotel-list-ac-contents {
  display: none;
}

.Condition__hotel-list-rank-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;
}

.ConditionModal--hotel-tab-contents--list .Condition__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.ConditionModal--hotel-tab-contents--list .Condition__checkbox-label:first-of-type {
  font-weight: 600;
  width: 100%;
  border-right: none;
}

/* end_一覧から選択 */

/* start_地図から選択 */

.ConditionModal--hotel-tab-contents-map-inner {
  display: flex;
  justify-content: space-between;
  height: calc(700px - 50px - 50px - 80px + 1px);
  /*
      700px（モーダル最大の高さ）
      50px(モーダル見出しの高さ)
      50px（タブの高さ）
      80px（絞り込みの高さ）
      1px（.CommonModal__contents-innerのネガティブマージン分）
      */
}

.ConditionModal--hotel-map-wrap {
  position: relative;
  width: 470px;
  background: #f5f5f5;
  border-radius: 0 0 0 6px;
}

/* start_地図上ホテル枠 */

.ConditionModal--hotel-map-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 345px;
  padding: 15px;
  background: white;
  border-radius: 6px;
  box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 5%);
}

.ConditionModal--hotel-map-info-btn-close {
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: #888;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity .3s;
}

.ConditionModal--hotel-map-info-btn-close:hover {
  opacity: .7;
}

.ConditionModal--hotel-map-info-btn-close::before, .ConditionModal--hotel-map-info-btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.2rem;
  height: 0.2rem;
  background-color: white;
}

.ConditionModal--hotel-map-info-btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ConditionModal--hotel-map-info-btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ConditionModal--hotel-map-info-ttl {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.ConditionModal--hotel-map-info-img {
  width: 100px;
}

.ConditionModal--hotel-map-info-img img {
  border: 1px solid #e5e5e5;
}

.ConditionModal--hotel-map-info-txt {
  width: calc(100% - 110px);
}

.ConditionModal--hotel-map-info-rank {
  color: var(--sub-corporate-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.ConditionModal--hotel-map-info-description {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.ConditionModal--hotel-map-info-btn-items {
  display: flex;
  justify-content: flex-end;
}

.ConditionModal--hotel-map-info-btn-item {
  padding: 10px 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 50px;
}

.ConditionModal--hotel-map-info-btn-item--detail {
  color: var(--corporate-color);
  border: 1px solid #7fcff4;
  transition: background-color .3s;
}

.ConditionModal--hotel-map-info-btn-item--detail:hover {
  background-color: var(--active-color);
}

.ConditionModal--hotel-map-info-btn-item--add {
  color: white;
  background-color: var(--corporate-color);
  transition: opacity .3s;
}

.ConditionModal--hotel-map-info-btn-item--add:hover {
  opacity: .7;
}

.ConditionModal--hotel-map-info-btn-item:first-child {
  margin-right: 5px;
}

/* end_地図上ホテル枠 */

.ConditionModal--hotel-selected-wrap {
  width: calc(100% - 470px);
}

.ConditionModal--hotel-selected-scroll-area {
  max-height: calc(100% - 85px);
  overflow-y: auto;
}

.ConditionModal--hotel-selected-btn {
  position: relative;
  display: block;
  width: calc(100% - 40px);
  margin: 20px auto;
  padding: 14px 0;
  font-size: 1.4rem;
  text-align: center;
  background: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
}

.ConditionModal--hotel-selected-num {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px;
  height: 22px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--corporate-color);
}

.ConditionModal--hotel-selected-items {
  /* display: none; */
  border-top: 1px solid #e5e5e5;
}

.ConditionModal--hotel-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #e5e5e5;
}

.ConditionModal--hotel-selected-item-name {
  line-height: 1.3;
  width: 165px;
}

.ConditionModal--hotel-selected-item-btn-wrap {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 175px);
}

.ConditionModal--hotel-selected-item-btn {
  display: block;
  padding: 8px 12px;
  color: var(--corporate-color);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #7fcff4;
  border-radius: 50px;
  transition: background-color .3s;
}

.ConditionModal--hotel-selected-item-btn--detail:hover {
  background-color: var(--active-color);
}

.ConditionModal--hotel-selected-item-btn--delete {
  color: #666;
  border-color: #c9c9c9;
}

.ConditionModal--hotel-selected-item-btn--delete:hover {
  background-color: #f5f5f5;
}

.CommonModal__contents--map .CommonModal__set-btn-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 470px);
}

/* end_地図から選択 */

/* end_ホテル・旅館 */

/* start_ブランド */

#ConditionModal--brand .Condition__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* end_ブランド */

/* start_テーマ */

#ConditionModal--theme .CommonModal__contents-inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
}

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

#ConditionModal--theme .Condition__checkbox-label {
  width: calc(100% / 3);
  margin: 0;
  border-radius: 0;
  border-top: none;
}

#ConditionModal--theme .Condition__checkbox-label {
  border-left: none;
}

#ConditionModal--theme .Condition__checkbox-label:nth-of-type(3n) {
  border-right: none;
}

.ConditionModal--hotel-map-area {
  display: block;
  width: 100%;
  height: 97%;
  background-color: #FFFFFF;
}

#loadMask {
  display: none;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
}

.bgStyle {
  opacity: .5;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: lightgray;
  z-index: 999
}

.maskStyle {
  position: absolute;
  top: 0%;
  left: 0%;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  z-index: 1002
}

.maskStyle img {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -ms-animation: spin 1s linear infinite;
  -o-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* end_テーマ */

/* --------------------end_モーダル-------------------- */

/* css 追加　2021/09/14 */

.CommonModal input[type="checkbox"]:disabled+.Condition__checkbox-label {
  color: var(--disable-font-color);
  cursor: default;
}

.CommonModal input[type="checkbox"]:disabled+.Condition__checkbox-label .Condition__checkbox-btn {
  border: none;
  background-color: var(--disable-color);
}

.CommonModal input[type="checkbox"]:disabled+.Condition__checkbox-li .Condition__checkbox-btn {
  border: none;
  background-color: var(--disable-color);
}

.CommonModal input[type="checkbox"]:disabled+.Condition__checkbox-label--simple {
  color: var(--disable-font-color);
}

#Condition .ConditionModal--hotel-sort-wrap input[type="checkbox"]:disabled+.Condition__checkbox-label {
  color: var(--disable-font-color);
}

#Condition input[type="radio"]:disabled+.Condition__radio-label {
  color: var(--disable-font-color);
}

#Condition input[type="radio"]:disabled+.Condition__radio-label .Condition__radio-btn {
  border: none;
  background-color: var(--disable-color);
}

#Condition input[type="text"]:disabled {
  background-color: var(--disable-color);
}

input::-webkit-input-placeholder {
  color: #333 !important;
}

input::-moz-input-placeholder {
  color: #333 !important;
}

input::-ms-input-placeholder {
  color: #333 !important;
}

.calM {
  display: none;
}

.search-item-one-line {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 24px;
  padding: 9px 30px 8px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.input-height-fixed{
  vertical-align: bottom;
}

.search-item-one-line ul, .cursor-pointer {
  cursor: pointer;
}

#loadMask .loading-img {
  width: 100px;
  height: 100px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
}



/* start_お気に入りアイコン */

.icn_tour-favorite-outer {
  position: relative;
}

.icn_tour-favorite-wrap {
  display: block;
  width: 35px;
  height: 35px;
  border: 1px solid #c3c3c3;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}

.icn_tour-favorite {
  border-radius: 50%;
}

.icn_tour-favorite-wrap .cls-1,
.icn_tour-favorite-wrap .cls-3 {
  fill: white;
}

.icn_tour-favorite-wrap .cls-2 {
  fill: #c3c3c3;
}

/* start_active */

.icn_tour-favorite-wrap.active {
  border: none;
}

.icn_tour-favorite-wrap.active .cls-1,
.icn_tour-favorite-wrap.active .cls-3 {
  fill: #ff6978;
}

.icn_tour-favorite-wrap.active .cls-2 {
  fill: white;
}

.icn_tour-favorite-wrap.active .icn_tour-favorite {
  animation: icn_tour-favorite linear 0.6s forwards;
}

@keyframes icn_tour-favorite {
  0% {
    transform: scale(0);
  }

  30% {
    transform: scale(1.3);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* end_active */

/* start_balloon */

.icn_tour-favorite-balloon {
  position: absolute;
  top: -60px;
  left: 50%;
  font-size: 1.2rem;
  color: #ff6978;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 0.6rem;
  background: white;
  border: 0.2rem solid #ff6978;
  box-shadow: 0px 0.4rem 0.7rem -0.6rem rgb(0 0 0 / 50%);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
}

.icn_tour-favorite-balloon::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.6rem 0 0.6rem;
  border-color: #ff6978 transparent transparent transparent;
  transform: translateX(-50%);
}

.icn_tour-favorite-balloon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  border-color: white transparent transparent transparent;
  transform: translateX(-50%);
}

/*.icn_tour-favorite-wrap.active+.icn_tour-favorite-balloon {
  animation: icn_tour-favorite-balloon ease-out 2s forwards;
}*/

@keyframes icn_tour-favorite-balloon {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }

  10% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  85% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}

/* end_balloon */
/* end_お気に入りアイコン */

.Gnav__item.active {
  color: white;
  background: #4cbcef;
  pointer-events: none;
}

#ip_p_ship_class,
#sel-cruse-type,
#ip_p_ship_company_class,
.decide-text-val {
  cursor: pointer;
}

#ConditionModal--decide .Condition__checkbox-label {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
	.swiper-wrapper{
  height: auto;
}

/*keyvisual横幅固定*/
#Keyvisual {
  background-color: #f5f5f5;
  background-size: auto 100%;
}

.originating_overseas {
    display: none;
}
