@charset "UTF-8";
body {
  --swl-font_family: "Noto Sans JP", sans-serif;
}

.post_content > h2 {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1em;
}

.br-sp {
  display: none;
}
@media (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

@media (max-width: 599px) {
  .br-pc {
    display: none;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.fade-in-up.appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.fade-in-left.appear {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.fade-in-right.appear {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.fade-in-down.appear {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.c-btn:hover {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
.c-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
@media (max-width: 599px) {
  .c-btn--sm {
    padding: 0.5rem 0.75rem;
  }
}
.c-btn--primary {
  border-color: #a91b47;
  background-color: #a91b47;
  color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(169, 27, 71, 0.3);
          box-shadow: 0 4px 15px rgba(169, 27, 71, 0.3);
}
.c-btn--primary:hover {
  color: #fff;
  -webkit-box-shadow: 0 6px 20px rgba(169, 27, 71, 0.4);
          box-shadow: 0 6px 20px rgba(169, 27, 71, 0.4);
}
.c-btn--outline {
  border-color: #a91b47;
  background-color: transparent;
  color: #a91b47;
}
.c-btn--outline:hover {
  background-color: #a91b47;
  color: #fff;
  opacity: 1;
  -webkit-box-shadow: 0 4px 15px rgba(169, 27, 71, 0.2);
          box-shadow: 0 4px 15px rgba(169, 27, 71, 0.2);
}

/**
 * クルーズ商品（tour）詳細ページ
 * single-tour.php に対応。現行サイトの商品ページ構成に合わせ、
 * トンマナは TOP モックアップ（$accent-color / $sub-accent-color 等）に準拠。
 */
.th-tour {
  color: #333;
}
.th-tour__inner {
  margin-inline: auto;
}
.th-tour__campaign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d4af37;
  border-radius: 0.5rem;
  background: #fff;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.th-tour__campaign:hover {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.th-tour__campaign-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  background: #d4af37;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.th-tour__campaign-title {
  font-weight: 700;
}
.th-tour__head {
  position: relative;
  padding: 2rem 0;
  margin-top: -4rem;
  margin-bottom: 2rem;
}
@media (max-width: 599px) {
  .th-tour__head {
    margin-top: -2rem;
    padding: 1rem 0;
  }
}
.th-tour__head::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  background-color: #f2eee5;
  z-index: -1;
}
.th-tour__subtitle {
  margin-bottom: 0.5rem;
  color: #a91b47;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 959px) {
  .th-tour__subtitle {
    font-size: 1rem;
  }
}
.th-tour__title {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 959px) {
  .th-tour__title {
    font-size: 1.4rem;
  }
}
.th-tour__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding: 0;
  list-style: none;
}
.th-tour__tag {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #a91b47;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.6;
}
.th-tour__gallery {
  margin-bottom: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.th-tour__gallery img {
  display: block;
}
.th-tour__gallery .swiper-button-prev,
.th-tour__gallery .swiper-button-next {
  color: #fff;
}
.th-tour__gallery .swiper-button-prev:after,
.th-tour__gallery .swiper-button-next:after {
  font-size: 1.2rem;
}
.th-tour__slide-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.th-tour__hero {
  margin-bottom: 4rem;
}
.th-tour__hero--split {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 781px) {
  .th-tour__hero--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.th-tour__hero-media {
  min-width: 0;
}
.th-tour__hero-cta {
  margin-top: 1rem;
}
.th-tour__hero-cta .c-btn {
  width: 100%;
}
.th-tour__hero-content {
  min-width: 0;
}
.th-tour__hero-content > *:first-child {
  margin-top: 0;
}
.th-tour__hero-content > *:last-child {
  margin-bottom: 0;
}
.th-tour__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4rem, 1fr));
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.th-tour__thumb {
  display: block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  background: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease, border-color 0.2s ease;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.th-tour__thumb:hover {
  opacity: 1;
}
.th-tour__thumb.is-active {
  opacity: 1;
  border-color: #a91b47;
}
.th-tour__thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.th-tour__anchornav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 599px) {
  .th-tour__anchornav {
    gap: 0.5rem;
  }
}
.th-tour__anchor {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 8rem;
  padding: 0.85rem 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 599px) {
  .th-tour__anchor {
    padding: 0.85rem 0;
    min-width: auto;
  }
}
.th-tour__anchor .th-tour__anchor-icon {
  margin-left: 0.6rem;
  font-size: 1.2em;
  color: #a91b47;
}
.th-tour__anchor:hover {
  color: #fff;
  background: #a91b47;
  border-color: #a91b47;
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
.th-tour__anchor:hover .th-tour__anchor-icon {
  color: #fff;
}
.th-tour__section {
  margin-bottom: 4rem;
  scroll-margin-top: 6rem;
}
.th-tour__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.th-tour__section-head .th-tour__hd {
  margin-bottom: 0;
}
.th-tour__hd {
  margin: 0 0 2rem;
}
.th-tour__hd--h3 {
  margin: 2.5rem 0 1.25rem;
}
.th-tour__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ddd;
}
.th-tour__table th,
.th-tour__table td {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .th-tour__table th,
  .th-tour__table td {
    font-size: 0.9rem;
  }
}
.th-tour__table th {
  width: 28%;
  background: #f2eee5;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .th-tour__table th {
    width: 34%;
    white-space: normal;
  }
}
.th-tour__table a {
  color: #a91b47;
  text-decoration: underline;
}
.th-tour__price {
  color: #a91b47;
  font-weight: 700;
  font-size: 1.1rem;
}
.th-tour__price-label {
  margin-left: 0.4rem;
  color: #666;
  font-size: 1rem;
  font-weight: 400;
}
.th-tour__cta {
  margin-top: 1.5rem;
  text-align: center;
}
.th-tour__cta--wide {
  margin: 0 0 3rem;
}
.th-tour__cta--wide .c-btn {
  min-width: 22rem;
  max-width: 100%;
}
@media (max-width: 599px) {
  .th-tour__cta--wide .c-btn {
    min-width: 0;
    width: 100%;
  }
}
.th-tour__itin-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #a91b47;
  border-radius: 999px;
  overflow: hidden;
}
.th-tour__itin-btn {
  padding: 0.45rem 1.1rem;
  border: none;
  background: #fff;
  color: #a91b47;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.th-tour__itin-btn.is-active {
  background: #a91b47;
  color: #fff;
}
.th-tour__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(169, 27, 71, 0.25);
  margin-left: 0.5rem;
}
.th-tour__tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem;
  padding: 0 2.4rem 1.5rem 1.5rem;
}
@media (max-width: 781px) {
  .th-tour__tl-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
.th-tour__tl-item::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.4rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #a91b47;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(169, 27, 71, 0.3);
          box-shadow: 0 0 0 1px rgba(169, 27, 71, 0.3);
}
.th-tour__tl-toggle {
  position: absolute;
  top: 0.05rem;
  right: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  padding: 0;
  border: 1px solid rgba(169, 27, 71, 0.45);
  border-radius: 50%;
  background: #fff;
  color: #a91b47;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.th-tour__tl-toggle:hover {
  background: #a91b47;
  color: #fff;
}
.th-tour__tl-toggle-minus {
  display: none;
}
.th-tour__tl-item.is-open .th-tour__tl-toggle-plus {
  display: none;
}
.th-tour__tl-item.is-open .th-tour__tl-toggle-minus {
  display: inline;
}
.th-tour__tl-marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.th-tour__tl-dayno {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a91b47;
  line-height: 1.2;
}
.th-tour__tl-dayunit {
  font-size: 1rem;
  margin-left: 0.1rem;
}
.th-tour__tl-date {
  font-size: 1rem;
  margin-top: 0.05em;
  color: #666;
}
.th-tour__tl-body {
  padding: 0.1rem 0;
}
.th-tour__tl-port {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.th-tour__tl-portname {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.th-tour__tl-modal {
  padding: 0.1rem 0.55rem;
  border: 1px solid #a91b47;
  border-radius: 999px;
  background: #fff;
  color: #a91b47;
  font-size: 0.85rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.th-tour__tl-modal:hover {
  background: #a91b47;
  color: #fff;
}
.th-tour__tl-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 1rem;
}
.th-tour__tl-tag {
  position: relative;
}
.th-tour__tl-detail {
  display: none;
  gap: 0.85rem;
  margin-top: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: #fdfbf8;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
}
@media (max-width: 959px) {
  .th-tour__tl-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
.th-tour__tl-item.is-open .th-tour__tl-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.th-tour__tl-figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14rem;
  max-width: 40%;
  margin: 0;
}
@media (max-width: 959px) {
  .th-tour__tl-figure {
    width: 100%;
    max-width: 100%;
  }
}
.th-tour__tl-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}
.th-tour__tl-note {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}
.th-tour__itin-note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.th-tour__portmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
}
.th-tour__portmodal[hidden] {
  display: none;
}
.th-tour__portmodal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.th-tour__portmodal-inner {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}
.th-tour__portmodal-box {
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.th-tour__portmodal-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.th-tour__portmodal-close:hover {
  opacity: 1;
}
.th-tour__portmodal-img {
  margin-bottom: 1rem;
}
.th-tour__portmodal-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  margin: 0 auto;
  border-radius: 0.4rem;
}
.th-tour__portmodal-name {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}
.th-tour__portmodal-summary {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.th-tour__portmodal-summary[hidden] {
  display: none;
}
.th-tour__cabinmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
}
.th-tour__cabinmodal[hidden] {
  display: none;
}
.th-tour__cabinmodal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.th-tour__cabinmodal-inner {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
}
.th-tour__cabinmodal-box {
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.th-tour__cabinmodal-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.th-tour__cabinmodal-close:hover {
  opacity: 1;
}
.th-tour__cabinmodal-img {
  margin-bottom: 1rem;
}
.th-tour__cabinmodal-img[hidden] {
  display: none;
}
.th-tour__cabinmodal-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  margin: 0 auto;
  border-radius: 0.4rem;
}
.th-tour__cabinmodal-name {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}
.th-tour__cabinmodal-size {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #666;
}
.th-tour__cabinmodal-size[hidden] {
  display: none;
}
.th-tour__cabinmodal-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.th-tour__cabinmodal-list[hidden] {
  display: none;
}
.th-tour__cabinmodal-list li {
  margin-bottom: 0.25rem;
}
.th-tour__cabins {
  display: grid;
  gap: 1rem;
}
.th-tour__cabin {
  display: grid;
  grid-template-columns: 15rem 1fr auto;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem 1rem 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
}
@media (max-width: 959px) {
  .th-tour__cabin {
    grid-template-columns: 12rem 1fr;
    padding: 1rem;
  }
}
@media (max-width: 599px) {
  .th-tour__cabin {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.th-tour__cabin--noimg {
  grid-template-columns: 1fr auto;
}
@media (max-width: 599px) {
  .th-tour__cabin--noimg {
    grid-template-columns: 1fr;
  }
}
.th-tour__cabin-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
}
@media (max-width: 599px) {
  .th-tour__cabin-img img {
    aspect-ratio: 16/9;
  }
}
.th-tour__cabin-img--btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.4rem;
}
.th-tour__cabin-img--btn img {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.th-tour__cabin-img--btn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.th-tour__cabin-zoom {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.9rem;
  pointer-events: none;
}
.th-tour__cabin-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.25rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.th-tour__cabin-size {
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
}
.th-tour__cabin-list {
  margin: 0.6rem 0 0;
  padding-left: 0.5rem;
}
.th-tour__cabin-list li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #333;
}
.th-tour__cabin-price {
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .th-tour__cabin-price {
    grid-column: 1/-1;
    text-align: right;
    border-top: 1px dashed #ddd;
    padding-top: 0.6rem;
  }
}
@media (max-width: 781px) {
  .th-tour__cabin-price {
    text-align: left;
  }
}
.th-tour__cabin-price-num {
  color: #a91b47;
  font-weight: 700;
  font-size: 1.4rem;
}
.th-tour__cabin-price-suf {
  color: #a91b47;
  font-size: 0.95rem;
}
.th-tour__price-note {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}
.th-tour__price-note p {
  margin: 0 0 0.85rem;
}
.th-tour__price-note p:last-child {
  margin-bottom: 0;
}
.th-tour__price-note strong {
  display: inline-block;
  margin-top: 0.35rem;
  color: #333;
  font-size: 0.95rem;
}
.th-tour__price-note ul,
.th-tour__price-note ol {
  margin: 0 0 0.85rem 1.25rem;
}
.th-tour__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 781px) {
  .th-tour__videos {
    grid-template-columns: 1fr;
  }
}
.th-tour__video {
  margin: 0;
}
.th-tour__video-head {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}
.th-tour__video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #333;
}
.th-tour__video-frame iframe,
.th-tour__video-frame video,
.th-tour__video-frame embed,
.th-tour__video-frame object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.th-tour__video-fallback {
  margin: 0;
}
.th-tour__video-fallback a {
  color: #a91b47;
  text-decoration: underline;
}
.th-tour__ship-info {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
}
@media (max-width: 781px) {
  .th-tour__ship-info {
    grid-template-columns: 1fr;
  }
}
.th-tour__ship-info--noimg {
  grid-template-columns: 1fr;
}
.th-tour__ship-img {
  display: block;
  overflow: hidden;
  border-radius: 0.4rem;
}
.th-tour__ship-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 781px) {
  .th-tour__ship-img img {
    aspect-ratio: 16/9;
  }
}
.th-tour__ship-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.th-tour__ship-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.th-tour__ship-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.th-tour__related-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 959px) {
  .th-tour__related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .th-tour__related-list {
    gap: 0.5rem;
  }
}
.th-tour__related-item {
  display: block;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #333;
}
.th-tour__form-iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 2200px;
  border: 0;
}
@media (max-width: 599px) {
  .th-tour__form-iframe {
    height: 2600px;
  }
}

/**
 * クルーズ商品カード（card-tour.php）
 * 逆引き一覧・アーカイブ・関連表示で共通利用。
 */
.c-tourcard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-tourcard:hover {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.c-tourcard__thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: #f2eee5;
  overflow: hidden;
}
.c-tourcard__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-tourcard__noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: #f2eee5;
}
.c-tourcard__format {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #a91b47;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.c-tourcard__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem 1rem;
}
@media (max-width: 599px) {
  .c-tourcard__body {
    padding: 0.5rem 0.5rem 0.6rem;
  }
}
.c-tourcard__ship {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a91b47;
}
.c-tourcard__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .c-tourcard__title {
    font-size: 0.9rem;
  }
}
.c-tourcard__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  font-size: 0.85rem;
  color: #666;
}
@media (max-width: 599px) {
  .c-tourcard__meta {
    font-size: 0.8rem;
  }
}
.c-tourcard__price {
  margin-top: 0.15rem;
  color: #a91b47;
  font-weight: 700;
  font-size: 1.1rem;
}

.l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-left: 1.5rem;
  line-height: 1.4;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.l-header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #a91b47;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.l-header__phone i {
  font-size: 0.9rem;
  opacity: 0.8;
}
.l-header__phone:hover {
  text-decoration: none;
  opacity: 0.85;
}
.l-header__hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  opacity: 0.75;
  font-size: 0.95rem;
}
.l-header__inner {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  .l-header__inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 3.5rem;
  }
}
.l-header__logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: auto;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}
.l-header__logo .c-catchphrase {
  margin-top: 0 !important;
  font-size: 0.85rem !important;
  font-weight: 500;
}
@media (max-width: 959px) {
  .l-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
  }
  .l-header__logo img {
    height: 2.25rem;
    width: auto;
  }
}
.l-header__gnav {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin-left: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.6rem, 4.5vw - 34px, 1.5rem);
  padding: 0.8rem;
  position: relative;
}
.l-header__gnav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  margin: 0 calc(50% - 50vw);
  background-color: rgba(51, 51, 51, 0.08);
}
.l-header__gnav .c-gnav {
  width: auto;
}
.l-header__gnav .c-gnav > .menu-item > .sub-menu {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.l-header__gnav .c-gnav .menu-item a .ttl {
  font-size: clamp(0.8rem, 0.5vw + 8px, 0.9rem);
  font-weight: 500;
}
.l-header__gnav .c-gnav .th-gnav-caret {
  margin-left: 0.6em;
  font-size: 0.8em;
  vertical-align: middle;
  opacity: 0.6;
}
.l-header__gnav .c-gnav .sub-menu {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.l-header__gnav .c-gnav .sub-menu a:hover {
  color: #a91b47;
  background-color: rgba(169, 27, 71, 0.08);
}
.l-header__gnav .l-header__cta .c-btn {
  font-size: clamp(0.72rem, 0.4vw + 7.5px, 0.8rem);
  padding: 0.55em 1.1em;
}
@media (max-width: 959px) {
  .l-header__gnav {
    display: none;
  }
}
.l-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (max-width: 959px) {
  .l-header__spCta {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    margin-left: auto;
    padding-right: 0.8rem;
  }
}
@media (max-width: 959px) {
  .l-header .l-header__menuBtn {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media (max-width: 959px) {
  .l-header .l-header__customBtn {
    display: none;
  }
}

#fix_header .l-fixHeader__inner {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 959px) {
  #fix_header .l-fixHeader__inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#fix_header .l-fixHeader__logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#fix_header .l-fixHeader__logo .c-catchphrase {
  margin-top: 0;
  font-size: 0.85rem;
  font-weight: 500;
}
#fix_header .l-header__contact {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#fix_header .l-fixHeader__gnav {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin-left: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.6rem, 4.5vw - 34px, 1.5rem);
  padding: 0.8rem;
  position: relative;
}
#fix_header .l-fixHeader__gnav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  margin: 0 calc(50% - 50vw);
  background-color: rgba(51, 51, 51, 0.08);
}
#fix_header .l-fixHeader__gnav .c-gnav {
  width: auto;
}
#fix_header .l-fixHeader__gnav .c-gnav > .menu-item > .sub-menu {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
#fix_header .l-fixHeader__gnav .c-gnav .menu-item a .ttl {
  font-size: clamp(0.8rem, 0.5vw + 8px, 0.9rem);
  font-weight: 500;
}
#fix_header .l-fixHeader__gnav .c-gnav .th-gnav-caret {
  margin-left: 0.6em;
  font-size: 0.8em;
  vertical-align: middle;
  opacity: 0.6;
}
#fix_header .l-fixHeader__gnav .c-gnav .sub-menu {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
#fix_header .l-fixHeader__gnav .c-gnav .sub-menu a:hover {
  color: #a91b47;
  background-color: rgba(169, 27, 71, 0.08);
}
#fix_header .l-fixHeader__gnav .l-header__cta .c-btn {
  font-size: clamp(0.72rem, 0.4vw + 7.5px, 0.8rem);
  padding: 0.55em 1.1em;
}
@media (max-width: 959px) {
  #fix_header .l-fixHeader__gnav {
    display: none;
  }
}

.p-spMenu .c-widget__title {
  display: none;
}
.p-spMenu .p-spMenu__nav {
  margin-top: 0.5rem;
}
.p-spMenu .c-spnav a {
  padding: 1rem 1.25rem;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
}
.p-spMenu .c-spnav a:hover {
  color: #a91b47;
  background-color: #f2eee5;
}
.p-spMenu .c-spnav .sub-menu a {
  padding-left: 2.25rem;
  background-color: #f2eee5;
  font-size: 1rem;
  font-weight: 500;
}
.p-spMenu .c-submenuToggleBtn::after {
  display: none;
}
.p-spMenu .th-spnav-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem 1.25rem;
}
.p-spMenu .th-spnav-cta .c-btn {
  width: 100%;
  font-size: 1.1rem;
}
.p-spMenu .th-spnav-cta .c-btn--outline {
  color: #a91b47;
}
.p-spMenu .th-spnav-cta .c-btn--outline:hover {
  color: #fff;
}
.p-spMenu .th-spnav-cta .c-btn--primary {
  color: #fff;
}
.p-spMenu .th-spnav-cta .c-btn--primary:hover {
  color: #fff;
}

#footer.l-footer {
  padding: 0;
}
#footer.l-footer .l-footer__company,
#footer.l-footer .l-footer__contactTitle,
#footer.l-footer .l-footer__phone,
#footer.l-footer .l-footer__linkLabel {
  color: #a91b47;
}
#footer.l-footer .l-footer__contactTag {
  color: #d4af37;
}
#footer.l-footer .l-footer__linkList a {
  color: #666;
}
#footer.l-footer .l-footer__linkList a:hover {
  color: #a91b47;
}
#footer.l-footer .l-footer__snsLink {
  color: #a91b47;
}
#footer.l-footer .l-footer__snsLink:hover {
  color: #fff;
}
#footer.l-footer .c-btn--outline {
  color: #a91b47;
}
#footer.l-footer .c-btn--outline:hover {
  color: #fff;
}
#footer.l-footer .c-btn--primary {
  color: #fff;
}

.l-footer__inner {
  padding-top: 0;
  padding-bottom: 1rem;
}
.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 959px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.l-footer__brand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__logo img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 0.5rem;
}
@media (max-width: 599px) {
  .l-footer__logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
}
.l-footer__company {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #a91b47;
}
@media (max-width: 599px) {
  .l-footer__company {
    text-align: center;
    font-size: 1.25rem;
  }
}
.l-footer__address {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 599px) {
  .l-footer__address {
    text-align: center;
  }
}
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 599px) {
  .l-footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__snsLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #a91b47;
  border-radius: 50%;
  color: #a91b47;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.l-footer__snsLink:hover {
  background-color: #a91b47;
  color: #fff;
}
.l-footer__contact {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35rem;
          flex: 0 1 35rem;
  padding: 2.5rem;
  background-color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
@media (max-width: 599px) {
  .l-footer__contact {
    text-align: center;
  }
}
@media (max-width: 959px) {
  .l-footer__contact {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    padding: 1.5rem;
  }
}
.l-footer__contact:hover {
  border-color: #d4af37;
  -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
          box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}
.l-footer__contactTag {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.l-footer__contactTitle {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a91b47;
}
.l-footer__contactBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.l-footer__contactMain {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
}
.l-footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #a91b47;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 599px) {
  .l-footer__phone {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
  color: #666;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .l-footer__hours {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__hours svg {
    margin-top: 0.3em;
  }
}
.l-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 781px) {
  .l-footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__btns .c-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .l-footer__btns .c-btn {
    font-size: 1.1rem;
  }
}
.l-footer__divider {
  height: 0;
  border: none;
  border-top: 1px solid #eee;
  margin: 0 0 2.5rem;
}
.l-footer__linkRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
}
.l-footer__linkRow:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}
@media (max-width: 781px) {
  .l-footer__linkRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
@media (max-width: 599px) {
  .l-footer__linkRow {
    padding: 1.5rem 0;
  }
}
.l-footer__linkLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10rem;
  font-size: 1rem;
  font-weight: 700;
  color: #a91b47;
}
@media (max-width: 599px) {
  .l-footer__linkLabel {
    font-size: 1.2rem;
  }
}
@media (max-width: 781px) {
  .l-footer__linkLabel {
    width: auto;
  }
}
.l-footer__linkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
}
.l-footer__linkList a {
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
@media (max-width: 599px) {
  .l-footer__linkList a {
    font-size: 1rem;
  }
}
.l-footer__linkList a:hover {
  color: #a91b47;
  text-decoration: underline;
}
.l-footer__linkList a:not(:last-child)::after {
  content: "|";
  margin: 0 0.9rem;
  color: #ccc;
  font-weight: 300;
}
@media (max-width: 781px) {
  .l-footer__linkList a:not(:last-child)::after {
    margin: 0 0.5rem;
  }
}
.l-footer__bottom {
  padding: 1.875rem 0;
  border-top: 1px solid #eee;
  text-align: center;
  color: #666;
  background-color: #fdfbf8;
}
.l-footer__legal {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}
.l-footer__copy {
  margin: 0;
  font-size: 0.8rem;
}
/*# sourceMappingURL=style.css.map */