@charset "utf-8";

/* --------------------------------------------------------
* 全体設定
* -------------------------------------------------------*/
.ir-page {
}
.ir-title {
}
.ir-content {
  font-size: 1.15385rem;
  line-height: 2em;
  letter-spacing: 0.04em;

  & p + p {
    margin-top: 24px;
  }
}
.ir-img {
  width: 100%;
}
.ir-txt-right {
  text-align: right;
}
.ir-link {
  color: #2c82c9;
}
.ir-content-title {
  font-weight: 700;
  letter-spacing: 0.08em;

  & + p {
    margin-top: 24px;
  }
}

.ir-flex-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media screen and (min-width: 1023px) {
  .ir-page {
    margin-top: 128px;
  }
  .ir-content {
    margin-top: 72px;
    font-size: 1.14286rem;
    line-height: 2em;
  }
  .ir-content-title {
    font-size: 1.71429rem;
    line-height: 1.33333em;
  }
}
@media screen and (max-width: 1023px) {
  .ir-page {
    margin-top: 80px;
    padding-inline: 20px;
  }
  .ir-title {
    padding-inline: 20px;
  }
  .ir-content {
    margin-top: 40px;
  }
  .ir-content-title {
    font-size: 1.38462rem;
    line-height: 1.5em;
  }
}

/* --------------------------------------------------------
* ナビ設定
* -------------------------------------------------------*/
.ir-nav {
}
.ir-nav-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  & .ey-parts-btnArea {
    width: 100%;
  }
  & .ey-parts-btn--default {
    width: 100%;
    flex-grow: 1;

    & span {
    }
  }
}

@media screen and (min-width: 1023px) {
  .ir-nav {
    margin-top: 128px;
  }
}
@media screen and (max-width: 1023px) {
  .ir-nav {
    margin-top: 80px;
    padding-inline: 20px;
  }
  .ir-nav-list {
    flex-direction: column;
  }
}

/* --------------------------------------------------------
* IRトップ
* -------------------------------------------------------*/
.irtop-news {
  & .ey-parts-btn--default {
    min-width: 250px;
  }
}

.irtop-gray {
  background: #f6f6f6;
  padding: 1px;
}
.irtop-box {
  margin-top: 0;

  & .ir-content {
    margin-top: 0;
  }
}
.irtop-box-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.irtop-box-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.irtop-box-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 20px 30px;
}
.irtop-box-list {
  padding: 20px 30px;
  background: #fff;
  border-radius: 0 0 8px 8px;

  & ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.irtop-box-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1791cf;
  transition: 0.3s ease;
  font-weight: 700;

  & .icon {
    width: 14px;
    display: flex;
    transition:
      transform 0.3s ease,
      -webkit-transform 0.3s ease;

    & svg {
      fill: #1791cf;
      width: 14px;
    }
    & img {
      width: 14px;
    }
  }

  &:hover {
    opacity: 0.8;

    & .icon {
      transform: translateX(4px);
    }
  }
}

.irtop-bottom {
  & .ey-inner--page {
    background: #f6f6f6;
    padding: 5px;
    border-radius: 8px;
  }
  & .ir-nav-list {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
  }
}

@media screen and (min-width: 1023px) {
  .irtop-news {
    & .ey-parts-btnArea {
      margin-top: 80px;
    }
  }
  .irtop-gray {
    margin-top: 128px;
    padding: 128px 50px 186px;
  }
  .irtop-box-wrap {
    row-gap: 50px;
  }
  .irtop-box-content {
    width: 31%;
  }
  .irtop-bottom {
    margin-top: -84px;
  }
}
@media screen and (max-width: 1023px) {
  .irtop-news {
    & .ey-parts-btnArea {
      margin-top: 40px;
    }
  }
  .irtop-gray {
    margin-top: 80px;
    padding: 80px 0 120px;
  }
  .irtop-box-wrap {
    row-gap: 30px;
  }
  .irtop-box-content {
    width: 100%;
  }
  .irtop-bottom {
    margin-top: -60px;
  }
}

/* --------------------------------------------------------
* 株式情報
* -------------------------------------------------------*/

@media screen and (min-width: 1023px) {
  .ir-overview {
    & .ey-parts-tableList {
      & tbody {
        & th {
          width: 250px;
        }
      }
    }
  }
}

/* --------------------------------------------------------
* よくあるご質問
* -------------------------------------------------------*/
.ir-faq-box {
}
.ir-faq-txt--q {
  padding-left: 30px;
  position: relative;
  font-weight: bold;

  &::before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: #f6c857;
    font-weight: bold;
  }
}
.ir-faq-txt--a {
  padding-left: 30px;
  position: relative;
  font-weight: bold;

  &::before {
    content: "A.";
    position: absolute;
    left: 0;
    color: #e17a91;
    font-weight: bold;
  }
}
