@charset "UTF-8";
/* Color Palette */
/* Padding */
/* Header Space */
/* Wrap */
/* Padding */
/*-----------
Root
-------------*/
:root {
  --large: 8rem;
  --medium: 5rem;
  --small: 2rem;
  --section-padding: 8rem 0;
  --transition: all 0.3s ease;
  --gutter: calc((100vw - 90vw) / 2);
}

@media screen and (max-width: 1412px) {
  :root {
    --large: 6rem;
    --medium: 4rem;
    --small: 1.5rem;
    --section-padding: 6rem 0;
  }
}
@media screen and (max-width: 880px) {
  :root {
    --large: 5rem;
    --medium: 3rem;
    --small: 1.5rem;
    --section-padding: 5rem 0;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem;
    --section-padding: 3rem 0;
  }
}
:root {
  --font-size-large: clamp(20px, 7vw, 52px);
  --font-size-medium: clamp(16px, 4.6vw, 28px);
  --font-size-small: 0.75rem;
  --line-height-default: 1.7;
  --border-radius-default: 10px;
  --large: 8rem;
  --medium: 3rem;
  --small: 2rem;
  --shadow-card: 5px 5px 20px 1px rgba(0, 0, 0, .3);
  --shadow-button: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  :root {
    --font-size-large: clamp(20px, 5.5vw, 40px);
    --font-size-default: 15px;
    --line-height-default: 1.6;
    --large: 4rem;
    --medium: 2rem;
    --small: 1.5rem;
    --border-radius-default: 5px;
  }
}
.section-padding {
  padding: var(--medium) 0;
}

/* ------------------
LINEフローティングバナー
------------------*/
.floating-bnr {
  position: fixed;
  z-index: 999;
  bottom: 1rem;
  right: 1rem;
  display: flex;
}
@media (max-width: 880px) {
  .floating-bnr {
    width: 100%;
    right: auto;
    left: 50%;
    display: flex;
    padding: 0 1rem;
    box-sizing: border-box;
    justify-content: space-between;
    transform: translateX(-50%);
    bottom: 0;
  }
}
.floating-bnr a {
  width: 252px;
  display: flex;
  align-items: center;
  padding: 1.6rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 1rem;
  font-size: clamp(10px, 3vw, 16px);
}
@media (max-width: 880px) {
  .floating-bnr a {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .floating-bnr a {
    padding: 2.4vw;
  }
}
.floating-bnr a img {
  width: 60px;
  height: auto;
  margin: 0 1rem 0 0;
}
@media (max-width: 640px) {
  .floating-bnr a img {
    width: 40px;
  }
}
.floating-bnr a img.present {
  transform: scale(0.8);
}
.floating-bnr a.bg-white {
  margin-right: 1rem;
  color: #000;
}
@media (max-width: 880px) {
  .floating-bnr a.bg-white {
    font-feature-settings: "palt";
  }
}
.floating-bnr a.bg-united-blue {
  color: #ffffff;
  border: solid 1px;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .floating-bnr {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
  }
}
.floating-bnr p {
  font-weight: 600;
}
.floating-bnr p:first-child {
  margin: 0 0 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 880px) {
  .floating-bnr p:first-child {
    color: #ffffff;
  }
}
.floating-bnr__box {
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5ad28c;
  border-radius: 4px;
  box-sizing: border-box;
}
@media (max-width: 880px) {
  .floating-bnr__box {
    padding: 0;
  }
}
.floating-bnr__box p {
  margin: 0 0 0 2rem;
}
@media (max-width: 880px) {
  .floating-bnr__box p {
    margin: 2rem;
  }
}
@media (max-width: 640px) {
  .floating-bnr__box p {
    width: 100%;
    text-align: center;
    margin: 1rem;
    font-size: clamp(13px, 4vw, 16px);
  }
}
.floating-bnr__box #qr {
  width: 80px;
  height: 80px;
}
.floating-bnr__box #icon {
  padding: 1.6rem;
  background: #ffffff;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 640px) {
  .floating-bnr__box #icon {
    padding: 1rem;
  }
}
.floating-bnr__box #icon img {
  width: 40px;
  height: 40px;
}

/* ------------------
MAIN VISUAL 
------------------*/
.mv {
  width: 100%;
  height: calc(100vh - 8rem);
  min-height: 680px;
  position: relative;
  overflow: hidden;
}
.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.mv__bar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  transform-origin: right center;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv__bar--primary {
  background: var(--bar-primary-color);
  z-index: 1;
}
.mv__bar--secondary {
  background: var(--bar-secondary-color);
  z-index: 2;
  transition-delay: 0.15s;
}
.mv.is-active .mv__bar--primary {
  width: var(--bar-primary-width);
}
.mv.is-active .mv__bar--secondary {
  width: var(--bar-secondary-width);
}
@media (max-width: 640px) {
  .mv {
    min-height: auto;
    height: 109vw;
  }
}
.mv .ttl {
  position: absolute;
  top: calc(50% + 45px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeInTtl 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@media (max-width: 640px) {
  .mv .ttl {
    top: auto;
    bottom: 2rem;
    left: 2%;
    transform: none;
  }
}
.mv .ttl h1 {
  margin: 0 0 2rem;
  font-weight: 500;
  text-align: left;
  font-size: clamp(60px, 18vw, 170px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.mv .ttl p {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-left: 0.75%;
}
.mv video {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv .news-bnr {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  right: 5%;
  text-decoration: none;
  background: #ffdc8c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  color: #000;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: 0.5s slideIn 1s ease-in-out forwards;
}
@media (max-width: 880px) {
  .mv .news-bnr {
    width: 90%;
    max-width: 388px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    animation: none;
    opacity: 1;
  }
}
.mv .news-bnr__img {
  width: 140px;
}
@media (max-width: 640px) {
  .mv .news-bnr__img {
    width: 30%;
  }
}
.mv .news-bnr__img img {
  border-radius: 4px 0 0 4px;
}
.mv .news-bnr__txt {
  margin: 0 4rem 0 2rem;
  font-weight: 600;
  font-feature-settings: "palt";
  font-size: clamp(12px, 4vw, 16px);
}
.mv .news-bnr__txt span {
  font-weight: normal;
  font-size: 80%;
}
@media (max-width: 640px) {
  .mv .news-bnr__txt {
    margin: 0 4vw;
  }
}
.mv .news-bnr:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  font-size: 80%;
}
.mv .news-bnr__catch {
  position: absolute;
  top: -2px;
  left: -2px;
}

@keyframes fadeInTtl {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------
INTRODUCTION
------------------*/
.intro {
  padding: 10rem 0;
}
@media (max-width: 640px) {
  .intro {
    padding: 3rem 0;
  }
}
.intro .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.intro__txt {
  width: 50%;
  font-weight: 500;
  color: #ffffff;
}
.intro__txt h2 {
  line-height: 2;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  font-size: var(--font-size-medium);
}
.intro__txt p {
  margin: 2rem 0;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .intro__txt p {
    letter-spacing: 0.04em;
  }
}
@media (max-width: 880px) {
  .intro__txt {
    width: 100%;
  }
}
.intro__txt-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.intro__txt-btn a {
  margin: 1rem;
  width: calc(50% - 2rem);
  padding: 1.4rem 3rem;
}
@media (max-width: 640px) {
  .intro__txt-btn a {
    width: 100%;
  }
}
.intro__img {
  width: 40%;
}
@media (max-width: 880px) {
  .intro__img {
    margin: var(--medium) 0 0;
    width: 100%;
  }
  .intro__img img {
    height: 50vw;
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ------------------
Loop swiper
------------------*/
.swiper-loop-wrapper {
  position: relative;
  padding: 1rem 0;
}
.swiper-loop-wrapper .wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 100%;
}
@media (max-width: 880px) {
  .swiper-loop-wrapper .wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
  }
}
.swiper-loop-wrapper__ttl-block {
  width: 40%;
  min-width: 450px;
  padding: var(--medium);
  margin: auto;
  background: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 880px) {
  .swiper-loop-wrapper__ttl-block {
    width: 100%;
    min-width: 100%;
  }
}
.swiper-loop-wrapper__ttl-block h2 {
  font-size: var(--font-size-large);
  margin: 2rem 0;
}
@media (max-width: 640px) {
  .swiper-loop-wrapper__ttl-block .icon {
    width: 40px;
    height: auto;
  }
}

.swiper-loop,
.swiper-loop-reverse {
  overflow: hidden;
}
.swiper-loop .swiper-wrapper,
.swiper-loop-reverse .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-loop .swiper-wrapper .swiper-slide,
.swiper-loop-reverse .swiper-wrapper .swiper-slide {
  width: auto;
  height: 100%;
  max-height: 600px;
}
@media (max-width: 880px) {
  .swiper-loop .swiper-wrapper .swiper-slide,
  .swiper-loop-reverse .swiper-wrapper .swiper-slide {
    max-height: 200px;
  }
}
.swiper-loop .swiper-wrapper .swiper-slide img,
.swiper-loop-reverse .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 600px;
}
@media (max-width: 880px) {
  .swiper-loop .swiper-wrapper .swiper-slide img,
  .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
    max-height: 200px;
  }
}

/* ------------------
Reasons
------------------*/
.reasons.flexbox {
  align-items: normal;
}
.reasons__img .max-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reasons__txt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons__txt-wrapper {
  padding: var(--large) var(--medium);
}
.reasons__txt-wrapper h2 {
  line-height: 1;
  font-size: var(--font-size-large);
}
.reasons__txt-wrapper h2 + p {
  margin: var(--small) 0;
  font-size: var(--font-size-medium);
  letter-spacing: 0.1em;
}
.reasons__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 400px) {
  .reasons__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reasons__list li h3 {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 3vw, 22px);
  letter-spacing: 0.1em;
}
.reasons__list li h3 .icon {
  margin-right: 10px;
  width: 50px;
  height: 50px;
}
@media (max-width: 640px) {
  .reasons__list li h3 .icon {
    width: 30px;
    height: 30px;
  }
}
.reasons__list li h3 + p {
  margin-left: 60px;
}
@media (max-width: 640px) {
  .reasons__list li h3 + p {
    margin-left: 40px;
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* ------------------
Section header
------------------*/
.section-header {
  position: relative;
  display: flex;
  height: 600px;
}
@media (max-width: 640px) {
  .section-header {
    height: 70vw;
  }
}
.section-header.row-reverse {
  flex-direction: row-reverse;
}
.section-header.row-reverse .section-header__bar {
  left: auto;
  right: 0;
  transform-origin: right;
}
.section-header.row-reverse .section-header__txt {
  margin-left: 10vw;
  margin-right: 15vw;
}
@media (max-width: 640px) {
  .section-header.row-reverse .section-header__txt {
    margin-right: 13vw;
    margin-left: 4vw;
  }
}
.section-header.row-reverse.subpage {
  height: 800px;
}
@media (max-width: 640px) {
  .section-header.row-reverse.subpage {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    height: auto;
    margin-bottom: 14vw;
  }
}
@media (max-width: 640px) {
  .section-header.row-reverse.subpage .section-header__bar {
    top: 100%;
    width: 100% !important;
    transform-origin: left;
  }
  .section-header.row-reverse.subpage .section-header__bar.section-header__bar--primary {
    display: none;
  }
  .section-header.row-reverse.subpage .section-header__bar.section-header__bar--secondary {
    height: var(--bar-secondary-width);
  }
  .section-header.row-reverse.subpage .section-header__bar.section-header__bar--tertiary {
    height: var(--bar-tertiary-width);
    top: calc(100% + 10vw);
  }
}
.section-header.row-reverse.subpage .section-header__txt {
  padding-top: 90px;
  margin-left: 4vw;
  margin-right: 16vw;
}
@media (max-width: 640px) {
  .section-header.row-reverse.subpage .section-header__txt {
    padding: 2rem 0 0;
    margin: 0 4vw;
  }
}
@media (max-width: 640px) {
  .section-header.row-reverse.subpage .section-header__media {
    width: 100%;
    height: 80vw;
  }
}
.section-header.row-reverse.subpage .section-header__media .max-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .section-header.row-reverse.subpage .section-header__content {
    width: 100%;
  }
}
.section-header__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.section-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
}
.section-header__bar--primary {
  background: var(--bar-primary-color);
  width: var(--bar-primary-width);
  z-index: 0;
}
.section-header__bar--secondary {
  background: var(--bar-secondary-color);
  width: var(--bar-secondary-width);
  z-index: 1;
}
.section-header__bar--tertiary {
  background: var(--bar-tertiary-color);
  width: var(--bar-tertiary-width);
  z-index: 2;
}
.section-header__content {
  position: relative;
  z-index: 2;
  width: 50%;
  color: #fff;
  display: flex;
  align-items: center;
}
.section-header__txt {
  opacity: 0;
  transform: translateY(20px);
  margin-left: 15vw;
  margin-right: 2vw;
}
@media (max-width: 640px) {
  .section-header__txt {
    font-feature-settings: "palt";
  }
}
.section-header__txt h1, .section-header__txt h2 {
  font-size: var(--font-size-large);
  line-height: 1.4;
}
.section-header__txt h1 span, .section-header__txt h2 span {
  font-size: 90%;
}
.section-header__txt h1 + p, .section-header__txt h2 + p {
  margin: 2rem 0;
}
.section-header__media {
  width: 50%;
  position: relative;
  z-index: 2;
}
.section-header__media p.credit {
  position: absolute;
  z-index: 3;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  bottom: 5px;
  right: 5px;
  line-height: 1;
  width: calc(100% - 10px);
}
.section-header__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-header--active .section-header__bar--primary {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.section-header--active .section-header__bar--secondary {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.section-header--active .section-header__bar--tertiary {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.section-header--active .section-header__txt {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

#golf {
  background: url(../img/top/pic_golf_01.jpg) no-repeat center/cover;
}
@media (max-width: 640px) {
  #golf {
    background: url(../img/top/pic_golf_01_sp.jpg) no-repeat center/cover;
  }
}
#golf.row-reverse {
  flex-direction: unset;
}

/* ------------------
Schedule
------------------*/
.flight-schedule__wrapper {
  background: #051464;
  color: #fff;
  padding-bottom: var(--large);
}

.schedule {
  max-width: 1080px;
  margin: auto;
}
.schedule table {
  background: #fff;
  color: #000;
}

/* ------------------
Hotel
------------------*/
.offer-wrapper {
  padding: var(--large) 0;
}
.offer-wrapper__ttl {
  font-size: clamp(18px, 8vw, 40px);
}
.offer-wrapper__ttl + p {
  font-size: clamp(16px, 4vw, 22px);
  margin-bottom: var(--medium);
}

.offer-card-wrapper {
  padding: 0;
  justify-content: center;
}

.modal-content {
  padding: var(--medium);
}
.modal-content__ttl {
  font-size: 18px;
  font-weight: 600;
}
.modal-content ul {
  margin: var(--small);
}

/* ------------------
Sub page
------------------*/
.contents .bg-rhapsodyblue {
  background: #051464;
  color: #fff;
}
.contents .bg-rhapsodyblue a {
  color: #ffffff;
  text-decoration: underline;
}
.contents__intro {
  display: flex;
  align-items: center;
  width: 100%;
  height: 61vw;
  max-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 640px) {
  .contents__intro {
    background-position: -45vw center;
  }
}
.contents__intro__txt {
  width: 90%;
  margin: auto;
  max-width: 1380px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.contents__intro__txt h2 {
  text-align: left;
  letter-spacing: 0;
  font-feature-settings: "palt";
  font-size: 60px;
}
.contents__intro__txt h2 span {
  padding: 0 0.25em 0 0;
  letter-spacing: -0.3em;
}
.contents__intro__txt h2 p {
  line-height: 1.2;
}
.contents__intro__txt h2 p:first-child {
  margin: 2rem 0;
}
@media (max-width: 640px) {
  .contents__intro__txt h2 p:first-child {
    font-size: 8vw;
  }
}
.contents__intro__txt h2 p:last-child {
  font-size: 26px;
}
@media (max-width: 640px) {
  .contents__intro__txt h2 p:last-child {
    font-size: 4.6vw;
  }
}
.contents__intro__txt--copy {
  font-weight: normal;
  margin: 2rem 0 0;
  font-size: 12px;
}
.contents__intro__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.contents__intro__video video {
  width: 100%;
  height: 61vw;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents__body {
  width: 90%;
  margin: auto;
  padding: 4rem 0;
  max-width: 1380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contents__body:nth-child(even) {
  flex-direction: row-reverse;
}
.contents__body__img {
  width: calc(50% - 30px);
}
@media (max-width: 640px) {
  .contents__body__img {
    width: 100%;
  }
}
.contents__body__img video {
  width: 100%;
  height: auto;
}
.contents__body__img video + p {
  margin: 0.5rem 0 0;
  font-size: 12px;
}
.contents__body__img--2rows {
  display: flex;
  justify-content: space-between;
}
.contents__body__img--2rows div:first-child {
  margin: 0 0.75rem 0 0;
}
.contents__body__img--2rows div:last-child {
  margin: 0 0 0 0.75rem;
}
.contents__body__img--2rows--video {
  display: flex;
  justify-content: space-between;
}
.contents__body__img--2rows--video div:first-child {
  width: 56%;
}
.contents__body__img--2rows--video div:first-child video {
  width: 100%;
  height: auto;
}
.contents__body__img--2rows--video div:last-child {
  width: 39%;
}
.contents__body__img img {
  width: 100%;
  height: auto;
}
.contents__body__img img + p {
  margin: 0.5rem 0 0;
  font-size: 12px;
}
.contents__body__txt {
  width: calc(50% - 30px);
}
@media (max-width: 640px) {
  .contents__body__txt {
    width: 100%;
  }
}
.contents__body__txt h3 {
  margin: 0 0 2rem;
  text-align: left;
  font-size: 26px;
}
@media (max-width: 640px) {
  .contents__body__txt h3 {
    margin: 2rem 0;
  }
}
.contents__body__txt h3 p {
  display: inline-block;
  margin: 0.5rem 0;
  line-height: 1;
}
@media (max-width: 640px) {
  .contents__body__txt h3 p {
    font-size: 5vw;
  }
}

.tag {
  color: #ffffff;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: solid 1px #ffffff;
  display: inline-block;
  border-radius: 2rem;
}
.tag:first-child {
  margin: 0 0.5rem 0 0;
}

.tag-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--medium);
  flex-wrap: wrap;
}
.tag-list a {
  color: #1414d2;
  border: solid 1px #1414d2;
}

/* ------------------
Golf page
------------------*/
.info-table {
  background: #f7f4f2;
  width: 100%;
  font-size: 12px;
}
.info-table a {
  text-decoration: underline;
}
.info-table tr {
  border-bottom: solid 1px #d7d7d4;
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr td {
  padding: 1rem;
}
.info-table__wrapper {
  margin-top: 2rem;
}
.info-table__wrapper .en-name {
  font-weight: 600;
}
.info-table__wrapper .ja-name {
  font-size: 12px;
  margin-bottom: 1rem;
}

.bg-dark-blue a {
  color: #fff;
}
.bg-dark-blue .info-table {
  background: rgba(255, 255, 255, 0.1);
}
.bg-dark-blue .info-table tr {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.bg-dark-blue .info-table tr:last-child {
  border-bottom: none;
}/*# sourceMappingURL=layout.css.map */