@charset "utf-8";

.ir__m0Auto {
  margin: 0 auto;
}
.ir__taR {
  text-align: right;
}
.ir__taC {
  text-align: center;
}
.ir__taL {
  text-align: left;
}

.ir__pcNone {
  display: none;
}
.ir__spNone {
  display: block;
}
@media print, screen and (max-width: 768px) {
  .ir__pcNone {
    display: block;
  }
  .ir__spNone {
    display: none;
  }
}

.ir__mainContent {
  padding-top: min(8.4rem, 70px);
}
.ir__mainContent_wrap {
    max-width: MIN(1440px,100%);
    width: 100%;
    min-height:max(30rem,400px);
    justify-self: center;
  padding: 0 6.4rem;
}
@media print, screen and (max-width: 768px) {
  .ir__mainContent {
    padding-top: 0rem;
  }
  .ir__mainContent_wrap {
    padding: 0 2rem;
  }
}

.ir__img img {
  max-width: 100%;
  width: auto;
}

/* --------------------------
見出し
* --------------------------- */
.ir__ttlH1 {
  font-family: TazuganeGothicMedium, sans-serif;
  font-variation-settings: 'wght' 530;
  font-size: min(3.5rem, 29px);
  margin-bottom: 4rem;
}
@media print, screen and (max-width: 768px) {
  .ir__ttlH1 {
    font-size: min(3.8rem, 50px);
    margin-bottom: 3.5rem;
  }
}

.ir__ttlH2 {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(3rem, 24px);
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .ir__ttlH2 {
    font-size: min(2.23rem, 23px);
  }
}

.ir__ttlH3 {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(2.3rem, 20px);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}
@media print, screen and (max-width: 768px) {
  .ir__ttlH3 {
    font-size: min(1.86rem, 19px);
  }
}

/* --------------------------
セクション
* --------------------------- */
.ir__sectionWrap + .ir__sectionWrap {
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .ir__sectionWrap + .ir__sectionWrap {
    margin-top: 10rem;
  }
}

/* --------------------------
テキスト
* --------------------------- */
.ir__txt {
  font-size: min(1.5rem, 12px);
  line-height: 1.8;
}
.ir__txt + .ir__txt {
  margin-top: 2rem;
}
.ir__txt--right {
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .ir__txt + .ir__txt {
    margin-top: 2.5rem;
  }
}

/* --------------------------
リンク
* --------------------------- */
.ir__linkTxt {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
a[target='_blank'].ir__linkTxt::after {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.5rem;
  content: '';
  background-image: url(/images/ir/blank.svg);
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__linkTxt:hover {
    text-decoration: none;
  }
}

/* --------------------------
ボタン
* --------------------------- */
.ir__moreBtn{
  float: right;
  height: 100%;
  align-content: center;

}
.ir__moreBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.8rem, 14px);
  line-height: 1;
  width: 14rem;
  height: 4rem;
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  background: #fff;
  z-index: 1;
  margin-top: 2.2rem;
}
.ir__moreBtn a::before {
  content: '';
  display: block;
  width: calc(100% + 0.7rem);
  height: calc(100% + 12.8rem);
  position: absolute;
  top: calc(50% - 6.2rem);
  left: calc(-100% - 20rem);
  z-index: 2;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  will-change: mix-blend-mode;
  transition: left 0.25s cubic-bezier(0.68, 0.31, 0.33, 0.66);
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__moreBtn a:hover::before {
    left: -0.2em;
  }
}
@media print, screen and (max-width: 768px) {
  .ir__moreBtn{
    float:none;
  }
  .ir__moreBtn a {
    width: 9.5rem;
    height: 4.6rem;
    padding: 1.5rem 0;
    font-size: min(1.5rem, 19px);
    margin-top: 1.6rem;

  }
}

.ir__arrowBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.8rem, 14px);
  line-height: 1;
  width: 19.3rem;
  height: 7.2rem;
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  background: #fff;
  z-index: 1;
}
.ir__arrowBtn a::before {
  content: '';
  display: block;
  width: 20rem;
  height: 20rem;
  position: absolute;
  top: -6.2rem;
  left: -20rem;
  z-index: 2;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  will-change: mix-blend-mode;
  transition: left 0.25s cubic-bezier(0.68, 0.31, 0.33, 0.66);
}
.ir__arrowBtn a img {
  display: block;
  width: 2.4rem;
  height: auto;
  margin-right: 2rem;
  transition: transform 0.25s cubic-bezier(0.68, 0.31, 0.33, 0.66);
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__arrowBtn a:hover::before {
    left: 0;
  }
  .ir__arrowBtn a img {
    transform: translateX(0.4rem);
  }
}

/* --------------------------
テーブル
* --------------------------- */
.ir__table {
  width: 100%;
  border-top: 1px solid #b3b3b3;
}
.ir__table tr {
  border-bottom: 1px solid #b3b3b3;
}
.ir__table th,
.ir__table td {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.5rem, 12px);
  padding: 2rem 0 1.8rem;
  text-align: left;
  word-break: break-word;
}
.ir__table th {
  width: 23rem;
}
.ir__table td {
  line-height: 1.6;
  width: calc(100% - 23rem);
}
@media print, screen and (max-width: 768px) {
  .ir__table th,
  .ir__table td {
    font-size: min(1.3rem, 17px);
  }
  .ir__table th {
    width: 12.4rem;
  }
  .ir__table td {
    width: calc(100% - 12.4rem);
  }
}

/* --------------------------
リスト
* --------------------------- */
.ir__numKomeNotice {
  margin-top: 3rem;
}
.ir__numKomeNotice_item {
  display: flex;
}
.ir__numKomeNotice_item p {
  font-size: min(1.2rem, 9px);
  line-height: 1.8;
}
.ir__numKomeNotice_item p:first-child {
  width: 3rem;
}
.ir__numKomeNotice_item p:last-child {
  width: calc(100% - 3rem);
}
@media print, screen and (max-width: 768px) {
}

/* --------------------------
ローカルナビ
* --------------------------- */
.ir__localNav {
  border-bottom: 2px solid #BCAA84;
  display: flex;
  width: 100%;
  padding-top: 2.5rem;
  margin: 5rem 0 8.5rem;
}
.ir__localNav_item {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(2.2rem, 18px);
  margin-right: 1rem;
  background-color: #EDF0F0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 1rem 2rem 0.5rem;
  a {
    color: black;
  }
}
.ir__localNav_item-active{
  background-color: #BCAA84;
  a {
    color: white;
  }
}

.ir__localNav_item a::after {
  content: '';
  display: block;
  /*width: 100%;*/
  /*height: 1px;*/
  /*background-color: #000;*/
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  transform-origin: right;
}
@media print, screen and (min-width: 769px) {
  .ir__localNav_item-active a::after {
    transform: scaleX(1);
  }
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__localNav_item a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  }
}
@media print, screen and (max-width: 768px) {
  .ir__localNav {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2rem;
    margin-bottom: 5rem;
  }
  .ir__localNav_item {
    font-size: min(1.3rem, 17px);
    width: 47%;
    margin-right: 0;
  }
  .ir__localNav_item-sp3,
  .ir__localNav_item-sp4,
  .ir__localNav_item-sp5,
  .ir__localNav_item-sp6,
  .ir__localNav_item-sp7 {
    margin-top: 0rem;
  }
  .ir__localNav_item-sp1 {
    order: 1;
  }
  .ir__localNav_item-sp2 {
    order: 2;
  }
  .ir__localNav_item-sp3 {
    order: 3;
  }
  .ir__localNav_item-sp4 {
    order: 4;
  }
  .ir__localNav_item-sp5 {
    order: 5;
  }
  .ir__localNav_item-sp6 {
    order: 6;
  }
  .ir__localNav_item-sp7 {
    order: 7;
  }
}

/* --------------------------
ローカルナビ：その他
* --------------------------- */
.ir__otherNav {
  display: flex;
  width: 50%;
  margin: 8.5rem 0;
}
.ir__otherNav_ttl {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(2rem, 16px);
  width: 26%;
}
.ir__otherNav_link {
  display: flex;
  flex-wrap: wrap;
  width: 74%;
}
.ir__otherNav_linkItem {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.4rem, 11px);
  width: 50%;
}
.ir__otherNav_linkItem:nth-child(2n) {
  padding-left: 1rem;
}
.ir__otherNav_linkItem:nth-child(n + 3) {
  margin-top: 2.2rem;
}
.ir__otherNav_linkItem a {
  display: inline-block;
}
.ir__otherNav_linkItem a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  transform-origin: right;
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__otherNav_linkItem a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  }
}
@media print, screen and (max-width: 768px) {
  .ir__otherNav {
    width: 100%;
    margin-top: 11rem;
    display: block;
  }
  .ir__otherNav_ttl {
    width: 100%;
    font-size: min(1.8rem, 23px);
    margin-bottom: 2.5rem;
  }
  .ir__otherNav_link {
    width: 100%;
  }
  .ir__otherNav_linkItem {
    font-size: min(1.2rem, 15px);
  }
  .ir__otherNav_linkItem:nth-child(n + 3) {
    margin-top: 1.2rem;
  }
}

/* --------------------------
サイドナビ
* --------------------------- */
@media print, screen and (min-width: 769px) {
  .ir__sideNavWrap {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
  .ir__sideNavWrap_nav {
    white-space: nowrap;
    width: 15%;
  }
  .ir__sideNavWrap_contents {
    width: 85%;
  }
  .ir__sideNavWrap_navLead {
    font-family: TazuganeGothicMedium, sans-serif;
    font-size: min(1.4rem, 11px);
  }
  .ir__sideNavWrap_navList_item {
    position: relative;
    padding-left: 1.5rem;
    font-family: TazuganeGothicMedium, sans-serif;
    font-size: min(1.3rem, 10px);
    margin-top: 0.5rem;
  }
  .ir__sideNavWrap_navList_item::before {
    position: absolute;
    left: 0.4rem;
    content: '・';
  }
  .ir__sideNavWrap_navList_item a {
    display: inline-block;
  }
  .ir__sideNavWrap_navList_item a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.58, 0.44, 0.98);
    transform-origin: right;
  }
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .ir__sideNavWrap_navList_item a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.58, 0.44, 0.98);
  }
}
@media print, screen and (max-width: 768px) {
  .ir__sideNavWrap_nav {
    display: none;
  }
}

/* --------------------------
IRTOP
* --------------------------- */
.irTop__ttlH1 {
  font-size: min(4.6rem, 38px);
}
.irTop__sectionWrap {
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .irTop__ttlH1 {
    font-size: min(3.8rem, 50px);
    padding-top: 2rem;
  }
  .irTop__sectionWrap {
    margin-top: 3.5rem;
  }
}

/* IRニュース */
.irTop__newsTtl {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(4.8rem, 39px);
  margin-bottom: 1.8rem;
}
.irTop__newsBtn {
  display: flex;
  justify-content: end;
  transform: translateX(0);
  opacity: 1;
  margin-top: 5rem;
  padding-bottom: 1px;
  transition: transform 0.6s, opacity 0.6s;
}
.irTop__newsBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.8rem, 14px);
  line-height: 1;
  width: 13rem;
  height: 5.2rem;
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  background: #fff;
  z-index: 1;
}
.irTop__newsBtn a::before {
  content: '';
  display: block;
  width: 13.5rem;
  height: 14.4rem;
  position: absolute;
  top: -4.2rem;
  left: -14.4rem;
  z-index: 2;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  will-change: mix-blend-mode;
  transition: left 0.25s cubic-bezier(0.68, 0.31, 0.33, 0.66);
}
.irTop__newsBtn a img {
  display: block;
  width: 2.4rem;
  height: auto;
  margin-left: 1rem;
  transition: transform 0.25s cubic-bezier(0.68, 0.31, 0.33, 0.66);
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .irTop__newsBtn a:hover::before {
    left: 0;
  }
  .irTop__newsBtn a:hover img {
    transform: translateX(0.4rem);
  }
}
@media print, screen and (max-width: 768px) {
  .irTop__newsTtl {
    font-size: min(2.8rem, 37px);
    margin-bottom: 1rem;
  }
  .irTop__newsBtn {
    margin-top: 2rem;
  }
  .irTop__newsBtn a {
    font-size: min(1.5rem, 19px);
    width: 10rem;
    height: 4.8rem;
    padding: 1.5rem 0;
  }
  .irTop__newsBtn a img {
    width: 2rem;
  }
}

/* カードリンク */
.irTop__cardSection {
  margin-top: 7.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.irTop__cardItem {
  display: block;
  text-align: center;
  width: 33.3%;
  background-color: #edf0f0;
  border-radius: 1rem;
  padding: 2.4rem 2.4rem 3.2rem;
}
.irTop__cardItem:nth-child(n + 4) {
  margin-top: 3rem;
}
.irTop__cardItem_ttl {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(2.4rem, 19px);
}
.irTop__cardItem_img {
  margin: 2rem 0;
}
.irTop__cardItem_img img {
  max-width: 100%;
  width: auto;
}
.irTop__cardItem_link {
  display: inline-block;
  text-align: left;
}
.irTop__cardItem_linkItem + .irTop__cardItem_linkItem {
  margin-top: 1rem;
}
.irTop__cardItem_linkItem a,
.irTop__cardItem_more p {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  font-size: min(1.5rem, 12px);
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .irTop__cardItem_linkItem a:hover,
  a.irTop__cardItem:hover .irTop__cardItem_more p {
    text-decoration: none;
  }
}
@media print, screen and (min-width: 769px) {
  .irTop__cardSection {
    width: 104%;
    margin: 7.5rem -2% 0;
  }
  .irTop__cardItem {
    width: calc(33.3% - 4%);
    margin: 0 2%;
  }
}
@media print, screen and (max-width: 768px) {
  .irTop__cardSection {
    display: block;
    margin-top: 3rem;
  }
  .irTop__cardItem {
    width: 100%;
  }
  .irTop__cardItem:nth-child(n + 2) {
    margin-top: 1.5rem;
  }
  .irTop__cardItem_img img {
    width: 50%;
  }
}

/* ボタン */
.irTop__btnSection {
  margin-top: 7.5rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.irTop__btnSection .ir__arrowBtn {
  width: 23%;
}
.irTop__btnSection .ir__arrowBtn a {
  width: 100%;
  position: relative;
  padding-left: 3rem;
  white-space: break-spaces;
  font-size: min(1.6rem, 13px);
  line-height: 1.4;
}
.irTop__btnSection .ir__arrowBtn a::before {
  width: 100%;
  left: -100%;
}
.irTop__btnSection .ir__arrowBtn a img {
  position: absolute;
  left: 3rem;
  margin-right: 0;
  transition: 0.25s;
}
@media print and (hover: hover) and (pointer: fine),
  screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .irTop__btnSection .ir__arrowBtn a:hover::before {
    left: 0;
  }
  .irTop__btnSection .ir__arrowBtn a:hover img {
    left: 3.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .irTop__btnSection {
    margin-top: 3rem;
    display: block;
  }
  .irTop__btnSection .ir__arrowBtn {
    width: 100%;
  }
  .irTop__btnSection .ir__arrowBtn:nth-child(n + 2) {
    margin-top: 2rem;
  }
}

/* --------------------------
コーポレート・ガバナンス
* --------------------------- */
.irGovernance__imgTxt {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.6rem, 13px);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* --------------------------
IRライブラリー
* --------------------------- */
.irLibrary__linkList_item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #b3b3b3;
  padding: 2rem 0 2rem;
}
.irLibrary__linkList {
  border-top: 1px solid #b3b3b3;
}
.irLibrary__linkList_ttl {
  font-family: TazuganeGothicMedium, sans-serif;
  font-size: min(1.8rem, 14px);
  width: 20%;
  align-self: center;
}
.irLibrary__linkList_main {
  width: 80%;
}
@media print, screen and (min-width: 769px) {
  .irLibrary__linkList_main .ir__moreBtn a {
    width: 7.5rem;
    height: 3.6rem;
    padding: 1.5rem 0;
    font-size: min(1.2rem, 9px);
    margin: 0;
    /*margin-top: 1.6rem;*/
  }
}
@media print, screen and (max-width: 768px) {
  .irLibrary__linkList_item {
    display: block;
    padding: 3.2rem 0 3.2rem;
  }
  .irLibrary__linkList_ttl {
    font-size: min(1.4rem, 18px);
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .irLibrary__linkList_main {
    width: 100%;
  }
}

/* --------------------------
株主総会
* --------------------------- */
.ir__moreBtn-meeting{
  margin-bottom: 9.6rem;
  float: none;
}
.ir__moreBtn-meeting a::before {
  top: calc(50% - 8.2rem);
}

/* --------------------------
よくあるご質問
* --------------------------- */
.irFaq__list + .irFaq__list {
  margin-top: 2rem;
}
.irFaq__list_q,
.irFaq__list_a {
  position: relative;
  padding-left: 1.6rem;
  font-size: min(1.5rem, 12px);
  line-height: 1.8;
}
.irFaq__list_q::before,
.irFaq__list_a::before {
  position: absolute;
  left: 0;
}
.irFaq__list_q::before {
  content: 'Q.';
}
.irFaq__list_a::before {
  content: 'A.';
}
.irFaq__list_q {
  font-family: TazuganeGothicMedium, sans-serif;
}
.irFaq__list_a {
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .irFaq__list_a {
    font-size: min(1.2rem, 15px);
  }
}

/*
 * ここからカスタム
*/

#ir_managementMessage > .ir__ttlH2 {
  margin-top: 0;
  padding-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  #ir_managementMessage > .ir__ttlH2 {
    padding-top: 3.5rem;
  }
}

.u-mb0 {
  margin-bottom: 0;
}

#ir_managementGovernance,
#ir_managementDisclosure,
#ir_managementGovernanceSummary {
  margin-top: 0;
  padding-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  #ir_managementGovernance,
  #ir_managementDisclosure,
  #ir_managementGovernanceSummary {
    margin-top: 2rem;
    padding-top: 8rem;
  }
}

#ir_managementGovernance > .ir__ttlH2 {
  margin-top: 0;
}
#ir_managementDisclosure > .ir__ttlH2 {
  margin-top: 0;
}


/* --------------------------
knowledge
* --------------------------- */
.knowledge__localNav {
  border-bottom: 2px solid #0DBFBF;
  display: flex;
  width: 100%;
  padding-top: 2.5rem;
  margin: 5rem 0 8.5rem;
}
.knowledge__localNav_item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(1.4rem, 11px);
  margin-right: 1rem;
  width: 16rem;
  text-align: center;
  background-color: #EDF0F0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 1rem 2rem 0.5rem;
  a {
    font-weight: 700;
    color: black;
  }
}
.knowledge__localNav_item-active{
  background-color: #0DBFBF;
  a {
    font-weight: 700;
    color: white;
  }
}

