@charset "utf-8";

header {outline: solid 0px rgba(255, 220, 120, 0.00);}

.model-image-box{
  display:flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 200px;
  height: calc(100vw * 200 / 800);
}

.model-image-box img{
  height: 100%;
  width: auto;
}

.article-box{
  display: flex;
  width: calc(100% - 30px);
  max-width: 980px;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content:center;
  border:1px solid rgba(120,120,120,1.00);
  background-color: rgba(255,255,255,1.00);
  margin: 0 auto 30px auto;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 8px 8px 4px  rgba(0,0,0,0.50);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.article-box .title {
  width: calc(100% - 0px);
  font-size: 28px;
  line-height: 38px;
  font-weight: bold;
  padding: 10px 10px;
  margin-top: 10px;
  text-align: center;
  color: rgba(255,255,255,1.00);
  background-color: rgba(125, 77, 243, 1.00);
  border-radius:10px;
}
@media screen and (min-width: 980px) and (max-width: 1399px){.article-box .title {font-size: 2.2vw;line-height: 2.5vw;}}
@media screen and (min-width: 640px) and (max-width: 979px){.article-box .title {font-size: 2.8vw;line-height: 3.2vw;}}
@media screen and (max-width: 639px){.article-box .title {font-size: 4.0vw;line-height: 4.4vw;}}

.article-box .date {
  width: calc(100% - 0px);
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  padding-left: 4px;
  margin-top: 10px;
  text-align: left;
  color: rgba(30,30,30,1.00);
}

.article-box .categories {
  width: calc(100% - 0px);
  max-width: 980px;
  margin: 10px auto 10px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}
.article-box .categories a {
  width: auto;
  color: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  margin: 5px;
  padding: 4px 12px 2px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  border-radius: 16px;
  cursor: pointer;
  background-color: rgba(90, 90, 90, 1.00);
  border: 1px solid rgba(90, 90, 90, 1.00);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-box .categories a:hover {
  background-color: #44AEF9;
}

@media screen and (min-width: 640px) and (max-width: 979px){
  .article-box {
    width: calc(100% - 20px); 
    margin: 10px 10px;
    box-shadow: 6px 6px 4px  rgba(0,0,0,0.50);
  }
}
@media screen and (max-width: 639px){
  .article-box {
    width: calc(100% - 12px); 
    margin: 6px 6px 18px 6px;
    box-shadow: 4px 4px 2px  rgba(0,0,0,0.50);
  }
}

.article-box main{
  width: 94%;
  max-width: 980px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 0px;
  margin: 20px auto 40px;
  word-wrap: break-word;
  white-space: pre-wrap;
  color: #010101;
}

.article-box main img{
  width: unset;
  padding: unset;
  margin: unset;
  border: unset;
  line-height: unset;
}
.article-box main a:link, .article-box  main a:visited, .article-box main a:hover, .article-box  main a:active {
  text-decoration: revert;
  outline: revert;
}


