@charset "utf-8";
/* CSS Document */

/* ----------------------------------------- */
/*  /media/index.html
------------------------------------------ */

/*  page_link_inner
-------------------------------------------- */
.page_link_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 80px;
  max-width: 1000px;
}
.page_link_inner > a {
  width: 50%;
  padding: 1em;
  box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
  font-size: 19px;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 4px solid #E3344A;
box-sizing: border-box;
}
.page_link_inner > a {
  background: #fff;
  border-color: #E3344A;
  color: #E3344A;
  background: linear-gradient(to right, #E3344A 0%,#E3344A 90%,#fff 90%,#fff 100%);
  background-position: 200%;
  background-size: 200% 200%;
  background-repeat: no-repeat;
  transition: all 0.5s ease-out;
}
.page_link_inner > a:hover {
  color: #fff;
  background-position: 1% 50%;
}
.page_link_inner > a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc(100% + -60px);
  width: 25px;
  height: 1px;
  background-color: #E3344A;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-left: 10px;
}
.page_link_inner > a.blank:after {
  width: 25px;
  height: 25px;
  background: url(/assets/img/blank_red3.png) no-repeat center;
  background-size: 18px auto;
}
.page_link_inner > a .mini {
  font-size: 13px;
}
.page_link_inner > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 15px;
  width: 40px;
  height: 40px;
}
.page_link_inner > .download:before {
  background: url(/assets/img/icon_download.png) no-repeat center;
}

.page_link_inner > a:hover:after {
  background: #fff;
}
.page_link_inner > .download:hover:before {
  background: url(/assets/img/icon_download_w.png) no-repeat center;
}

.page_link_inner > a.blank:hover:after {
  background: #E3344A url(/assets/img/blank_red_w.png) no-repeat center;
  background-size: 18px auto;
}
@media only screen and (max-width: 1370px) {
  .page_link_inner .normal:after {
      width: 30px;
  }
}
.page_link_inner .normal:hover:after {
  width: 35px;
}
@media screen and (max-width: 767px) {
  .page_link_inner {
    display: block;
    margin: 0px auto;
  }
  .page_link_inner > a {
    width: 100%;
    font-size: 16px;    
    margin: 15px auto;
    padding: 1em 1em;
  }
}

.media_list{
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.8;
}
.media_list li{
  text-indent: -1em;
  margin-left: 1em;
}

a.media_textLink{
  border-bottom: 1px solid #000;
}
a.media_textLink:hover {
  color: #DF112B;
  border-bottom: 1px solid #DF112B;
}
a.media_textLink.blank{
  padding-right: 15px;
  background: url(/assets/img/icon_blank.svg) no-repeat right center;
  margin-right: 10px;
}

.c-txt_small {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-txt__box .txt4 {
    font-size: 1.3rem;
  }
  .media_list{
    font-size: 1.3rem;
  }
}
.mb0{
  margin-bottom: 0;
}