@charset "UTF-8";

/* ==================================
全体に働きかける '※'
================================== */
* {
  box-sizing: border-box;
}

/* ==================================
基本の設定
================================== */
body {
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #0f0e0e;
  line-height: 1.8;
  background-image: url(../images/bg.png);
}
img {
  max-width: 100%;
}

/* ==================================
各ボックスの設定
================================== */
/* 大枠 */
.wrapper {
  width: 960px;
  margin: 0 auto;
  padding: 20px;
  background-color: #b9f8b1;
  box-shadow: 0 0 10px #797575;
}

/* ヘッダーエリア */
.header {
  width: 920px;
  /* height: 300px; */
}
.header h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  color: #f1aac6;
}
.header img {
  /* 画像下隙間なくす */
  display: block;
}

/* コンテンツエリア */
.contents-wrapper {
  /* margin-top: 60px; */
  display: flex;
  justify-content: space-between;
}

/* メインエリア */
.main-contents {
  width: 600px;
}
.content {
  margin-top: 40px;
  margin-bottom: 10px;
}
.content h2 {
  font-size: 22px;
  padding: 10px;
  border-bottom: 1px dashed #000;
  border-left: 8px solid #f1aac6;
}
.content p {
  font-size: 16px;
}

/* item.img のレイアウト調整 */
.items-wrap {
    width: 935px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 3列の間隔を調整 */
}

.item {
    width: calc(33.33% - 20px); /* 3列に分割し、間隔調整 */
    margin: 10px;
}

.item img {
    max-width: 95%;
    height: auto;
    display: block;
}

/* サイドエリア */
.aside-contents {
  width: 280px;
  margin-top: 57px;
}
.aside-contents h3 {
  font-size: 18px;
  margin: 0;
  padding-bottom: 10px;
  color: #f1aac6;
  border-bottom: 1px solid #ccc;
}
.aside-contents p {
  font-size: 16px;
}
.aside-contents ul {
  margin-bottom: 30px;
}

/* フッターエリア */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  height: 200px;
  background: #f1aac6;
  text-align: center;
}
.footer small {
  color: #fff;
}
