@charset "UTF-8";

.main_cover {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  height: 100svh;
  min-width: 100%;
  background: #000;
  position: relative;
}

.main_cover > .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(65% - 3em);
  max-width: 235px;
  text-align: center;
}

.main_cover > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#footer {
  background: #333333;
  color: #ffffff;
  padding: 1.5rem 1.5rem;
}

#footer > .shop_info {
  font-size: 0.9em;
}

#footer > .shop_info .name {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

#footer > .shop_info .ig {
  margin-bottom: 0.3em;
}
#footer > .shop_info .ig img {
  vertical-align: baseline;
}

#footer > .license {
  text-align: right;
  font-size: 0.8em;
  margin-top: 2em;
}

#news {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#news > .entries {
  container-type: inline-size;
  container-name: news_entries;
  margin-top: 4rem;
  width: calc(100% - 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#news > .entries > * + * {
  margin-top: 1.5rem;
}

#news > .entries .item {
  border-bottom: solid 0.5px #ccc;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

#news > .entries .item a:link {
  text-decoration: none;
}
#news > .entries .item a:visited {
  text-decoration: none;
}
#news > .entries .item a:hover {
  text-decoration: underline;
}

#news > .entries .item .date {
}

@container news_entries (min-width: 340px) {
  #news > .entries .item {
    display: grid;
    grid-template-columns: 12em 1fr;
  }
} /* ---- @container ---- */

.news_single {
}

.news_single a:link {
  text-decoration: underline;
}
.news_single a:visited {
  text-decoration: underline;
}
.news_single a:hover {
  opacity: 0.7;
}

.news_single .cover {
  padding: 4rem 4rem;
  margin: 0;

  background: url(../image/cover.png);
  background-size: cover;
  background-position: center center;
}

.news_single .cover .logo {
  text-align: center;
  margin: 0 auto;
  height: 50vw;
  max-height: 250px;
}

.news_single .cover .logo img {
  height: 50vw;
  max-height: 250px;
}

.news_single .cover .page_title {
  color: #ffffff;
  text-align: center;
  margin-top: 4rem;
}

.news_single .cover .page_title > h2 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

.news_single .cover .page_title > p {
  font-family: "Lato", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
}

.news_single .entry {
  width: calc(100% - 3rem);
  max-width: 800px;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.news_single .entry > .header {
  margin-bottom: 4rem;
}

.news_single .entry > .header .date {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
}

.news_single .entry > .header .title {
  font-size: 1.6em;
}

.news_single .content {
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.news_single .content > * + * {
  margin-top: 2em;
}

.news_single .news_footer {
  width: calc(100% - 3rem);
  max-width: 800px;
  text-align: right;
  margin: 0 auto;
  padding: 2rem 0;

  font-family: "Lato", sans-serif;
}
