@charset "UTF-8";
/*----------
全体設定
-----------*/
html {
  font-size: 18px;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  color: #333333;
  margin: 0;
}

p,
li,
td {
  line-height: 1.7;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  margin: 5px 0;
}

/* 共通部分 */
header {
  width: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.header-inner a {
  color: #fff;
}
.header-inner nav ul {
  display: flex;
}
.header-inner nav ul li a {
  padding: 5px 20px;
}
.header-inner nav ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

main {
  background-color: #eee;
  padding: 100px 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

article {
  width: 65%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}
article h2 {
  font-size: 1.7rem;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  margin: 10px 0 50px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 0px 5px #333;
}

.sidebar {
  width: 30%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}
.sidebar h3 {
  border-left: 5px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 20px;
  margin: 10px 0 30px;
}
.sidebar ul {
  list-style: initial;
  padding-left: 40px;
}
.sidebar .side-item {
  margin-bottom: 50px;
}
.sidebar .side-item a {
  color: #333;
}

/*Topに戻る*/
#page_top {
  position: fixed;
  bottom: 30px;
  /*位置の調整*/
  right: 20px;
  /*位置の調整*/
}
#page_top a {
  color: #fff;
  background-color: #aaaaaa;
  /*「background-image:url(ファイル名)」で画像*/
  text-align: center;
  text-decoration: none;
  padding: 20px 20px;
}

footer {
  text-align: center;
  padding: 15px 0;
  background: #aaa;
}
footer a {
  color: #fff;
  padding: 10px;
}

/* トップページ */
.hero {
  width: 100%;
  height: 70vh;
}
.hero img {
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-wrap a {
  color: #333;
}
.post-wrap .post-item {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.post-wrap .post-item:not(:last-child) {
  border-bottom: 1px solid #333;
}
.post-wrap .post-item .post-img {
  width: 45%;
}
.post-wrap .post-item time {
  font-size: 0.9rem;
}
.post-wrap .post-item h3 {
  font-size: 1.3rem;
}

/* コンテンツページ */
.recommend-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.recommend-wrap .recommend-item {
  width: 45%;
  padding: 10px;
}
.recommend-wrap .recommend-item h3 {
  margin: 10px 0;
}
.recommend-wrap .recommend-item img {
  height: 180px;
}

/* お問い合わせページ */
.contact {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}/*# sourceMappingURL=style1.css.map */