@charset "utf-8";

/*===================
 NEWS archiveとsingleの共通部分
===================*/
#news {
  padding: 123px 0;
}
.news__list-item {
  border-bottom: 1px solid #f5f5f5;
}
.news__list-item a {
  display: flex;
  align-items: center;
  padding-top: 29px;
  padding-bottom: 29px;
  padding-left: 10px;
  padding-right: 10px;
}
.news__date {
  font-size: 13px;
  font-weight: 400;
  flex-shrink: 0;
  margin-right: 80px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.news__title {
  font-size: 13px;
  font-weight: 400;
  max-width: 100%;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

/*===================
アーカイブ
===================*/

.news__list {
  border-top: 1px solid #d1d1d1;
}
.news__listLink {
  padding: 27px 27px 27px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  border-bottom: 1px solid #d1d1d1;
  position: relative;
}
.news__date {
  display: inline-block;
  width: 120px;
  font-size: 16px;
  line-height: 1.5;
}
.news__txt {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.news__listLink .news__date,
.news__listLink .news__txt {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.news__listLink:hover .news__date,
.news__listLink:hover .news__txt {
  font-weight: 500;
  transform: translateX(2.5em);
}
.news__listLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news__listLink:hover::before {
  background-color: rgba(227, 209, 192, 1);
}

.empty {
  text-align: center;
  padding: 1em 0;
}
/*===================
シングル
===================*/
.single-news__contents {
  width: 100%;
  max-width: 926px;
  margin: 0 auto;
}
.single-news__date {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
.single-news__title {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 2;
  letter-spacing: 0;
}

/*===================
information
===================*/
.information {
  padding-top: clamp(55px, 13.73vw, 103px);
  background: #c9b799;
}
.information_ttl {
  color: #fff;
  text-align: center;
  margin-bottom: clamp(55px, 10.67vw, 80px);
}
.information_ttl .ja {
  font-size: clamp(24px, 3.87vw, 29px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.information_ttl .en {
  font-size: clamp(13px, 2.71vw, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  display: block;
  padding-top: 12px;
}
.gmap_wrap {
  width: 100%;
  height: 57.81vw;
  max-height: 740px;
  min-height: 400px;
}
.gmap_wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

@media screen and (max-width: 750px) {
  /*===================
	news
	===================*/
  #news {
    padding: 50px 0 78px;
  }
  .news__listLink {
    padding: 25px 0 25px 0;
  }
  .news__date {
    width: 88px;
    font-size: 12px;
  }
  .news__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 640px) {
  .news__list-item a {
    flex-wrap: wrap;
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }
  .news__date {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .news__title {
    width: 100%;
  }

  /*===================
アーカイブ
===================*/
  .archive-news__inner {
    display: block;
  }
  .archive-wrap {
    padding-top: 0;
    padding-left: 0;
    position: static;
    margin-bottom: 30px;
  }
  .archive-news .news__list {
    width: 100%;
    max-width: 100%;
  }

  /*===================
シングル
===================*/
  .single-news__date {
    font-size: clamp(12px, 2.13vw, 16px);
  }
  .single-news__title {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}
