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

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

.f-en {
  font-family: "Acme", sans-serif;
}

body {
  overflow-x: hidden;
}

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

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

b,
strong {
  font-weight: 800;
  font-weight: 700;
}

/*------------------------------
枠
------------------------------*/
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: 960px;
}

@media screen and (min-width: 768px) {
  .l-frame {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*------------------------------
パーツ
------------------------------*/
/*ターム*/
.terms {
  display: flex;
  gap: 5px;
}

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

.p-term {
  font-size: 1.2rem;
  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);
}

/*ボタン*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid #000;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 2px 0 rgb(0, 0, 0);
  height: 38px;
}

@media screen and (min-width: 768px) {
  .p-term {
    font-size: 1.4rem;
  }
}
/*------------------------------
記事編集
------------------------------*/
.entry-content .entry-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 15px;
}
.entry-content .entry-meta .entry-meta__unit01 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.entry-content .entry-meta .entry-date__unit .entry-date {
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-block;
  margin: 0;
}
.entry-content .entry-meta .entry-date__unit .entry-date + .entry-date {
  margin-left: 15px;
}
.entry-content .entry-meta .entry-date__unit .entry-date span {
  margin-right: 6px;
}
.entry-content .entry-meta .entry-share__unit {
  display: flex;
  gap: 12px;
  align-items: center;
}
.entry-content .entry-meta .entry-share__unit .entry-share {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.entry-content p {
  font-size: 1.6rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.entry-content p > a {
  color: #00adc8;
}
.entry-content .wp-block-list {
  margin: 20px 0;
}
.entry-content .wp-block-list li {
  font-size: 1.6rem;
  line-height: 1.65;
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
}
.entry-content .wp-block-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.entry-content h2.wp-block-heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.65;
  margin-top: 60px;
  margin-bottom: 1.2em;
}
.entry-content h3.wp-block-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  padding: 8px 20px;
  margin: 40px 0;
  border-bottom: 1px solid #000;
  position: relative;
}
.entry-content h3.wp-block-heading::before {
  content: "";
  display: block;
  background: #00adc8;
  width: 4px;
  height: 16px;
  position: absolute;
  top: 17px;
  left: 0;
}
.entry-content h4.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.65;
  margin: 40px 0;
  padding-left: 12px;
  position: relative;
}
.entry-content h4.wp-block-heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: #00adc8;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 10px;
}
.entry-content h5.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.65;
  margin: 40px 0;
}
.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 .entry-meta .entry-date__unit .entry-date {
    font-size: 1.6rem;
  }
  .entry-content .entry-meta .entry-date__unit .entry-date + .entry-date {
    margin-left: 30px;
  }
  .entry-content .entry-meta .entry-share__unit .entry-share {
    width: 32px;
    height: 32px;
  }
  .entry-content p {
    font-size: 1.8rem;
  }
  .entry-content .wp-block-list li {
    font-size: 1.8rem;
  }
  .entry-content h2.wp-block-heading {
    font-size: 3.2rem;
    margin-top: 80px;
  }
  .entry-content h3.wp-block-heading {
    font-size: 2.4rem;
    padding: 14px 20px;
    margin-top: 60px;
  }
  .entry-content h3.wp-block-heading::before {
    width: 6px;
    height: 22px;
    top: 23px;
  }
  .entry-content h4.wp-block-heading {
    font-size: 2rem;
  }
  .entry-content h5.wp-block-heading {
    font-size: 2rem;
  }
}
/*------------------------------
記事編集
------------------------------*/
.postlist_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 30px 4%;
}

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

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

.postlist__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.postlist time {
  font-size: 1.4rem;
  font-family: "Acme", sans-serif;
  margin-top: 8px;
  display: block;
}

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

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

.page-title__slug {
  font-family: "Acme", sans-serif;
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
}
.page-title__slug::before {
  content: "／";
}

@media screen and (min-width: 768px) {
  .page-title {
    font-size: 6rem;
  }
  .page-title__slug {
    font-size: 3rem;
  }
}
/*------------------------------
ヘッダー
------------------------------*/
.header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  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;
  font-family: "Acme", sans-serif;
}

.header .gnav ul {
  display: flex;
  gap: 20px;
}
.header .gnav ul a {
  font-size: 1.4rem;
  font-weight: 900;
  min-width: 64px;
  transition: 0.2s ease-in;
}
.header .gnav ul a:hover {
  color: #00adc8;
  border-color: #00adc8;
  box-shadow: none;
}

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

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