:root {
  --greydark: #333333;
  --greylight: #d6d6d6;
  --text: #1d1d1f;
  --white: #f5f5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Shippori Mincho;
}

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



.site_title {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 16px;
}

.site_title img {
  display: block;
}

.header-bg {
  background-color: var(--greydark);
}

.wrapper1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  list-style: none;
  display: flex;
  margin-top: 15px;
  justify-content: center;
  gap: 24px;
}

.wrapper1 li {
  padding: 15px;
  font-size: 13px;
}

.wrapper1 li a {
  text-decoration: none;
  color: var(--greylight);
}

.wrapper {
  display: flex;
  align-items: center;
}

.wrapper img {

  width: 400px;
  height: 250px;
}

.wrapper {
  font-size: 8px;

}

#pickup {
  justify-content: center;
  font-size: 10px;
  gap: 30px;
}

#pickup img {
  width: 360px;
  height: 230px;
  margin-top: 30px;
}

.readmore a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 100px;
}

#container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 40px);
}

#container main {
  flex: 1 1 0;
  min-width: 0;
}


#container main img {
  width: 700px;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
}

.meta {
  list-style: none;
  display: flex;
  margin-top: 15px;
  margin-bottom: 10px;
}

.meta li a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  margin-top: 25px;
  padding-left: 15px;
}



.article_title a {
  text-decoration: none;
  color: var(--text);
  font-size: 20px;
  font-family: Note Serif;
}

.text {
  font-size: 14px;
  display: flex;
  justify-content: center;
  font-weight: 300;

}

#sidebar {
  width: 320px;
  flex: 0 0 320px;
}

#sidebar a {
  text-decoration: none;
}

#sidebar .article_title {
  color: var(--text);
  margin-bottom: 40px;
  font-size: 14px;
  max-width: 300px;
}


.side_title {
  display: flex;
  justify-content: center;
  font-size: 17px;
  font-family: Note sans;
  margin-bottom: 20px;
}

.author {
  margin-bottom: 30px;

}

.author .profile {
  display: flex;
  justify-content: center;
  font-size: 14px;
  max-width: 300px;
}

.author img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  margin-left: 110px;
  margin-bottom: 30px;
}

.ranking {
  margin-top: 30px;
}

.ranking img {
  width: 350px;
  height: 200px;
  object-fit: cover;
}

.archive {
  text-align: left;
  margin-bottom: 60px;
}

.archive ul {
  list-style: none;
  border-bottom: solid 1px var(--greylight);
}

.archive li {
  padding: 20px;
  border-top: solid 1px var(--greylight);
}


.archive li a {
  color: var(--text);
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#footer {
  background-color: #dcdcde96;
  text-align: center;
}

#footer .content {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 150px 16px;
  display: flex;
  justify-content: center;
  gap: 150px;
}

.footer_title {
  font-size: 23px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 30px;
}



.item p {
  max-width: 230px;
  margin-bottom: 35px;
  font-size: 14px;
}

.item ul {
  list-style: none;
  font-size: 14px;
  border-bottom: var(--text);
}


.item ul li a {
  text-decoration: none;
  color: var(--text);
}

#footer .item .menu-title li {
  border-bottom: solid 1px var(--greylight);
  border-top: 1px solid var(--greylight);
  padding: 20px;
}



.twitter-timeline {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

#footer ul.about-list li {
  margin-bottom: 5px;
}

#footer ul.about-list .arrow {
  position: relative;
  display: inline-block;
  padding-left: 13px;
}

#footer ul.about-list .arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

#footer .copyright {
  font-size: 0.750rem;
  text-align: center;
  padding: 10px 0;
  margin-top: 70px;
}





@media (max-width: 600px) {


  body {
    font-size: 14px;
  }

  .site_title {
    margin: 10px auto;
    text-align: center;
  }


  .wrapper1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    background-color: var(--greydark);
  }

  .wrapper1 li {
    margin: 6px 0;
    padding: 8px 0;
  }

  .wrapper1 li a {
    font-size: 15px;
    text-decoration: none;
    color: var(--greylight);
  }

  #pickup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    padding: 0 16px;
  }

  #pickup article {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  #pickup img {
    width: 100%;
    height: auto;
    margin: 0 auto 12px;
    display: block;
  }

  .readmore a {
    margin-bottom: 40px;
  }

  #container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 16px;
  }

  #container main {
    margin: 0;
    width: 100%;
    max-width: 700px;
  }

  #container main img {
    width: 100%;
    height: auto;
  }

  #sidebar {
    width: 100%;
    max-width: 700px;
    margin-top: 40px;
    text-align: center;
  }

  .author img {
    display: block;
    margin: 0 auto 20px;
  }

  .ranking img {
    width: 100%;
    height: auto;
  }


  #footer .content {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding: 30px 16px;
  }

  .item {
    margin: 0 0 30px 0;
    text-align: center;
  }

  .item p {
    margin: 0 auto 25px;
  }

  #footer .copyright {
    font-size: 12px;
    padding: 16px 0;
  }
}

@media (max-width: 600px) {

  .wrapper img:not(.author img),
  #container main img,
  .ranking img,
  #pickup img {
    width: 100% !important;
    height: auto !important;
  }


  #container main img,
  .ranking img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  #pickup article img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

@media (max-width: 1140px) {
  #pickup {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  #pickup .slick-area {
    justify-content: center;
  }
}

#pickup img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}


@media (min-width: 1440px) {
  #pickup {
    max-width: 1320px;           
    margin: 0 auto;                
    padding-left: 40px;          
    padding-right: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-sizing: border-box;
  }

  #pickup article {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
  }

  #pickup article img {
    width: 420px;                 
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  #pickup .article_title {
    font-size: 18px;
    text-align: center;
    margin-top: 12px;
  }
}


 