@charset "UTF-8";

.page_inner > *:first-child {
  margin-top: 0;
}


.ir_taR {
  text-align: right;
}
.ir_taC {
  text-align: center;
}
.ir_taL {
  text-align: left;
}


/*-------------------------------------------------------------
section
-------------------------------------------------------------*/
.ir_sec {
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  .ir_sec {
    padding: 8.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .ir_sec {
    padding: 50px 0;
  }
}


/*-------------------------------------------------------------
title
-------------------------------------------------------------*/
.page_title {
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .page_title {
    margin-bottom: 6.66vw;
  }
}
@media screen and (max-width: 768px) {
  .page_title {
    margin-bottom: 40px;
  }
}

.ir_titleh4 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin: 1.5em 0 0.8em;
  color: var(--color-main);
}
@media screen and (max-width: 1200px) {
  .ir_titleh4 {
    font-size: 2.91vw;
  }
}
@media screen and (max-width: 768px) {
  .ir_titleh4 {
    font-size: 2.4rem;
  }
}


/*-------------------------------------------------------------
text
-------------------------------------------------------------*/
.page_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .page_text {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .page_text {
    font-size: 1.4rem;
  }
}
.ir_text + .ir_text {
  margin-top: 1em;
}
.ir_textLink {
  color: var(--color-main);
  text-decoration: underline;
  
  &:hover {
    text-decoration: none;
  }
  &[target="_blank"] {
    &::after {
      content: url(../img/ir/icon_blank.svg);
    }
  }
}


/*-------------------------------------------------------------
text
-------------------------------------------------------------*/
.ir_btn {
  margin: 0 auto;

  & a {
    background: #fff;
    border: 1px solid var(--color-main);
    border-radius: 40px;
    color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    min-height: 60px;

    & span {
      position: relative;
      z-index: 2;
    }
    &::after {
      border-top: solid 2px var(--color-main);
      border-right: solid 2px var(--color-main);
      content: "";
      margin: auto;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 7%;
      transform: rotate(45deg);
      width: 0.6em;
      height: 0.6em;
      z-index: 3;
    }
    &:hover {
      background: var(--color-main);
      color: #fff;

      &::after {
        border-color: #fff;
      }
    }
  }
}
@media screen and (max-width: 1200px) {
  .ir_btn {
    & a {
      font-size: 1.66vw;
    }
  }
}
@media screen and (max-width: 768px) {
  .ir_btn {
    max-width: 300px;

    & a {
      font-size: 13px;
      width: 100%;
      min-height: 35px;
    }
  }
}


/*-------------------------------------------------------------
table
-------------------------------------------------------------*/
.ir_tbl {
  width: 100%;
}
.ir_tbl_tr {
  border-bottom: 2px solid #d2d2d3;
  font-size: 18px;
}
.ir_tbl_th,
.ir_tbl_td {
  line-height: 1.8;
  padding: 23px 0;
}
.ir_tbl_th {
  font-weight: inherit;
  width: 230px;
}
@media screen and (max-width: 1200px) {
  .ir_tbl_tr {
    font-size: 1.8vw;
  }
  .ir_tbl_th,
  .ir_tbl_td {
    padding: 1.9vw 0;
  }
  .ir_tbl_th {
    width: 21.666667vw;
  }
}
@media screen and (max-width: 768px) {
  .ir_tbl,
  .ir_tbl tr,
  .ir_tbl_th,
  .ir_tbl_td {
    display: block;
  }
  .ir_tbl {
    border-top: 1px solid #d2d2d3;
  }
  .ir_tbl_tr {
    border-bottom: 1px solid #d2d2d3;
    font-size: 14px;
    padding: 0 0 20px;
  }
  .ir_tbl_th {
    background-color: var(--color-grey);
    padding: 0.2em 0.8em;
    width: 100%;
  }
  .ir_tbl_td {
    padding: 0.5em 0.8em 0;
    width: 100%;
  }
}


/*-------------------------------------------------------------
menu
-------------------------------------------------------------*/
.ir_menu {
  margin-top: 50px;
}
.ir_menuList {
  display: flex;
  gap: 20px;
}
.ir_menuList_item {
  width: 100%;

  & a {
    background: #fff;
    border: 1px solid var(--color-main);
    border-radius: 40px;
    color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
    height: 100%;
    min-height: 60px;

    &::after {
      content: "";
      border-top: solid 2px var(--color-main);
      border-right: solid 2px var(--color-main);
      margin: auto;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 7%;
      transform: rotate(45deg);
      width: 0.6em;
      height: 0.6em;
      z-index: 3;
    }

    & span {
      position: relative;
      z-index: 2;
    }

    &:hover {
      color: #fff;
      background: var(--color-main);

      &::after {
        border-color: #fff;
      }
    }
  }
  & a[target="_blank"] {
    &::after {
      border: none;
      content: url(../img/ir/icon_blank.svg);
      display: block;
      top: 50%;
      transform: translateY(-50%);
      width: auto;
      height: auto;
    }
    &:hover {
      &::after {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(178deg) brightness(104%) contrast(103%);
      }
    }
  }
}
.ir_menuList_item-active {
  & a {
    color: #fff;
    background: var(--color-main);

    &::after {
      border-color: #fff;
    }
  }
}
@media screen and (max-width: 1200px) {
  .ir_menuList {
    flex-wrap: wrap;
  }
  .ir_menuList_item {
    width: calc((100% - 20px) / 2);

    & a {
      font-size: 1.66vw;
    }
  }
}
@media screen and (max-width: 768px) {
  .ir_menuList {
    gap: 10px;
  }
  .ir_menuList_item {
    width: 100%;

    & a {
      font-size: 13px;
      margin: 0 auto;
      padding: 0;
      max-width: 300px;
      min-height: 35px;
    }
  }
}


/*-------------------------------------------------------------
IRTOP
-------------------------------------------------------------*/
.ir_top_newsSec {
  & .ir_btn {
    margin-top: 50px;
    width: 458px;
  }
}
@media screen and (max-width: 768px) {
  .ir_top_newsSec {
    & .ir_btn {
      width: auto;
    }
  }
}


.ir_top_linkSec {
  background: #E0EAF3;
}

.ir_top_panelList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.ir_top_panelList_item {
  background: #FFFFFF;
  box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.15);
  padding: 54px 0 50px;
  width: calc((100% - (20px * 2)) / 3);
}
.ir_top_panelList_title {
  color: var(--color-main);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 50px;
  text-align: center;
}
.ir_top_panelList_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25em;
  height: 97px;
}
.ir_top_panelList_linkList {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.ir_top_panelList_linkList_item {
  max-width: 286px;
  width: 100%;

  & a {
    background: linear-gradient(90deg, #293187, #54b4bf);
    border-radius: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    min-height: 40px;
    width: 100%;

    &::before {
      background: linear-gradient(90deg, #54b4bf, #293187);
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    & span {
      position: relative;
      z-index: 2;
    }
    &::after {
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 7%;
      margin: auto;
      transform: rotate(45deg);
      width: 0.6em;
      height: 0.6em;
      z-index: 3;
    }
    &:hover {
      &::before {
        opacity: 1;
      }
    }
  }
  & a[target="_blank"] {
    &::after {
      border: none;
      content: url(../img/ir/icon_blank.svg);
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(178deg) brightness(104%) contrast(103%);
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      width: auto;
      height: auto;
    }
  }
}
@media screen and (max-width: 1200px) {
  .ir_top_panelList {
    gap: 1.7vw;
  }
  .ir_top_panelList_item {
    padding: 3.5vw 3.5vw 4.2vw;
    width: calc((100% - 1.7vw) / 2);
  }
  .ir_top_panelList_title {
    font-size: 2.5vw;
    margin-bottom: 3.5vw;
  }
  .ir_top_panelList_icon {
    height: auto;

    & img {
      object-fit: contain;
      width: 100%;
      height: 10vw;
    }
  }
  .ir_top_panelList_linkList_item {
    width: 100%;
  
    & a {
      font-size: 1.5vw;
    }
  }
}
@media screen and (max-width: 768px) {
  .ir_top_panelList {
    gap: 15px;
  }
  .ir_top_panelList_item {
    width: 100%;
  }
  .ir_top_panelList_title {
    font-size: 18px;
  }
  .ir_top_panelList_icon {
    & img {
      height: 7rem;
    }
  }
  .ir_top_panelList_linkList_item {
    max-width: 300px;

    & a {
      font-size: 13px;
      min-height: 35px;
    }
  }
}

.ir_top_btnList {
  border-top: 1px solid var(--color-main);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 50px;
}
.ir_top_btnList_item {
  width: calc((100% - (20px * 2)) / 3);

  & a {
    min-height: 58px;
  }
}
@media screen and (max-width: 768px) {
  .ir_top_btnList {
    flex-direction: column;
    gap: 10px;
  }
  .ir_top_btnList_item {
    width: 100%;

    & a {
      min-height: 35px;
    }
  }
}


/*-------------------------------------------------------------
コーポレート・ガバナンス
-------------------------------------------------------------*/
.ir_governanceImg {
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .ir_governanceImg {
    margin-top: 4.16vw;
  }
}
@media screen and (max-width: 768px) {
  .ir_governanceImg {
    margin-top: 30px;
  }
}


/*-------------------------------------------------------------
IRカレンダー
-------------------------------------------------------------*/
.ir_calendarImg {
  display: flex;
  gap: 3px;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 100%;

  & img {
    width: calc((100% - 3px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .ir_calendarImg {
    margin-bottom: 4.16vw;
  }
}
@media screen and (max-width: 768px) {
  .ir_calendarImg {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;

    & img {
      width: 100%;
    }
  }
}


/*-------------------------------------------------------------
よくあるご質問
-------------------------------------------------------------*/
.ir_faqList + .ir_faqList {
  margin-top: 50px;
}
.ir_faqList_q,
.ir_faqList_a {
  font-size: 2rem;
  letter-spacing: 0.1em;
  padding: 0.8em;
}
.ir_faqList_q {
  background-color: var(--color-beige);
}
.ir_faqList_q_inner {
  font-weight: 900;
  line-height: 1.4;
  padding-left: 1.8em;
  position: relative;
  
  &::before {
    content: "Q.";
    position: absolute;
    left: 0;
  }
}
.ir_faqList_a {
  border: 2px solid var(--color-beige);
}
.ir_faqList_a_inner {
  padding-left: 1.8em;
  position: relative;
  
  &::before {
    content: "A.";
    color: var(--color-main);
    font-weight: 900;
    line-height: 1.4;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ir_faqList + .ir_faqList {
    margin-top: 4.16vw;
  }
  .ir_faqList_q,
  .ir_faqList_a  {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 768px) {
  .ir_faqList + .ir_faqList {
    margin-top: 30px;
  }
  .ir_faqList_q,
  .ir_faqList_a  {
    font-size: 1.8rem;
  }
}