@charset "UTF-8";
/*
========================================
記事テンプレ
========================================
*/
article.m_article a {
  display: block;
  padding: 16px 0;
  border-bottom: solid 1px #ddd;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
}
article.m_article a .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.7;
}
article.m_article a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article.m_article a .thumb img.noimage {
  background-color: #f5f5f5;
  padding: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
article.m_article a .thumb .cat {
  position: absolute;
  right: 12px;
  top: 12px;
}
article.m_article a .thumb .cat ul li {
  background-color: #DD111C;
  color: #fff;
  padding: 4px 24px;
  display: inline-block;
  border-radius: 50px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
article.m_article a .date {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #DD111C;
}
article.m_article a h3 {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
article.m_article a p {
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
article.m_article a .writer {
  margin-top: 12px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 8px;
}
article.m_article a .writer .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
article.m_article a .writer .icon img {
  width: 100%;
}
article.m_article a .writer p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}

.m_fixed-btn {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
  position: fixed;
  top: 100px;
  right: 0;
  width: 280px;
  z-index: 100;
  padding: 24px 0 24px;
}
.m_fixed-btn.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.m_fixed-btn .btns {
  display: flex;
  justify-content: right;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.m_fixed-btn .btns a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 64px;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.m_fixed-btn .btns a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 11px;
  height: 18px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f105";
  display: block;
  position: absolute;
}
.m_fixed-btn .btns a i {
  width: 24px;
  height: 24px;
}
.m_fixed-btn .btns a i img {
  width: 100%;
}
.m_fixed-btn .btns a .txt-gr {
  text-align: left;
  display: block;
}
.m_fixed-btn .btns a .txt-gr .upper {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
}
.m_fixed-btn .btns a .txt-gr .main {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  font-weight: 600;
}
.m_fixed-btn .btns a.mail {
  border: 3px solid #DD111C;
}
.m_fixed-btn .btns a.mail::after {
  color: #DD111C;
}
.m_fixed-btn .btns a.mail i {
  width: 24px;
  height: 18px;
}
.m_fixed-btn .btns a.mail .txt-gr .upper {
  color: #000;
}
.m_fixed-btn .btns a.mail .txt-gr .main {
  color: #DD111C;
}
.m_fixed-btn .btns a.line {
  border: 3px solid #1dba00;
}
.m_fixed-btn .btns a.line::after {
  color: #1dba00;
}
.m_fixed-btn .btns a.line i {
  width: 28px;
  height: 28px;
}
.m_fixed-btn .btns a.line .txt-gr .upper {
  color: #000;
}
.m_fixed-btn .btns a.line .txt-gr .main {
  color: #1dba00;
}

@media screen and (max-width: 768px) {
  article.m_article a {
    padding: 8px 0;
    border-radius: 5px;
    padding: 8px;
  }
  article.m_article a .thumb .cat {
    position: absolute;
    right: 6.4px;
    top: 6.4px;
  }
  article.m_article a .thumb .cat ul li {
    padding: 2.4px 8px;
    font-size: 1rem;
  }
  article.m_article a .date {
    margin-top: 7px;
    font-size: 1.4rem;
  }
  article.m_article a h3 {
    margin-top: 2.4px;
    font-size: 1.4rem;
  }
  article.m_article a p {
    margin-top: 2.4px;
    font-size: 1rem;
  }
  article.m_article a .writer {
    margin-top: 8px;
    display: flex;
    justify-content: right;
    gap: 4px;
  }
  article.m_article a .writer .icon {
    width: 16px;
    height: 16px;
  }
  article.m_article a .writer .icon img {
    width: 100%;
  }
  article.m_article a .writer p {
    font-size: 1rem;
  }
  .m_fixed-btn {
    top: initial;
    right: initial;
    bottom: 0;
    left: 0;
    padding: 24px 0 8px;
    transform: translateY(100%);
    width: 100%;
    background-color: rgb(255, 255, 255);
  }
  .m_fixed-btn.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0%);
  }
  .m_fixed-btn .btns {
    flex-direction: row;
  }
  .m_fixed-btn .btns a {
    position: relative;
    width: 48.75%;
    height: 48px;
    padding: 4px 0px;
    gap: 8px;
    border-radius: 5px;
  }
  .m_fixed-btn .btns a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 11px;
    height: 18px;
    font-size: 1.6rem;
  }
  .m_fixed-btn .btns a i {
    display: block;
    width: 16px;
    height: 16px;
  }
  .m_fixed-btn .btns a .txt-gr {
    text-align: left;
    display: block;
  }
  .m_fixed-btn .btns a .txt-gr .upper {
    font-size: 1rem;
    position: absolute;
    top: -21px;
    width: 100%;
    left: 0;
    text-align: center;
  }
  .m_fixed-btn .btns a .txt-gr .main {
    font-size: 1.2rem;
  }
  .m_fixed-btn .btns a.mail {
    margin-bottom: 0px;
    border: 2px solid #DD111C;
  }
  .m_fixed-btn .btns a.mail i {
    width: 24px;
    height: 20px;
  }
  .m_fixed-btn .btns a.mail .txt-gr .upper {
    color: #DD111C;
  }
  .m_fixed-btn .btns a.line {
    border: 2px solid #1dba00;
  }
  .m_fixed-btn .btns a.line i {
    width: 24px;
    height: 24px;
  }
  .m_fixed-btn .btns a.line .txt-gr .upper {
    color: #1dba00;
  }
}/*# sourceMappingURL=module.css.map */