@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Open+Sans&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}
.section-pagetitle {
  text-align: center;
}
.section-pagetitle h1 {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 0;
  margin: 80px 0;
  font-size: 240%;
  word-break: keep-all;
}
.section-pagetitle h1::after {
  display: block;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 25px;
  background: #ffe146;
  width: 100%;
  height: 16px;
  z-index: -1;
}

/* --------------------------------------------------
導入事例 /case
-------------------------------------------------- */
/* 一覧 */
.section-caselist {
  margin-block-end: 120px;
  margin-block-start: 80px;
  margin-inline: auto;
  inline-size: var(--contents-width);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.section-caselist a {
  display: block;
  width: calc((100% - 80px) / 3);
  text-decoration: none;
  padding: 0;
  box-shadow: 0px 0px 6px rgb(0,0,0,0.1);
  border-radius: 5px;
  transition: all 0.3s 0s ease;
  color: inherit;
  overflow: hidden;
}
.caselist-thumb {
  overflow: hidden;
}
.caselist-thumb img {
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.caselist-text {
  margin: 20px;
}
.caselist-text h2 {
  font-size: 120%;
  margin: 0 0 15px;
}
.caselist-text p {
  margin: 0;
}
.section-caselist a:hover {
  box-shadow: 0px 0px 10px rgb(0,0,0,0.2);
}
.section-caselist a:hover .caselist-thumb img {
  transform: scale(1.05);
}
@media screen and (min-width: 1001px) {
}
@media screen and (max-width: 959px) {
  .section-caselist a {
    width: calc((100% - 40px) / 2);
  }
  .caselist-thumb img {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .section-caselist a {
    width: 100%;
  }
}
/* 詳細 */
.case-wrap {
  margin-block-end: 120px;
  margin-inline: auto;
  inline-size: var(--contents-width);
  max-inline-size: 800px;
  font-size: 16px;
  line-height: 1.6;
}
.case-company {
  font-size: 110%;
  background: rgba(143,195,31,1);
  color: #FFFFFF;
  display: inline-block;
  padding: 5px 14px;
  font-weight: normal;
  margin: 40px 0 18px 0;
}
.case-heading h2 {
  font-size: 26px;
  color: rgba(143,195,31,1);;
  font-weight: normal;
}
/* ご担当者のご紹介 */
.section-interviewee {
  margin-top: 10%;
}
.section-interviewee h3 {
  padding: 0;
  font-size: 110%;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section-interviewee h3 span {
  display: block;
  padding: 0 20px;
  white-space: nowrap;
}
.section-interviewee h3:before {
  content: '';
  height: 1px;
  width: 100%;
  background: #CCCCCC;
}
.section-interviewee h3:after {
  content: '';
  height: 1px;
  width: 100%;
  background: #CCCCCC;
}
.interviewee-content {
  display: flex;
  justify-content: center;
}
.interviewee-item {
  display: flex;
  justify-content: center;
  width: 50%;
}
.interviewee-thumb {
  width: 30%;
  margin: 0 10px 0 0;
}
.interviewee-text {
  width: 70%;
}
.interviewee-text {
  font-size: 80%;
}
.interviewee-text strong{
  font-size: 120%;
}
@media screen and (max-width: 599px){
  .interviewee-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .interviewee-item {
    width: 90%;
  }
}

/* 導入企業 */
.section-company {
  border: 1px #EEEEEE solid;
  box-sizing: border-box;
  padding: 26px;
  background: #F6F6F6;
  margin-top: 10%;
}
.section-company h3 {
  margin: 0;
}
.company-content {
  display: flex;
  justify-content: center;
}
.company-text {
  width: 70%;
}
.company-thumb {
  width: 30%;
  margin: 0 0 0 10px;
}
/* 記事 */
.section-article {
  margin-top: 10%;
}
.article-heading {
  font-size: 26px;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding: 24px 0 0 0;
}
.article-heading:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 5px;
  background: rgba(143,195,31,1);;
  content: "";
}
.article-heading:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #f6f6f6;
  content: "";
}
.section-article h4 {
  font-size: 110%;
  color: rgba(143,195,31,1);;
  margin-top: 10%;
}
.section-article strong {
  background: linear-gradient(transparent 70%, #fff5c4 70%);
}
.section-article .note {
  color: #999999;
}
.section-article .reference {
  font-size: 80%;
  text-align: center;
}