@charset "UTF-8";
.st-wrapper {
  overflow: visible;
}

.st-wrapper.is-index-open::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10000;
}

/* 記事一覧・詳細用 */
.articles {
  padding-top: 75px;
  padding-bottom: 80px;
}

.articles__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.articles__side {
  width: 220px;
}

.articles__side dl {
  margin: 0;
}

.articles__side dl + dl {
  margin-top: 45px;
}

.articles__side dl dt {
  color: #666;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: solid 1px #ccc;
  padding-bottom: 9px;
}

.articles__side dl dd {
  margin: 10px 0 0;
}

.articles__side__list li a {
  display: block;
  padding: 9px 10px;
  position: relative;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.articles__side__list li a::after {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.articles__side__list li a:hover, .articles__side__list li a.is-active {
  background: #69C2C7;
  color: #fff;
  opacity: 1;
}

.articles__side__list li a:hover::after, .articles__side__list li a.is-active::after {
  border-color: #fff;
}

.articles__main {
  width: 700px;
}

.articles__main article {
  position: relative;
  padding: 50px 0;
  border-bottom: solid 1px #ccc;
  overflow: hidden;
}

.articles__main article.-no-img .c-article-ttl,
.articles__main article.-no-img .c-article-summary,
.articles__main article.-no-img .articles__link-list {
  width: 100%;
  float: none;
}

.articles__main article:first-child {
  padding-top: 0;
}

.articles__main article:first-child .articles__share {
  top: 7px;
}

.articles__main article .c-article-info {
  margin-bottom: 20px;
}

.articles__main article .c-article-info time {
  margin-right: 14px;
}

.articles__main article .c-article-info.-media {
  display: block;
}

.articles__main article .c-article-info.-media time {
  display: block;
  margin: 0 0 6px;
}

.articles__main article .c-article-info.-media span {
  font-size: 1.6rem;
}

.articles__main article .c-article-ttl {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.75;
  width: 560px;
  float: right;
}

.articles__main article .c-article-subttl {
  width: 560px;
  float: right;
  margin: 10px 0 0;
}

.articles__main article .c-article-summary {
  margin-top: 17px;
  width: 560px;
  float: right;
}

.articles__media {
  width: 110px;
  float: left;
  margin: 0 30px 0 0;
}

.articles__link-list {
  margin-top: 37px;
  width: 560px;
  float: right;
}

.articles__link-list li + li {
  margin: 5px 0 0;
}

.articles__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 52px;
  right: -4px;
}

.articles__share li {
  line-height: 0;
  margin: 0 5px 0 0;
}

.articles__share .fb-share-button {
  line-height: 0;
}

.articles__pagenation {
  margin: 50px 0 0;
}

.articles__pagenation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.articles__pagenation-list li {
  width: 24px;
  margin: 0 6.5px;
}
.articles__pagenation-list li.all {
  width: 80px;
}
.articles__pagenation-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 24px;
  font-size: 1.4rem;
  color: #777;
  position: relative;
}

.articles__pagenation-list li.is-active a {
  background: #333;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.articles__pagenation-list li.-prev, .articles__pagenation-list li.-next, .articles__pagenation-list li.-all-prev, .articles__pagenation-list li.-all-next {
  position: absolute;
}

.articles__pagenation-list li.-prev a::before, .articles__pagenation-list li.-next a::before, .articles__pagenation-list li.-all-prev a::before, .articles__pagenation-list li.-all-next a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: solid 1px #333;
}

.articles__pagenation-list li.-all-prev a::after, .articles__pagenation-list li.-all-next a::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: solid 1px #333;
}

.articles__pagenation-list li.-prev a::before, .articles__pagenation-list li.-all-prev a::before {
  border-left: solid 1px #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.articles__pagenation-list li.-prev {
  left: 39px;
}

.articles__pagenation-list li.-all-prev {
  left: 0;
  margin: 0 15px 0 0;
}

.articles__pagenation-list li.-all-prev a::after {
  border-left: solid 1px #333;
  -webkit-transform: rotate(45deg) translate(4px, -4px);
  transform: rotate(45deg) translate(4px, -4px);
}

.articles__pagenation-list li.-next a::before, .articles__pagenation-list li.-all-next a::before {
  border-right: solid 1px #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.articles__pagenation-list li.-next {
  right: 39px;
}

.articles__pagenation-list li.-all-next {
  right: 0;
}

.articles__pagenation-list li.-all-next a::after {
  border-right: solid 1px #333;
  -webkit-transform: rotate(-45deg) translate(4px, 4px);
  transform: rotate(-45deg) translate(4px, 4px);
}

/* 研究一覧・研究成果一覧用 */
.article-box {
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.article-box.-no-post {
  padding: 40px;
}

.article-box a {
  display: block;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.article-box + .article-box {
  margin-top: 20px;
}

.article-box__media {
  width: 150px;
  float: left;
  margin: 0 30px 0 0;
}

.article-box .c-article-info {
  margin: 0 0 10px;
}

.article-box .c-article-info time {
  margin: 0 10px 0 0;
}

.article-box .c-article-info span {
  margin-right: 5px;
  font-size: 1.2rem;
}

.article-box .c-article-info .c-article-subttl {
  margin: 0 0 0 auto;
}

.article-box .c-article-ttl {
  font-size: 2.0rem;
  line-height: 1.7;
  font-weight: 700;
  margin: 0 0 7px;
}

.article-box .c-article-ttl span {
  border-bottom: none;
}

.article-box .c-article-author {
  font-size: 1.4rem;
  margin: 0 0 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.article-box__text {
  width: 740px;
  float: left;
}

.article-box .c-link {
  position: absolute;
  bottom: 0;
  right: 5px;
}

.articles__select {
  width: 130px;
}

.articles__select select {
  width: 100%;
  height: 30px;
  padding: 0 40px 0 20px;
  background: #fff url(../images/icn_arw_bt.png) no-repeat right 13px center;
  background-size: 12px 7px;
  border: solid 1px #ccc;
  letter-spacing: 0.2em;
  cursor: pointer;
}

/* 記事詳細 共通 */
.a-headline {
  font-size: 2.8rem;
  font-size: 175%;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: -6px 0 12px;
}

.a-headline span {
  display: block;
  font-size: 2.4rem;
  font-size: 85.7%;
  line-height: 1.6;
  margin: 7px 0 0;
}

.a-txt {
  letter-spacing: 0.04em;
  line-height: 2.1;
  margin-bottom: 23px;
}

.a-txt:last-child {
  margin-bottom: 0;
}

.a-txt a {
  text-decoration: underline;
}

.a-ttl-bd {
  font-size: 2.4rem;
  font-size: 133.3%;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
  margin: 0 0 13px;
}

.a-ttl-bd::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: #333;
  position: absolute;
  left: 0;
  top: 6px;
}

.a-image {
  width: 700px;
  margin: 38px auto 32px;
}

.a-image .c-txt-cap {
  margin-top: 15px;
}
.article-main a.tnp {
  color: #162a89;
}
.c-txt-cap a.np {
  color: #162a89;
}

.a-image img {
  width: 100%;
}

.a-image__ttl {
  font-size: 2.0rem;
  font-size: 125%;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

.a-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 40px;
}

.a-col__image {
  width: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 40px 0 0;
}

.a-col__image a img {
  width: 100%;
  border: solid 1px #ccc;
}

.a-col__image .c-txt-cap {
  margin-top: 10px;
  line-height: 1.4;
}

.a-col__image-ttl {
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}

.a-col__text {
  width: auto;
  margin-top: -12px;
}

.a-col--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.a-col--rev .a-col__image {
  margin-right: 0;
  margin-left: 40px;
}

.js-article-modal {
  display: block;
  position: relative;
}

.js-article-modal i {
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.a-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.a-card.-col2 {
  margin-left: -50px;
  margin-bottom: -50px;
}

.a-card.-col2 .a-card__item {
  width: 475px;
  margin-left: 50px;
  margin-bottom: 50px;
}

.a-card.-col4 {
  margin-left: -30px;
}

.a-card.-col4 .a-card__item {
  width: 227px;
  margin-left: 30px;
  margin-bottom: 30px;
}

.a-link-list {
  margin: 33px 0;
}

.a-link-list li + li {
  margin: 5px 0 0;
}

.a-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0;
}

.a-box__head {
  width: 110px;
  margin: 0 30px 0 0;
}

.a-box__head p {
  line-height: 1.6;
  margin: 11px 0 0;
  text-align: center;
}

.a-box__image {
  width: 100%;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
}

.a-box__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: -10px;
}

.a-box .c-txt-cap {
  margin-top: 18px;
}

.a-box__link-list {
  margin: 20px 0 38px;
}

.a-box__link-list li {
  margin-left: 1em;
  text-indent: -1em;
}

.a-box__link-list li + li {
  margin-top: 12px;
}

.a-box__link-list li a {
  text-decoration: underline;
}

.a-box__link-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 10px 2px 0;
}

.a-box__cap-list {
  margin: 38px 0 10px;
}

.a-box .c-link-ico a {
  font-size: 77.8%;
}

.a-box.-blue {
  background: #e7f1fb;
  padding: 40px 40px 32px;
}

.a-box.-gray {
  background: #f7f7f7;
  padding: 40px 40px 32px;
}

.a-box.-pj {
  display: block;
  padding: 50px 50px 45px;
  margin-bottom: 30px;
}

/* エリア */
article.-vision .article-head {
  background: url(../images/papers/bg_head_vision_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-vision .article-head .article-head__categ {
  color: #63943c;
}

article.-vision .article-about__conts {
  background: url(../images/papers/bg_about_vision_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-vision .article-about__key dt {
  background: #8eb66e;
}

article.-vision .article-about__key dd {
  color: #5b9031;
}

article.-vision .article-about__link a {
  background: #8eb66e;
}

article.-opinion .article-head {
  background: url(../images/papers/bg_head_opinion_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-opinion .article-head .article-head__categ {
  color: #182c8a;
}

article.-opinion .article-about__conts {
  background: url(../images/papers/bg_about_opinion_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-opinion .article-about__key dt {
  background: #182c8a;
}

article.-opinion .article-about__key dd {
  color: #182c8a;
}

article.-opinion .article-about__link a {
  background: #182c8a;
}

article.-opinion .article-head__categ-ico {
  background-image: url(../images/icn_opinion_paper_bl.svg);
}

article.-reports .article-head {
  background: url(../images/papers/bg_head_reports_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-reports .article-head .article-head__categ {
  color: #ac8a1d;
}

article.-reports .article-about__conts {
  background: url(../images/papers/bg_about_reports_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-reports .article-about__key dt {
  background: #ac8a1d;
}

article.-reports .article-about__key dd {
  color: #ac8a1d;
}

article.-reports .article-about__link a {
  background: #ac8a1d;
}

article.-reports .article-head__categ-ico {
  background-image: url(../images/icn_reports_yell.svg);
}

article.-note .article-head {
  background: url(../images/papers/bg_head_note_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-note .article-head .article-head__categ {
  color: #4882af;
}

article.-note .article-about__conts {
  background: url(../images/papers/bg_about_note_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-note .article-about__key dt {
  background: #4882af;
}

article.-note .article-about__key dd {
  color: #4882af;
}

article.-note .article-about__link a {
  background: #4882af;
}

article.-note .article-head__categ-ico {
  background-image: url(../images/icn_note_bl.svg);
}

article.-paper .article-head {
  background: url(../images/papers/bg_head_paper_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-paper .article-head .article-head__categ {
  color: #cf664c;
}

article.-paper .article-about__conts {
  background: url(../images/papers/bg_about_paper_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-paper .article-about__key dt {
  background: #cf664c;
}

article.-paper .article-about__key dd {
  color: #cf664c;
}

article.-paper .article-about__link a {
  background: #cf664c;
}

article.-paper .article-head__categ-ico {
  background-image: url(../images/icn_paper_org.svg);
}

article.-data .article-head {
  background: url(../images/papers/bg_head_data_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-data .article-head .article-head__categ {
  color: #b63d3d;
}

article.-data .article-about__conts {
  background: url(../images/papers/bg_about_data_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-data .article-about__key dt {
  background: #b63d3d;
}

article.-data .article-about__key dd {
  color: #b63d3d;
}

article.-data .article-about__link a {
  background: #b63d3d;
}

article.-data .article-head__categ-ico {
  background-image: url(../images/icn_data_red.svg);
}

article.-others .article-head {
  background: url(../images/papers/bg_head_others_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-others .article-head .article-head__categ {
  color: #582929;
}

article.-others .article-about__conts {
  background: url(../images/papers/bg_about_others_pc.jpg) no-repeat center center;
  background-size: cover;
}

article.-others .article-about__key dt {
  background: #582929;
}

article.-others .article-about__key dd {
  color: #582929;
}

article.-others .article-about__link a {
  background: #582929;
}

article.-others .article-head__categ-ico {
  background-image: url(../images/icn_others_br.svg);
}

.article-head {
  padding: 30px 0 50px;
  margin: 0 0 50px;
}

.article-head .c-column {
  position: relative;
  overflow: hidden;
}

.article-head .a-headline {
  width: 790px;
  float: right;
}

.article-head__categ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 28px;
}

.article-head__categ-ico {
  width: 46px;
  height: 46px;
  background: url(../images/icn_vision_gr.svg) no-repeat center center;
  background-size: 100% 100%;
  margin: 0 20px 0 0;
}

.article-head__categ-ttl {
  display: inline-block;
  font-size: 1.8rem;
  font-size: 112.5%;
  margin: 0 30px 0 0;
}

.article-head__categ-num {
  margin: 0 16px 0 0;
}

.article-head__image {
  width: 180px;
  float: left;
  margin: 0 30px 0 0;
}

.article-head__right {
  width: 790px;
  float: right;
  padding-bottom: 50px;
}

.is-text .article-head__right {
  padding-bottom: 0;
}

.article-head__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 25px;
}

.article-head__read {
  font-size: 1.4rem;
  font-size: 87.5%;
}

.article-head__text {
  font-size: 1.8rem;
  font-size: 112.5%;
  line-height: 2.1;
  width: 790px;
  float: right;
  padding-bottom: 45px;
}

/* 印刷 */
.article-print {
  width: 25px;
  line-height: 0;
  margin: 0 0 0 13px;
  cursor: pointer;
}

/* SNS */
.article-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0 10px;
}

.article-share li {
  line-height: 0;
  height: 20px;
}

.article-share li + li {
  margin: 0 0 0 5px;
}

/* PDFボタン */
.article-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 50px;
}

.article-pdf li {
  width: 200px;
  margin: 0 10px;
}

.article-pdf li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  background: #162a89 url(../images/icn_dl.png) no-repeat right 20px center;
  background-size: 13px auto;
  border-radius: 40px;
  color: #fff;
}

.article-pdf li a span {
  font-family: 'Muli', sans-serif;
}

.article-font-size {
  padding-bottom: 15px;
}

.article-font-size .c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.article-font-size .c-column p {
  font-size: 1.2rem;
}

.article-font-size .c-column ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0 8px;
}

.article-font-size .c-column ul li {
  width: 24px;
  height: 24px;
  background: #fff;
  border: solid 1px #162a89;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.article-font-size .c-column ul li + li {
  margin: 0 0 0 5px;
}

.article-font-size .c-column ul li.is-active {
  background: #162a89;
  color: #fff;
}

/*  */
.article-top {
  margin: 0 0 80px;
}

.article-top .c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article-top h2 {
  width: 206px;
  padding: 0 0 30px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: -4px 44px 0 0;
}

.article-top h2.-fs-small span {
  line-height: 1.2;
  margin: 0 0 13px;
}

.article-top h2::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: 6px;
}

.article-top__conts {
  width: 950px;
}

.article-top__conts .article-about__image {
  width: 12.94117647%;
}

/* ABOUT THIS ISSUE */
.article-about {
  font-size: 1.6rem;
}

.article-body .article-about {
  margin: 0 -50px 38px;
}

.article-about__conts {
  padding: 50px 4.166666666% 42px;
  position: relative;
  margin: 0 0 12.5px;
}

.article-body .article-about__conts {
  padding: 40px 40px 40px;
  margin: 0;
  overflow: hidden;
}

.article-about__ttl {
  font-size: 2.4rem;
  font-size: 150.0%;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: -13px 0 0;
  width: 83.529411764%;
  float: right;
}

.article-body .article-about__ttl {
  width: 780px;
}

.article-about__sub-ttl {
  font-size: 2.0rem;
  font-size: 125.0%;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  width: 83.529411764%;
  float: right;
}

.article-body .article-about__sub-ttl {
  width: 780px;
}

.article-about__prof {
  width: 83.529411764%;
  float: right;
  margin-top: 6px;
}

.article-body .article-about__prof {
  width: 780px;
}

.article-about__name {
  font-size: 1.8rem;
  font-size: 112.5%;
}

.article-about__name small {
  font-size: 1.4rem;
  font-size: 77.8%;
}

.article-about__name a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 0 2px 5px;
}

.article-about__name a span {
  border-bottom: solid 1px;
}

.article-about__image {
  width: 110px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
}

.article-about__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.article-about__text {
  clear: both;
  width: 100%;
  padding-top: 13px;
  line-height: 2.25;
}
.article-about__text p {
  line-height: 1.875;
}
.article-about__text a {
  text-decoration: underline;
}

.article-about__link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12.5px;
  margin: 0 auto;
  text-align: center;
}

.article-about__link a {
  width: 200px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 25px;
  margin: 0 auto;
}

.article-about__link img {
  width: 16px;
}

.article-about__key {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  float: right;
  width: 780px;
  margin: 21px 0 0;
}

.article-about__key dt {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.0;
  color: #fff;
  background: #8eb66e;
  border-radius: 20px;
  width: 110px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 3px 0 0;
}

.article-about__key dd {
  color: #5b9031;
  font-size: 1.4rem;
  font-size: 87.5%;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin: 0 0 0 20px;
}

/* EXPERT OPINIONS */
.article-ex__lead {
  line-height: 2.25;
  margin: 0 0 50px;
}

.article-ex__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.842105263% -30px;
}

.article-ex__list li {
  width: 27.888446215%;
  margin: 0 2.689243027% 30px;
}

.article-ex__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article-ex__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 39.285714285%;
  margin: 0 6.071428571% 0 0;
  border-radius: 50%;
  overflow: hidden;
}

.article-ex__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.article-ex__info span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-ex__info span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  -webkit-transform: rotate(45deg) skew(-2deg);
  transform: rotate(45deg) skew(-2deg);
  margin: 0 0 4px 8px;
}

.article-ex__info small {
  display: block;
  font-size: 1.6rem;
  color: #777;
  line-height: 1.5;
  margin: 7px 0 0;
}

.article-ex__cap {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #777;
  margin: 46px 0 0;
}

/* データで見るアンカーリンク */
.article-data-nav .c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article-data-nav__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  width: 200px;
  position: relative;
  text-align: right;
  margin: -4px 0 0;
}

.article-data-nav__ttl::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}

.article-data-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 79.1666666666%;
}

.article-data-nav__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  counter-increment: number;
  width: 47.368421052%;
  margin: 0 0 10px;
}

.article-data-nav__list li::before {
  content: counter(number) ".";
  font-family: 'Muli', sans-serif;
  font-size: 2.0rem;
  line-height: 1.7;
  margin: -5px 10px 0 0;
  color: #000;
}

.article-data-nav__list li a {
  line-height: 1.6;
}

.article-data-nav__list li a span {
  border-bottom: solid 1px #333;
}

.article-data-nav__list li a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  margin: 0 0 3px 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 記事本文 */
.article-body {
  margin-top: 80px;
  padding-bottom: 80px;
  font-size: 1.8rem;
  font-size: 112.5%;
  line-height: 2.1;
  word-break: break-word;
}

.article-body a {
  text-decoration: underline;
}

.article-body .c-txt-cap {
  font-size: 77.8%;
}

/* 著者情報 */
.article-author {
  margin: 40px 0 45px;
}

.article-author .c-txt-cap span {
  font-size: 1.6rem;
  font-size: 114.3%;
  font-weight: 700;
}

.article-author .c-txt-cap small {
  font-size: 1.4rem;
  font-size: 87.5%;
}

.article-author__block {
  display: none;
}

.article-author .js-author-toggle {
  position: relative;
  cursor: pointer;
}

.article-author .js-author-toggle i {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  background: #162a89;
  border-radius: 50%;
  margin: 0 0 0 5px;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.article-author .js-author-toggle i::before, .article-author .js-author-toggle i::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.article-author .js-author-toggle i::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.article-author .js-author-toggle.is-active i::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.article-author .js-author-toggle.is-active i::after {
  opacity: 0;
}

/* 推薦する1冊 */
.article-rec {
  background: #f7f7f7;
  padding: 22px 40px 25px 180px;
  position: relative;
  margin: 45px 0 0;
  font-size: 1.4rem;
  font-size: 87.5%;
  line-height: 1.7;
}

.article-rec img {
  width: 110px;
  position: absolute;
  top: -11px;
  left: 40px;
}

.article-rec__text {
  font-size: 1.4rem;
  font-size: 87.5%;
  line-height: 1.7;
  margin: 5px 0 0;
}

/*  */
.article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 30px 0 0;
}

/* データで見る */
.article-data .c-column {
  position: relative;
  padding-top: 80px;
}

.article-data .c-column::before {
  content: "";
  display: block;
  width: calc(100% - 50px);
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.article-data__list {
  font-size: 83.3%;
}

.article-data__list li {
  counter-increment: number;
}

.article-data__image {
  margin: 0 0 26px;
}

.article-data__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 2.0rem;
  font-size: 133.3%;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0 0 15px;
}

.article-data__ttl::before {
  content: counter(number) ".";
  font-family: 'Muli', sans-serif;
  margin: 0 5px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.article-data__link {
  font-size: 1.4rem;
  margin: 10px 0 0;
}

.article-data__link a::after {
  margin: 0 0 2px 5px;
}

.article-data__link a span {
  border-bottom: solid 1px;
}

/* 関連公表物 */
.article-rel {
  padding-top: 68px;
}

.article-rel__image {
  margin: 0 0 15px;
}

.article-rel__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.article-rel__text {
  font-size: 88.9%;
}

.article-rel__ttl {
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 7px;
}

.article-rel__name {
  line-height: 1.6;
}

/* キャプションエリア */
.article-cap {
  margin-top: 72px;
}

.article-cap p {
  line-height: 1.7;
}

.article-cap a {
  text-decoration: underline;
  word-break: break-all;
}

/* ボタンエリア */
.article-btns {
  margin-top: 45px;
}

.article-btns a {
  margin-top: 20px;
}

.article-btns a:first-child {
  margin-top: 0;
}

.article-btns a.c-btn {
  width: 300px;
  height: 50px;
  letter-spacing: 0.2em;
}

.article-btns a.c-btn::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 35px;
  right: inherit;
}

.article-btns a.c-btn-bd {
  width: 300px;
}

.article-btns a.c-btn-bd::after {
  right: 35px;
  width: 7px;
  height: 7px;
}

.article-head .article-btns {
  margin: 0;
  position: absolute;
  right: 25px;
}

.article-head .article-btns a {
  margin: 0 0 0 auto;
}

.article-head .article-btns a.c-btn-bd {
  background: #fff;
  font-size: 1.2rem;
  width: 155px;
  height: 35px;
  padding: 0 10px 0 0;
}

.article-head .article-btns a.c-btn-bd::after {
  right: 13px;
  width: 5px;
  height: 5px;
}

/* 詳細A */
.article-a .article-body .a-ttl {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.4rem;
  font-size: 188.9%;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.0;
  text-align: center;
  margin: 0 0 50px;
}

.article-a .article-body .a-sub-ttl {
  font-size: 2.4rem;
  font-size: 133.3%;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 54px 0 24px;
}

.article-a .article-body .a-sub-ttl:first-child {
  margin-top: 0;
}

.article-a .article-body .a-sub-ttl2 {
  font-size: 2.4rem;
  font-size: 133.3%;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 30px 0 15px;
  padding: 0 0 0 15px;
  position: relative;
}

.article-a .article-body .a-sub-ttl2:first-child {
  margin-top: 0;
}

.article-a .article-body .a-sub-ttl2::before {
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 13px);
  background: #333;
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
}

.article-a .article-body section:first-child .a-column {
  padding-top: 0;
}

.article-a .article-body section + section .a-column {
  border-top: solid 1px #ccc;
}

.article-a .article-body section .a-column {
  max-width: 1000px;
  padding: 80px 50px 70px;
  margin: 0 auto;
}

/* 詳細B */
.article-side {
  width: 250px;
  font-size: 1.6rem;
}

.article-side__ttl {
  display: none;
}

.article-side--fellows {
  background: #e7f1fb;
  padding: 25px 20px;
}

.article-side--fellows dl {
  margin: 0;
  padding: 13px 10px 15px;
}

.article-side--fellows dl + dl {
  border-top: solid 1px #fff;
}

.article-side--fellows dl:first-child {
  padding-top: 0;
}

.article-side--fellows dl:last-child {
  padding-bottom: 0;
}

.article-side--fellows dl dt {
  font-weight: 700;
  margin: 0 0 8px;
}

.article-side--fellows dl dd {
  margin: 0;
  font-size: 1.4rem;
  font-size: 87.5%;
  letter-spacing: 0;
  line-height: 1.7;
}

.article-side--nav {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.article-side--nav .article-side__index {
  border-top: solid 1px #ccc;
}

.article-side--nav .article-side__index a {
  display: block;
  padding: 15px 20px;
  font-size: 1.5rem;
  font-size: 100%;
  line-height: 1.5;
  text-decoration: none;
}

.article-side--nav .article-side__index > li {
  border-bottom: solid 1px #ccc;
}

.article-side--nav .article-side__index dl {
  margin: 0;
}

.article-side--nav .article-side__index dl dt {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  font-size: 93.8%;
  line-height: 1.5;
  padding-right: 50px;
  background: #e5e5e5;
}

.article-side--nav .article-side__index dl dt.is-nochild {
  padding-right: 0;
}

.article-side--nav .article-side__index dl dt.is-nochild::before, .article-side--nav .article-side__index dl dt.is-nochild::after {
  display: none;
}

.article-side--nav .article-side__index dl dt.is-nochild a,
.article-side--nav .article-side__index dl dt.is-nochild span {
  padding-right: 20px;
}

.article-side--nav .article-side__index dl dt a,
.article-side--nav .article-side__index dl dt span {
  display: block;
  padding: 15px 0 15px 20px;
}

.article-side--nav .article-side__index dl dt::before, .article-side--nav .article-side__index dl dt::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.article-side--nav .article-side__index dl dt::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.article-side--nav .article-side__index dl dt.is-current {
  background: rgba(191, 217, 241, 0.5);
}

.article-side--nav .article-side__index dl dt.is-active::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.article-side--nav .article-side__index dl dt.is-active::after {
  opacity: 0;
}

.article-side--nav .article-side__index dl dd {
  display: none;
  margin: 0;
}

.article-side--nav .article-side__sub-index {
  border-top: solid 1px #ccc;
}

.article-side--nav .article-side__sub-index li {
  border-bottom: solid 1px #ddd;
}

.article-side--nav .article-side__sub-index li:last-child {
  border-bottom: none;
}

.article-side--nav .article-side__sub-index a {
  background: #f7f7f7;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.4rem;
  font-size: 87.5%;
  line-height: 1.6;
}

.article-side--nav .article-side__sub-index a::before {
  content: "-";
  margin: 0 5px 0 0;
}

.article-side--nav .article-side__sub-index a.is-active {
  background: rgba(191, 217, 241, 0.5);
  pointer-events: none;
}

.article-side--fix-nav {
  max-height: calc(100vh - 110px);
  overflow: auto;
}

.sp-fix-nav {
  display: none;
}

.article-main {
  width: 72.5%;
}

.article-b .article-body .a-column {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

.article-b .article-body__top {
  margin: 0 0 80px;
}

.article-b .article-body__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article-b .article-body .a-ttl {
  font-size: 2.8rem;
  font-size: 155.6%;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background: #f7f7f7;
  padding: 11px 30px;
  position: relative;
  margin: 110px 0 20px;
}

.article-b .article-body .a-ttl:first-child {
  margin-top: 0;
}

.article-b .article-body .a-ttl::before {
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 38px);
  background: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.article-b .article-body .a-ttl small {
  display: block;
  font-size: 2.4rem;
  font-size: 85.7%;
}

.article-b .article-body .a-sub-ttl {
  font-size: 2.4rem;
  font-size: 133.3%;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 50px 0 30px;
  padding: 0 0 0 15px;
  position: relative;
}

.article-b .article-body .a-sub-ttl:first-child {
  margin-top: 0;
}

.article-b .article-body .a-sub-ttl::before {
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 13px);
  background: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.article-b .article-body .a-sub-ttl2 {
  font-size: 2.2rem;
  font-size: 122.2%;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 30px 0 15px;
}

.article-b .article-body .a-sub-ttl2:first-child {
  margin-top: 0;
}

.article-b .article-body .a-sub-ttl3 {
  font-size: 2.2rem;
  font-size: 122.2%;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: 0 0 25px;
}

.article-b .article-body .a-col {
  margin: 60px 0;
}

.article-b .article-info {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.article-b .article-info a {
  text-decoration: underline;
}

.article-b .article-info .article-print {
  margin: 0 0 0 auto;
}

.article-movie {
  margin: 60px 0;
  padding-top: 56.25%;
  position: relative;
}

.article-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

img.mfp-img {
  padding: 10px;
  background: #fff;
  -webkit-box-shadow: 5px 5px 30px 0 rgba(0, 11, 62, 0.2);
  box-shadow: 5px 5px 30px 0 rgba(0, 11, 62, 0.2);
}
.mfp-inline-holder > .mfp-content {
  width: 475px;
}
.mfp-inline-holder > .mfp-content > .mfpinlinebox {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  display: block;
  position: relative;
}
.mfpinlinebox .article-data__ttl::before {
  content: none;
}
@media only screen and (max-width: 768px) {
  .mfp-inline-holder > .mfp-content {
    width: calc(100% - 20px);
  }
}

.mfp-inline-holder .uparrow {
  display: none;
}

.mfp-image-holder .mfp-close,
.mfp-inline-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  width: 26px;
  height: 26px;
  font-size: 0;
  padding: 0;
  right: 0;
  top: -41px;
  margin: 0;
  opacity: 1;
}

.mfp-image-holder .mfp-close::before, .mfp-image-holder .mfp-close::after,
.mfp-inline-holder .mfp-close::before, .mfp-inline-holder .mfp-close::after,
.mfp-iframe-holder .mfp-close::before,
.mfp-iframe-holder .mfp-close::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mfp-image-holder .mfp-close::after,
.mfp-inline-holder .mfp-close::after,
.mfp-iframe-holder .mfp-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mfp-bg {
  background: #000;
  opacity: 0.5;
}

.c-txt-cap {
  font-size: 87.5%;
}

.article-body .article-about__name a,
.article-body .article-data__link a,
.article-body .article-rel a,
.article-body .article-btns a {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .articles {
    padding: 22px 0 75px;
  }

  .articles__wrap {
    display: block;
  }

  .articles__side {
    width: auto;
    margin: 0 -15px;
  }

  .articles__side dl + dl {
    margin-top: 20px;
  }

  .articles__side dl dt {
    border: none;
    padding: 0 13px;
  }

  .articles__side dl dd {
    width: 100%;
    overflow: auto;
    margin: 5px 0 0;
  }

  .articles__side__list {
    white-space: nowrap;
    font-size: 0;
    letter-spacing: 0;
    word-spacing: 0;
  }

  .articles__side__list li {
    display: inline-block;
    border: solid 1px #ccc;
    border-left: none;
    min-width: 75px;
  }

  .articles__side__list li:first-child {
    border-left: solid 1px #ccc;
  }

  .articles__side__list li a {
    text-align: center;
    padding: 10.5px 13px;
  }

  .articles__side__list li a::after {
    display: none;
  }

  .articles__main {
    width: 100%;
    margin: 40px 0 0;
  }

  .articles__main article {
    padding: 40px 0;
  }

  .articles__main article .c-article-info {
    margin-top: 7px;
  }

  .articles__main article .c-article-info time {
    font-size: 1.6rem;
    margin: 0 0 5px;
  }

  .articles__main article .c-article-info span {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .articles__main article .c-article-ttl {
    width: 100%;
    float: none;
    clear: both;
    font-size: 1.8rem;
    line-height: 1.6;
  }

  .articles__main article .c-article-subttl {
    width: 100%;
    float: none;
    clear: both;
  }

  .articles__main article .c-article-summary {
    width: 100%;
    float: none;
    margin-top: 15px;
  }

  .articles__media {
    width: 75px;
    margin: 0 15px 18px 0;
  }

  .articles__link-list {
    width: 100%;
    float: none;
    margin-top: 30px;
  }

  .articles__link-list li + li {
    margin: 13px 0 0;
  }

  .articles__share {
    position: static;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    margin: 30px 0 0;
  }

  .articles__pagenation {
    margin: 40px 0 0;
  }

  .articles__pagenation-list li {
    width: 27.5px;
    margin: 0 7.5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .articles__pagenation-list li a {
    font-size: 1.6rem;
    height: 27.5px;
  }

  .articles__pagenation-list li.-prev, .articles__pagenation-list li.-next, .articles__pagenation-list li.-all-prev, .articles__pagenation-list li.-all-next {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .articles__pagenation-list li.-prev a::before, .articles__pagenation-list li.-next a::before, .articles__pagenation-list li.-all-prev a::before, .articles__pagenation-list li.-all-next a::before {
    width: 15px;
    height: 15px;
  }

  .articles__pagenation-list li.-all-prev a::after, .articles__pagenation-list li.-all-next a::after {
    width: 15px;
    height: 15px;
  }

  .articles__pagenation-list li.-prev {
    left: 40px;
  }

  .articles__pagenation-list li.-all-prev {
    margin: 0 5.797101449% 0 0;
  }

  .articles__pagenation-list li.-next {
    right: 40px;
  }

  .article-box.-no-post {
    padding: 30px 15px 25px;
  }

  .article-box a {
    padding: 30px 15px 25px;
  }

  .article-box + .article-box {
    margin-top: 10px;
  }

  .article-box__media {
    width: 21.739130434%;
    margin: 0 5.797101449% 18px 0;
  }

  .article-box .c-article-info {
    width: 72.4633768115%;
    float: left;
    line-height: 1.8;
    margin-top: -4px;
  }

  .article-box .c-article-info span {
    font-size: 1.4rem;
    padding: 1px 10px;
  }

  .article-box .c-article-ttl {
    clear: both;
    font-size: 1.8rem;
  }

  .article-box .c-article-ttl span {
    border-bottom: solid 1px;
  }

  .article-box__text {
    width: auto;
    float: none;
  }

  .article-box .c-link {
    position: static;
    width: 200px;
    height: 40px;
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.125;
    background: -webkit-gradient(linear, left top, right top, from(#162a89), to(#01afd3));
    background: linear-gradient(to right, #162a89 0%, #01afd3 100%);
    padding: 0;
    margin: 14px auto 0;
    position: relative;
  }

  .article-box .c-link::before {
    display: none;
  }

  .article-box .c-link::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .articles__select {
    width: 150px;
  }

  .articles__select select {
    height: 40px;
  }

  .a-headline {
    font-size: 1.8rem;
    font-size: 112.5%;
    margin: -5px 0 10px;
  }

  .a-headline span {
    font-size: 1.6rem;
    font-size: 88.9%;
  }

  .a-txt {
    font-size: 1.6rem;
    font-size: 100%;
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .a-ttl-bd {
    padding-left: 15px;
    font-size: 1.8rem;
    font-size: 112.5%;
    margin: 0 0 7px;
  }

  .a-ttl-bd::before {
    height: 18px;
  }

  .a-image {
    width: 100%;
    margin: 20px auto;
  }

  .a-image .c-txt-cap {
    margin-top: 10px;
  }

  .a-image__ttl {
    font-size: 100%;
    line-height: 1.6;
  }

  .a-col {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 23px 0;
  }

  .a-col__image {
    width: 67%;
    margin: 20px auto 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .a-col__image .c-txt-cap {
    margin-top: 13px;
  }

  .a-col__text {
    width: 100%;
    margin-top: 0;
  }

  .a-col--rev .a-col__image {
    margin: 20px auto 0;
  }

  .a-card {
    display: block;
  }

  .a-card.-col2 {
    margin: 0 0 -30px;
  }

  .a-card.-col2 .a-card__item {
    width: 100%;
    margin: 0 0 27px;
  }

  .a-card.-col4 {
    margin: 0;
  }

  .a-card.-col4 .a-card__item {
    margin: 0 0 15px;
    width: 100%;
  }

  .a-link-list li + li {
    margin: 10px 0 0;
  }

  .a-box {
    display: block;
  }

  .a-box__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 33px;
  }

  .a-box__head p {
    font-size: 1.8rem;
    font-size: 112.5%;
    font-weight: 700;
  }

  .a-box__image {
    width: 100px;
    height: 100px;
    margin: 0 15px 0 0;
  }

  .a-box__link-list {
    margin-bottom: 30px;
  }

  .a-box__link-list li + li {
    margin-top: 15px;
  }

  .a-box__link-list li {
    font-size: 1.4rem;
    font-size: 87.5%;
    line-height: 1.6;
  }

  .a-box__cap-list {
    margin: 30px 0 22px;
    font-size: 1.4rem;
    font-size: 87.5%;
    line-height: 1.7;
  }

  .a-box.-blue {
    padding: 30px 15px;
  }

  .a-box.-gray {
    padding: 30px 15px;
  }

  .a-box.-pj {
    padding: 30px 15px;
    margin: 50px -15px 30px;
  }

  article.-vision .article-head {
    background-image: url(../images/papers/bg_head_vision_sp.jpg);
  }

  article.-vision .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#ecf5e5), to(#d1ebbd));
    background: linear-gradient(to right, #ecf5e5 0%, #d1ebbd 100%);
  }

  article.-vision .article-about__conts::before {
    background: url(../images/papers/bg_about_vision_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-opinion .article-head {
    background-image: url(../images/papers/bg_head_opinion_sp.jpg);
  }

  article.-opinion .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#eff6fd), to(#d2e4f6));
    background: linear-gradient(to right, #eff6fd 0%, #d2e4f6 100%);
  }

  article.-opinion .article-about__conts::before {
    background: url(../images/papers/bg_about_opinion_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-reports .article-head {
    background-image: url(../images/papers/bg_head_reports_sp.jpg);
  }

  article.-reports .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#fcfbe8), to(#f9f6bf));
    background: linear-gradient(to right, #fcfbe8 0%, #f9f6bf 100%);
  }

  article.-reports .article-about__conts::before {
    background: url(../images/papers/bg_about_reports_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-note .article-head {
    background-image: url(../images/papers/bg_head_note_sp.jpg);
  }

  article.-note .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#e7f8fb), to(#d2eff6));
    background: linear-gradient(to right, #e7f8fb 0%, #d2eff6 100%);
  }

  article.-note .article-about__conts::before {
    background: url(../images/papers/bg_about_note_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-paper .article-head {
    background-image: url(../images/papers/bg_head_paper_sp.jpg);
  }

  article.-paper .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#fef6eb), to(#f6d9bd));
    background: linear-gradient(to right, #fef6eb 0%, #f6d9bd 100%);
  }

  article.-paper .article-about__conts::before {
    background: url(../images/papers/bg_about_paper_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-data .article-head {
    background-image: url(../images/papers/bg_head_data_sp.jpg);
  }

  article.-data .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#faeaea), to(#fcd4d4));
    background: linear-gradient(to right, #faeaea 0%, #fcd4d4 100%);
  }

  article.-data .article-about__conts::before {
    background: url(../images/papers/bg_about_data_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  article.-others .article-head {
    background-image: url(../images/papers/bg_head_others_sp.jpg);
  }

  article.-others .article-about__conts {
    background: -webkit-gradient(linear, left top, right top, from(#f6ecec), to(#e7cdc9));
    background: linear-gradient(to right, #f6ecec 0%, #e7cdc9 100%);
  }

  article.-others .article-about__conts::before {
    background: url(../images/papers/bg_about_others_sp.jpg) no-repeat top right;
    background-size: cover;
  }

  .article-head .a-headline {
    width: 100%;
    float: none;
  }

  .article-head {
    padding: 0 0 30px;
    margin: 0 0 30px;
  }

  .article-head .c-column {
    padding-top: 25px;
  }

  .article-head__categ {
    font-weight: 700;
    margin: 0 0 13px;
  }

  .article-head__categ-ico {
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
  }

  .article-head__categ-ttl {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin: 0 15px 0 0;
  }

  .article-head__categ-num {
    margin: 0 15px 0 0;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }

  .article-head__categ time {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }

  .article-head__image {
    width: 90px;
    margin: 0 15px 0 0;
    float: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .article-head__sp-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .article-head__right {
    width: 69.565217391%;
    float: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 0;
  }

  .article-head__info {
    position: static;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 240px;
  }

  .article-head__text {
    font-size: 1.6rem;
    font-size: 100%;
    line-height: 1.9;
    padding: 20px 0 0;
    width: auto;
    float: none;
    clear: both;
  }

  .article-print {
    margin: 0 4px 0 10px;
  }

  .article-share {
    margin: 10px 0 0;
  }

  .article-pdf {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 10px 50px;
  }

  .article-pdf li {
    width: 47.183098591%;
    margin: 0 5px;
  }

  .article-pdf li a {
    background-position: right 15px center;
    padding-right: 10px;
  }

  .article-top {
    margin: 0 0 52px;
  }

  .article-top .c-column {
    display: block;
  }

  .article-top h2 {
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
  }

  .article-top h2.-fs-small span {
    font-size: 2.5rem;
    margin: 0 0 7px;
  }

  .article-top h2::after {
    display: none;
  }

  .article-top__conts {
    width: auto;
  }

  .article-top__conts .article-about__image {
    width: 75px;
  }

  .article-about {
    padding-bottom: 15px;
  }

  .article-body .article-about {
    margin: 0 -15px 15px;
  }

  .article-about__conts {
    padding: 35px 15px 37px;
    margin: 0 -15px;
  }

  .article-about__conts > * {
    position: relative;
  }

  .article-about__conts::before {
    content: "";
    display: block;
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }

  .article-body .article-about__conts {
    padding: 40px 15px 27px;
  }

  .article-about__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .article-about__ttl {
    width: 100%;
    float: none;
    font-size: 1.8rem;
    font-size: 112.5%;
    line-height: 1.6;
  }

  .article-about__sub-ttl {
    width: 100%;
    float: none;
    font-size: 1.6rem;
    font-size: 100%;
    line-height: 1.5;
    margin: 5px 0 0;
  }

  .article-about__prof {
    width: auto;
    float: none;
    -webkit-box-flex: 1;
  < link rel = "stylesheet" type = "text/css" href = "//cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css" > -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 16px;
  }

  .article-about__prof .c-txt-cap {
    line-height: 1.4;
  }

  .article-about__name {
    margin: 0 0 6px;
    font-size: 1.6rem;
    font-size: 100%;
  }

  .article-about__name a::after {
    margin-left: 2px;
  }

  .article-about__image {
    width: 75px;
    float: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 16px 15px 0 0;
  }

  .article-about__text {
    line-height: 1.9;
    padding-top: 18px;
    position: relative;
  }

  .article-about__link {
    bottom: -15px;
  }

  .article-about__link a {
    height: 30px;
    border-radius: 30px;
  }

  .article-about__key {
    width: 100%;
    display: block;
    margin: 21px 0 0;
    float: none;
  }

  .article-about__key dt {
    width: 120px;
    margin: 0 0 10px;
  }

  .article-about__key dd {
    margin: 0;
  }

  .article-ex__lead {
    line-height: 1.9;
    margin: 0 0 20px;
  }

  .article-ex__list {
    margin: 0 0 -45px;
  }

  .article-ex__list li a {
    display: block;
  }

  .article-ex__list li {
    width: 33.333333%;
    margin: 0 0 45px;
    padding: 0 8px;
    text-align: center;
  }

  .article-ex__image {
    width: 75px;
    margin: 0 auto 6px;
  }

  .article-ex__info {
    position: relative;
  }

  .article-ex__info span {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .article-ex__info span::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .article-ex__info small {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 3px 0 0;
  }

  .article-data-nav .c-column {
    display: block;
  }

  .article-data-nav__ttl {
    font-size: 1.8rem;
    width: auto;
    text-align: center;
    margin: 0 0 8px;
  }

  .article-data-nav__ttl::after {
    display: none;
  }

  .article-data-nav__list {
    width: auto;
    display: block;
  }

  .article-data-nav__list li {
    width: 100%;
  }

  .article-data-nav__list li::before {
    margin-right: 7px;
  }

  .article-body {
    font-size: 1.6rem;
    line-height: 1.9;
    font-size: 100%;
    margin-top: 50px;
    padding-bottom: 75px;
  }

  .article-author {
    margin: 23px 0 30px;
  }

  .article-author .c-txt-cap small {
    font-size: 1.2rem;
  }

  .article-rec {
    padding: 12px 15px 18px;
    margin: 20px -15px 0;
  }

  .article-rec img {
    width: 55px;
    top: -20px;
    left: 230px;
    margin: 0 0 0 auto;
  }

  .article-rec__text {
    margin: 2px 0 0;
  }

  .article-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .article-info .c-txt-cap {
    width: 100%;
  }

  .article-info .article-print {
    margin: 0;
  }

  .article-info .article-share {
    margin: 0 0 0 5px;
  }

  .article-data .c-column {
    padding-top: 0;
  }

  .article-data .c-column::before {
    display: none;
  }

  .article-data__image {
    margin: 0 0 15px;
  }

  .article-data__image img {
    width: 100%;
  }

  .article-data__ttl {
    font-size: 1.6rem;
    font-size: 100%;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0 0 10px;
  }

  .article-data__cap {
    font-size: 1.4rem;
    font-size: 87.5%;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }

  .article-rel {
    padding-top: 44px;
  }

  .article-rel .a-ttl-bd {
    margin-bottom: 10px;
  }

  .article-rel__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .article-rel__image {
    width: 75px;
    margin: 0 15px 0 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .article-rel__text {
    font-size: 1.4rem;
    font-size: 87.5%;
    margin-top: -5px;
  }

  .article-rel__ttl {
    line-height: 1.7;
    margin: 0 0 8px;
  }

  .article-cap {
    margin-top: 26px;
  }

  .article-cap p {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .article-cap a {
    display: inline-block;
  }

  .article-btns {
    margin-top: 26px;
  }

  .article-btns a {
    margin-top: 15px;
  }

  .article-btns a.c-btn {
    width: 250px;
    height: 40px;
  }

  .article-btns a.c-btn::after {
    left: 20px;
  }

  .article-btns a.c-btn-bd {
    width: 250px;
    height: 35px;
  }

  .article-btns a.c-btn-bd::after {
    right: 20px;
  }

  .article-head .article-btns {
    width: 100%;
    position: static;
    margin: 0 0 10px;
  }

  .article-head .article-btns a.c-btn-bd {
    width: 130px;
  }

  .article-a .article-body .a-ttl {
    font-size: 2.3rem;
    font-size: 143.8%;
    letter-spacing: 0.1em;
    margin: 0 0 27px;
  }

  .article-a .article-body .a-sub-ttl {
    font-size: 1.8rem;
    font-size: 112.5%;
    line-height: 1.6;
    margin: 37px 0 18px;
  }

  .article-a .article-body .a-sub-ttl2 {
    font-size: 1.8rem;
    font-size: 112.5%;
    line-height: 1.4;
    margin: 18px 0 12px;
  }

  .article-a .article-body .a-sub-ttl2::before {
    height: calc(100% - 7px);
  }

  .article-a .article-body section .a-column {
    padding: 50px 15px;
    margin: 0;
  }

  .article-side {
    width: 100%;
  }

  .article-side__ttl {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.0;
    text-align: center;
    padding: 0 0 15px;
    margin: 0;
  }

  .article-side--fellows {
    padding: 23px 15px;
  }

  .article-side--fellows dl {
    padding: 10px 5px;
  }

  .article-side--fellows dl dt {
    line-height: 1.6;
    margin: 0 0 3px;
  }

  .article-side--nav {
    position: relative;
    top: 0;
  }

  .article-side--nav .article-side__index {
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
  }

  .article-side--nav .article-side__index a {
    padding: 8px 15px;
    letter-spacing: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .article-side--nav .article-side__index > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .article-side--nav .article-side__index > li > a::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .article-side--nav .article-side__index dl dt {
    letter-spacing: 0;
    padding-right: 45px;
  }

  .article-side--nav .article-side__index dl dt a,
  .article-side--nav .article-side__index dl dt span {
    padding: 8px 0 8px 15px;
  }

  .article-side--nav .article-side__index dl dt::before, .article-side--nav .article-side__index dl dt::after {
    right: 15px;
    width: 15px;
  }

  .article-side--nav .article-side__sub-index {
    background: #f7f7f7;
  }

  .article-side--nav .article-side__sub-index li {
    border: none;
  }

  .article-side--nav .article-side__sub-index a {
    min-height: inherit;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .article-side--fix-nav {
    max-height: inherit;
  }

  .article-side--fix-nav.is-fixed {
    width: auto;
    z-index: 10001;
    position: fixed;
    padding: 0 20px;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 15px;
    background: #fff;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    max-height: 100%;
    overflow: auto;
  }

  .article-side--fix-nav.is-fixed .article-side__ttl {
    padding: 15px 20px;
    margin: 0 -20px;
    position: relative;
  }

  .article-side--fix-nav.is-fixed .article-side__ttl::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    top: -10px;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .article-side--fix-nav.is-fixed .article-side__ttl.is-open::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0;
  }

  .article-side--fix-nav.is-fixed .article-side__index {
    display: none;
    margin-bottom: 15px;
  }

  .article-side--fix-nav.is-show {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

  .sp-fix-nav {
    display: block;
    width: auto;
  }

  .sp-fix-nav.is-fixed {
    z-index: 10001;
    position: fixed;
    padding: 0 20px;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 15px;
    background: #fff;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

  .sp-fix-nav.is-fixed .article-side__ttl {
    padding: 15px 20px;
    margin: 0 -20px;
    position: relative;
  }

  .sp-fix-nav.is-fixed .article-side__ttl::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    top: -10px;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sp-fix-nav.is-fixed .article-side__ttl.is-open::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0;
  }

  .sp-fix-nav.is-fixed .article-side__index {
    display: none;
    margin-bottom: 15px;
  }

  .sp-fix-nav.is-show {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

  .article-main {
    width: 100%;
    padding-top: 50px;
  }

  .article-b .article-head {
    margin-bottom: 15px;
  }

  .article-b .article-body {
    margin-top: 15px;
  }

  .article-b .article-body .a-column {
    padding: 0;
    margin: 0 15px;
  }

  .article-b .article-body__top {
    margin: 0 0 48px;
  }

  .article-b .article-body__wrap {
    display: block;
  }

  .article-b .article-body .a-ttl {
    font-size: 2.3rem;
    font-size: 143.8%;
    line-height: 1.5;
    padding: 8px 15px;
    margin: 50px 0 15px;
  }

  .article-b .article-body .a-ttl small {
    font-size: 1.8rem;
    font-size: 78.3%;
  }

  .article-b .article-body .a-ttl::before {
    height: calc(100% - 27px);
  }

  .article-b .article-body .a-sub-ttl {
    font-size: 2.0rem;
    font-size: 125.0%;
    line-height: 1.5;
    margin: 30px 0 18px;
  }

  .article-b .article-body .a-sub-ttl::before {
    height: calc(100% - 7px);
  }

  .article-b .article-body .a-sub-ttl2 {
    font-size: 1.8rem;
    font-size: 112.5%;
    line-height: 1.4;
    margin: 18px 0 12px;
  }

  .article-b .article-body .a-sub-ttl3 {
    font-size: 1.8rem;
    font-size: 112.5%;
    line-height: 1.6;
    margin: 0 0 20px;
  }

  .article-b .article-body .a-col {
    margin: 23px 0;
  }

  .article-b .article-body .a-col__text {
    margin-top: 35px;
  }

  .article-b .article-info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .article-b .article-info p {
    margin: 0 0 20px;
    font-size: 1.2rem;
  }

  .article-b .article-info .article-print {
    margin: 0;
  }

  .article-movie {
    margin: 30px 0;
  }
}

@media only screen and (max-width: 374px) {
  .article-head__categ-ico {
    width: 10.66666666vw;
    height: 10.66666666vw;
    margin: 0 2.66667vw 0 0;
  }

  .article-head__categ-ttl {
    font-size: 14px;
    font-size: 3.73333vw;
  }

  .article-head__categ-num {
    font-size: 14px;
    font-size: 3.73333vw;
  }

  .article-head__categ time {
    font-size: 14px;
    font-size: 3.73333vw;
  }

  .article-head__image {
    width: 22.666666666vw;
    margin: 0 4vw 0 0;
  }

  .article-head__info .article-print {
    width: 10.4166666666%;
  }
}

@media only screen and (min-width: 769px) {
  .article-side--nav .article-side__index a:hover {
    text-decoration: underline;
    opacity: 1;
  }
}
.mnote {
  display: block;
  padding: 10px;
  color: #fff;
}
.mnote a {
  color: #fff;
}
body {
  -webkit-overflow-scrolling: touch;
}
body.mfp-active {
  overflow: hidden;
  -webkit-overflow-scrolling: auto;
  width: 100%;
  position: fixed;
}

body .mfp-wrap {
  position: fixed;
  overflow: auto;
  top: 0 !important;
}

.mfp-close {
  top: -41px !important;
}
