@charset "UTF-8";
/* CSS Document */
/* テキストの自動拡大を無効化 */
body {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* ページ全体の設定 */
body {
  margin: 0;
  font-family: sans-serif;
}
/* 「ヘッダー」ブロック */
header {
  padding: 25px 15px;
  color: #29abe2;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  font-family: 'Play', sans-serif;
}
/* リンク */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
/* ナビゲーションメニュー */
nav ul {
  list-style-type: none;
  padding: 0;
  color: #666666;
  font-size: 12px;
  display: flex;
  justify-content: center;
}
nav li:not(:last-child) {
  margin-right: 20px;
}
/* 「コンテンツ」ブロック */
.contents {
/*背景画像は高さを持たないため、heightの指定が必要*/ 
  height: 1000px;
/*相対パスで画像ファイルを指定*/
  background-image: url("../img/22601005-backgroud.jpg");
  padding: 40px 15px;
}
/* 記事 */
article {
  background-color: #fff;
  padding: 20px;
}
h1 {
  font-size: 30px;
}
p {
  line-height: 2;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
/* 投稿日 */
time {
  color: #666;
  margin-bottom: 15px;
  display: block;
}
/* サブメニュー */
aside {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 40px;
}
h2 {
  color: #29abe2;
  font-family: 'Play', sans-serif;
  font-weight: normal;
  text-align: center;
}
/* サブメニュー：プロフィール */
#svg-profile {
  width: 100px;
  height: 100px;
}
.profile figure {
  text-align: center;
}
.profile p {
  font-size: 14px;
  text-align: center;
}
/* サブメニュー：注目記事メニュー */
h2 {
  color: #ff9390;
}
.topics ul {
  list-style-type: none;
  padding: 0;
}
.topics a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.topics figure {
  width: 100px;
  flex: none;
}
.topics img {
  vertical-align: bottom;
}
.topics h3 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
}
/* 「フッター」ブロック */
footer {
  background-color: #99c3e6;
  padding: 25px 15px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-family: 'Play', sans-serif;
}
/*=====PC版=====*/
@media (min-width: 600px) {
  /* PC版 ： コンテナ */
  .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  /* PC版： ヘッダー内のコンテナ */
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  /* PC版 ： 記事 */
  article {
    padding-left: 60px;
    padding-right: 60px;
  }
  h1 {
    font-size: 40px;
  }
  p {
    font-size: 18px;
  }
}
/*=====PC版設定ここまで=====*/
/*=====PC版（大）=====*/
@media (min-width: 1025px) {
  /*-----PC版（大）：コンテナ-----*/
  .container {
    max-width: 1100px;
  }
  /*-----PC版（大）：コンテンツブロック内のコンテナ-----*/
  .contents .container {
    display: flex;
    justify-content: space-between;
  }
  /* PC版（大）：記事 */
  article {
    width: 68%;
    box-sizing: border-box;
  }
  /* PC版（大）：サブメニュー */
  .sub {
    width: 28%;
  }
  /*PC版（大）：プロフィール*/
  .profile {
    margin-top: 0;
  }
}
/*=====PC版（大）設定ここまで=====*/