@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  background: #F2EBD7;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

footer {
  padding: 40px 20px 20px;
  background: #ff5b00;
  text-align: center;
}
footer img {
  width: 200px;
}
@media screen and (max-width: 800px) {
  footer img {
    width: 160px;
  }
}

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  header {
    padding: 15px 20px;
  }
}
header .logo {
  line-height: 0;
}
header .logo img {
  width: 220px;
}
@media screen and (max-width: 900px) {
  header .logo img {
    width: 160px;
  }
}
header ul {
  display: flex;
}
@media screen and (max-width: 900px) {
  header ul {
    flex-direction: column;
    align-items: flex-end;
  }
}
header ul li {
  display: flex;
  align-items: center;
}
header ul li a {
  color: #000;
  display: block;
  font-weight: 500;
  font-size: 15px;
}

.mv img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .mv img.pc {
    display: none;
  }
}
.mv img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .mv img.sp {
    display: block;
  }
}

.archive_article .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.archive_article .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .archive_article .inner ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive_article .inner ul li a {
  display: block;
  color: #000;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.archive_article .inner ul li a .thumbnail {
  width: 100%;
  aspect-ratio: 1200/630;
}
.archive_article .inner ul li a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_article .inner ul li a .date {
  font-size: 14px;
  color: #000;
  padding: 0 10px;
}
.archive_article .inner ul li a .title {
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.archive_article .inner ul li a .author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-top: solid 1px rgba(0, 0, 0, 0.3);
}
.archive_article .inner ul li a .author .name {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}
.archive_article .inner ul li a .author .name span {
  display: block;
  line-height: 1.4;
}
.archive_article .inner ul li a .author .name span:nth-child(1) {
  font-size: 12px;
}
.archive_article .inner ul li a .author .name span:nth-child(2) {
  font-size: 14px;
}
.archive_article .inner ul li a .author .icon {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.archive_article .inner ul li a .author .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_article article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(20px, 6vw, 80px) 20px;
}
.single_article article h1,
.single_article article h2,
.single_article article h3,
.single_article article h4,
.single_article article h5,
.single_article article h6 {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.single_article article h1 {
  font-size: clamp(22px, 1.4vw, 26px);
  padding: 0 0 1em;
  line-height: 1.5;
  font-weight: 500;
}
.single_article article h2 {
  font-size: clamp(20px, 1.2vw, 24px);
  border-bottom: solid 2px #ff5b00;
  padding: 2em 0 0;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #ff5b00;
}
.single_article article h3 {
  padding: 2em 0 0.5em;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
}
.single_article article .thumbnail {
  width: 100%;
  aspect-ratio: 1200/630;
  margin-bottom: 20px;
}
.single_article article .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.single_article article .date {
  font-size: 15px;
  letter-spacing: 0.05em;
}
.single_article article p {
  font-size: clamp(14px, 1.5vw, 16px);
}
.single_article article p a {
  text-decoration: underline;
  color: #000;
}
.single_article article p a:hover {
  opacity: 0.6;
}
.single_article article .author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  border: solid 1px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0;
}
@media screen and (max-width: 800px) {
  .single_article article .author {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.single_article article .author .icon {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .single_article article .author .icon {
    width: 60%;
  }
}
.single_article article .author .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_article article .author .profile {
  flex: 1;
}
.single_article article .author .profile .name {
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 800px) {
  .single_article article .author .profile .name {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}
.single_article article .author .profile .name span {
  font-weight: 500;
}
.single_article article .author .profile .name span:nth-child(1) {
  font-size: 22px;
  color: #ff7d43;
}
.single_article article .author .profile .name span:nth-child(2) {
  font-size: 14px;
}
.single_article article .author .profile .description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.single_article article .author .profile .links a {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  text-decoration: underline;
  color: #444;
}
.single_article article .author .profile .links a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */