@charset "UTF-8";
/*
Theme Name: profile
*/
html {
  font-size: 100%;
}
body {
  color: #383e45;
  font-size: 0.9rem;
}
a {
  color: #383e45;
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.site-title {
  width: 120px;
  line-height: 1px;
  padding: 10px 0;
}
.site-title a {
  display: block;
}
.section-title {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: solid 1px #383e45;
}
.content-title {
  font-size: 1rem;
  margin: 10px 0;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto 100px auto;
  padding: 0 4%;
  text-align: center;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#header ul {
  display: flex;
  padding: 10px 0;
}
#header li {
  margin-left: 30px;
}
#header li a {
  color: #24292e;
}
#header li a:hover {
  opacity: 0.7;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  font-size: 0.5rem;
  padding: 10px 0;
  text-align: center;
}


/* コメントのCSS */
  textarea {
    border: 1px solid #ccc;
  }

  input.submit {
    border: 2px solid white; /* 枠線の太さ・種類・色 */
    background-color: white; /* 背景を黒に */
    color: white;            /* 文字色を白に */
    padding: 8px 16px;       /* 内側の余白 */
    border-radius:10px;      /* 角を少し丸く */
    cursor: pointer;         /* マウスホバー時に手の形に */
  }

  /* セクション内の投稿リストを横並びに */
.post-list {
  display: flex;
  flex-wrap: wrap; /* 改行を許可 */
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}