/*! お宿pc用 */

/* --------------------start_メインビジュアル-------------------- */

.Common21__inner--keyvisual {
  justify-content: flex-start;
}

#MainBn {
  width: auto;
}

#Keyvisual{
	min-height:400px;
}

/* --------------------start_メインビジュアル-------------------- */

/* --------------------start_地図から探す-------------------- */

#Map {
  position: relative;
  height: 586px;
  margin-bottom: 60px;
  background-color: #f5f5f5;
  background-image: url(../images/map--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--okinawa {
  top: 159px;
  left: 140px;
}

.Map__item--hokkaido {
  top: 159px;
  right: 390px;
}

.Map__item--hokuriku {
  top: 245px;
  right: 450px;
}

.Map__item--kyushu {
  top: 390px;
  right: 680px;
}

.Map__item--tohoku {
  top: 280px;
  left: 725px;
}

.Map__item--kanto {
  top: 365px;
  left: 680px;
}

.Map__item--kinki {
  top: 450px;
  left: 630px;
}

.Map__item--shikoku {
  top: 480px;
  left: 440px;
}

.Map__item--tokai {
  top: 320px;
  left: 414px;
}

.Map__item--chugoku {
  top: 320px;
  right: 620px;
}

/*end_ボタンposition*/

.Map__link {
  display: inline-block;
  position: relative;
  padding: 10px 50px 10px 30px;
  color: #333;
  font-size: 1.6rem;
  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 {
  text-decoration: none;
  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: 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;
}

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

.MapModal__inner {
  position: relative;
}

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

#OyadoMain .MapModal__header span {
  color: #767676;
  font-size: 1.5rem;
}

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

.MapModal__close-icn:hover {
  opacity: 0.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% / 3);
  border-bottom: 1px solid #e5e5e5;
}

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

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

#OyadoMain .MapModal__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 20px 12px 40px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: inherit;
  line-height: 1.3;
  text-indent: -20px;
}

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

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

#OyadoMain a.MapModal__link:hover {
  color: var(--corporate-color);
  text-decoration: none;
  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;
  font-size: 1.5rem;
  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_検索枠-------------------- */

#Search {
  width: 1024px;
  margin: 0 auto 30px auto;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
}

#Search select {
  height: 50px;
  padding: 10px 15px;
  font-size: 1.5rem;
}

#Search input[type="text"] {
  height: 50px;
  padding: 10px 30px 10px 15px;
  font-size: 1.5rem;
}

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

.Search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Search__form-ttl {
  display: none;
}

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

#OyadoMain .Search__form-label {
  width: 80px;
  height: 50px;
}

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

/* start_宿泊エリア */
.Search__form-group--destination {
  width: 100%;
}

.Search__form-group--destination .Search__select {
  width: calc(100% / 3);
}

.Search__form-group--destination .Search__select:first-child {
  border-radius: 4px 0 0 4px;
}

.Search__form-group--destination .Search__select:nth-child(2) {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  border-left: none;
  border-right: none;
}

.Search__form-group--destination .Search__select:last-child {
  border-radius: 0 4px 4px 0;
}
/* end_宿泊エリア */

/* start_出発日 */
.Search__form-group--date {
  width: calc((100% - 40px) / 2);
}
/* end_出発日 */

/* start_キーワード */
.Search__form-group--keyword {
  width: calc((100% - 40px) / 2);
  margin-bottom: 20px;
}
/* end_キーワード */

.Search__submit-wrap {
  justify-content: center;
}

#OyadoMain .Search__hit-wrap {
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
}

#OyadoMain .Search__submit {
  width: 440px;
  padding: 15px 0;
}

/* --------------------end_検索枠-------------------- */

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

.Result__pager-items {
  display: flex;
  justify-content: center;
  width: 270px;
  margin: 0 auto;
}

.Result__pager-items:first-of-type {
  margin-bottom: 20px;
}

#OyadoMain .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: #f5f5f5;
  transition: box-shadow 0.3s;
}

#OyadoMain .Result__pager-item:visited {
  color: var(--sub-corporate-color);
}

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

#OyadoMain .Result__pager-item--prev,
#OyadoMain .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);
}

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

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

/* --------------------start_検索結果-------------------- */

#Result {
  margin-bottom: 60px;
  padding: 30px 0 60px 0;
  border-bottom: 1px solid #e5e5e5;
}

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

.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-size: 1.6rem;
  font-weight: 600;
}

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

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

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

#OyadoMain .Result__tour-info-label {
  color: #666;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-block;
}

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

#OyadoMain .Result__tour-info-content {
  display: inline-block;
  color: #666;
  font-size: 1.3rem;
}

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

#OyadoMain .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-photo img {
  aspect-ratio: 4/3;
}

.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;
  font-weight: 600;
}

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

#OyadoMain .Result__tour-price-unit {
  color: var(--caution-color);
  font-size: 1.8rem;
}

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

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

.Result__tour-period-content {
  display: inline-block;
  font-size: 1.3rem;
}

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

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

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

.Result__tour-table-txtlink {
  font-size: 1.3rem;
  text-decoration: underline;
}

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

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

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

#OyadoMain .Result__tour-reserve:visited {
  color: white;
}

.Result__tour-reserve:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* --------------------end_検索結果-------------------- */

/* --------------------start_PG追加-------------------- */

.Result__pager-items li {
  margin-right: 7px;
}

#loading {
  position: fixed;
  height: 50px;
  width: 50px;
  top: calc(50% - 50px / 2);
  left: calc(50% - 50px / 2);
  z-index: 105;
}

/* --------------------end_PG追加-------------------- */
