@charset "UTF-8";

/*-------------------- 
テキスト
--------------------*/
.ir__text {
  & + & {
    margin-top: 35px;
  }
}

.ir__text_weak {
  margin-top: 10px;
  font-size: 1.2rem;
}

.ir__textLink {
  position: relative;
  text-decoration: underline;
  word-break: initial;
  color: #2271b1;

  &[target="_blank"] {
    padding-right: 18px;
  }

  &[target="_blank"]::after {
    position: absolute;
    content: "";
    background: url(/wordpress/wp-content/themes/axelspace_holdings/vendor/ir/img/new-window.png) no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    right: 2px;
    top: 50%;
    transform: translateY( -50%);
  }
}

/*-------------------- 
テーブル
--------------------*/
.ir__tableBox {
  width: 100%;
}

.ir__tableBox_row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  border-top: 1px solid #CCD1D4;
  box-sizing: border-box;

  & dt {
    position: relative;
    padding: 15px 0 15px 15px;
    width: 180px;
    flex-shrink: 0;
  }

  & dd {
    flex-grow: 1;
    padding: 15px 15px 15px 70px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}

.ir__tableBox_row::before {
  content: "";
  position: absolute;
  width: 180px;
  top: -1px;
  border-top: 1px solid #041c2c;
}

.ir__tableBox_row:last-of-type {
  border-bottom: 1px solid #CCD1D4;
}

.ir__tableBox_row:last-of-type::after {
  content: "";
  position: absolute;
  width: 180px;
  bottom: -1px;
  border-bottom: 1px solid #041c2c;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .ir__tableBox_row {
    display: block;

    & dt {
      width: 100%;
    }

    & dd {
      padding-left: 20px;
    }
  }

  .ir__tableBox_row::before {
    width: 90px;
  }

  .ir__tableBox_row:last-of-type::after {
    width: 90px;
  }
}

/*-------------------- 
リスト
--------------------*/
.ir__numberList {
  margin: 10px 0;
}

.ir__numberList_item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 4px;
  list-style-type: none;
  counter-increment: cnt;
}

.ir__numberList_item::before {
  position: absolute;
  content: "("counter(cnt)")";
  left: 0;
}



/*-------------------- 
ローカルナビ
--------------------*/
.ir__localNavLv1 {
  margin-top: 90px;
}

.ir__localNavLv1_list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ir__localNavLv1_item {
  width: calc((100% - (8px * 4)) / 5);

  & a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    background-color: #F2F3F4;
  }
}

.ir__localNavLv1_item-active {
  & a {
    color: #fff;
    background-color: #041c2c;
    }
}

.ir__localNavLv2 {
  margin-top: 40px;
}

.ir__localNavLv2_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ir__localNavLv2_item {
  & a {
    display: flex;
    color: #6f6f6f;
    text-decoration: underline;
    text-underline-offset: 4px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  & a[target="_blank"] ::after{
	  content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(/wordpress/wp-content/themes/axelspace_holdings/vendor/ir/img/new-window.png) no-repeat;
    background-size: cover;
    margin-left: 2px;
  }
}

.ir__localNavLv2_item-active {
  & a {
    color: #041c2c;
  }
}

@media screen and (max-width: 768px) {
  
  .ir__localNavLv1_item {
  width: calc((100% - 8px) / 2);
  }
}

/*-------------------- 
IRTOP
--------------------*/
/*---- MV ----*/
body:has(.ir__contents) .sub-main-visual_inner {
  background: url(/wordpress/wp-content/themes/axelspace_holdings/vendor/ir/img/img_irtop_mv.png) no-repeat 0 0;
  background-size: cover;
  background-position: center center;
  position: relative; 

  &::before {
    position: absolute;
    content: "";
    display: block;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0), 30%, rgba(245, 255, 244, 0.6), rgba(255, 255, 255, 1));
    width: 100%;
    height: 100%;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  body:has(.irTop__news) .sub-main-visual_inner {
    & .sub-main-visual_inner_box h1 {
      filter: drop-shadow(0 0px 3px rgba(255, 255, 255, 9));
    }
  }
}

/*---- irNews ----*/
.irTop__news {
  margin-bottom: 90px;
}

.irTop__news_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  & .button {
    position: absolute;
    top: 90px;
    left: 0;
  }
}

.irTop__news_title h2 {
  margin-bottom: 6px;
  font-size: 40px;
}

.irTop__news_content {
  width: 66%;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .irTop__news {
    margin-bottom: 0;
  }

  .irTop__news_inner {
    flex-wrap: wrap;

    & .button {
      position: relative;
      width: 180px;
      top: auto;
      margin: 40px 0 0 auto;
      right: 0;
    }
  }

  .irTop__news_title {
    width: 100%;
    margin-bottom: 40px;
  }

  .irTop__news_content {
    width: 100%;
    padding-left: 0;
  }

}


/*---- パネル ----*/
.irTop__panel {
  background-color: #F2F3F4;
}

.irTop__panel_list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 50px;
}

.irTop__panel_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - (18px * 2) ) / 3);
  padding: 2.4rem;
  background-color: #fff;
}

.irTop__panel_list_icon {
  margin: 0 auto 20px;

  & img {
    width: 100px;
  }

}

.irTop__panel_list_title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.irTop__panel_list_linkList {
  width: 100%;
}

.irTop__panel_list_linkList_item {

  & a {
    display: flex;
    position: relative;
    align-items: center;
    padding: 20px 30px 20px 0;
  }

  & + & {
    border-top: 1px solid #001A26;
  }
}

.irTop__panel_list_linkList_item a::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 14px;
      background: url(/wordpress/wp-content/themes/axelspace_holdings/vendor/ir/img/arrow_black.png) no-repeat 0 0;
      background-size: 100%;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

.irTop__panel_list_linkList_item a[target="_blank"]::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(/wordpress/wp-content/themes/axelspace_holdings/vendor/ir/img/new-window.png) no-repeat 0 0;
  background-size: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.irTop__panel_btnList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}


@media screen and (max-width: 768px) {
  .irTop__panel_list_item {
    width: 100%;
  }

  .irTop__panel_btnList {
    flex-direction: column;
    width: 100%;

    & .button {
      max-width: 100%;
    }
  }
}



/*-------------------- 
株主・投資家の皆様へ
--------------------*/
.ir__messageBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ir__messageBox_img {
  width: 38%;
}

.ir__messageBox_text {
  width: 58%;
}

.ir__messageBox_speaker {
  margin-top: 35px;
  text-align: right;

  & p {
    display: inline-block;
    text-align: left;
  }

}

@media screen and (max-width: 768px) {

  .ir__messageBox {
    flex-direction: column;
  }

  .ir__messageBox_img {
    width: 80%;
    margin: 0 auto 30px;
  }

  .ir__messageBox_text {
    width: 100%;
  }
}

/*-------------------- 
IRカレンダー
--------------------*/
.irCalendar__img {
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin-bottom: 60px;
  
  & img {
    width: calc((100% - 2px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .irCalendar__img {
    flex-direction: column;

    & img {
      max-width: 100%;
      width: 100%;
    }
  }
}


/*-------------------- 
よくあるご質問
--------------------*/
.ir__faqBox {
  & + & {
    margin-top: 32px;
  }
}

.ir__faqBox_q {
  position: relative;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
}

.ir__faqBox_q::before {
  content: "Q";
  position: absolute;
  display: block;
  left: 0;
  font-size: 2.4rem;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.0;
}

.ir__faqBox_a {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222;
  padding-top: 16px;
  padding-left: 28px;
  padding-bottom: 16px;
}

.ir__faqBox_a::before {
  content: "A";
  position: absolute;
  display: block;
  left: 0;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.0;
}