@charset "utf-8";

:root {
  /*Colors*/
  --color-z-black: #08131a;
  --color-z-alphaBlack: rgba(8, 19, 26, 0.5);;
  --color-z-darkGray: rgba(8, 19, 26, 0.6588235294117647);
  --color-z-mercuryGray: rgba(8, 19, 26, 0.2196078431372549);
  --color-z-concreteGray: rgba(8, 19, 26, 0.1411764705882353);
  --color-z-waterBlue: #f5f8fa;
  --color-z-white: #ffffff;
  /*Style Guide*/
  --color-textPrimary: var(--color-z-black);
  --color-textSecondary: var(--color-z-darkGray);
  --color-iconPrimary: var(--color-z-black);
  --color-borderPrimary: var(--color-z-mercuryGray);
  --color-borderSecondary: var(--color-z-concreteGray);
  --color-background: var(--color-z-waterBlue);
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial, メイリオ, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-textPrimary);
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
}


/* clears the 'X' from Internet Explorer */
input[type='search']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type='search']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

button {
  padding: 0;
}

a {
  color: var(--color-textSecondary);
  text-decoration: none;
}

a:hover {
  color: var(--color-textPrimary);
  text-decoration: underline;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
blockquote,
p,
address,
hr,
table,
fieldset,
figure,
pre {
  padding: 0;
  margin: 0;
}

i,
cite,
em,
address,
dfn {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: 100%;
  font-weight: normal;
  color: inherit;
}

ul,
ol {
  list-style-type: none;
}

table {
  width: 100%;
}

th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
}

/* layout */

.header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  padding: 2rem 0 1.75rem;
  flex-wrap: wrap;
  background: var(--color-z-white);
  z-index: 1;
}

.header__logo {
  font-size: 2.4rem;
  padding-left: 2rem;
}

.header__logoLink {
  display: block;
  color: var(--color-textPrimary);
}

.header__logoLink:hover {
  text-decoration: none;
}

.header__logoImage {
  width: 10rem;
  vertical-align: baseline;
  margin-right: 1rem;
}

.header__logoLabel {
  vertical-align: text-top;
  line-height: 1;
}

.header__drawer {
  position: fixed;
  z-index: 9000;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-background);
}


@media screen and (min-width: 769px) {
  .header__logo {
    padding-left: 3rem;
  }
  
  .header__drawer {
    display: none;
  }
}

/* ドロワー表現 */
@media screen and (max-width: 768px) {
  .header__drawer[aria-expanded="true"]+.header__nav .global-menu__list {
    transform: translateX(24px);
  }

  .header__drawer[aria-expanded="true"]+.header__nav:before {
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .header__drawer[aria-expanded="true"]+.header__nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .header__drawer[aria-expanded="false"]+.header__nav .global-menu__list {
    transform: translateX(100%);
  }

  .header__drawer[aria-expanded="true"] .header__drawerIcon {
    background-color: transparent;
  }

  .header__drawer[aria-expanded="true"] .header__drawerIcon::before,
  .header__drawer[aria-expanded="true"] .header__drawerIcon::after {
    top: 0;
    background-color: var(--color-iconPrimary);
  }

  .header__drawer[aria-expanded="true"] .header__drawerIcon::before {
    transform: rotate(45deg);
  }

  .header__drawer[aria-expanded="true"] .header__drawerIcon::after {
    transform: rotate(-45deg);
  }
}

.header__drawerIcon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: var(--color-iconPrimary);
}

.header__drawerIcon::before,
.header__drawerIcon::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: '';
  transition: transform 150ms ease-out;
}

.header__drawerIcon::before {
  top: -5px;
}

.header__drawerIcon::after {
  top: 5px;
}

.header__drawerIcon {}

.header__nav {
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
  }

  .header__nav .global-menu__list {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 7100;
    padding: 2rem 3rem;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    transition: transform 250ms ease-out;
    background-color: var(--color-z-white);
  }

  .header__nav:before {
    opacity: 0;
    pointer-events: none;
    content: "";
    position: fixed;
    z-index: 7000;
    background-color: var(--color-z-alphaBlack);
    transition: opacity 500ms ease-out;
  }
}

.main {
  padding: 6rem 2rem 1.5rem;
}

.main>* {
  margin-bottom: 8rem;
}

.main--1column {
  width: 100%;
  max-width: 94rem;
  margin-left: auto;
  margin-right: auto;
}

.main--2column {
  display: flex;
  width: 100%;
  max-width: 94rem;
  margin-left: auto;
  margin-right: auto;
}

.main--2column .main__nav {
  flex: 0 0 20rem;
  padding-right: 4rem;
  padding-top: 1rem;
}

.main--2column .main__content {
  flex: 1;
}

.main__title {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 2rem;
}

.main__content {
  line-height: 2;
}

.main__content>p {
  margin: 2rem 0;
  width: 100%;
}

.main__content a:not(.button):not(.adbReader a):not(.xj-category-item a):not(.IRList-link) {
  text-decoration: underline;
}
.main__content a:not(.button):not(.adbReader a):not(.xj-category-item a):not(.IRList-link):hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .main {
    padding: 0 2rem 2rem;
  }

  .main>* {
    margin-bottom: 2rem;
  }

  .main--2column {
    display: block;
    width: 100%;
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
  }

  .main--2column .main__nav {
    flex: 0 0 20rem;
    padding-right: 0;
    margin: 0 -2rem 0;
    padding-bottom: 2rem;
    padding-top: 0;
  }

  .main--2column .main__content {
    flex: 1;
  }

  .main__title {
    margin-top: 4rem;
    font-size: 2.4rem;
  }
}

.footer {
  padding: 8rem 2rem;
  border-top: 1px solid var(--color-borderPrimary);
}

.footer__inner {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.footer__sitemap {
  flex: 1;
}

.footer__copy {
  flex: 0 0 auto;
}

.sitemap {
  display: inline-flex;
  flex-wrap: wrap;
}

.sitemap__item {
  white-space: nowrap;
  padding-right: 8rem;
}

.sitemap__title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.sitemap__title a {
  display: block;
  color: var(--color-textPrimary);
}

@media screen and (max-width: 768px) {
  .sitemap {
    display: block;
  }

  .sitemap__title {
    font-size: 2rem;
  }

  .sitemap__item {
    padding-right: 0;
    padding-bottom: 3rem;
  }
}

/* menu */
.footer-menu {}

.footer-menu--primary {}

.footer-menu--inline {
  display: inline-flex;
}

.footer-menu--primary .footer-menu__item {
  font-size: 1.4rem;
}

.footer-menu--primary a {
  color: var(--color-textPrimary);
}

.footer-menu--inline .footer-menu__item+.footer-menu__item {
  margin-top: 0;
  margin-left: 2rem;
}

.footer-menu__item {
  font-size: 1.2rem;
}
.footer-menu__item .icon-outer{
  font-size: 14px;
  opacity: 0.5;
}

.footer-menu__item+.footer-menu__item {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-menu--primary .footer-menu__item {
    font-size: 2rem;
  }

  .footer-menu__item {
    font-size: 1.6rem;
  }
}

.global-menu {}

.global-menu__list {
  display: flex;
}

.global-menu__item {
  white-space: nowrap;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.global-menu__item .icon-outer{
  width: 14px;
  opacity: 0.5;
}


.global-menu__item--lang {
  border: 1px solid var(--color-borderSecondary);
  border-radius: 40px;
  display: flex;
}

.global-menu__item--lang .global-menu__link {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  min-width: 4rem;
  text-align: center;
}

.global-menu__item--lang .global-menu__link:not(a) {
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.global-menu__item+.global-menu__item {
  margin-left: 2rem;
}

.global-menu__link {}

.global-menu__popup {
  display: none;
  padding-top: 1rem;
  position: absolute;
  right: 0;
}


.global-menu__item:hover .global-menu__popup {
  display: block;
}

@media screen and (max-width: 768px) {
  .global-menu__list {
    display: block;
  }

  .global-menu__link {
    font-size: 1.8rem;
  }

  .global-menu__popup {
    display: block;
    position: static;
  }

  .global-menu__item {
    padding: 0;
  }

  .global-menu__item+.global-menu__item {
    margin-left: 0;
    margin-top: 2rem;
  }

  .global-menu__item--lang {
    position: fixed;
    top: 1.75rem;
    right: 9rem;
    padding: 0.5rem 0;
  }

  .global-menu__item--lang .global-menu__link {
    font-size: 1.4rem;
  }

  .global-menu__item+.global-menu__item--lang {
    margin-top: 0;
  }
}

.popup-menu {
  background-color: var(--color-z-white);
  border: 1px solid var(--color-borderPrimary);
  padding: 2rem;
  min-width: 20rem;
  border-radius: 1rem;
}

.popup-menu__item {
  font-size: 1.4rem;
}

.popup-menu__item .icon-outer{
  width: 14px;
  opacity: 0.5;
}


.popup-menu__item+.popup-menu__item {
  margin-top: 1rem;
}

.popup-menu__item a {
  display: block;
}

@media screen and (max-width: 768px) {
  .popup-menu {
    border: none;
    border-left: 1px solid var(--color-borderPrimary);
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.local-menu {
  min-width: 24rem;
}

.local-menu__title {
  margin-bottom: 4rem;
}

.local-menu__item {
  font-size: 1.4rem;
}

.local-menu__item .icon-outer{
  width: 18px;
  opacity: 0.5;
}

.local-menu__item+.local-menu__item {
  margin-top: 2rem;
}

.local-menu__item a {
  display: block;
}

@media screen and (max-width: 768px) {
  .local-menu {
    display: flex;
    overflow: auto;
    white-space: nowrap;
  }

  .local-menu__title {
    display: none;
  }

  .local-menu__list {
    display: flex;
    padding-left: 2rem;
  }

  .local-menu__item+.local-menu__item {
    margin-top: 0;
    margin-left: 1rem;
  }

  .local-menu__item a {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-borderPrimary);
    border-radius: 5rem;
    font-size: 1.4rem;
  }
}

/* parts */
.button{
  display: inline-block;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  line-height: 40px;
  padding: 0 16px;
  margin: 0;
  width: auto;
  font-weight: bold;
  text-decoration: none !important;
  color: var(--color-textSecondary);
  cursor: pointer;
  background: var(--color-z-white);
  border-radius: 1rem;
  border: 1px solid var(--color-borderSecondary);
}
.button:hover{
  border: 1px solid var(--color-borderPrimary);
  color: var(--color-textPrimary);
}
.content {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content__more {
  font-size: 1.4rem;
}

.cards {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.cards__inner {
  margin: -1rem;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .cards__inner {
    display: block;
  }
}

.page-header {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header__title {
  font-size: 3.8rem;
  font-weight: bold;
}

.page-header__description {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .page-header {
    margin-top: 2rem;
    display: block;
    align-items: center;
    justify-content: space-between;
  }

  .page-header__title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
}

.message{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.message p{
  font-family: serif;
  font-size: 1.7rem;
  letter-spacing: .07em;
}
.message p + p{
  margin-top: 3rem;
}

.message__sign {
  text-align: right;
  font-size: 1.4rem;
}

.message__date {
  line-height: 1;
}
.message__name {
  line-height: 1;
}
.message__name span {
  font-weight: bold;
  margin-left: 1rem;
}


.member {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.member__item {
  margin-bottom: 2rem;
}

.member__title {
  font-size: 1.6rem;
  line-height: 1;
}

.member__name {
  font-weight: bold;
  font-size: 2.2rem;
}

.member__wrap {
  justify-content: center;
}

.member__thumb {
  width: 100%;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
}

@media screen and (max-width: 768px) {
  .member {
    grid-template-columns: repeat(2, 1fr);
  }

  .member__title {
    font-size: 1.2rem;
  }

  .member__name {
    font-size: 1.6rem;
  }
}

.fill-card {
  flex: 1;
  background-color: var(--color-background);
  padding: 3rem;
  margin: 1rem;
  border-radius: 1rem;
}

.fill-card__item {
  white-space: nowrap;
  font-size: 1.4rem;
}

.fill-card__item+.fill-card__item {
  margin-top: 1rem;
}

.fill-card__title {
  margin-bottom: 2rem;
}

.fill-card__title a {
  color: var(--color-textPrimary);
}

@media screen and (max-width: 768px) {
  .fill-card {
    padding: 2rem;
  }
}

.icon-outer {
  width: 16px;
  max-width: initial;
  vertical-align: text-top;
  margin-left: 4px;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}



.IRList {}

.IRList-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 0;
  line-height: 1.5;
  flex-wrap: wrap;
}
.IRList-item + .IRList-item {
  border-top: 1px solid var(--color-borderSecondary);
}

@media screen and (min-width: 769px) {
  .IRList-item {
    flex-wrap: nowrap;
    padding: 3rem 0;
  }
}

.IRList-date {
  display: inline-block;
  color: var(--color-textSecondary);
  margin-right: 2rem;
}

.IRList-category {
  background-color: var(--color-background);
  color: var(--color-z-white);
  margin-right: 2rem;
  font-size: 1.4rem;
  display: inline-block;
  border-radius: 100rem;
  font-weight: bold;
  text-align: center;
  min-width: 7em;
  line-height: 1;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

.IRList-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.IRList-link-text {}

.IRList-link-icon {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding: 0 1rem;
  font-size: 1.5rem;
  color: #096fc8;
}

.ir_title2,
.main__content .ir_title2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 5.5rem;
}

.ir_title2:first-of-type,
.main__content .ir_title2:first-of-type {
  margin-top: 2rem;
}

.ir_title3 {
  font-size: 1.8rem;
  line-height: 36px;
  font-weight: bold;
}

.IRimg img {
  max-width: 100%;
  width: auto;
}

.IRList-mb {
  margin-bottom: 5.5rem;
}

.cards__col3 .fill-card {
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
  .cards__col3 .fill-card {
    flex-basis: calc((100% - 6rem) / 3);
    max-width: calc((100% - 6rem) / 3);
  }
}

.IRdefinition {
  border: 1px solid var(--color-borderSecondary);
  overflow: hidden;
  border-radius: 1rem;
  margin: 2rem 0;
}

.IRdefinition_term,
.IRdefinition_desc {
  padding: 1em;
  border-top: none;
}

.IRdefinition_term {
  background: var(--color-background);
  border: none;
}

.IRdefinition_desc {
  margin: 0;
  border: none;
}

.IRdefinition :nth-last-child(1),
.IRdefinition :nth-last-child(2) {
  border: none;
}

.IRdefinition_executive li+li {
  margin-top: 1rem;
}

.IRdefinition_executive span {
  display: block;
}

@media screen and (min-width: 769px) {
  .IRdefinition {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem 0;
  }

  .IRdefinition_term {
    flex-basis: 200px;
    max-width: 200px;
    border-bottom: 1px solid var(--color-borderSecondary);
  }

  .IRdefinition_desc {
    flex-basis: calc(100% - 200px);
    max-width: calc(100% - 200px);
    border-bottom: 1px solid var(--color-borderSecondary);
  }

  .IRdefinition_executive span {
    display: inline-block;
    width: 240px;
  }
}

@media screen and (min-width: 769px) {
  .IRimg.IRimg-calendar {
    display: flex;
    justify-content: space-between;
  }

  .IRimg.IRimg-calendar img {
    width: 49.75%;
  }
}

.IRfaq_que {
  padding-left: 4.5rem;
  margin-top: 3rem;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  z-index: -1;
}

.IRfaq_que:first-of-type {
  margin: 0;
}

.IRfaq_que::before {
  content: "Q";
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border: 1px solid var(--color-borderPrimary);
  border-radius: 50%;
  text-align: center;
  color: var(--color-textPrimary);
  position: absolute;
  left: 0;
  top: 0;
  font-family: ヒラギノ角ゴ ProN W3, Arial, メイリオ, Meiryo, sans-serif;
  font-size: 16px;
}

.IRfaq_ans {
  margin: 1rem 0 0 4.5rem;
  padding: 0 2rem 2rem 0;
  font-size: 1.4rem;
}

div.adbReader {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 5.5rem 0;
}

.adbReader a {
  display: block;
}

.adbReader p {
  margin: 1rem 0 0;
}

@media screen and (min-width: 769px) {
  div.adbReader {
    text-align: left;
    margin-bottom: 0;
  }

  .adbReader a {
    display: flex;
    align-items: center;
  }

  .adbReader p {
    margin: 0 0 0 1rem;
  }
}