@charset "UTF-8";
/* _media.scss
-------------------------------------------------------*/
/* /_media.scss
-------------------------------------------------------*/
/* _inner.scss
-------------------------------------------------------*/
/* /_inner.scss
-------------------------------------------------------*/
/* _font.scss
-------------------------------------------------------*/
/* /_font.scss
-------------------------------------------------------*/
/* _over.scss
-------------------------------------------------------*/
/* /_over.scss
-------------------------------------------------------*/
/* _other.scss
-------------------------------------------------------*/
/* /_other.scss
-------------------------------------------------------*/
/* _top.scss
-------------------------------------------------------*/
/* 共通パーツ */
.top_titSecondary {
  position: relative;
}
.top_titSecondary_tit {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1;
}
.top_titSecondary_titSub {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_titSecondary_tit {
    font-size: 2.5rem;
  }
  .top_titSecondary_titSub {
    font-size: 1rem;
  }
}

.top_sec:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top_sec:last-child {
    padding-bottom: 120px;
  }
}

/* メインビジュアル */
.sectFv_titPrimary {
  margin: 145px 0 110px;
}
.sectFv_titPrimary_tit {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.sectFv_titPrimary_titSub {
  display: block;
  margin: 10px 0 0 10px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.sectFv_img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sectFv_titPrimary {
    margin: 60px 0 100px;
  }
  .sectFv_titPrimary_tit {
    font-size: 3.125rem;
  }
  .sectFv_titPrimary_titSub {
    font-size: 1.25rem;
    margin-left: 3px;
  }
  .sectFv_img {
    height: 300px;
  }
}

/* 株主・投資家の皆様へ／中期経営計画／3分で分かるセンス・トラスト */
.sectPanel_lead {
  padding: 115px 0;
  background-color: var(--color-main);
  border-bottom: 1px solid var(--color-wh);
}
.sectPanel_lead_wrap {
  width: var(--wrap-base);
  max-width: 1460px;
  padding: 0 30px;
  margin: 0 auto;
}
.sectPanel_lead_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
.sectPanel_lead_img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sectPanel_lead_txt {
  color: var(--color-wh);
  line-height: 2;
}
.sectPanel_list .top_titSecondary {
  color: var(--color-wh);
}
.sectPanel_list_item {
  background-color: var(--color-main);
}
.sectPanel_list_item:nth-child(even) {
  background-color: var(--color-sub);
}
.sectPanel_list_link {
  position: relative;
  display: block;
  padding: 120px min(70px, 13%);
  overflow: hidden;
}
.sectPanel_list_link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-wh);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: var(--trans-min08);
  transition: var(--trans-min08);
}
.sectPanel_list_img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .sectPanel_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .sectPanel_list .top_titSecondary {
    min-height: 180px;
  }
  .sectPanel_list_item + .sectPanel_list_item {
    border-left: 1px solid var(--color-wh);
  }
  .sectPanel_list_link:hover::before {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .sectPanel_list_img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  .sectPanel_list_img > img {
    -webkit-transition: var(--trans-min07);
    transition: var(--trans-min07);
  }
  a:hover .sectPanel_list_img > img {
    -webkit-transform: var(--img-zoom);
            transform: var(--img-zoom);
  }
}
@media screen and (max-width: 767px) {
  .sectPanel_lead {
    padding: 80px 0;
  }
  .sectPanel_lead_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .sectPanel_lead_txt {
    line-height: 1.8;
  }
  .sectPanel_list_item + .sectPanel_list_item {
    border-top: 1px solid var(--color-wh);
  }
  .sectPanel_list_link {
    padding: 60px 20px;
  }
  .sectPanel_list_img {
    border-radius: 6px;
    margin-top: 30px;
  }
}

/* IRニュース */
.sectNews {
  margin-top: 150px;
}
.sectNews_box {
  gap: 30px;
  padding: 80px;
  border-radius: 10px;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px), print {
  .sectNews_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.sectNews_box .top_titSecondary {
  width: 35%;
}
.sectNews_box_main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sectNews_list_item {
  position: relative;
}
.sectNews_list_item + .sectNews_list_item {
  margin-top: 30px;
}
.sectNews_list_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
  -webkit-transition: var(--trans-min04);
  transition: var(--trans-min04);
}
.sectNews_list_link:hover {
  opacity: 0.7;
}
.sectNews_list_date > span {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}
.sectNews_list_tag > span {
  display: inline-block;
  width: 84px;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid var(--color-sub2);
  border-radius: 5px;
  color: var(--color-sub2);
  font-size: 0.9375rem;
  line-height: 1;
}
.sectNews_list_txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sectNews_list_pdf {
  background-color: #d40404;
  color: var(--color-wh);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0 10px;
  margin: 0 5px;
}
.sectNews_list_size {
  font-size: 0.75rem;
  margin: 0 5px;
}
.sectNews_btn {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .sectNews {
    margin-top: 80px;
  }
  .sectNews_box {
    padding: 40px 20px;
    border-radius: 10px;
  }
  .sectNews_box .top_titSecondary {
    width: 100%;
    margin-bottom: 40px;
  }
  .sectNews_box_main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sectNews_list_item + .sectNews_list_item {
    margin-top: 25px;
  }
  .sectNews_list_link {
    gap: 6px 20px;
  }
  .sectNews_list_date > span {
    font-size: 1rem;
  }
  .sectNews_list_tag > span {
    width: 76px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
  }
  .sectNews_list_txt {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    display: block;
    width: 100%;
  }
  .sectNews_btn {
    margin-top: 40px;
  }
}

.sectLibrary {
  margin-top: 140px;
}
.sectLibrary_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 60px 100px;
}
.sectLibrary_list_item {
  width: calc((100% - 100px) / 2);
}
.sectLibrary_list_btn {
  position: relative;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.sectLibrary_list_btn::before {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .sectLibrary {
    margin-top: 80px;
  }
  .sectLibrary_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sectLibrary_list_item {
    width: 100%;
  }
}/*# sourceMappingURL=top.css.map */