@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
/*======================================================================
 * ダウンロード レイアウト
======================================================================*/
/* -----
 * 一覧
----------------------------------------------------------------------------- */
.page-download-title h1 {
  margin: 41px 0 17px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-download-title h1 {
    margin: 30px 0;
    font-size: 2.5rem;
  }
}

.section-tag {
  padding-top: 15px;
  padding-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .section-tag {
    padding-bottom: 50px;
  }
}

.section-contents {
  padding-top: 50px;
  padding-bottom: 210px;
}
@media screen and (max-width: 768px) {
  .section-contents {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.l-tag-filter {
  margin-top: 63px;
}
@media screen and (max-width: 768px) {
  .l-tag-filter {
    margin-top: 40px;
  }
}

/* loading */
#loading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
}

#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../images/common/loading.gif") center center no-repeat;
}

/** 並び替え順 切り替え **/
.sort-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 60px;
  padding: 0;
  list-style: none;
}
.sort-switch li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 47%;
  max-width: 12.5em;
  margin: 0 1%;
}
.sort-switch li button {
  display: block;
  width: 100%;
  padding: 8px 10px;
  outline: none;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  background: #d5d5d5;
  color: #fff;
  font-weight: 500;
  text-align: center;
  -webkit-transition: background 0.25s, color 0.25s, border 0.25s;
  transition: background 0.25s, color 0.25s, border 0.25s;
}
@media screen and (max-width: 768px) {
  .sort-switch li button {
    padding: 5px 10px;
  }
}
.sort-switch li button:hover {
  opacity: 0.8;
  border-color: #4372c1;
  background: #4372c1;
  color: #fff;
}
.sort-switch li.-js-current button {
  border-color: #4372c1;
  background: #4372c1;
  color: #fff;
}
.sort-switch li.-js-current button:hover {
  opacity: 1;
  cursor: default;
}

/** 資料一覧 **/
.download-post-container {
  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;
}
.download-post-container:before {
  content: "";
  display: block;
  width: calc(100% / 4 - 25px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .download-post-container:before {
    display: none;
  }
}
.download-post-container:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 25px);
}
@media screen and (max-width: 768px) {
  .download-post-container:after {
    display: none;
  }
}
.download-post-container .post-box {
  width: calc(100% / 4 - 25px);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .download-post-container .post-box {
    width: calc(100% / 2 - 6.75px);
    max-width: 320px;
    margin-bottom: 50px;
  }
}
.download-post-container .post-box .image {
  display: block;
  overflow: hidden;
  background: #e9e9e9;
}
.download-post-container .post-box .image a {
  display: block;
  position: relative;
  text-decoration: none;
}
.download-post-container .post-box .image a:before {
  content: "";
  display: block;
  /*padding-top: 142.045%;*/
  padding-top: 53%;
}
.download-post-container .post-box .image a:after {
  content: "READ MORE";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.download-post-container .post-box .image a:hover:after {
  opacity: 1;
}
.download-post-container .post-box .image a img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.download-post-container .post-box .info {
  padding: 10px 0.9375em;
}
@media screen and (max-width: 768px) {
  .download-post-container .post-box .info {
    padding: 5px 0 0;
  }
}
.download-post-container .post-box .info .title {
  margin: 0 0 2px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.download-post-container .post-box .info .title a {
  margin: 0;
  color: #4372c1;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.6;
}
.download-post-container .post-box .info .date {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 2.0833333333;
}
@media screen and (max-width: 768px) {
  .download-post-container .post-box .info .date {
    font-size: 1.3rem;
  }
}

/* -----
 * 詳細
----------------------------------------------------------------------------- */
.g-header.-single-download {
  display: block;
}
@media screen and (max-width: 768px) {
  .g-header.-single-download {
    height: auto;
  }
}
.g-header.-single-download .header-single-download {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .g-header.-single-download .header-single-download {
    position: static;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
}
.g-header.-single-download .header-single-download .title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .g-header.-single-download .header-single-download .title {
    font-size: 2.5rem;
  }
}

.single-download-container {
  padding-top: 80px;
  padding-bottom: 170px;
  background: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .single-download-container {
    padding-bottom: 70px;
  }
}
.single-download-container > .adjust-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3.75em;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width {
    display: block;
    padding: 0 5.33vw;
  }
}
.single-download-container > .adjust-width .contents {
  width: 62.5%;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents {
    width: 100%;
  }
}
.single-download-container > .adjust-width .contents h1 {
  margin-bottom: 45px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents h1 {
    font-size: 1.8rem;
    font-weight: 400;
  }
}
.single-download-container > .adjust-width .contents p {
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents p {
    font-size: 1.4rem;
  }
}
.single-download-container > .adjust-width .contents p:first-of-type {
  margin-top: 0;
}
.single-download-container > .adjust-width .contents p a {
  color: #4372c1;
  text-decoration: none;
}
.single-download-container > .adjust-width .contents figure {
  margin: 60px auto 40px;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents figure {
    padding: 0 5.33333vw;
  }
}
.single-download-container > .adjust-width .contents figure.aligncenter {
  text-align: center;
}
.single-download-container > .adjust-width .contents .text-box {
  margin: 60px 0;
  padding: 15px 1.5625em;
  border-radius: 5px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents .text-box {
    font-size: 1.4rem;
  }
}
.single-download-container > .adjust-width .contents .text-box p {
  margin: 0 0 1em;
}
.single-download-container > .adjust-width .contents .text-box p.title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .contents .text-box p.title {
    font-size: 1.6rem;
  }
}
.single-download-container > .adjust-width .contents .text-box p:last-of-type {
  margin-bottom: 0;
}
.single-download-container > .adjust-width .contents .text-box ul {
  padding-left: 1.3em;
}
.single-download-container > .adjust-width .contents .text-box ol {
  padding-left: 1.5em;
}
.single-download-container > .adjust-width .contents .text-box:last-of-type {
  margin-bottom: 0;
}
.single-download-container > .adjust-width .g-sidebar {
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .g-sidebar {
    width: 100%;
  }
}
.single-download-container > .adjust-width .sidebar-download {
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .single-download-container > .adjust-width .sidebar-download {
    width: 100%;
  }
}