@charset "UTF-8";

body {
  overflow-x: hidden;
}

.aw-news {

  --aw-ink: #160a00;
  --aw-sub: rgba(22, 10, 0, .78);
  --aw-line: rgba(61, 48, 40, .16);
  --aw-brown: #4a2614;

  background: #fff;
  color: var(--aw-ink);

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro",
    YuGothic,
    "Yu Gothic",
    osaka,
    meiryo,
    sans-serif;

  line-height: 2;
  letter-spacing: .04em;
}

.aw-news * {
  box-sizing: border-box;
}

.aw-news__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   hero
===================================================== */

.aw-news__header {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 360px;
  overflow: hidden;
  text-align: center;
  background:
    url("/html/user_data/assets/img/bg_content_header.jpg")
    center 131px / 1600px auto
    no-repeat;
}

.aw-news__header .aw-news__inner {
  position: relative;
  height: 100%;
}

.aw-news__title {
  position: absolute;
  top:260px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0;
  color: #160a00;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .22727em;
}

/* =====================================================
   list
===================================================== */

.aw-news__section {
  padding: 42px 0 120px;
}

.aw-newsList {

  max-width: 1080px;

  margin: 0;
  padding: 0;

  list-style: none;

  border-top: 1px solid var(--aw-line);
}

.aw-newsItem {

  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;

  padding: 30px 42px;

  border-bottom: 1px solid var(--aw-line);
}

.aw-newsItem__date {

  color: var(--aw-brown);

  font-size: 14px;
  line-height: 2;
  letter-spacing: .03em;

  white-space: nowrap;
}

.aw-newsItem__body {

  color: var(--aw-sub);

  font-size: 14px;
  line-height: 2.05;
  letter-spacing: .03em;
}

.aw-newsItem__body p {
  margin: 0;
}

/* =====================================================
   bottom
===================================================== */

.aw-news__bottom {

  display: flex;
  justify-content: flex-end;

  margin-top: 42px;
}

.aw-news__back {

  display: inline-block;

  color: var(--aw-brown);

  font-size: 13px;
  letter-spacing: .08em;

  text-decoration: none;
}

.aw-news__back::after {
  content: " ↑";
}

.aw-news__back:hover {
  opacity: .72;
}

/* =====================================================
   responsive
===================================================== */

@media screen and (max-width: 767px) {

  .aw-news {
    line-height: 1.72;
  }

  .aw-news__inner {
    padding: 0 20px;
  }

  .aw-news__header {

    left: auto;
    transform: none;

    width: 100%;
    height: 210px;

    background:
      url("/html/user_data/assets/img/bg_content_header_sp.jpg")
      center top / 100% auto
      no-repeat;
  }

  .aw-news__title {

    top: 140px;

    font-size: 20px;
    line-height: 1.7;
    letter-spacing: .16em;
  }

  .aw-news__section {
    padding: 28px 0 80px;
  }

  .aw-newsItem {

    display: block;

    padding: 22px 18px;
  }

  .aw-newsItem__date {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;
  }

  .aw-newsItem__body {

    font-size: 12px;
    line-height: 1.9;
  }

  .aw-news__bottom {
    margin-top: 34px;
  }

}