@charset "UTF-8";
/* ::::::::::  アクセス  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.tabArea.pageTop ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  max-width: 634px !important;
}
@media (max-width: 1024px) {
  .tabArea.pageTop ul {
    max-width: none !important;
    gap: 10px;
    margin-inline: -6vw;
  }
}
.tabArea.pageTop ul li {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 190px;
}
@media (max-width: 1024px) {
  .tabArea.pageTop ul li {
    min-width: auto;
    width: calc(33.3333333333% - 6.6666666667px) !important;
  }
}
.tabArea.pageTop ul li a {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border-bottom: none;
  background: #cbdae5;
  min-height: 75px;
  padding: 9px 4px 4px;
  text-align: center;
  box-shadow: 2px 2px 5px 0 rgba(77, 77, 77, 0.2);
}
@media (max-width: 1024px) {
  .tabArea.pageTop ul li a {
    font-size: 1.2rem;
  }
}
.tabArea.pageTop ul li a .icon {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.tabArea.pageTop ul li a .icon svg {
  fill: #4d4d4d;
  width: 32px;
  height: 32px;
}

.accessTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px 0;
  text-align: center;
  color: #467ba1;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .accessTitle {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
}
.accessTitle .icon {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.accessTitle .icon svg {
  fill: #467ba1;
  width: 32px;
  height: 32px;
}
.access .leadText {
  margin: 0 0 40px;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .access .leadText {
    margin: 0 0 30px;
    font-size: 1.4rem;
    text-align: center;
  }
}
.access .point {
  background: #e9e7df;
  border-radius: 5px;
  padding: 5px 1em 4px;
  width: calc(50% - 12px);
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1024px) {
  .access .point {
    width: 100%;
    font-size: 1.6rem;
  }
}
.access .pointWrap {
  display: flex;
  align-items: center;
  gap: 12px 24px;
  max-width: 520px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .access .pointWrap {
    flex-direction: column;
  }
}
.access .busImg {
  display: block;
  margin: 16px 0 0;
  text-align: center;
}
.access .busImg .note {
  font-size: 1.2rem;
  text-align: right;
  max-width: 806px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .access .busImg .note {
    max-width: 100%;
  }
}

/* =========================================================
route
========================================================= */
.route .bgWhite {
  padding: 50px 89px;
}
@media (max-width: 1024px) {
  .route .bgWhite {
    padding: 20px 16px 32px;
    margin-inline: -6vw;
  }
}
.routeBox {
  position: relative;
}
@media (max-width: 767px) {
  .routeBox + .routeBox {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .routeBox:has(.acBtn) + .routeBox {
    margin-top: 0;
  }
  .routeBox:has(.acBtn) + .routeBox dd {
    padding-bottom: 30px;
  }
}
.routeBox dt {
  background: #cbdae5;
  margin-bottom: 30px;
  padding: 10px 4px;
  text-align: center;
  color: #4d4d4d;
  font-size: 2.2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .routeBox dt {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .routeBox dt {
    margin-bottom: 20px;
    padding: 5px 4px;
  }
}
.routeBox dd {
  padding: 0 3%;
}
.routeBox dd .note {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4d4d4d;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
}
.routeBox dd .note:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .routeBox .acBtn {
    pointer-events: none;
  }
}
.routeBox .acBtn {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .routeBox .acBtn {
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    padding: 12px 6px !important;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: 1px 1px 4px 0 rgba(77, 77, 77, 0.2);
  }
  .routeBox .acBtn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    border-right: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
    width: 8px;
    height: 8px;
    margin: auto;
    rotate: 45deg;
  }
  .routeBox .acBtn.on::after {
    top: 5px;
    rotate: -135deg;
  }
}
@media (min-width: 768px) {
  .routeBox .acBtn + dd {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .routeBox .acBtn + dd {
    display: none;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .routeBox:last-child .routeBox .acBtn + dd {
    padding-bottom: 0;
  }
}
.routeBox .acBtn.acBtn2 {
  border-top: 1px solid #467ba1;
  border-bottom: 1px solid #467ba1;
  background: none;
  color: #467ba1;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .routeBox .acBtn.acBtn2 {
    font-size: 1.5rem;
    border: 1px solid #467ba1;
  }
}
.routeBox .acBtn.acBtn2::after {
  border-color: #467ba1;
}
.routeBox dl + dl {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .routeBox dl + dl {
    margin-top: 0;
  }
}

/* =========================================================
route_bus
========================================================= */
/* =========================================================
route_public
route_car
========================================================= */
.route_public,
.route_car {
  position: relative;
}
.route_public::before,
.route_car::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 1px;
  width: 940px;
  max-width: 84%;
  background: #7ea3bd;
}
@media (max-width: 1024px) {
  .route_public::before,
  .route_car::before {
    width: 100%;
    max-width: 100%;
  }
}
.route_public .routeWrap,
.route_car .routeWrap {
  max-width: 806px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .route_public .routeWrap,
  .route_car .routeWrap {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .route_public .routeWrap,
  .route_car .routeWrap {
    gap: 0 4%;
  }
}
.route_public .routeBox,
.route_car .routeBox {
  width: calc(50% - 36px);
  color: #000;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .route_public .routeBox,
  .route_car .routeBox {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .route_public .routeBox,
  .route_car .routeBox {
    width: 100%;
  }
}
.route_public .routeBox dt,
.route_car .routeBox dt {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .route_public .routeBox dt,
  .route_car .routeBox dt {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  :lang(ja) .route_public .routeBox dd,
  :lang(ja) .route_car .routeBox dd {
    padding-right: 0;
    margin-right: -2em;
  }
}
.route_public .routeBox dd strong,
.route_car .routeBox dd strong {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  color: #4d4d4d;
}
@media (max-width: 1024px) {
  .route_public .routeBox dd strong,
  .route_car .routeBox dd strong {
    font-size: 1.3rem;
  }
}

@media (min-width: 1025px) {
  .route_public .bgWhite {
    padding-bottom: 72px;
  }
}
.route_public .routeBox dd .busRoute {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e9e7df;
  border-radius: 50%;
  padding: 1px 0.5em;
  width: 77px;
  flex-shrink: 0;
  text-align: center;
}
.route_public .routeBox dd .busRouteWrap {
  display: flex;
  align-items: flex-start;
  gap: 4px 4px;
  margin: 8px 0 0;
}
@media (max-width: 1024px) {
  .route_public .routeBox dd .busRouteWrap {
    flex-direction: column;
  }
}
.route_public .routeBox dd .busRouteWrap p:not([class]) {
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .route_public .routeBox dd .busRouteWrap p:not([class]) {
    font-size: 1.3rem;
  }
}
.route_public .routeBox dd .arrow {
  width: 77px;
  text-align: center;
  margin: -0.5lh 0 0;
}
@media (max-width: 1024px) {
  .route_public .routeBox dd .arrow {
    margin: 8px 0 0;
  }
}
.route_public .routeBox dd .arrow svg {
  fill: #467ba1;
  width: 20px;
  height: 48px;
}

@media (min-width: 1025px) {
  .route_car .bgWhite {
    padding-bottom: 144px;
  }
}
.route_car table {
  margin: 0;
}
.route_car table th,
.route_car table td {
  display: table-cell;
  border: none;
  padding: 0;
  color: #000;
  background: none;
  text-align: left;
}
.route_car table th {
  width: auto;
  padding-inline: 0 1em;
}
.route_car table td {
  width: auto;
}
.route_car table + p {
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .route_car table + p {
    letter-spacing: 0;
  }
}
.route_car table + p + .note {
  margin-top: 0;
}
.route_car .carRouteText {
  color: #4d4d4d;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .route_car .carRouteText {
    font-size: 1.4rem;
  }
}
.route_car .parkingName {
  color: #000;
  font-weight: 500;
}
.route_car .parkingName + .note {
  margin: 0.5em 0 0;
}
.route_car .parkingName + .note + .note {
  margin-top: 3px;
}
.route_car .btn {
  margin: 20px 0 0;
}
.route_car .btn a {
  justify-content: center;
  background: #fff;
  border-color: #000;
  color: #000;
  font-family: "Gotu";
  width: 112px;
  min-height: 30px;
  font-size: 1.4rem;
  padding-inline: 0.5em;
  margin-left: 0;
}
@media (max-width: 1024px) {
  .route_car .btn a {
    font-size: 1.3rem;
  }
}
.route_car .btn a:hover {
  background: none;
  color: #000;
}

/* =========================================================
toHotel
========================================================= */
.toHotel {
  gap: 0 5%;
  margin-block: 100px 0;
}
@media (max-width: 1024px) {
  .toHotel {
    margin-block: 45px;
  }
}
.toHotel .mapInfo {
  flex-grow: 1;
  display: block;
  margin-top: auto;
  margin-left: 48px;
  color: #231815;
}
@media (max-width: 1024px) {
  .toHotel .mapInfo {
    margin-left: 0;
  }
}
.toHotel .mapInfo h2.secTitle02 .en {
  font-family: "Gotu";
  font-size: 3rem;
  letter-spacing: 0.045em;
  color: #467ba1;
}
@media (max-width: 1024px) {
  .toHotel .mapInfo h2.secTitle02 .en {
    font-size: 2.4rem;
  }
}
.toHotel .mapInfo h3.secTitle02 {
  font-size: 2rem;
  color: #231815;
}
@media (max-width: 1024px) {
  .toHotel .mapInfo h3.secTitle02 {
    font-size: 1.6rem;
  }
}
:not(:lang(ja)) .toHotel .mapInfo h3.secTitle02 {
  max-width: 12em;
}
.toHotel .mapInfo .address {
  line-height: 1.8;
}
.toHotel .mapInfo .address br.tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .toHotel .mapInfo .address br.tab {
    display: block;
  }
}
.toHotel .mapInfo .address .jhat {
  margin-top: 8px;
  display: inline-block;
}
.toHotel .mapWrap {
  width: 59%;
  height: 100%;
  aspect-ratio: 660/360;
}
@media (max-width: 767px) {
  .toHotel .mapWrap {
    width: 100%;
    aspect-ratio: 337/360;
    margin-top: 30px;
  }
}
.toHotel .mapWrap iframe {
  width: 100%;
  height: 100%;
  margin: 0;
}

.pageBottomWrap {
  display: none;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .pageBottomWrap {
    margin-top: 40px;
  }
}/*# sourceMappingURL=resort_access.css.map */