@charset "utf-8";
/* CSS Document */

/* ==================================================
   BASE
================================================== */

body {
  color: #333;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}


/* ==================================================
   HEADER
================================================== */

.header {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.header-inner {
  width: min(1000px, calc(100% - 40px));
  height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.logo {
  display: block;
}

.logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
}
.container .news picture {
    margin-top: 50px;
    margin-bottom: 50px;
}



/* ==================================================
   MAIN
================================================== */

main {
  padding: 90px 0 120px;
}

.container {
  width: min(1000px, calc(100% - 40px));
  margin-inline: auto;
}


.page-header p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
}


/* ==================================================
   PAGE HEADER
================================================== */

.page-header {
  margin-bottom: 60px;
  text-align: center;
}

.page-header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.news h2 {
    margin-bottom: 50px;
}


/* ==================================================
   NEWS
================================================== */

.news {
  border-top: 1px solid #ddd;
}

.news-item {
  border-bottom: 1px solid #ddd;
}

.news-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 25px 10px;
  transition: opacity 0.3s ease;
}

.news-item a:hover {
  opacity: 0.6;
}

.news-item time {
  flex: 0 0 100px;
  color: #777;
  font-size: 14px;
}

.news-item h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  padding: 60px 0 30px;
  background: #f7f7f7;
}

.footer-inner {
  width: min(1000px, calc(100% - 40px));
  margin-inline: auto;
  text-align: center;
}
.footer-inner > p {
    margin-bottom: 50px;
    font-size: 0.8rem;
}

/* ==================================================
   SNS
================================================== */

.sns-link {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.sns-link li {
  width: 40px;
}

.sns-link a {
  display: block;
}

.sns-link img {
  display: block;
  width: 100%;
  height: auto;
}


/* ==================================================
   COPYRIGHT
================================================== */

.copyright {
  margin: 0;
  color: #888;
  font-size: 11px;
  letter-spacing: 0.05em;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .header-inner {
    width: calc(100% - 40px);
    height: 70px;
  }

  .logo img {
    max-width: 180px;
  }

  main {
    padding: 60px 0 80px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .page-header {
    margin-bottom: 40px;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .news-item a {
    display: block;
    padding: 20px 5px;
  }

  .news-item time {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .news-item h2 {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer {
    padding: 45px 0 25px;
  }

}
