@charset "UTF-8";

/* investors_guide
-------------- */
.investors_guide h2 {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 10px;
  margin: 0 0 35px;
}

.investors_guide h2:before,
.investors_guide h2:after {
  border-radius: 3px;
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  bottom: 0;
}

.investors_guide h2:before {
  width: 100%;
  background-color: #f3f3f3;
}

.investors_guide h2:after {
  width: 50%;
  background-color: #33b963;
}

.investors_guide a[href$=".pdf"] {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background: #f3f3f3;
  padding: 1em 4em;
  border-radius: 8px;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.investors_guide a[href$=".pdf"]:hover {
  background: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .investors_guide a[href$=".pdf"]:active {
    transform: scale(0.98);
  }
}

.investors_guide a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-pdf-m.png) no-repeat;
  background-size: contain;
}

.investors_guide .batch,
.investors_guide .split {
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .investors_guide .split h3 br,
  .report_subtitle br {
    display: none;
  }
}

/* 一括 */
.investors_guide .batch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .investors_guide .batch {
    grid-template-columns: 360px 1fr;
    justify-items: start;
  }
}
.investors_guide .batch .report_cover {
  text-align: center;
  padding: 30px;
}
.investors_guide .batch .report_cover img {
  max-width: 100%;
  height:auto;
  border: 1px solid #ccc;
}

.investors_guide .batch .report_title {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
}

.investors_guide .batch a[href$=".pdf"] {
  padding: 1.4em 4em;
}

/* 分割 */
.investors_guide .split h3 {
  font-size: 2.2rem;
}

.investors_guide .split_list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
}
.investors_guide .split_list .report_subtitle {
  font-size: 1.8rem;
  font-weight: 700;
}
.investors_guide .split_list .report_subbtn {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .investors_guide .split_list {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 18px 40px;
  }
  .investors_guide .split_list .report_subbtn {
    margin-bottom: 0;
  }
}

/* 英語 */
.investors_guide .en {
  font-size: 1.8rem;
  font-weight: 700;
}

.investors_guide .en a {
  text-decoration: underline;
  color: #397bcd;
}

/* CSR
-------------- */
.csr.investors_guide .linkbtn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .csr.investors_guide .linkbtn {
    padding: 1em 4em;
  }
}
.csr.investors_guide .linkbtn:hover {
  background: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .csr.investors_guide .linkbtn:active {
    transform: scale(0.98);
  }
}

.csr.investors_guide .linkbtn::before {
  content: "";
  width: 8px;
  display: inline-block;
}
.csr.investors_guide .linkbtn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #202020;
}
