/* Josh's Custom CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: #121212;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  outline: none;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #121212;
  margin-top: 6px;
}

.l-header {
  background: #ffffff;
  color: #121212;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}
.l-header__logo {
  font-size: 1.5rem;
  font-weight: 500;
}
.l-header__nav {
  display: flex;
  gap: 20px;
}
.l-header__nav a {
  color: #121212;
}

.l-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: #121212;
}

.l-main {
  flex: 1;
}

.c-btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: #121212;
  text-decoration: none;
  border: 1px solid #121212;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.c-btn:hover {
  opacity: 1;
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}

.c-empty {
  padding-block: 12px;
}

.c-link {
  color: #0066cc;
  text-decoration: underline;
}

.p-kv {
  background-image: url("/assets/images/kv.webp");
  background-size: cover;
  background-position: center;
  padding: 240px 20px;
  text-align: center;
}
.p-kv__title {
  font-size: 4rem;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1;
}
.p-kv__text {
  font-weight: 600;
  color: #ffffff;
}

.p-news {
  padding-block: 40px;
}
.p-news__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}
.p-news__list li {
  border-bottom: 1px solid #eee;
  padding: 12px 16px;
}
.p-news__list li a {
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.p-news__list li time {
  font-size: 0.9rem;
  color: #888;
  flex-shrink: 0;
}
.p-news__list li span {
  line-height: 1.5;
  font-weight: 500;
}
.p-news__more {
  margin-top: 20px;
}

.p-news-list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.p-news-list__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-news-list__list li {
  border-bottom: 1px solid #eee;
}
.p-news-list__list li a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px;
}
.p-news-list__list li a time {
  font-size: 0.9rem;
  color: #888;
  flex-shrink: 0;
}
.p-news-list__list li a span {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
}
.p-news-list__btn {
  display: inline-block;
  margin-top: 30px;
}

.p-article h1 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.p-article time {
  display: block;
  color: #888;
}
.p-article__thumbnail {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 20px;
  margin-inline: auto;
}
.p-article__body {
  white-space: pre-wrap;
  word-break: break-all;
}
/*# sourceMappingURL=style.css.map */
