@charset "utf-8";

/* リセット */

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/* スタイル */

* {
    box-sizing: border-box;
}

body {
  background: #C6F2C4;
}

/* ヘッダー */
header {.
  width: 100%;
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hptitle {
  margin: 0 auto;
  width : auto;
}

.headernav {
  padding: 0 32px 0 0;
}

.headernav a {
  color: #0D0D0D;
  padding: 8px;
  transition: .2s;
}

.headernav a:hover {
  color: ghostwhite;
}

.headernav a:active {
  color: #0D0D0D;
}


/* 上部導入コンテンツ */

h1 {
    font-size: 1.8em;
    font-weight: 700;
}

.top-cont {
    padding-top: 32px;
    margin: 0 32px;
}

.title {
  padding: 11px 0;
  text-align: center;
  /* background: salmon; */
  border-bottom: solid 2px #0D0D0D;
  border-top: solid 2px #0D0D0D;
}

.bl {
  display: block;
}

.hajimeni {
  /* background: ghostwhite; */
  margin-top: 64px;
  display: flex;
  align-items: center;
}

.hajimeni .thumbnailimg {
  padding: 0;
  width: 350px;
  height: auto;
}

.bold {
  font-weight: 600;
  font-size: 1.1em;
  margin-left: 16px;
  padding-top: 32px;
}

.content {
  margin: 0 auto;
  max-width: 850px;
  min-width: none;
  /* background: #C6F2C4; */
}

/* メニューリスト */

ul {
  /* background: goldenrod; */
  padding-inline-start: 0;
  list-style: none;
  margin: 0;
  padding-top: 64px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

li {
  /* background: antiquewhite; */
  /* margin-bottom: 32px; */
}

article {
  display: flex;
  background: #FFF;
  padding: 10px;
}

img {
  vertical-align: bottom;
}

.post-thumbnail .thubmnailimg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  margin-right: 10px;
}

.ablock {
  background: ghostwhite;
  max-width: 400px;
  height: 140px;
  position: relative;
  transition: .2s;
}

.ablock:hover {
  box-shadow: 0px 0px 16px #aaa;
}

.ablock:active {
  box-shadow: 0 0;
}

.stepnum {
  color: #FFF;
  font-size: .83em;
  font-weight: 700;
  background: #777;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  box-shadow: 1px 1px 1px #333;
  left: 0;
}

.post-thumbnail {
  height: 120px;
}

.post-thumbnail {
  /* background: skyblue; */
  display: flex;
  align-items: center;
  height: 120px;
}

.post-text {
  margin-left: 4px;
}

.post-text h2 {
  font-size: 1.2em;
  font-weight: 700;
  /* background: lightgreen; */
}

.post-text p {
  /* background: lightcoral; */
}

/* フッター */

footer {
  background: #fff;
  padding: 16px 0;
  text-align: center;
  margin-top: 32px;
}

small {
  font-size: 0.8em;
  font-weight: 300;
  /* background: pink; */
}

/* メディアクエリ */

@media (max-width: 600px) {

/* フォント指定 */

body{
	font-family: sans-serif ;
}

  .hptitle {
  margin: 0 auto;
  height: 60px;
  width: auto;
}

  .hajimeni {
  /* background: ghostwhite; */
  display: inline-block; 
  text-align: center;
}


  .hajimeni .thumbnailimg {
  margin: 0 auto;
  padding: 0;
  width: 150px;
  height: auto;
}

.bold {
  font-weight: 600;
  font-size: 1.1em;
  margin: 0;
}

ul {
  /* background: goldenrod; */
  padding-inline-start: 0;
  list-style: none;
  margin: 0;
  padding-top: 32px;
  display: inline;
  /* gap: 16px; */
  /* flex-wrap: wrap;
  justify-content: baseline; */
}

li {
  margin-top: 16px;
  margin-bottom: 32px;
}

.ablock {
  background: ghostwhite;
  margin: 0 auto;
  min-width: 400px;
  max-width: 85%;
  height: 140px;
  position: relative;
  transition: .2s;
}

}