@charset "UTF-8";

/* ナビゲーションメニュー
---------------------------------- */
.g-nav__item--booking {
  margin-left: 5%;
  background: #fff;
  color: #EF5A57;
  border-radius: 60px 0 0 60px;
}

@media screen and (max-width: 767px) {
  .g-nav__item--booking {
    margin-left: 0;
    background: #fff;
    color: #EF5A57;
    border-radius: 60px;
  }
}

/* 記事
---------------------------------- */
.article {
  min-height: 75rem;
}

@media screen and (max-width: 767px) {
  .article {
    min-height: 36rem;
  }
}

.article__button-booking {
  background: #FF6468;
  position: relative;
  margin-bottom: 4rem;
}

.article__button-booking::after {
  content: '';
  position: absolute;
  right: 8rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .article__button-booking::after {
    right: 4rem;
    width: 1rem;
    height: 1rem;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
  }
}

.article__figure {
  text-align: center;
}

.article__figure img {
  max-width: 20%;
}

@media screen and (max-width: 767px) {
  .article__figure img {
    margin-bottom: 1rem;
  }
}