@charset "UTF-8";

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

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

/* 記事
---------------------------------- */
.guest-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 4rem;
  margin-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .guest-list {
    flex-direction: column;
  }
}

.guest-list__item {
  width: calc((100% - 2rem) / 2);
}

@media screen and (max-width: 767px) {
  .guest-list__item {
    width: initial;
  }
}

.guest-list__item img {
  aspect-ratio: 1000 / 1200;
  object-fit: contain;
}

.article__img {
  text-align: center;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .article__img {
    margin-bottom: 2rem;
  }
}

.article__img img {
  width: 100%;
}

.article__subtitle {
  color: #FF5588;
  font-size: 3rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .article__subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.article__subtitle--line {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.article__subtitle--line::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #333;
}

h4 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 1.7rem;
  }
}

dl {
  font-size: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  dl {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

dt {
  margin-bottom: 1rem;
}

dd {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  dd {
    margin-bottom: 2rem;
  }
}

.article__text {
  font-size: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .article__text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

.article__text span {
  color: #FF5588;
  text-decoration: underline;
}

.article__subtitle-booking {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.article__subtitle-booking::before,
.article__subtitle-booking::after {
  content: '';
  display: inline-block;
  width: 10rem;
  height: 1px;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .article__subtitle-booking::before,
  .article__subtitle-booking::after {
    width: 5rem;
  }
}

.article__list {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  margin-left: 2rem;
  list-style: disc inside;
}

@media screen and (max-width: 767px) {
  .article__list {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
    list-style: disc inside;
  }
}

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

.article__figure {
  text-align: center;
}

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

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

.article__btn-list {
  padding: 8rem 0;
}

@media screen and (max-width: 767px) {
  .article__btn-list {
    padding: 4rem 0;
  }
}

.article__btn-item {
  margin-bottom: 4rem;
}

.article__btn-item:last-child {
  margin-bottom: 0;
}

.article__button-blog {
  background: #3b5998;
}

.article__button-blog .bi-star {
  margin-right: 1rem;
}

.article__button-twitter {
  background: #1da1f2;
}

.article__button-twitter .bi-twitter {
  margin-right: 1rem;
}

.article__button-twitcasting {
  background: #3b5998;
}

.article__button-twitcasting .bi-heart {
  margin-right: 1rem;
}

.article__button-wish {
  background: #2ca00b;
}

.article__button-wish .bi-heart {
  margin-right: 1rem;
}

.article__button-tel {
  background: #D81111;
}

.article__button-tel .bi-telephone {
  margin-right: 1rem;
}

.article__pic {
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3rem;
}

.article__pic-item {
  width: calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.article__pic-img {
  overflow: hidden;
}

.article__pic-img img {
  transition: .3s ease-in-out;
  width: 100%;
}

.article__pic-img img:hover {
  transform: scale(1.2);
  filter: blur(1px);
}

.article__pic-title {
  text-align: center;
  color: #ed433f;
  font-size: 1.5rem;
}
