@charset "UTF-8";


@-webkit-keyframes listShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes listShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

[data-aos="list-animation"] > * {
  opacity: 0;
}

[data-aos="list-animation"].aos-animate > *:nth-child(1) {
  -webkit-animation: listShow 0.5s ease 0.5s 1 forwards;
  animation: listShow 0.5s ease 0.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(2) {
  -webkit-animation: listShow 0.5s ease 1s 1 forwards;
  animation: listShow 0.5s ease 1s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(3) {
  -webkit-animation: listShow 0.5s ease 1.5s 1 forwards;
  animation: listShow 0.5s ease 1.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(4) {
  -webkit-animation: listShow 0.5s ease 2s 1 forwards;
  animation: listShow 0.5s ease 2s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(5) {
  -webkit-animation: listShow 0.5s ease 2.5s 1 forwards;
  animation: listShow 0.5s ease 2.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(6) {
  -webkit-animation: listShow 0.5s ease 3s 1 forwards;
  animation: listShow 0.5s ease 3s 1 forwards;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

a:hover {
  outline: none;
}

a:active {
  outline: none;
}

a:focus {
  outline: none;
}

@media screen and (min-width: 767px) {
  /* =================================
    hover
  ================================= */
}

/*=================================
  button
=================================*/
a.a_img {
  border-bottom: none;
}

.c-linkWrap {
  width: calc(100% - 23px);
}

.c-linkWrap a {
  position: relative;
  left: 23px;
  display: inline;
  border-bottom: 1px dotted #cf67a6;
}

.c-linkWrap a::before {
  position: absolute;
  top: 4px;
  left: -23px;
  display: block;
  width: 23px;
  height: 18px;
  background: url(../img/icon_arrow_pink.png) no-repeat left top #fff;
  background-size: 14px 14px;
  content: "";
}

.c-linkWrap.right {
  text-align: right;
}

.c-linkWrap.center {
  text-align: center;
}

.c-linkWrap + .c-linkWrap {
  margin-top: 26px;
}

.c-btnWrap {
  margin: 30px 0 0;
}

.c-btnWrap > * + * {
  margin-top: 20px;
}

.c-btn--blue {
  position: relative;
  display: block;
  padding: 12px 0;
  border-radius: 5px;
  background: #0BA29A;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.c-btn--blue::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  display: inline-block;
  width: 9px;
  height: 16px;
  margin: auto 0;
  background: url(../img/icon_arrow_yellow_sp.png) no-repeat center center;
  background-size: contain;
  content: "";
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  a:hover {
    border-bottom: none;
  }
  .c-linkWrap {
    width: calc(100% - 18px);
  }
  .c-linkWrap a {
    left: 18px;
  }
  .c-linkWrap a::before {
    top: 4px;
    left: -18px;
    width: 18px;
    height: 18px;
  }
  .c-linkWrap a:hover {
    border-bottom: none;
  }
  .c-btnWrap {
    display: flex;
    max-width: 790px;
    margin: 60px auto 0;
    align-items: center;
  }
  .c-btnWrap > * {
    width: 100%;
  }
  .c-btnWrap > * + * {
    margin: 0 0 0 30px;
  }
  .c-btn--blue {
    border-radius: 10px;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .c-btn--blue::before {
    left: 17px;
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../img/icon_arrow_yellow_pc.png) no-repeat center center;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .c-btn--blue:hover {
    background: #161749;
    box-shadow: 0 3px 8px rgba(31, 34, 137, 0.3);
  }
}

/* =================================
  header
================================= */
.l-header {
  position: fixed;
  z-index: 10000;
  top: 0;
  width: 100%;
  min-height: 50px;
  background: #fff;
}

.l-header .logoArea {
  width: 20%;
  margin-left: 10px;
}

.l-header .logoArea a {
  display: block;
}

.globalnav-wrap {
  width: 100%;
}

.globalnav-wrap.open {
  color: #fff;
}

.nav-button-wrap {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  display: block;
  height: 50px;
  padding: 12px;
  cursor: pointer;
}

.globalnav {
  z-index: 1000;
  display: none;
}

.globalnav .close {
  display: block;
}

.globalnav .dropdown {
  position: static;
  z-index: 1000;
  top: 48px;
  left: 0;
  display: none;
  width: inherit;
  background-color: #03706B;
  text-align: left;
}

.globalnav .dropdown li {
  display: block;
  margin: 0;
}

.globalnav .dropdown.box-search {
  display: block;
  background: #0BA29A;
}

.globalnav-wrap.open .globalnav {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 50px 0 0;
  background-color: #0BA29A;
}

.globalnav-wrap.open .globalnav li {
  border-top: solid 1px #fff;
  color: #fff;
  text-align: left;
}

.globalnav-wrap.open .globalnav li a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
}

.globalnav-wrap.open .globalnav li .search-btn {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
}

.globalnav-wrap.open .globalnav li .search-btn img {
  display: none;
}

.globalnav-wrap.open .globalnav li .search {
  width: 100%;
  padding: 0 0 20px;
  border: none;
}

.globalnav-wrap.open .globalnav li .search input {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 1.6rem;
}

.globalnav-wrap.open .globalnav li .search .btn-search {
  position: absolute;
  right: 24px;
  width: 32px;
}

.globalnav-wrap.open .globalnav li .search .btn-search img {
  width: 100%;
  height: auto;
}

.globalnav-wrap.open .globalnav .dropdown-item:focus, .globalnav-wrap.open .globalnav .dropdown-item:hover,
.globalnav-wrap.open .globalnav .dropdown-item:active {
  background: none;
}

.globalnav-wrap.open .globalnav .sp-dropdown {
  position: relative;
}

.globalnav-wrap.open .globalnav .sp-dropdown::after {
  position: absolute;
  top: 22px;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  transition: .3s;
  transform: rotate(135deg);
}

.globalnav-wrap.open .globalnav .sp-dropdown.open::after {
  top: 24px;
  transform: rotate(-45deg);
}

.nav-button {
  position: relative;
  z-index: 20;
  z-index: 10000;
  width: 25px;
  height: 25px;
}

.nav-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #333;
}

.nav-button, .nav-button span {
  display: inline-block;
  transition: all 0.3s;
}

.nav-button:nth-of-type(1), .nav-button span:nth-of-type(1) {
  top: 0;
}

.nav-button:nth-of-type(2), .nav-button span:nth-of-type(2) {
  top: 11px;
}

.nav-button:nth-of-type(3), .nav-button span:nth-of-type(3) {
  bottom: 0;
}

/* 閉じるボタン挙動 */
.active .nav-button span {
  background-color: #fff;
}

.active .nav-button span:nth-of-type(1) {
  transform: translateY(13px) rotate(-315deg);
}

.active .nav-button span:nth-of-type(2) {
  opacity: 0;
}

.active .nav-button span:nth-of-type(3) {
  transform: translateY(-10px) rotate(315deg);
}

.globalnav .dropdown li a {
  color: inherit;
}

.globalnav .dropdown ul {
  display: none;
}

.globalnav .nav-button-wrap,
.globalnav .open {
  display: block;
}

.globalnav .close {
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* =================================
    header
  ================================= */
}

@media screen and (min-width: 767px) {
  /* =================================
    header
  ================================= */
  .l-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #f7f7f7;
    background: #fff;
  }
  .l-header .logoArea {
    width: 20%;
    padding: 10px 10px 10px 30px;
  }
  .l-header .logoArea a {
    display: block;
  }
  .l-header .logoArea img {
    /* max-width: 30%; */
    max-height: 60px;
  }
  /* ドロップダウンメニュー */
  .globalnav-wrap {
    display: flex;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    justify-content: space-between;
    align-items: center;
  }
  .globalnav {
    z-index: 999;
    display: flex;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    justify-content: space-around;
    align-items: center;
  }
  .globalnav .current {
    box-sizing: border-box;
    height: 80px;
    border-bottom: solid 4px #0BA29A;
  }
  .globalnav > .dropdown-btn {
    text-align: center;
  }
  .globalnav .dropdown-btn {
    position: relative;
    width: 25%;
    font-size: 95%;
    font-size: 1.53rem;
    color: #0BA29A;
    cursor: pointer;
  }
  .globalnav .dropdown-btn a {
    display: block;
    padding: 25px 0;
    color: inherit;
  }
  .globalnav .dropdown-btn a:hover {
    text-decoration: none;
  }
  .globalnav .dropdown-btn:hover {
    background: #EAEBD4;
  }
  .globalnav .dropdown-btn .search-btn {
    display: block;
    padding: 25px 0;
    color: #0BA29A;
  }
  .globalnav .dropdown-btn .search-btn img {
    width: auto;
    height: 20px;
    vertical-align: middle;
  }
  .globalnav .dropdown {
    position: absolute;
    z-index: 1000;
    top: 80px;
    display: none;
    width: 100%;
    padding: 0;
    background: #f7f7f7;
    text-align: left;
    transition: .5s;
  }
  .globalnav .dropdown .current {
    border-bottom: none;
  }
  .globalnav .dropdown.box-search {
    display: none;
  }
  .globalnav .dropdown.open {
    display: block;
    opacity: 1;
    transition: .5s;
  }
  .globalnav .dropdown-item {
    padding: 0;
  }
  .globalnav .dropdown-item:hover {
    background: none;
  }
  .globalnav .dropdown ul {
    display: none;
  }
  .globalnav .dropdown li {
    display: inline-block;
    border-top: 1px solid #fff;
  }
  .globalnav .dropdown li.search {
    padding: 20px;
    background: #f7f7f7;
  }
  .globalnav .dropdown li.search input {
    display: block;
    width: 100%;
    height: 30px;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 1.4rem;
  }
  .globalnav .dropdown li.search .btn-search {
    position: absolute;
    right: 24px;
    width: 32px;
  }
  .globalnav .dropdown li.search .btn-search img {
    width: 100%;
    height: auto;
  }
  .globalnav .dropdown li a {
    display: block;
    padding: 10px;
    color: inherit;
    color: #0BA29A;
    transition: .5s;
  }
  .globalnav .dropdown li a:hover {
    background: #EAEBD4;
  }
  .globalnav .dropdown li a span {
    color: #0BA29A;
  }
  .globalnav .dropdown > li {
    display: inline-block;
    width: 100%;
    text-align: left;
  }
}

/*=================================
  footer
=================================*/
.l-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ccc;
  background: #fff;
}

.l-footer .footer-logo {
  width: 100%;
  margin-right: 60px;
  padding: 30px 15px;
}

.l-footer .footer-logo p {
  margin-top: 0;
  font-size: 1.2rem;
  text-align: right;
}

.l-footer .footer-navi {
  padding: 0;
}

.l-footer .footer-navi ul {
  display: flex;
  width: 100%;
  border-top: solid 1px #ccc;
  text-align: center;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.l-footer .footer-navi ul li {
  display: block;
  width: 50%;
  border-bottom: solid 1px #ccc;
  font-size: 1.4rem;
  line-height: 1.2;
}

.l-footer .footer-navi ul li + li {
  padding-left: 10px;
}

.l-footer .footer-navi ul li:nth-child(odd) {
  border-right: solid 1px #ccc;
}

.l-footer .footer-navi ul li a {
  display: block;
  padding: 15px 10px;
  color: #212529;
}

.l-footer .copy {
  padding: 0 0 10px;
  font-size: 1.2rem;
  color: #212529;
  text-align: center;
}

@media screen and (min-width: 767px) {
  /*=================================
    footer
  =================================*/
  .l-footer {
    width: 100%;
    padding: 30px 30px 0;
  }
  .l-footer .footer {
    display: flex;
  }
  .l-footer .footer-logo {
    width: 25%;
    margin-right: 60px;
    padding: 0;
  }
  .l-footer .footer-logo p {
    margin-top: 0;
    font-size: 1.2rem;
    text-align: right;
  }
  .l-footer .footer-navi {
    width: 75%;
  }
  .l-footer .footer-navi ul {
    display: flex;
    width: 100%;
    padding: 30px 0;
    border: none;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  .l-footer .footer-navi ul li {
    border: none;
    font-size: 1.4rem;
  }
  .l-footer .footer-navi ul li + li {
    padding-left: 10px;
  }
  .l-footer .footer-navi ul li:nth-child(odd) {
    border: none;
  }
  .l-footer .footer-navi ul li a {
    padding: 0;
    color: #212529;
  }
}

@media screen and (min-width: 767px) {
  .container {
    max-width: 1500px;
  }
}

/* =================================
  main
================================= */
.l-main {
  overflow: hidden;
  margin-top: 81px;
}

.l-main .secWrap__inner {
  padding: 0 4%;
}

.MV img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/*
TOPページ
------------------------------ */
.sec-inner {
  margin: 0 auto;
  padding: 30px 15px;
}

.pickup-ttl {
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(35deg, #03706b, #0ba29a, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(35deg, #03706b, #0ba29a, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl .ttl.ico_category {
  height: auto;
  margin-top: -10px;
}
.contents .sec-ttl .ttl.ico_category a{
  color: #fff;
}
.contents .sec-ttl .ttl.ico_category::before {
  position: relative;
  top: 12px;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  content: '';
}

.contents .sec-ttl .ttl.ico_category.ico_pr-magazine::before {
  background: url(/module/images/ico_pr-magazine.png) no-repeat center/cover;
}

.contents .sec-ttl .ttl.ico_category.ico_practical-realization::before {
  background: url(/module/images/ico_practical-realization.png) no-repeat center/cover;
}

.contents .sec-ttl .ttl.ico_category.ico_movies::before {
  background: url(/module/images/ico_movies.png) no-repeat center/cover;
}

.contents .sec-ttl .ttl.ico_category.ico_others::before {
  background: url(/module/images/ico_others.png) no-repeat center/cover;
}

.contents .sec-ttl .ttl.ico_category.ico_release-guide::before {
  background: url(/module/images/ico_practical-realization.png) no-repeat center/cover;
}

.contents .sec-ttl.new-energy {
  background: linear-gradient(35deg, #366cab, #6b96c7, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.conserve-energy {
  background: linear-gradient(35deg, #379997, #5FB7B5, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.environment {
  background: linear-gradient(35deg, #e45492, #E082AB, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.electronic {
  background: linear-gradient(35deg, #db7535, #E89562, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.material {
  background: linear-gradient(35deg, #59469b, #7467A5, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.robot {
  background: linear-gradient(35deg, #2c8eb8, #58B8E2, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.biotechnology {
  background: linear-gradient(35deg, #2c8eb8, #58B8E2, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.international {
  background: linear-gradient(35deg, #2c8eb8, #58B8E2, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.cross-sectoral {
  background: linear-gradient(35deg, #2c8eb8, #58B8E2, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.contents .sec-ttl.cross-others {
  background: linear-gradient(35deg, #2c8eb8, #58B8E2, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

h2.ttl {
  font-size: 2rem;
  color: #fff;
}
h2.ttl a {
  color: #fff;
}
/*----------------------------------------- 
カテゴリアイコン 
-----------------------------------------*/
.box-category {
  margin-bottom: 20px;
}

.box-category a:hover {
  text-decoration: underline;
}

.ico_category {
  position: relative;
  height: 24px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.ico_category::before {
  position: relative;
  top: 6px;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  content: '';
}

.ico_category.ico_pr-magazine::before {
  background: url(/module/images/ico_pr-magazine.png) no-repeat center/cover;
}

.ico_category.ico_practical-realization::before {
  background: url(/module/images/ico_practical-realization.png) no-repeat center/cover;
}

.ico_category.ico_movies::before {
  background: url(/module/images/ico_movies.png) no-repeat center/cover;
}

.ico_category.ico_others::before {
  background: url(/module/images/ico_others.png) no-repeat center/cover;
}

.ico_category.ico_release-guide::before {
  background: url(/module/images/ico_practical-realization.png) no-repeat center/cover;
}

/*----------------------------------------- 
分野別アイコン タグリスト
-----------------------------------------*/
.subcategory_field {
  display: flex;
  flex-wrap: wrap;
}

.subcategory_field li {
  margin-top: 4px;
  margin-right: 10px;
  line-height: 1;
}

.subcategory_field li a:hover {
  text-decoration: underline;
}

.ico_subcategory {
  font-size: 1.2rem;
  /* 省エネルギー */
  /* 新エネルギー */
  /* バイオ・医療 */
  /* 電子・情報 */
  /* 環境問題対策 */
  /* 材料 */
  /* ロボット・福祉機器 */
  /* 国際 */
  /* 分野横断*/
  /* その他*/
}

.ico_subcategory::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: '';
}

.ico_subcategory.conserve-energy::before {
  background-image: url(/module/images/ico_conserve-energy_s.png);
}

.ico_subcategory.new-energy::before {
  background-image: url(/module/images/ico_new-energy_s.png);
}

.ico_subcategory.biotechnology::before {
  background-image: url(/module/images/ico_biotechnology_s.png);
}

.ico_subcategory.electronic::before {
  background-image: url(/module/images/ico_electronic_s.png);
}

.ico_subcategory.environment::before {
  background-image: url(/module/images/ico_environment_s.png);
}

.ico_subcategory.material::before {
  background-image: url(/module/images/ico_material_s.png);
}

.ico_subcategory.robot::before {
  background-image: url(/module/images/ico_robot_s.png);
}

.ico_subcategory.international::before {
  background-image: url(/module/images/ico_international_s.png);
}

.ico_subcategory.cross-sectoral::before {
  background-image: url(/module/images/ico_cross-sectoral_s.png);
}

.ico_subcategory.others::before {
  background-image: url(/module/images/ico_others_s.png);
}

.ico_subcategory.guide::before {
  background-image: url(/module/images/ico_new-energy_s.png);
}

.ico_subcategory.science::before {
  background-image: url(/module/images/ico_conserve-energy_s.png);
}

.ico_subcategory.mirai::before {
  background-image: url(/module/images/ico_environment_s.png);
}

.ico_subcategory.nedo-channel::before {
  background-image: url(/module/images/ico_new-energy_s.png);
}

.ico_subcategory.nedo-pr-channel::before {
  background-image: url(/module/images/ico_conserve-energy_s.png);
}

/*----------------------------------------- 
サムネイル
-----------------------------------------*/
.img-thum {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background: #fff;
}

.img-thum.video {
  background: #000;
}

.img-thum.video::after {
  display: block;
  padding-top: 56.25%;
  content: '';
}

/* サムネイル周り */
.box-inner {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 5px;
  background: #fff;
}

.box-inner a {
  display: contents;
  color: inherit;
}

.box-inner a:hover img {
  opacity: 0.8;
}

.box-inner a:hover {
  text-decoration: none;
}

.box-inner a:hover .main-ttl {
  opacity: 0.8;
}

.box-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.box-inner .date {
  margin-bottom: 0;
  font-size: 1.4rem;
  text-align: right;
}

.box-inner .main-ttl {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.box-inner .main-ttl span {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  min-height: 32px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 32px;
  color: #fff;
}

.box-inner .main-ttl span::after {
  position: absolute;
  top: 0;
  right: -30px;
  width: 0;
  height: 100%;
  border-width: 32px 30px 0 0;
  border-style: solid;
  content: "";
}

.box-inner .main-ttl .ttl-special, .box-inner .main-ttl .ttl-pr-magazine, .box-inner .main-ttl .ttl-practical-realization, .box-inner .main-ttl .ttl-movies {
  background: #c59559;
}

.box-inner .main-ttl .ttl-special::after, .box-inner .main-ttl .ttl-pr-magazine::after, .box-inner .main-ttl .ttl-practical-realization::after, .box-inner .main-ttl .ttl-movies::after {
  border-color: #c59559 transparent transparent transparent;
}

.box-inner .main-ttl + p {
  font-size: 1.4rem;
}

.pickup .box-inner {
  background: #EAEBD4;
}

/*----------------------------------------- 
埋め込み動画レスポンシブ 
-----------------------------------------*/
.video-container {
  position: absolute;
  top: 50%;
  overflow: hidden;
  width: 100%;
  transform: translateY(-50%);
}

.video-container::after {
  display: block;
  padding-top: 56.25%;
  content: '';
}

.video-container > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contents {
  background: #EAEBD4;
  min-height:1000px;
}

.pager {
  margin: 10px auto 30px;
}

.pager .pagination {
  justify-content: center;
}

.pager .page-item .page-link {
  box-sizing: border-box;
  padding: 15px 20px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0BA29A;
}

.pager .page-item .page-link:hover {
  background: #0BA29A;
  color: #fff;
}

.pager .page-item.active .page-link {
  border-color: #0BA29A;
  background: #0BA29A;
  color: #fff;
}

@media screen and (min-width: 767px) {
  /*
TOPページ
------------------------------ */
  .sec-inner {
    padding: 30px;
  }
  .pickup-ttl {
    width: 60%;
    padding: 20px 30px;
    background: linear-gradient(35deg, #03706b, #0ba29a, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  }
  .contents .sec-ttl {
    position: relative;
    width: 60%;
    padding: 20px 30px;
    background: linear-gradient(35deg, #03706b, #0ba29a, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  }
  .contents .sec-ttl .ttl.ico_category {
    height: auto;
  }
  .contents .sec-ttl .ttl.ico_category::before {
    position: relative;
    top: 8px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    content: '';
  }
  h2.ttl {
    font-size: 3rem;
    color: #fff;
  }
  h2.ttl a{
    color: #fff;
}
  /* =================================
    main
  ================================= */
  .breadcrumb {
    margin-bottom: 0;
    padding: 10px 30px;
    background-color: #EAEBD4;
    font-size: 1.4rem;
    color: #111;
  }
  .breadcrumb a {
    font-weight: 600;
    color: #0BA29A;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    color: #111;
    content: "＞";
  }
}

/*----------------------------------------- 
実用化ドキュメント
-----------------------------------------*/
.l-practical-realization {
  /*実用化ドキュメントサブカテゴリ*/
}

.l-practical-realization .navi {
  position: relative;
  margin-top: 50px;
  padding: 15px 10px;
}

.l-practical-realization .navi-practical-realization {
  position: relative;
}

.l-practical-realization .navi-practical-realization ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.l-practical-realization .navi-practical-realization ul li {
  max-width: 30%;
  margin: 0 5px 10px;
}

.l-practical-realization .subcategory_field {
  display: flex;
  flex-wrap: wrap;
}

.l-practical-realization .subcategory_field li {
  margin-right: 10px;
  line-height: 1;
}

.l-practical-realization .subcategory_field li a:hover {
  text-decoration: underline;
}

.l-practical-realization .ico_subcategory {
  font-size: 1.4rem;
  font-weight: 600;
}

.l-practical-realization .ico_subcategory::before {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

/*----------------------------------------- 
MV下テキスト
-----------------------------------------*/
.contents-txt {
  margin-bottom: 30px;
  padding: 0 15px;
}

.contents-txt h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #03706B;
}

.contents-txt p {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 767px) {
  /*----------------------------------------- 
  実用化ドキュメント
  -----------------------------------------*/
  .l-practical-realization .navi {
    position: relative;
    max-width: 1980px;
    height: 500px;
    padding: 0 30px;
  }
  .l-practical-realization .navi-bg {
    position: absolute;
    z-index: 90;
    top: -40px;
    left: 0;
    width: 95%;
    max-width: 1840px;
    height: 100%;
    background: url(/module/images/bg_mv_practical-realization.png) no-repeat left bottom/contain;
  }
  .l-practical-realization .navi-rl-bg {
    position: absolute;
    z-index: 90;
    top: -40px;
    left: 0;
    width: 95%;
    max-width: 1840px;
    height: 100%;
    background: url(/module/images/bg_mv_release-guide_r5.png) no-repeat left bottom/contain;
  }
}

@media screen and (min-width: 767px) and (max-width: 1366px) {
  .l-practical-realization .navi {
    height: 540px;
  }
}

@media screen and (min-width: 767px) {
  .l-practical-realization .navi-practical-realization {
    position: relative;
    z-index: 100;
    right: 0;
    width: 100%;
    max-width: 1980px;
    margin-top: 60px;
    padding-left: 15%;
  }
  .l-practical-realization .navi-practical-realization ul {
    overflow: auto;
    justify-content: left;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 767px) and (max-width: 1366px) {
  .l-practical-realization .navi-practical-realization ul {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 767px) {
  .l-practical-realization .navi-practical-realization ul li {
    max-width: 190px;
    margin: 0 15px 30px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1366px) {
  .l-practical-realization .navi-practical-realization ul li {
    max-width: 130px;
    margin: 0 5px 10px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1260px) {
  .l-practical-realization .navi-practical-realization ul li {
    max-width: 120px;
  }
}

@media screen and (min-width: 767px) {
  .l-practical-realization .navi-practical-realization ul li a:hover {
    opacity: .8;
  }
  .contents-txt {
    margin-bottom: 60px;
    padding-left: 8%;
  }
  .contents-txt h2 {
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 400;
  }
}

.article-box {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
}

.article-box .inner-box {
  padding: 30px 10px;
}

.article-box .section-line {
  display: block;
  width: 100%;
  height: 40px;
  border-top: solid 1px #ccc;
}

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

.article-box h1 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-box h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

.article-box h2 span {
  display: block;
}

.article-box h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-box h3 a {
  padding-bottom: 4px;
  color: inherit;
}

.article-box h4 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-box h4 a {
  padding-bottom: 4px;
  color: inherit;
}

.article-box h5 {
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-box ul {
  font-size: 1.8rem;
}

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

.article-box ul li a {
  position: relative;
  color: inherit;
}

.article-box p, .article-box ul {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-size: 1.6rem;
}

.article-box p + p, .article-box p + ul, .article-box ul + p, .article-box ul + ul {
  margin-bottom: 30px;
}

.article-box a {
  color: #0BA29A;
}

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

.supplement {
  padding: 30px 0 0;
  border-top: solid 1px #ccc;
}

.supplement .introduce .topic-cotyegory {
  font-size: 2.4rem;
  font-weight: bold;
  color: #B14540;
}

.supplement .faq-q {
  position: relative;
  padding-left: 50px;
}

.supplement .faq-q .icon_q {
  position: absolute;
  top: -1.5rem;
  left: 0;
  font-size: 4rem;
}

.supplement .text-xs {
  font-size: 1.2rem;
}

.supplement .text-s {
  font-size: 1.4rem;
}

.supplement .text-m {
  font-size: 1.8rem;
}

.supplement .font-l {
  font-size: 2.2rem;
}

.supplement .font-xl {
  font-size: 2.2rem;
}

.supplement .font-xxl {
  font-size: 3rem;
}

.supplement .text-bold {
  font-weight: 600;
}

.information {
  padding: 10px;
  border: solid 1px #ccc;
}

@media screen and (min-width: 767px) {
  .article-box {
    padding: 60px;
  }
  .article-box .inner-box {
    padding: 30px;
  }
  .article-box .section-line {
    display: block;
    width: 100%;
    height: 60px;
    border-top: solid 1px #ccc;
  }
  .article-box .introduce .topic-cotyegory {
    font-size: 2.4rem;
    font-weight: bold;
    color: #B14540;
  }
  .article-box .faq-q {
    position: relative;
    padding-left: 50px;
  }
  .article-box .faq-q .icon_q {
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 4rem;
  }
  .article-box .text-xs {
    font-size: 1.2rem;
  }
  .article-box .text-s {
    font-size: 1.4rem;
  }
  .article-box .text-m {
    font-size: 1.8rem;
  }
  .article-box .font-l {
    font-size: 2.2rem;
  }
  .article-box .font-xl {
    font-size: 2.4rem;
  }
  .article-box .font-xxl {
    font-size: 2.8rem;
  }
  .article-box .font-xxxl {
    font-size: 4rem;
  }
  .article-box .text-bold {
    font-weight: 600;
  }
  .article-box h1 {
    margin-bottom: 60px;
    font-size: 2.8rem;
  }
  .article-box h2 {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
  .article-box h2 span {
    font-size: 1.8rem;
  }
  .article-box h2 a:hover {
    border-bottom: solid 1px #aaa;
    text-decoration: none;
  }
  .article-box h3 {
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 0;
    font-size: 1.8rem;
    font-size: 2.2rem;
  }
  .article-box h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-size: 1.8rem;
  }
  .article-box p {
    font-size: 1.6rem;
  }
  .information {
    padding: 30px 30px 0;
    border: solid 1px #ccc;
  }
}

.l-pr-magazine .contents-txt {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 0;
}

.l-pr-magazine .contents-txt h2 {
  width: 80%;
  margin: 0 auto 30px;
}

.l-pr-magazine .contents-txt p {
  font-size: 1.8rem;
}

.l-pr-magazine .flex-2col {
  flex-direction: row;
  justify-content: baseline;
  align-items: center;
}

.l-pr-magazine .sec-ttl .ttl span {
  display: block;
  font-size: 1.4rem;
}

.l-pr-magazine a .focusned-box p {
  color: #111;
}

.l-pr-magazine .file-no {
  width: 100%;
  padding: 2px 8px;
  padding-left: 15px;
  background: #e4640f;
  color: #fff;
}

.l-pr-magazine .file-box {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 15px;
  border: solid 2px #e4640f;
  border-radius: 5px;
  background: #fff;
}

.l-pr-magazine .file-box .txt-file .ttl {
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
}

.l-pr-magazine .file-box .img-file img {
  width: auto;
  height: auto;
}

.l-pr-magazine .focusned-box {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  justify-content: left;
}

.l-pr-magazine .focusned-box .img-fn {
  margin: 10px auto;
  text-align: center;
}

.l-pr-magazine .focusned-box .img-fn img {
  width: auto;
  height: 200px;
}

.l-pr-magazine .focusned-box .txt-fn {
  position: relative;
  padding-bottom: 40px;
}

.l-pr-magazine .focusned-box .txt-fn .ttl {
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 600;
  color: #0BA29A;
  text-align: center;
}

.l-pr-magazine .focusned-box .txt-fn .stock {
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 2px 8px;
  background: #0BA29A;
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (min-width: 767px) {
  .l-pr-magazine .contents-txt {
    padding: 30px 0;
  }
  .l-pr-magazine a:hover .ttl, .l-pr-magazine a:hover p, .l-pr-magazine a:hover img {
    opacity: .8;
  }
  .l-pr-magazine .file-no {
    padding-left: 30px;
  }
  .l-pr-magazine .file-box {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    border: solid 2px #e4640f;
    background: #fff;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-pr-magazine .file-box .txt-file {
    position: relative;
    width: 50%;
    margin-right: 30px;
  }
  .l-pr-magazine .file-box .txt-file .ttl {
    margin-bottom: 30px;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: left;
  }
  .l-pr-magazine .file-box .img-file img {
    width: auto;
    height: auto;
  }
  .l-pr-magazine .focusned-box {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    align-items: flex-start;
  }
  .l-pr-magazine .focusned-box .img-fn {
    width: 100%;
    max-width: 130px;
    margin: 0 30px 0 0;
  }
  .l-pr-magazine .focusned-box .img-fn img {
    width: auto;
    height: auto;
  }
  .l-pr-magazine .focusned-box .txt-fn {
    position: relative;
    width: 100%;
  }
  .l-pr-magazine .focusned-box .txt-fn .ttl {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0BA29A;
    text-align: left;
  }
  .l-pr-magazine .focusned-box .txt-fn p {
    font-size: 1.4rem;
  }
  .l-pr-magazine .focusned-box .txt-fn .stock {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    padding: 2px 8px;
    background: #0BA29A;
    font-size: 1.2rem;
    color: #fff;
  }
}

.l-focusnedo .article-box, .l-articles .article-box {
  padding: 30px 0;
}

.l-focusnedo .article-box .booknumber, .l-articles .article-box .booknumber {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.l-focusnedo .article-box h1, .l-articles .article-box h1 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: solid 4px #0BA29A;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.l-focusnedo .article-box h2, .l-articles .article-box h2 {
  margin-bottom: 20px;
  padding-bottom: 4px;
  padding-left: 14px;
  border-left: solid 6px #0BA29A;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

.l-focusnedo .article-box h2 span, .l-articles .article-box h2 span {
  display: block;
}

.l-focusnedo .article-box h2 a, .l-articles .article-box h2 a {
  border-bottom: solid 1px #111;
  color: inherit;
}

.l-focusnedo .article-box h3, .l-articles .article-box h3 {
  margin-bottom: 20px;
  margin-left: 10px;
  padding-bottom: 10px;
  border-bottom: solid 2px #0BA29A;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.l-focusnedo .article-box h3 a, .l-articles .article-box h3 a {
  padding-bottom: 4px;
  color: inherit;
}

.l-focusnedo .article-box h4, .l-articles .article-box h4 {
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.l-focusnedo .article-box h4 a, .l-articles .article-box h4 a {
  padding-bottom: 4px;
  color: inherit;
}

.l-focusnedo .article-box ul, .l-articles .article-box ul {
  font-size: 1.8rem;
}

.l-focusnedo .article-box ul li, .l-articles .article-box ul li {
  margin-top: 20px;
}

.l-focusnedo .article-box ul li a, .l-articles .article-box ul li a {
  position: relative;
  color: inherit;
}

.l-focusnedo .article-box ul li a::before, .l-articles .article-box ul li a::before {
  position: relative;
  bottom: 3px;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-top: solid 2px #0BA29A;
  border-right: solid 2px #0BA29A;
  font-weight: 600;
  content: "";
  transform: rotate(45deg);
}

.l-focusnedo .article-box p, .l-focusnedo .article-box ul, .l-articles .article-box p, .l-articles .article-box ul {
  margin-bottom: 30px;
  padding-left: 10px;
  font-size: 1.4rem;
  font-size: 1.6rem;
}

.l-focusnedo .article-box a, .l-articles .article-box a {
  color: #0BA29A;
}

.l-focusnedo .article-box .fc-cover, .l-articles .article-box .fc-cover {
  text-align: center;
}

.l-focusnedo .article-box .fc-cover img, .l-articles .article-box .fc-cover img {
  width: 60%;
  margin: 0 auto 20px;
}

.l-focusnedo .article-box .fc-info, .l-articles .article-box .fc-info {
  margin-bottom: 60px;
}

.l-focusnedo .article-box img, .l-articles .article-box img {
  width: 100%;
}

.l-focusnedo .supplement, .l-articles .supplement {
  padding: 30px 0 0;
  border-top: solid 1px #ccc;
}

.l-focusnedo .supplement h5, .l-articles .supplement h5 {
  font-size: 1.8rem;
}

.l-focusnedo .supplement ol, .l-focusnedo .supplement p, .l-articles .supplement ol, .l-articles .supplement p {
  font-size: 1.4rem;
}

@media screen and (min-width: 767px) {
  .l-focusnedo .article-box, .l-articles .article-box {
    padding: 60px 30px;
  }
  .l-focusnedo .article-box .booknumber, .l-articles .article-box .booknumber {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  .l-focusnedo .article-box h1, .l-articles .article-box h1 {
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-size: 2.8rem;
    font-size: 2.8rem;
  }
  .l-focusnedo .article-box h2, .l-articles .article-box h2 {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
  .l-focusnedo .article-box h2 span, .l-articles .article-box h2 span {
    font-size: 1.8rem;
  }
  .l-focusnedo .article-box h2 a:hover, .l-articles .article-box h2 a:hover {
    border-bottom: solid 1px #aaa;
    text-decoration: none;
  }
  .l-focusnedo .article-box h3, .l-articles .article-box h3 {
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 0;
    font-size: 1.8rem;
    font-size: 2.2rem;
  }
  .l-focusnedo .article-box h3:hover, .l-articles .article-box h3:hover {
    border-bottom: solid 2px #aaa;
    text-decoration: none;
  }
  .l-focusnedo .article-box h3 a:hover, .l-articles .article-box h3 a:hover {
    text-decoration: none;
  }
  .l-focusnedo .article-box h4, .l-articles .article-box h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-size: 1.8rem;
  }
  .l-focusnedo .article-box h4 a:hover, .l-articles .article-box h4 a:hover {
    text-decoration: none;
    opacity: .8;
  }
  .l-focusnedo .article-box h5, .l-articles .article-box h5 {
    margin-bottom: 10px;
    margin-left: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
  }
  .l-focusnedo .article-box ul, .l-articles .article-box ul {
    font-size: 1.8rem;
  }
  .l-focusnedo .article-box ul li, .l-articles .article-box ul li {
    margin-top: 0;
  }
  .l-focusnedo .article-box ul li a, .l-articles .article-box ul li a {
    position: relative;
    color: inherit;
  }
  .l-focusnedo .article-box ul li a::before, .l-articles .article-box ul li a::before {
    position: relative;
    bottom: 3px;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-top: solid 2px #0BA29A;
    border-right: solid 2px #0BA29A;
    font-weight: 600;
    content: "";
    transform: rotate(45deg);
  }
  .l-focusnedo .article-box p, .l-focusnedo .article-box ul, .l-articles .article-box p, .l-articles .article-box ul {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-size: 1.6rem;
  }
  .l-focusnedo .article-box .fc-cover, .l-articles .article-box .fc-cover {
    padding-right: 30px;
  }
  .l-focusnedo .article-box .fc-cover img, .l-articles .article-box .fc-cover img {
    width: 100%;
  }
  .l-focusnedo .article-box .fc-info, .l-articles .article-box .fc-info {
    margin-bottom: 60px;
  }
  .l-focusnedo .article-box img, .l-articles .article-box img {
    width: 100%;
  }
  .l-focusnedo .supplement, .l-articles .supplement {
    padding-top: 30px;
    border-top: solid 1px #ccc;
  }
  .l-focusnedo .supplement h5, .l-articles .supplement h5 {
    font-size: 1.8rem;
  }
  .l-focusnedo .supplement ol, .l-focusnedo .supplement p, .l-articles .supplement ol, .l-articles .supplement p {
    font-size: 1.8rem;
  }
}

.l-search h3 {
  padding-bottom: 10px;
  border-bottom: solid 4px #0BA29A;
  font-size: 1.8rem;
}

.l-search h4 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

.l-search .li-seach li {
  padding: 20px 0 10px;
}

.l-search .li-seach li + li {
  border-top: solid 1px #ddd;
}

.l-search .li-seach a {
  display: block;
  color: inherit;
}

.l-search p {
  font-size: 1.4rem;
}

@media screen and (min-width: 767px) {
  .l-search h3 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 2.8rem;
  }
  .l-search h4 {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }
  .l-search .li-seach li {
    padding: 30px 0 20px;
  }
  .l-search .li-seach li + li {
    border-top: solid 1px #ddd;
  }
  .l-search .li-seach a {
    display: block;
    color: inherit;
  }
  .l-search p {
    font-size: 1.4rem;
  }
}

/* 202110改修 */



/* 一覧へボタン */
.btn-box{
  text-align: right;
}
.btn-box a{
  display: inline-block;
  padding: 3px 5px;
  background: #0BA29A;
  border-radius: 5px;
  color: #fff;
  font-size: 1.6rem;
}
.btn-box a:hover{
  opacity: 0.8;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .btn-box{
    text-align:center;
  }
}

/*=================================
  NEDO Channel
=================================*/
 .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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