@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/*==========================================================
Overwriting existing css
==========================================================*/
html {
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  line-height: 1.7;
}
.l-section__body section * {
  font-weight: 600;
}
img {
  max-width: 100%;
  height: auto;
}
/* -- Text color is #4C9FDD, so adjust by opacity -- */
.secondary-list-item li a:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.under-ir-wrap, .gAside-contact.ir-top {
  background: #fff;
}
.gAside-contact, .gFooter {
  background: rgba(76, 159, 221, 0.1);
}
.gFooter {
  margin-top: 0;
}
.u-textLato {
  line-height: 1;
}
@media (min-width: 980px) {
  .gAside-contact {
    padding-bottom: 90px;
  }
}
@media (max-width: 979px) {
  .gAside-contact {
    padding-bottom: 60px;
  }
}

/*==========================================================
Common (Entire Site)
==========================================================*/
.font-lato {
  font-family: 'Lato', sans-serif;
}
.section-news h2, .section-calendar h2 {
  font-size: clamp(1.5rem, 0.8919rem + 4.0541vw, 3.375rem);
  font-weight: 400;
  margin-bottom: 48px;
}
/* -- fade in -- */
.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* -- pseudo-class -- */
.link-arrow, .link-tab {
  position: relative;
}
.link-arrow::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  -webkit-mask-image: url(../../../assets/img/ir/ir-icon-arrow.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-image: url(../../../assets/img/ir/ir-icon-arrow.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
  background-color: #4C9FDD;
}
.link-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  width: 1rem;
  height: 1rem;
  background-image: url(../../img/ir/ir-icon-tab.svg);
  background-repeat: no-repeat;
}
/* -- breadcrumbs -- */
.breadcrumbs-list {
  display: flex;
  justify-content: end;
  column-gap: 32px;
  color: #333;
  font-size: 15px;
  max-width: 1200px;
  margin: 0 auto 24px;
  position: relative;
}
.breadcrumbs-list .link-arrow::before {
  top: 55%;
  right: -24px;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #333;
}
.breadcrumbs-list.ir-top {
  justify-content: start;
  padding-top: 24px;
  margin-bottom: 120px;
}
.breadcrumbs-list.ir-top .link-arrow::before {
  background-color: #4C9FDD;
}
.breadcrumbs-list.ir-top li a, .breadcrumbs-list.ir-top li {
  color: #4C9FDD;
}
/* -- pdf -- */
.pdf-title {
  display: inline;
  margin-right: 6px;
}
.pdf-img {
  margin-bottom: -3px;
}
.pdf-size {
  color: #777777;
  margin-left: -4px;
}
/* -- btn -- */
a.btn {
  display: block;
  font-weight: 600;
  box-sizing: border-box;
}
@media (max-width: 979px) {
  .breadcrumbs-list {
    font-size: 10px;
  }
  .breadcrumbs-list.ir-top {
    margin-bottom: 72px;
  }
}
@media (max-width: 589px) {
  .breadcrumbs-list {
    column-gap: 20px;
  }
  .breadcrumbs-list .link-arrow::before {
    top: 48%;
    right: -20px;
  }
}

/*==========================================================
loading screen
==========================================================*/
#loading {
  display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #4C9FDD;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}
#loading-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* -- loading-txt -- */
.loading-txt {
	margin: 0;
  font-size: clamp(14px, 4.571px + 3.929vw, 80px);
	font-weight: 600;
	color: #fff;
  opacity: 0.5;
	white-space: nowrap;
  letter-spacing: 0.05em;
  margin-bottom: 4%;
}
.loading-txt-base {
  position: relative;
}
.loading-txt-flow {
  position: absolute;
  top: 0;
  left: 0;
	overflow: hidden;
	animation: loading-txt-flow-anim 2s forwards linear;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.9, 0.1, 0.2, 0.9);
}
@keyframes loading-txt-flow-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* -- loading-img -- */
.loading-img {
  position: relative;
  width: 20%;
  margin: 0 auto;
  min-width: 80px;
}
@keyframes loading-img {
  100% {
    transform: translateX(100%);
  }
}
/* -- For animations with shrinking circles -- */
.body-animation {
  background-color: transparent;
}
.body-animation.appear {
  /* Specify background color after opening screen */
  background:#fff;
}
.loading-bg {
  /* Set the circle to shrink */
	content: "";
	position:fixed;
  display: none;
	transform: scale(150);
	background-color: #4C9FDD; 
	z-index: 999;
	width: 20px;
	height: 20px;
}
.body-animation.appear .loading-bg {
  display: block;
  border-radius: 50%;
	animation-name: PageAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
@keyframes PageAnime {
	0% {
    /* Starting position and shape of circle */
		transform: scale(100);
	}
	100% {
    /* End position and shape of circle */
		transform: scale(0);
		display: none;
	}
}
/* -- Settings after the animation is finished -- */
#container {
	opacity: 0
}
.body-animation.appear #container {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode :forwards;
	opacity: 0;

  /* animation-duration: s; */
}
@keyframes PageAnimeAppear {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
  }
}
#container.loading-off {
  opacity: 1;
}

/*==========================================================
.section-top & .section-top-second-level & .section-top-third-level
==========================================================*/
/* -- Common -- */
.section-top, .section-top-second-level, .section-top-third-level {
  padding: 0 24px;
  position: relative;
}
.section-top::before, .section-top-second-level::before, .section-top-third-level::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  border-bottom: 2.4px solid #4C9FDD;
}
.top-inner {
  max-width: 1200px;
  margin: 0 auto;
}
h1 {
  color: #4C9FDD;
}
.h1-main {
  display: inline-block;
  font-size: clamp(24px, 18.286px + 2.381vw, 64px);
  margin-bottom: 28px;
}
.h1-sub {
  display: block;
  font-size: clamp(0.75rem, 0.679rem + 0.476vw, 1.25rem);
  font-weight: 600;
}
/* -- For section-top -- */
.section-top::before {
  top: 66%;
  width: 52%;
  min-width: 664px;
}
.top-content-wrap {
  display: flex;
  justify-content: space-between;
}
.btn-dl {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  color: #fff;
  background: #4C9FDD;
  border: 1px solid #4C9FDD;
  text-align: center;
  font-size: 18px;
  position: relative;
  padding-top: 48px;
  cursor: pointer;
  margin-right: 60px;
  transition: background-color 0.3s ease;
  position: relative;
}
.btn-dl:hover {
  background: #fff;
  transition: 0.3s;
}
.btn-dl span {
  display: block;
  line-height: 1.6;
}
.btn-dl div {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #4C9FDD;
  border-radius: 50%;
  margin: 0 auto;
}
.btn-dl div::before {
  content: "";
  position: absolute;
  background-image: url(../../../assets/img/ir/ir-icon-dl.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* -- For section-top-second-level & section-top-third-level -- */
.top-second-content-wrap, .top-third-content-wrap {
  padding-top: 144px;
  margin-bottom: 24px;
}
.section-top-second-level::before, .section-top-third-level::before {
  top: 72%;
}
.link-active {
  color: #4C9FDD;
  border-bottom: 1px solid #4C9FDD;
}
@media (max-width: 979px) {
  /* -- Common -- */
  .h1-main {
    margin-bottom: 16px;
  }
  /* -- For section-top -- */
  .section-top::before {
    top: 48%;
    width: 70%;
    min-width: 440px;
    max-width: 664px;
  }
  .top-content-wrap {
    display: grid;
  }
  .btn-dl-wrap {
    width: calc(100vw - 48px);
  }
  .btn-dl {
    margin: 0 0 0 auto;
    width: 136px;
    height: 136px;
    padding-top: 24px;
  }
  .btn-dl span {
    font-size: 14px;
  }
  /* -- For section-top-second-level & section-top-third-level -- */
  .top-second-content-wrap, .top-third-content-wrap {
    padding-top: 40px;
  }
  .section-top-second-level::before, .section-top-third-level::before {
    top: 59%;
  }
}
@media (max-width: 589px) {
  /* -- For section-top -- */
  .section-top::before {
    top: 50%;
    width: 80%;
    min-width: 280px;
    max-width: 488px;
  }
  .btn-dl {
    width: 120px;
    height: 120px;
  }
  .btn-dl span {
    line-height: 1.4;
    letter-spacing: -0.04em;
  }
  .btn-dl div {
    width: 32px;
    height: 32px;
    bottom: 12px;
  }
  /* -- For section-top-second-level & section-top-third-level -- */
  .section-top-second-level::before, .section-top-third-level::before {
    top: 57%;
  }
}

/*==========================================================
Adjustment of h1 on each page
==========================================================*/
.section-top-second-level.news::before {
  width: 38%;
}
.section-top-second-level.qa::before {
  width: 46%;
  min-width: 512px;
}
.section-top-third-level.library::before {
  width: 40%;
}
.section-top-third-level.stock::before {
  width: 52%;
  min-width: 664px;
}
.section-top-third-level.finance::before {
  width: 38%;
}
.section-top-second-level.calendar::before {
  width: 40%;
  min-width: 424px;
}
.section-top-second-level.benefit::before {
  width: 50%;
  max-width: 944px;
}
.section-top-second-level.faq::before {
  width: 20%;
}
.section-top-third-level.management::before {
  width: 70%;
  max-width: 944px;
}
.section-top-second-level.contact::before {
  width: 30%;
}
.section-top-second-level.message::before {
  width: 53%;
}
.section-top-second-level.strategy::before {
  width: 33%;
}
@media (max-width: 979px) {
  .section-top-second-level.news::before {
    width: 36%;
    min-width: 224px;
  }
  .section-top-second-level.qa::before {
    width: 55%;
    min-width: 264px;
  }
  /* .section-top-third-level.library::before {
  } */
  .section-top-third-level.stock::before {
    width: 70%;
    min-width: auto;
  }
  .section-top-third-level.finance::before {
    width: 34%;
  }
  .section-top-second-level.calendar::before {
    width: 47%;
    min-width: auto;
  }
  .section-top-second-level.benefit::before {
    width: 55%;
  }
  .section-top-second-level.faq::before {
    width: 25%;
  }
  .section-top-third-level.management::before {
    width: 75%;
  }
  .section-top-second-level.contact::before {
    width: 35%;
  }
  .section-top-second-level.message::before {
    width: 53%;
  }
  .section-top-second-level.strategy::before {
    width: 30%;
    max-width: 240px;
  }
}
@media (max-width: 589px) {
  .section-top-second-level.news::before {
    width: 38%;
    min-width: 144px;
  }
  .section-top-second-level.qa::before {
    width: 60%;
    min-width: 224px;
  }
  .section-top-third-level.library::before {
    width: 45%;
    min-width: 164px;
  }
  .section-top-third-level.stock::before {
    width: 80%;
    min-width: auto;
  }
  .section-top-third-level.finance::before {
    width: 38%;
    min-width: 144px;
  }
  .section-top-second-level.calendar::before {
    width: 54%;
    min-width: 184px;
  }
  .section-top-second-level.benefit::before {
    width: 85%;
    max-width: 360px;
  }
  .section-top-second-level.faq::before {
    width: 30%;
  }
  .section-top-third-level.management::before {
    width: 88%;
  }
  .section-top-second-level.contact::before {
    width: 40%;
  }
  .section-top-second-level.message::before {
    width: 58%;
  }
  .section-top-second-level.strategy::before {
    width: 38%;
  }
}
@media (min-width: 1600px) {
  .section-top-second-level.benefit::before {
    width: 57%;
    max-width: none;
  }
  .section-top-third-level.management::before {
    width: 55%;
    max-width: none;
  }
  .section-top-second-level.faq::before {
    width: 35%;
  }
  .section-top-second-level.contact::before {
    width: 40%;
  }
  .section-top-second-level.message::before {
    width: 45%;
  }
  .section-top-second-level.strategy::before {
    width: 40%;
    max-width: none;
  }
}

/*==========================================================
/ir/index.html
==========================================================*/
#ir.ir-top-container {
  margin-bottom: 120px;
}
@media (max-width: 589px) {
  #ir.ir-top-container {
    margin-bottom: 64px;
  }
}

/*==========================================================
/ir/index.html > section-news
==========================================================*/
.news-list.top-page {
  margin-bottom: 24px;
}
.news-list li {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.news-list li * {
  font-weight: 400;
  line-height: 1.6;
}
.news-list li:not(:last-of-type) {
  border-bottom: none;
}
.btn-news-list {
  width: 144px;
  margin: 0 0 0 auto;
}
.news-info {
  width: 23%;
}
.news-date {
  font-size: 14px;
  margin-right: 24px;
}
.news-category {
  display: inline-block;
  width: 80px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600!important;
  background: #4C9FDD;
  padding: 4px;
}
.news-title {
  width: 77%;
}
.news-title .news-update, .qa-list .news-update {
  display: inline-block;
  width: 56px;
  color: #4C9FDD;
  text-align: center;
  font-size: 12px;
  font-weight: 600!important;
  line-height: 1;
  border: 1px solid #4C9FDD;
  padding: 4px;
}
.qa-list .news-update {
  margin-right: 2%;
}
@media (max-width: 979px) {
  .news-list li {
    display: grid;
    row-gap: 12px;
  }
  .news-info {
    width: auto;
  }
  .news-title {
    width: 100%;
  }
}

/*==========================================================
/ir/index.html > section-primary
==========================================================*/
.l-section.section-primary-bg {
  background: #4C9FDD;
}
.primary-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  margin-bottom: 24px;
}
.primary-item {
  display: grid;
  align-items: center;
  background-color: #fff;
  height: 200px;
  font-size: 18px;
  text-align: center;
}
.primary-item-wrap {
  padding: 0 16px;
}
.primary-item-img {
  display: flex;
  align-items: center;
  width: 55%;
  max-width: 180px;
  min-height: 112px;
  margin: 0 auto 24px;
}
.primary-qa {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 48px;
  background-color: #fff;
  width: 100%;
  height: 96px;
}
.qa-left {
  width: 96px;
  margin: 0;
}
.qa-right h2 {
  font-size: 20px;
  margin-bottom: 12px;
}
.qa-right div {
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  background: #4C9FDD;
}
@media (max-width: 979px) {
  .primary-wrap {
    grid-template-columns: none;
    column-gap: 0;
    row-gap: 24px;
  }
}
@media (max-width: 589px) {
  .primary-qa {
    min-height: 224px;
    display: grid;
    align-items: center;
    padding: 16px
  }
  .qa-left {
    display: grid;
    align-items: center;
    width: auto;
    max-width: 180px;
    margin: 0 auto;
  }
  .qa-right h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .qa-right {
    text-align: center;
  }
  .qa-right div {
    min-width: 152px;
    margin: 0 auto;
  }
}

/*==========================================================
/ir/index.html > section-secondary
==========================================================*/
.l-section.section-primary-bg-light {
  background: rgba(76, 159, 221, 0.34);
}
.secondary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #4C9FDD;
  margin-bottom: 40px;
}
.secondary-list-li {
  background-color: #fff;
  padding: 32px 24px;
}
.secondary-list-li:not(:last-of-type) {
  border-right: 1px solid #4C9FDD;
}
.secondary-list-li h2 {
  color: #4C9FDD;
  font-size: 26px;
  margin-bottom: 16px;
}
.secondary-list-li h3 {
  font-size: 15px;
  margin-bottom: 32px;
}
.secondary-list-li h2, .secondary-list-li h3 {
  text-align: center;
}
.secondary-item-img {
  display: flex;
  align-items: center;
  width: 30%;
  min-height: 80px;
  margin: 0 auto 32px;
}
.secondary-list-item li a {
  display: block;
  color: #4C9FDD;
  font-size: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #4C9FDD;
}
@media (max-width: 979px) {
  .secondary-list {
    grid-template-columns: none;
  }
  .secondary-list-li:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #4C9FDD;
  }
  .secondary-item-img {
    width: 20%;
    min-width: 96px;
  }
}

/*==========================================================
/ir/index.html > section-sub-link & section-ranking
==========================================================*/
.content-wrap {
  display: flex;
  column-gap: 5%;
}
.section-sub-link {
  width: 55%;
}
.sub-link {
  display: block;
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;
}
.sub-link span {
  color: #4C9FDD;
  font-size: 20px;
  margin-right: 8px;
}
.sub-link-finance {
  width: 100%;
}
.sub-link-wrap {
  display: flex;
  column-gap: 5%;
}
.sub-link-wrap .sub-link {
  width: 50%;
}
.section-ranking {
  width: 40%;
  padding: 32px;
  background: #fff;
}
.section-ranking h2 {
  color: #4C9FDD;
  font-size: 22px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #4C9FDD;
  margin-bottom: 24px;
}
.ranking-list {
  display: grid;
  row-gap: 16px;
  width: 80%;
  margin: 0 auto;
}
.ranking-list li a {
  display: flex;
  align-items: center;
}
.rank {
  display: inline-block;
  color: #fff;
  padding: 8px;
  margin-right: 16px;
}
.rank-link {
  line-height: 1.6;
}
.rank-1 {
  background: #C6BD51;
}
.rank-2 {
  background: #B5B5B5;
}
.rank-3 {
  background: #C69951;
}
.rank-4, .rank-5 {
  background: #4C9FDD;
}
@media (max-width: 979px) {
  .content-wrap {
    display: grid;
    gap: 40px 0;
  }
  .section-sub-link, .section-ranking {
    width: 100%;
  }
  .sub-link-wrap {
    display: block;
  }
  .sub-link-wrap .sub-link {
    width: 100%;
  }
}
@media (max-width: 589px) {
  .ranking-list {
    width: 95%;
  }
}

/*==========================================================
/ir/index.html > section-calendar
==========================================================*/
.section-calendar {
  margin-bottom: 96px;
}
.calendar-wrap {
  display: flex;
  justify-content: center;
  column-gap: 24px;
  margin-bottom: 32px;
}
.btn-calendar {
  width: 200px;
  color: #fff;
  background: #4C9FDD;
  border: 1px solid #4C9FDD;
  border-radius: 50px;
  padding: 16px 24px;
  margin: 0 auto;
}
.btn-calendar:hover {
  background: #fff;
}
.btn-calendar.link-arrow::before {
  background-color: #fff;
}
.btn-calendar.link-arrow:hover::before {
  background-color: #4C9FDD;
}
@media (max-width: 979px) {
  .calendar-wrap {
    display: grid;
    gap: 40px 0;
    margin-bottom: 48px;
  }
}

/*==========================================================
/ir/index.html > section-btn
==========================================================*/
.section-btn {
  display: flex;
  column-gap: 24px;
  justify-content: center;
}
.btn-white {
  width: 200px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #4C9FDD;
  padding: 16px 24px;
}
@media (max-width: 979px) {
  .btn-flex {
    column-gap: 16px;
  }
}

/*==========================================================
Common (under the ir site)
==========================================================*/
/* -- navigation -- */
#ir-nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #4C9FDD;
  position: fixed;
  z-index: 99999;
}
.ir-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1248px;
  margin: 0 auto;
}
.ir-nav-list-li {
  position: relative;
  padding: 8px 0;
  width: calc(1200px / 8);
}
.ir-nav-list-li span {
  display: inline-block;
  width: 100%;
}
.ir-nav-list-li:not(:last-of-type) span {
  border-right: 1px solid #4C9FDD;
}
.ir-nav-list-li:hover {
  transition: 0.2s;
}
.ir-nav-list-li:hover .nav-list-item {
  display: block;
  width: 100%;
}
.ir-nav-list-li a {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4C9FDD;
  font-weight: 600;
  padding: 0 8px;
  height: 40px;
  line-height: 1.3;
  position: relative;
}
.ir-nav-list li a:hover::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.nav-list-item {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  padding: 0;
  margin: 0;
}
.nav-list-item li {
  border: 1px solid #4C9FDD;
}
.nav-list-item li:not(:first-of-type) {
  border-top: none;
}
.nav-list-item li a {
  background: rgba(255, 255, 255, 0.9);
  border-right: none!important;;
  height: auto;
  padding: 12px;
}
/* -- Adjustment of content width -- */
.l-section.under-ir {
  background: rgba(76, 159, 221, 0.1);
  padding: 56px 0 120px;
  margin-bottom: 0;
}
.under-ir-inner {
  margin-left: 60px;
}
.l-section.under-ir * p {
  line-height: 2;
}
.under-ir-heading {
  font-size: 26px;
  color: #4C9FDD;
  line-height: 1.5;
  margin-bottom: 48px;
}
/* -- select button -- */
.select-trigger {
  padding-bottom: 56px;
}
.select-btn-wrap {
  position: relative;
  display: inline-block;
}
.select-btn-wrap::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 24px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #4C9FDD;
	border-right: 1px solid #4C9FDD;
  transform: rotate(45deg);
  pointer-events: none;
}
.select-btn {
  appearance: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #4C9FDD;
  font-size: 14px;
  line-height: 1;
  border: 1px solid #4C9FDD;
  background: #fff;
  padding: 24px 64px 24px 32px;
  position: relative;
  cursor: pointer;
}
/* -- underlined-title-list -- */
.underlined-title-list {
  display: grid;
  row-gap: 64px;
}
.underlined-title-list .under-ir-heading {
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #4C9FDD;
}
.underlined-title-list-item li * {
  font-weight: 400;
}
.underlined-title-list-item li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(76, 159, 221, 0.4);
}
.underlined-title-list-item time {
  margin-right: 56px;
}
.underlined-title-list-title h3 {
  display: inline;
}
/* -- ir-order-list -- */
.ir-order-list {
  display: grid;
  row-gap: 96px;
}
.ir-order-list li h3 {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 32px;
  border-bottom: 1px solid #4C9FDD;
}
.ir-order-list-item {
  display: grid;
  row-gap: 72px;
}
.ir-order-list-item h4 {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 24px;
}
.ir-order-list-item p {
  margin-bottom: 40px;
}
.ir-order-list-item .margin {
  margin-bottom: 0;
}
.ir-order-list-item aside {
  font-size: 14px;
  line-height: 1.8;
}
/* -- For txt -- */
.txt-light-blue {
  color: #4C9FDD;
}
.txt-inline {
  display: inline;
}
.txt-emphasis {
  font-weight: 600;
}
/* -- table -- */
.ir-table {
  background: #fff;
  text-align: center;
  line-height: 1.6;
  width: 100%;
  margin-bottom: 16px;
}
.ir-table tr:not(:last-of-type) {
  border-bottom: 1px dotted #4C9FDD;
}
.ir-table th {
  color: #4C9FDD;
  border-bottom: 1px solid #4C9FDD;
}
.ir-table th, .ir-table td {
  padding: 12px 8px;
  border-collapse: collapse;
}
.table-benefit-dividend {
  margin-bottom: 96px;
}
.table-benefit-dividend th:first-of-type {
  width: 50%;
}
.table-benefit th:first-of-type {
  width: 30%;
}
@media (max-width: 979px) {
  .l-section.under-ir {
    padding-top: 32px;
  }
  /* -- navigation -- */
  #ir-nav {
    display: none;
  }
  .under-ir-heading {
    margin-bottom: 32px;
  }
  .under-ir-inner {
    margin-left: 0;
  }
  .under-ir-heading {
    font-size: 24px;
  }
  /* -- underlined-title-list -- */
  .underlined-title-list-item time {
    display: block;
    margin-bottom: 16px;
  }
  .underlined-title-list-title {
    display: block;
    line-height: 1.6;
  }
  /* -- ir-order-list -- */
  .ir-order-list, .list-item-inner {
    row-gap: 64px;
  }
}
@media (max-width: 589px) {
  .l-section.under-ir {
    padding-bottom: 64px;
  }
  .select-trigger {
    margin-bottom: 32px;
  }
  .select-btn {
    padding: 20px 64px 20px 32px;
  }
}

/*==========================================================
/ir/benefit/ & /ir/management/faq
==========================================================*/
.section-benefit .ir-order-list p,
.section-benefit .ir-order-list p *,
.section-benefit .ir-order-list-item aside,
.section-message p {
  font-weight: 400;
}
.list-item-inner, .benefit-list, .faq-list {
  display: grid;
  row-gap: 96px;
}
.faq-list.underlined-title-list .under-ir-heading {
  margin-bottom: 40px;
}
.list-item-inner {
  row-gap: 56px;
}
.list-item-inner h5 {
  line-height: 2.4;
}
.table-wrap {
  width: 80%;
  margin: 0 auto;
}
.table-date {
  margin-bottom: 16px!important;
  margin-left: 16px;
  position: relative;
}
.table-date::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
	left: -16px;
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	border: 6px solid transparent;
	border-left: 6px solid #4C9FDD;
}
.benefit-list, .benefit-description {
  margin-bottom: 96px;
}
.table-faq {
  width: 70%;
}
.table-faq th, .table-faq td {
  padding: 12px 64px;
}
.table-faq td {
  text-align: left;
}
@media (max-width: 979px) {
  .list-item-inner {
    row-gap: 64px;
  }
  .table-faq {
    width: 100%;
  }
}
@media (max-width: 589px) {
  .table-wrap {
    width: 100%;
    font-size: 14px;
  }
  .table-faq {
    width: 100%;
  }
  .table-faq th, .table-faq td {
    padding: 12px 24px;
  }
}

/*==========================================================
/ir/management/governance.html
==========================================================*/
.section-governance-main {
  margin-bottom: 96px;
}
.section-governance-main .txt-wrap:last-of-type {
  margin-bottom: 40px;
}
.section-governance-main .txt-wrap p {
  display: inline;
}
.governance-img {
  width: 90%;
  margin: 0 auto;
}
.governance-img figcaption {
  margin-bottom: 24px;
}
@media (max-width: 979px) {
  .governance-img {
    width: 100%;
  }
}

/*==========================================================
/ir/qa/index.html
==========================================================*/
.under-ir-inner.bg-white {
  background: #fff;
  padding: 48px 64px;
}
input[name="category"] {
	display: none;
}
.category-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 2%;
	margin-bottom: 80px;
}
.category-list li {
	text-align: center;
}
.category-list label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	background: #D0D0D0;
	width: 100%;
	padding: 20px 0;
	cursor: pointer;
	transition: all 0.2s;
}
[value="all"]:checked ~ .category-list [for="all"],
[value="info"]:checked ~ .category-list [for="info"],
[value="return"]:checked ~ .category-list [for="return"],
[value="strategy"]:checked ~ .category-list [for="strategy"],
[value="other"]:checked ~ .category-list [for="other"] {
	color: #fff;
	background: #4C9FDD;
}
.qa-list li:not(:last-of-type) {
  border-bottom: 1px solid #9FA0A0;
}
.qa-list li:not(:first-of-type) {
  padding-top: 32px;
}
.qa-list li time {
  display: block;
  font-size: 15px;
  margin-bottom: 32px;
}
.qa-wrap {
  display: grid;
  row-gap: 16px;
  margin-bottom: 32px;
}
.qa-inside {
  display: flex;
  column-gap: 5%;
}
.qa-icon-wrap {
  width: 40px;
}
.qa-icon {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  background: #9FA0A0;
}
.qa-icon-a {
  background: #4C9FDD;
}
.qa-bg {
  background: #F3F3F2;
  padding: 12px 32px;
  width: 90%;
  position: relative;
}
.qa-bg::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -0.6em;
  border-top: 35px solid #F3F3F2;
  border-left: 35px solid transparent;
  transform: rotate(-20deg);
}
.question p {
  font-weight: 600;
}
.answer {
  background: #E3F0FA;
}
.answer::before {
  border-top: 35px solid #E3F0FA;
}
@media (max-width: 979px) {
  .under-ir-inner.bg-white {
    padding: 32px 24px;
  }
  .qa-list li:not(:first-of-type) {
    padding-top: 40px;
  }
  .qa-wrap {
    margin-bottom: 40px;
  }
  .qa-inside {
    display: grid;
    gap: 16px 0;
  }
  .qa-icon-a {
    margin: 0 0 0 auto;
  }
  .qa-bg {
    width: 100%;
    padding: 24px;
  }
  .qa-bg::before {
    transform: rotate(68deg);
    top: -0.6em;
    left: -6px;
  }
  .answer::before {
    left: auto;
    right: 12px;
  }
}

/*==========================================================
/ir/news/index.html
==========================================================*/
input[name="category"] {
  display: none;
}
.news-category-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 2%;
  margin-bottom: 40px;
}
.news-category-list li {
  text-align: center;
}
.news-category-list li:hover {
  opacity: 0.5;
}
.news-category-list label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background: #D0D0D0;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.2s;
}
[value="news-all"]:checked ~ .news-category-list [for="news-all"],
[value="news-settlement"]:checked ~ .news-category-list [for="news-settlement"],
[value="news-timely-disclosure"]:checked ~ .news-category-list [for="news-timely-disclosure"],
[value="news-securities-report"]:checked ~ .news-category-list [for="news-securities-report"],
[value="news-ir-material"]:checked ~ .news-category-list [for="news-ir-material"],
[value="news-notice"]:checked ~ .news-category-list [for="news-notice"] {
  color: #fff;
  background: #4C9FDD;
}
@media (max-width: 589px) {
  .news-category-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8%;
  }
}

/*==========================================================
/ir/stock/index.html
==========================================================*/
.stock-info-list {
  border-top: 1px solid #4C9FDD;
  border-bottom: 1px solid #4C9FDD;
}
.stock-info-list li {
  display: flex;
  align-items: center;
  padding: 16px 0;
}
.stock-info-list li * {
  line-height: 1.6;
}
.stock-info-list li:not(:last-of-type) {
  border-bottom: 1px solid rgba(76, 159, 221, 0.4);
}
.stock-info-list li h2 {
  width: 264px;
  flex-shrink: 0;
  font-weight: 600;
}
.stock-info-link {
  line-height: 2;
  color: #4C9FDD;
}
@media (max-width: 979px) {
  .stock-info-list li {
    display: grid;
    row-gap: 16px;
  }
  .stock-info-list li h2 {
    width: auto;
  }
  .stock-info-list li {
    padding: 20px 0;
  }
}

/*==========================================================
/ir/finance/highlight.html
==========================================================*/
.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 5%;
}
.highlight-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.highlight-title h3 {
  color: #4C9FDD;
  font-size: 17px;
  font-weight: 600;
}
.highlight-title aside {
  font-size: 13px;
}
.highlight-img {
  margin-bottom: 16px;
}
.highlight-table {
  width: 100%;
}
.highlight-table, .highlight-table th, .highlight-table td {
	border: 1px solid #DADADA;
	border-collapse: collapse;
}
.highlight-table th, .highlight-table td {
  color: #727171;
  font-size: clamp(10px, 9.429px + 0.238vw, 14px);
  padding: 16px 4px;
}
.highlight-table th {
  letter-spacing: -0.02em;
  background: #F5F5F5;
  text-align: center;
}
.highlight-table td {
  background: #fff;
  text-align: right;
}
@media (max-width: 979px) {
  .highlight-list {
    grid-template-columns: none;
  }
}

/*==========================================================
/ir/calendar/index.html
==========================================================*/
.section-calendar-page .underlined-title-list {
  margin-bottom: 16px;
}
.underlined-title-list-item .border-none {
  border-bottom: none;
}
.calendar-remark {
  font-weight: 400!important;
  text-align: right;
}
#irp-calendar-list .content-section:not(:last-of-type) {
  margin-bottom: 64px;
}
@media (max-width: 589px) {
  .calendar-remark {
    font-size: 14px;
  }
  #irp-calendar-list .content-section:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

/*==========================================================
/ir/faq/index.html
==========================================================*/
.faq-list-item {
  display: grid;
  row-gap: 48px;
}
.faq-list-item-li {
  display: grid;
  row-gap: 24px;
}
.faq-question {
  color: #4C9FDD;
}
.faq-mark {
  position: relative;
  padding-left: 40px;
}
.faq-mark::before {
  content: "Q";
  position: absolute;
  width: 32px;
  height: 32px;
  background: #4C9FDD;
  color: #fff;
  text-align: center;
  left: 0;
  border-radius: 50%;
}
.faq-answer::before {
  content: "A";
  color: #4C9FDD;
  background: #fff;
  padding-top: 8px;
}
.faq-answer .margin {
  margin-bottom: 12px;
}
.faq-item-inner {
  display: grid;
  row-gap: 24px;
}
.faq-item-inner li h3 {
  display: inline-block;
  line-height: 1.8;
  margin-bottom: 8px;
  border-bottom: 1px solid #4C9FDD;
}
.faq-padding::before {
  padding-top: 0;
}

/*==========================================================
ir/contact/index.html
==========================================================*/
.section-contact .btn-white {
  width: 30%;
  min-width: 240px;
  margin: 0 auto;
}
.contact-introduction, .contact-description {
  margin-bottom: 72px;
}
.contact-description.margin {
  margin-bottom: 32px;
}
.contact-description .margin {
  margin-bottom: 56px;
}
.contact-faq-ex {
  width: 80%;
  background: #fff;
  padding: 32px;
  margin-bottom: 80px;
}
.contact-faq-ex .under-ir-heading {
  text-align: center;
  line-height: 2;
  margin-bottom: 48px;
}
.contact-faq-ex .under-ir-heading span {
  display: block;
  font-size: 14px;
}
.faq-ex-list {
  display: grid;
  row-gap: 8px;
}
.faq-ex-list li {
  line-height: 1.8;
}
@media (max-width: 979px) {
  .contact-introduction, .contact-description, .contact-faq-ex {
    margin-bottom: 64px;
  }
}
@media (max-width: 589px) {
  .contact-introduction, .contact-description {
    margin-bottom: 64px;
  }
  .contact-faq-ex {
    width: 100%;
  }
  .contact-faq-ex .under-ir-heading {
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .faq-ex-list li {
    line-height: 2;
  }
  .section-contact .btn-white {
    width: 90%;
    max-width: 280px;
  }
}

/*==========================================================
ir/message/index.html
==========================================================*/
.message-img {
  float: right;
  width: 40%;
  margin-left: 4%;
}
.section-message .margin, .message-description.margin {
  margin-bottom: 56px;
}
.message-description p {
  display: inline;
}
@media (max-width: 979px) {
  .section-message .margin, .message-description.margin {
    margin-bottom: 32px;
  }
}
@media (max-width: 589px) {
  .message-img {
    width: 45%;
  }
}

/*==========================================================
ir/strategy/index.html
==========================================================*/
.strategy-contact .under-ir-heading {
	text-align: center;
}
.strategy-contact .ir-order-list {
	margin-bottom: 96px;
}
.strategy-contact .btn-white {
  width: 35%;
  min-width: 240px;
  margin: 0 auto;
}
.strategy-item-box {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}
.strategy-item-bg {
	background-color: #fff;
}
.circle_number {
	width: 24px;
	height: 24px;
	line-height: 1.5;
	margin-right: 8px;
	background-color: #4C9FDD;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	box-sizing: border-box;
}
.strategy-item-box .strategy-item-1 {
	flex-basis: calc(100%/2 - 20px);
}
.strategy-item-box .strategy-item-1 .strategy-item-title {
	background-color: #4C9FDD;
	color: #fff;
	text-align: center;
  padding: 7px 24px;
	margin-bottom: 1rem;
  border-radius: 50px;
	font-size: 20px;
	width: 100%;
}
.strategy-item-box .strategy-item-1 .strategy-item-cap {
	margin-top: 10px;
	font-size: 11px;
	font-weight: 400;
}

.strategy-item-box p{
	font-weight: 400;
}

.strategy-item-box p span{
	font-weight: 600;
}


.strategy-item-box .strategy-item-2 {
	padding: 24px 32px;
	display: flex;
	align-items: center;
}
.strategy-item-box .strategy-item-2:first-child {
	flex-basis: 28%;
	background-color: #4C9FDD;
	color: #fff;
	justify-content: center;
	text-align: center;
}
.strategy-item-box .strategy-item-2:last-child {
	flex-basis: 72%;
	background-color: #fff;
	color: #4C9FDD;
}
.strategy-item-box .strategy-item-1 .strategy-yutai {
	padding: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.strategy-yutai h4 {
	color: #4C9FDD;
	font-size: 18px;
}
.strategy-yutai p {
	font-weight: 400;
}
.strategy-yutai img {
	margin: 1rem 0;
}
.strategy-yutai-cap {
	font-size: 14px;
}
.strategy-yutai-title {
	display: flex;
	align-items: center;
}
.strategy-yutai-cap a {
	color: #4C9FDD;
}


.strategy-item-box .strategy-item-1 .strategy-initiative h4 {
	background-color: #fff;
    border-left: 6px solid #4C9FDD;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 14px 14px 16px;
	margin-bottom:20px;
}

.strategy-initiative + .strategy-initiative {
    margin-top: 40px;
}

.strategy-item-box .strategy-item-1 .strategy-initiative-strong {
  margin-top: 30px;
  padding: 21px 0;
  border: 1px solid #4C9FDD;
  border-left: 0;
  border-right: 0;
}



.strategy-item-box .strategy-item-1 .strategy-initiative-strong p{
	margin-bottom: 16px;
	  
	
}

.strategy-item-box .strategy-item-1 .strategy-initiative-strong div{
	display:flex;
	gap:8px;
	flex-wrap: wrap
}

.strategy-item-box .strategy-item-1 .strategy-initiative-strong div p{
	padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    color: #fff;
	margin: 0;
}

.web-marketing{
	background-color: #f68d47;
}

.quality-sales{
	background-color: #a584d7;
}

.quality-management{
	background-color: #91c423;
	
}

.initiative-link {
	display: flex;
	background-color: #4C9FDD;
	text-align: center;
    line-height: 1.3333;
    font-size: 18px;
    align-items: center;
	justify-content: center;
	width:380px;
    height: 80px;
    margin: 0 auto;
    transition: 0.3s;
}

.initiative-link :hover{
  opacity: 0.5;
}

.initiative-link a{
	color:#FFF;

  
}




.initiative-link-2col{
	display: flex;
	gap:20px;
	flex-wrap: wrap;
	
}

/* -- challenge-link -- */
.challenge-link {
  /* ●●● 後から確認する ●●● */
  /* margin-bottom: 32px; */
}
.challenge-link h3 {
  text-align: center;
  margin-bottom: 12px;
}
.challenge-link a {
  display: block;
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  background: #4C9FDD;
  width: 360px;
  padding: 8px;
  margin: 0 auto;
  transition: 0.3s;
}
.challenge-link a:hover {
  opacity: 0.5
}
.challenge-link a span {
  display: block;
  font-size: 20px;
}
@media (max-width: 979px) {
  .strategy-item-box .strategy-item-1 .strategy-item-title {
    font-size: 18px;
  }
  .strategy-contact .btn-white {
	width: 45%;
  }
}
@media (max-width: 589px) {
  .section-contact .btn-white {
    width: 90%;
    max-width: 280px;
  }
  .strategy-item-box {
    flex-direction: row;
    flex-wrap: wrap;
	}
  .strategy-item-box .strategy-item-1,
  .strategy-item-box .strategy-item-2:first-child,
  .strategy-item-box .strategy-item-2:last-child {
    flex-basis: 100%;
	}
  .strategy-item-box .strategy-item-1:first-child {
    margin-bottom: 32px;
	}
  .strategy-item-box .strategy-item-2 {
    padding: 8px 16px;
	}
}
/* -- graph -- */
.graph-box-1 {
  width: 430px;
  height: 248px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  position: relative;
  display: table-cell;
  vertical-align: bottom;
}
.graph-box-2 {
  width: 100%;
  height: 300px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  position: relative;
  display: table-cell;
  vertical-align: bottom;
}
.graph-box-1.graph-1 {
  background-image: url("../../img/ir/ir-strategy-graph-1_1.png");
}
.graph-box-1.graph-2 {
  background-image: url("../../img/ir/ir-strategy-graph-2_1.png");
}
.graph-box-1.graph-3 {
  background-image: url("../../img/ir/ir-strategy-graph-3_1.png");
}
.graph-box-2.graph-4 {
  background-image: url("../../img/ir/ir-strategy-graph-4_1.png");
}
.graph-box-1.graph-1>span,
.graph-box-1.graph-2>span,
.graph-box-1.graph-3>span,
.graph-box-2.graph-4>span{
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.graph-box-1.graph-1>span.info-graph2{
  display: block;
  height: 0px;
  width: 100%;
  background-image: url("../../img/ir/ir-strategy-graph-1_2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}
.graph-box-1.graph-2>span.info-graph2{
  display: block;
  height: 0px;
  width: 100%;
  background-image: url("../../img/ir/ir-strategy-graph-2_2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}
.graph-box-1.graph-3>span.info-graph2{
  display: block;
  height: 0px;
  width: 100%;
  background-image: url("../../img/ir/ir-strategy-graph-3_2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}
.graph-box-2.graph-4>span.info-graph2{
  display: block;
  height: 0px;
  width: 100%;
  background-image: url("../../img/ir/ir-strategy-graph-4_2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}
.graph-box-1.graph-1>span.info-graph3,
.graph-box-1.graph-2>span.info-graph3,
.graph-box-1.graph-3>span.info-graph3,
.graph-box-2.graph-4>span.info-graph3,
.graph-box-1.graph-1>span.info-graph4,
.graph-box-1.graph-2>span.info-graph4,
.graph-box-1.graph-3>span.info-graph4,
.graph-box-2.graph-4>span.info-graph4{
  display: block;
  opacity: 0;
}
@media (max-width: 979px) {
  .graph-box-1 {
    height: 213px;
  }
  .graph-box-2 {
    height: 230px;
  }
}
@media (max-width: 589px) {
  .graph-box-2 {
    height: 130px;
  }
  .challenge-link a {
    width: 90%;
  }
}

