@charset "UTF-8";
/*---------------------------------
  mixin
---------------------------------*/
/*---------------------------------
  base
---------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 567px) {
  html {
    overflow-x: hidden;
  }
}

body {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  word-break: break-all;
  background: #fff;
  min-width: 1280px;
}
@media (max-width: 567px) {
  body {
    min-width: initial;
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
a img {
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
a:hover {
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  opacity: 0.6;
}

.heading {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 567px) {
  .heading {
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #4987cc;
  }
}
.heading-line {
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #4987cc;
}

/*---------------------------------
  author(著者プロフィール)
---------------------------------*/
.author-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 30px;
  margin-top: 20px;
  background: #f7f7f7;
  border-radius: 8px;
}
@media (max-width: 567px) {
  .author-profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    text-align: center;
  }
}
.author-profile__img img {
  width: 120px;
  height: 120px;
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1019607843);
}
.author-profile__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.author-profile__role {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #4987cc;
  border-radius: 12px;
}
.author-profile__name {
  margin-top: 8px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}
.author-profile__txt {
  margin-top: 12px;
  line-height: 1.8;
  color: #333;
}
.author-profile__field {
  margin-top: 16px;
}
.author-profile__field-ttl {
  font-size: 13px;
  font-weight: bold;
  color: #4987cc;
}
.author-profile__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 567px) {
  .author-profile__tags {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.author-profile__tags li {
  padding: 4px 14px;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
}
.author-profile__org {
  margin-top: 16px;
  font-size: 13px;
  color: #808080;
}
.author-profile__org a {
  color: #4987cc;
  text-decoration: underline;
}

.author-articles__ttl {
  padding-bottom: 12px;
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #4987cc;
}
