@charset "UTF-8";
/*------------------------------
初期設定
------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.65;
  background: #fff9f4;
}

body {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

/*------------------------------
枠
------------------------------*/
main {
  margin-top: 40px;
}

.l-frame {
  max-width: 1400px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.l-frame.l-frame_s {
  max-width: 800px;
}

/*------------------------------
パーツ
------------------------------*/
/*ターム*/
.terms {
  display: flex;
  gap: 5px;
}

.term-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-term {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 100px;
}

/*アイコン*/
.p-icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-icon.icon-search {
  background-image: url(../images/icon/icon-search_black.svg);
}

/*------------------------------
記事編集
------------------------------*/
.entry-meta time {
  font-size: 1.6rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 12px;
}

.entry-content .entry-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 35px;
}
.entry-content .data {
  font-size: 1.6rem;
}
.entry-content p {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1em;
}
.entry-content .wp-block-list li {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0.2em;
  position: relative;
  padding-left: 12px;
}
.entry-content ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.entry-content h2.wp-block-heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 40px;
}
.entry-content h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
  background: #f4ebe4;
  border-radius: 4px;
  padding: 8px 20px;
  margin-top: 40px;
  position: relative;
}
.entry-content h3.wp-block-heading::before {
  content: "";
  display: block;
  background: #e5004f;
  border-radius: 0 2px 2px 0;
  width: 4px;
  height: 16px;
  position: absolute;
  top: 14px;
  left: 0;
}
.entry-content h4.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 10px;
  margin-bottom: 1em;
  margin-top: 20px;
  border-left: 4px solid #e5004f;
}
.entry-content h5.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 1em;
}
.entry-content p,
.entry-content .wp-block-list {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .entry-content .entry-title {
    font-size: 3.2rem;
  }
  .entry-content p {
    font-size: 1.6rem;
  }
  .entry-content .wp-block-list li {
    font-size: 1.6rem;
  }
  .entry-content h2.wp-block-heading {
    font-size: 3.2rem;
    margin-top: 60px;
  }
  .entry-content h3.wp-block-heading {
    font-size: 2.4rem;
  }
  .entry-content h3.wp-block-heading::before {
    width: 4px;
    height: 20px;
    top: 16px;
  }
  .entry-content h4.wp-block-heading {
    font-size: 2rem;
  }
  .entry-content h5.wp-block-heading {
    font-size: 2rem;
  }
  .entry-content p,
  .entry-content .wp-block-list {
    margin-top: 2em;
  }
}
/*------------------------------
記事編集
------------------------------*/
.archive-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 30px 4%;
}

.postcard {
  position: relative;
}
.postcard:hover {
  cursor: pointer;
}
.postcard > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.postcard .thumbnail {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.postcard .post-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.postcard .post-excerpt {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.postcard time {
  font-size: 1.2rem;
}

.postcard .p-term {
  z-index: 2;
}

.postcard .post-bottomarea {
  padding-top: 12px;
  border-top: 2px dotted #ccc;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/*------------------------------
ページ内ヘッダー
------------------------------*/
.page-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/*------------------------------
ヘッダー
------------------------------*/
.header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff9f4;
  border-bottom: 1px solid #000;
  width: 100%;
}

body {
  padding-top: 60px;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.header .sitetitle {
  font-size: 1.8rem;
  font-weight: 700;
}

.header .gnav {
  margin-left: auto;
  margin-right: 20px;
}

.header .gnav ul {
  display: flex;
  gap: 12px;
}

.header .gnav a {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .gnav a .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  transition: 0.4s;
}
.header .gnav a .icon.icon_tech {
  top: -3px;
}
.header .gnav a .icon.icon_log {
  width: 18px;
}
.header .gnav a:hover .icon_tech {
  filter: brightness(110%);
}
.header .gnav a:hover .icon_log {
  filter: saturate(150%);
}

/*------------------------------
モーション
------------------------------*/
.m-zoom {
  overflow: hidden;
}
.m-zoom img {
  transition: transform 0.3s ease;
}

.postcard:hover .m-zoom {
  overflow: hidden;
}
.postcard:hover .m-zoom img {
  transform: scale(1.1);
}/*# sourceMappingURL=master.css.map */