@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

:focus {
  outline: 0;
}

body, html {
  font-size: 62.5%;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

main {
  display: block;
}

address, blockquote, caption, cite, code, dd, dt, em, h1, h2, h3, h4, h5, h6, input, li, p, pre, select, small, strong, td, textarea, th {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

li, ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a:hover {
  text-decoration: none;
}

br {
  letter-spacing: 0;
}

button {
  border: none;
  background: initial;
  box-sizing: border-box;
}

/*----------  news  ----------*/
#news .title-area .title-group {
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  font-weight: 700;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #news .title-area .title-group {
    position: relative;
    bottom: 0;
    left: 0;
    margin-left: 10px;
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 0;
  }
}
#news .title-area .title-group .title {
  font-size: 4.6rem;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #news .title-area .title-group .title {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
#news .title-area .title-group .sub {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
#news .box {
  margin-bottom: 70px;
}
#news .box .content {
  max-width: 800px;
  display: block;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #news .box .content {
    padding: 40px 0;
  }
}
#news .box .news-list .list-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gold);
}
@media screen and (max-width: 768px) {
  #news .box .news-list .list-item {
    flex-direction: column;
    row-gap: 8px;
  }
}
#news .box .news-list .list-item:not(:first-of-type) {
  margin-top: 30px;
}
#news .box .news-list .list-item .date {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 40px;
  letter-spacing: 0.1em;
}
#news .box .news-list .list-item .title {
  margin-bottom: 10px;
}
#news .box .news-list .list-item .text {
  width: 84.375%;
  text-align: justify;
  transition: ease 300ms all;
}
@media screen and (max-width: 768px) {
  #news .box .news-list .list-item .text {
    width: 100%;
  }
}
#news .box .news-list .list-item .text a:hover {
  opacity: 0.7;
}
#news .box .news-list .list-item .text > span {
  text-align: left;
}
#news .box .news-list .list-item .text .blank-icon {
  position: relative;
  width: 14px;
  height: 14px;
  top: -6px;
}
#news .link-container {
  margin-bottom: 80px;
}