@charset "utf-8";

/* === .fBox (flexBox) === */
@media screen and (min-width: 768px){
  .fBox {
    display: -webkit-box;
    display: flex;
  }
}

/* === #selectData === */
#selectData {
  border: 1px solid #d1d1d1;
  padding: 12px;
  max-width: 100%;
  width: 200px;
}
@media screen and (min-width: 768px){
  #selectData {
    font-size: calc(16 / 16 * 1rem);
  }
}
@media not all and (min-width: 768px){
  #selectData {
    font-size: calc(15 / 16 * 1rem);
  }
}

/* === .dataBox === */
.dataBox {
  display: none;
}
.dataBox.active {
  display: block;
}
.dataBox .head__arrow_square {
  margin-bottom: 0;
}

/* === .imageBlock === */
@media screen and (min-width: 768px){
  .fBox .imageBlock {
    flex: 1;
    margin-right: 16px;
  }
  .fBox .latestList {
    flex: 4;
  }
}
@media not all and (min-width: 768px){
  .fBox .imageBlock {
    justify-self: center;
    width: 200px;
  }
}
.imageBlock {
  border: 1px #ddd solid;
}

/* === .latestList === */
.latestList li {
  border-bottom: 2px dotted #d1d1d1;
}
.latestList li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.latestList li a::before {
  content: "";
  background: url("/assets/img/common/arrow03_red.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0;
}
.latestList li a:link,
.latestList li a:visited {
  color: #000;
}
@media screen and (min-width: 768px){
  .latestList {
    margin-bottom: 28px;
  }
  .latestList li {
    margin-top: 4px;
    padding: 12px 0 8px;
  }
  .latestList li:first-child {
    margin-top: 0;
  }
  .latestList li a {
    padding: 0 0 0 20px;
  }
  .latestList li a:hover {
    color: #7e0017;
    opacity: 0.7;
  }
  .latestList li a::before {
    width: 12px;
    height: 14px;
    top: 6px;
  }
}
@media not all and (min-width: 768px){
  .latestList {
    margin-bottom: 20px;
  }
  .latestList li {
    font-size: calc(15 /16 * 1rem);
    padding: 8px 0;
  }
  .latestList li a {
    padding: 0 0 0 10px;
  }
  .latestList li a::before {
    width: 6px;
    height: 7px;
    top: 9px;
  }
  .latestList li a:active {
    color: #7e0017;
    opacity: 0.7;
  }
}

/* === .getAdobeReader === */
.getAdobeReader .fBox {
  background-color: #efece7;
}
.getAdobeReader .fBox figure img {
  display: block;
  margin: 0 auto;
}
.getAdobeReader .fBox div a {
  position: relative;
  transition: all 0.3s ease;
}
.getAdobeReader .fBox div a::before {
  content: "";
  background: url("/assets/img/common/arrow03_red.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px){
  .getAdobeReader .fBox {
    padding: 24px;
  }
  .getAdobeReader .fBox figure {
    width: 200px;
  }
  .getAdobeReader .fBox div {
    flex: 1;
    margin-left: 24px;
  }
  .getAdobeReader .fBox div a {
    padding: 0 0 0 20px;
  }
  .getAdobeReader .fBox div a:hover {
    opacity: 0.7;
  }
  .getAdobeReader .fBox div a::before {
    width: 12px;
    height: 14px;
    top: 6px;
  }
}
@media not all and (min-width: 768px){
  .getAdobeReader .fBox {
    padding: 12px;
  }
  .getAdobeReader .fBox div {
    margin-top: 12px;
  }
  .getAdobeReader .fBox div a {
    padding: 0 0 0 10px;
  }
  .getAdobeReader .fBox div a:active {
    opacity: 0.7;
  }
  .getAdobeReader .fBox div a::before {
    width: 6px;
    height: 7px;
    top: 9px;
  }
}