@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  font-family: "Noto Sans JP";
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  color: #010101;
}

main {
  background-color: rgb(248, 248, 248);
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 62rem;
  }
}

.fv {
  width: 100%;
  position: relative;
  background-color: #EFF2F5;
  height: 221rem;
  border-bottom: 6rem solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 142rem;
    border-bottom: none;
  }
}
.fv::before {
  content: "";
  position: absolute;
  width: 268rem;
  height: 6rem;
  background-color: #0B92D9;
  bottom: -6rem;
  left: 100rem;
}
@media screen and (max-width: 768px) {
  .fv::before {
    width: 78rem;
    height: 3rem;
    left: 20rem;
    bottom: 35rem;
  }
}
.fv .fv__inner {
  top: 50%;
  left: 100rem;
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv .fv__inner {
    left: 20rem;
  }
}
.fv .fv__inner h1 {
  font-size: calc(var(--fs) * 48);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner h1 {
    font-size: 17rem;
  }
}
.fv .fv__inner h4 {
  color: #0691D9;
  font-size: calc(var(--fs) * 24);
  font-weight: 600;
  margin-top: 16rem;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner h4 {
    font-size: 13rem;
    padding-left: 0;
    margin-top: 9rem;
  }
}

.stock {
  max-width: 1200rem;
  margin: auto;
  width: 100%;
  margin-top: 106rem;
  padding-bottom: 200rem;
  padding-left: 20rem;
  padding-right: 20rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .stock {
    padding: 0;
    padding-bottom: 100rem;
    margin-top: 0;
  }
}
.stock .tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28rem;
}
@media screen and (max-width: 768px) {
  .stock .tab {
    grid-template-columns: 1fr;
    box-sizing: border-box;
    width: calc(100% - 40rem);
    margin: auto;
    justify-content: center;
    margin-top: 50rem;
    gap: 10rem;
  }
}
.stock .tab .tab__item {
  width: 100%;
  /* height: 72rem; */
}
@media screen and (max-width: 768px) {
  .stock .tab .tab__item {
    width: 100%;
    max-width: 100%;
    height: 69rem;
  }
}
.stock .tab .tab__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72rem;
  background-color: #EEF2F5;
  border-radius: 6rem;
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .stock .tab .tab__item a {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stock .tab .tab__item a:hover {
    opacity: 0.7;
  }
}
.stock .tab .tab__item a:nth-child(10)::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  background-image: url("../images/social/data.webp");
  background-size: cover;
  background-repeat: no-repeat;
  right: 14rem;
  top: 50%;
  transform: translateY(-50%);
}
.stock .tab .tab__item a::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-right: 2rem solid #0691D9;
  border-bottom: 2rem solid #0691D9;
  right: 14rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.stock .tab .tab__item a p {
  color: #0691D9;
  font-size: 18rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .stock .tab .tab__item a p {
    font-size: 15rem;
  }
}
.stock .tab .tab__item a img {
  width: 23rem;
  margin-left: 9rem;
}
.stock h2 {
  font-size: 30rem;
  font-weight: 600;
  position: relative;
  padding-left: 69rem;
}
@media screen and (max-width: 768px) {
  .stock h2 {
    font-size: 18rem;
  }
}
.stock h2::before {
  content: "";
  position: absolute;
  width: 36rem;
  height: 3rem;
  background-color: #0691D9;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .stock h2::before {
    left: 20rem;
  }
}
.stock h3 {
  font-size: 18rem;
  font-weight: 600;
  position: relative;
  padding-left: 20rem;
}
@media screen and (max-width: 768px) {
  .stock h3 {
    padding-left: 40rem;
    font-size: 15rem;
  }
}
.stock h3::before {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  background-color: #333333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .stock h3::before {
    left: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .situation#situation {
    margin-top: -62rem;
    padding-top: 108rem;
  }
}
.stock .situation .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 107rem;
}
@media screen and (max-width: 768px) {
  .stock .situation .title {
    margin-top: 0rem;
  }
}
.stock .situation .title p {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .stock .situation .title p {
    display: none;
  }
}
.stock .situation h3 {
  margin-top: 60rem;
}
@media screen and (max-width: 768px) {
  .stock .situation h3 {
    margin-top: 20rem;
  }
}
.stock .situation h3.mid {
  margin-top: 20rem;
}
.stock .situation .num {
  font-size: 53rem;
  font-weight: 500;
  margin-top: 15rem;
  color: #0691D9;
}
@media screen and (max-width: 768px) {
  .stock .situation .num {
    padding: 0 20rem;
    font-size: 42rem;
  }
}
.stock .situation .num span {
  color: #333;
  font-size: 29rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .stock .situation .num span {
    font-size: 24rem;
  }
}
.stock .situation .holder__table {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .stock .situation .holder__table {
    padding-left: 20rem;
    padding-right: 20rem;
    overflow-x: scroll;
  }
}
.stock .situation .holder__table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .stock .situation .holder__table table {
    display: block;
    width: 1200rem; /* 画像の実際の幅 */
    max-width: none;
  }
}
.stock .situation .holder__table table th, .stock .situation .holder__table table td {
  border: 1rem solid #ddd;
  font-size: 15rem;
  border: 4rem solid #F8F8F8;
  height: 63rem;
}
.stock .situation .holder__table table thead th {
  background-color: #D2E4ED;
  font-weight: bold;
  padding: 20rem;
  box-sizing: border-box;
  text-align: center;
  color: #0B92D9;
  font-weight: 500;
}
.stock .situation .holder__table table thead th:nth-child(1) {
  width: 68rem;
  padding-left: 0;
  padding-right: 0;
}
.stock .situation .holder__table table thead th:nth-child(2) {
  width: 365rem;
}
.stock .situation .holder__table table thead th:nth-child(3) {
  width: 380rem;
  text-align: center;
}
.stock .situation .holder__table table thead th:nth-child(4) {
  width: 380rem;
  text-align: center;
}
.stock .situation .holder__table table th {
  text-align: center;
  color: #0B92D9;
  font-weight: 500;
}
.stock .situation .holder__table table td {
  padding: 20rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 10rem;
}
.stock .situation .holder__table table tbody tr th {
  background-color: #D2E4ED;
}
.stock .situation .holder__table table tbody tr td:nth-child(3), .stock .situation .holder__table table tbody tr td:nth-child(4) {
  text-align: center;
}
.stock .situation .holder__table table tbody tr:nth-child(odd) td {
  background-color: #EEF2F5;
}
.stock .situation .holder__table table tbody tr:nth-child(even) td {
  background-color: #fff;
}
.stock .situation .holder__table .annotation {
  margin-top: 10rem;
  font-size: 0.9em;
  color: #555;
}
.stock .meeting {
  margin-top: 65rem;
}
@media screen and (max-width: 768px) {
  .stock .meeting#meeting {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .meeting {
    margin-top: 50rem;
  }
}
.stock .meeting h3 {
  margin-top: 65rem;
}
@media screen and (max-width: 768px) {
  .stock .meeting h3 {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .meeting h3.meeting__mid {
    margin-top: 20rem;
  }
}
.stock .meeting .meeting__table {
  font-size: 18rem;
  margin-top: 40rem;
}
@media screen and (max-width: 768px) {
  .stock .meeting .meeting__table {
    font-size: 15rem;
    padding-left: 20rem;
    padding-right: 20rem;
    margin-top: 20rem;
    overflow-x: scroll;
  }
}
.stock .meeting .meeting__table .asta {
  padding-top: 10rem;
}
.stock .meeting .meeting__table .asta span {
  color: red;
  text-decoration: underline;
}
.stock .meeting .meeting__table table {
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .stock .meeting .meeting__table table {
    display: block;
    width: 1200rem; /* 画像の実際の幅 */
    max-width: none;
  }
}
.stock .meeting .meeting__table table th, .stock .meeting .meeting__table table td {
  border: 1rem solid #949494;
}
.stock .meeting .meeting__table table th {
  font-weight: 600;
  width: 236rem;
  box-sizing: border-box;
  padding: 20rem;
  padding-left: 30rem;
  background-color: #F4F4F4;
  text-align: left;
}
.stock .meeting .meeting__table table td {
  width: 964rem;
  text-align: left;
  padding: 20rem;
  padding-left: 47rem;
  box-sizing: border-box;
}
.stock .meeting .document__list {
  font-size: 18rem;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .stock .meeting .document__list {
    font-size: 15rem;
    padding: 0 20rem;
  }
}
.stock .meeting .document__list .document__item {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .stock .meeting .document__list .document__item {
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .meeting .document__list .document__item .sp-info {
    display: flex;
    flex-wrap: wrap;
  }
  .stock .meeting .document__list .document__item .sp-info p {
    width: -moz-max-content;
    width: max-content;
    font-size: 15rem;
    line-height: 30rem;
  }
  .stock .meeting .document__list .document__item .sp-info img {
    width: 17rem;
    padding-top: 3rem;
    height: 17rem;
  }
}
.stock .meeting .document__list .document__item time {
  display: block;
  min-width: -moz-max-content;
  min-width: max-content;
}
.stock .meeting .document__list .document__item a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .stock .meeting .document__list .document__item a:hover {
    opacity: 0.7;
  }
}
.stock .meeting .document__list .document__item a p {
  display: inline;
  color: #0691D9;
  text-decoration: underline;
}
.stock .meeting .document__list .document__item a img {
  width: 1em;
  height: 1em;
}
.stock .answer {
  font-size: 18rem;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .stock .answer {
    font-size: 15rem;
    padding: 0 20rem;
    line-height: 30rem;
  }
}
.stock .answer__link {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 5rem;
  color: #0691D9;
  font-size: 18rem;
  text-decoration: underline;
  transition: opacity 0.3s !important;
}
@media (hover: hover) and (pointer: fine) {
  .stock .answer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .stock .answer__link {
    padding: 0 20rem;
    line-height: 30rem;
    font-size: 15rem;
  }
}
.stock .adobe__container {
  width: 100%;
  box-sizing: border-box;
  border: 1rem solid #707070;
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-top: 50rem;
  padding: 10rem 23rem;
  line-height: 35rem;
}
@media screen and (max-width: 768px) {
  .stock .adobe__container {
    height: auto;
    flex-direction: column;
    padding: 30rem 20rem;
    width: calc(100% - 40rem);
    margin: auto;
    margin-top: 50rem;
  }
}
.stock .adobe__container img {
  width: 158rem;
}
.stock .adobe__container p {
  font-size: 16rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .stock .adobe__container p {
    font-size: 15rem;
    line-height: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .adobe__container p span {
    display: none;
  }
}
.stock .adobe__container a {
  display: block;
  transition: opacity 0.3s !important;
}
@media (hover: hover) and (pointer: fine) {
  .stock .adobe__container a:hover {
    opacity: 0.7;
  }
}
.stock .adobe__container img {
  display: block;
}
.stock .dividend {
  margin-top: 80rem;
}
@media screen and (max-width: 768px) {
  .stock .dividend#dividend {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
.stock .dividend .dividend__container h3 {
  margin-top: 65rem;
}
@media screen and (max-width: 768px) {
  .stock .dividend .dividend__container h3 {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .dividend .dividend__container {
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .stock .dividend {
    margin-top: 50rem;
  }
}
.stock .dividend img {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40rem;
}
@media screen and (max-width: 768px) {
  .stock .dividend img {
    display: block;
    width: 100%; /* 画像の実際の幅 */
    max-width: none;
    margin-top: 20rem;
    padding: 0 20rem;
    box-sizing: border-box;
  }
}
.stock .benefits {
  font-size: 18rem;
  margin-top: 110rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits#benefits {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .benefits {
    margin-top: 50rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .benefits .box {
    padding: 0 20rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .benefits .box + p {
    padding: 0 20rem;
    line-height: 30rem;
  }
}
.stock .benefits .box .box__content {
  font-size: 19rem;
}
.stock .benefits .box .box__content:nth-child(1) {
  border: 5rem solid #E4E4E4;
  background-color: #fff;
  text-align: center;
  padding: 35rem 0;
  box-sizing: border-box;
  margin-top: 65rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .box .box__content:nth-child(1) {
    font-size: 18rem;
    font-weight: 600;
    margin-top: 20rem;
  }
}
.stock .benefits .box .box__content:nth-child(2) {
  margin-top: 20rem;
  background-color: #fff;
  padding: 35rem 56rem;
  box-sizing: border-box;
  margin-bottom: 77rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .box .box__content:nth-child(2) {
    padding: 20rem;
    margin-bottom: 35rem;
  }
}
.stock .benefits .box .box__content:nth-child(2) time {
  font-size: 16rem;
  color: #B4B4B4;
  font-weight: 500;
}
.stock .benefits .box .box__content:nth-child(2) p {
  font-size: 19rem;
  margin-top: 5rem;
  font-weight: 500;
}
.stock .benefits .benefits__table {
  margin-top: 55rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .benefits__table {
    padding-left: 20rem;
    padding-right: 20rem;
    margin-top: 50rem;
    overflow-x: scroll;
  }
}
.stock .benefits .benefits__table table {
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .stock .benefits .benefits__table table {
    display: block;
    width: 1200rem; /* 画像の実際の幅 */
    max-width: none;
  }
}
.stock .benefits .benefits__table table thead th {
  text-align: center;
}
.stock .benefits .benefits__table table thead th:nth-child(1) {
  opacity: 0;
  border: none;
}
.stock .benefits .benefits__table table thead th:nth-child(2) {
  width: 964rem;
}
.stock .benefits .benefits__table table .first__tr th {
  text-align: center;
}
.stock .benefits .benefits__table table .first__tr th:nth-child(1) {
  text-align: left;
}
.stock .benefits .benefits__table table th, .stock .benefits .benefits__table table td {
  border: 1rem solid #949494;
  font-size: 18rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .benefits__table table th, .stock .benefits .benefits__table table td {
    font-size: 15rem;
  }
}
.stock .benefits .benefits__table table th {
  font-weight: 600;
  width: 236rem;
  box-sizing: border-box;
  padding: 20rem;
  padding-left: 30rem;
  background-color: #F4F4F4;
  text-align: left;
}
.stock .benefits .benefits__table table td {
  width: 241rem;
  text-align: left;
  padding: 25rem;
  box-sizing: border-box;
  text-align: center;
}
.stock .benefits .catalog {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90rem;
  padding: 44rem 30rem;
  margin-top: 46rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .catalog {
    flex-direction: column;
    gap: 35rem;
    padding-left: 10rem;
    padding-right: 10rem;
    width: calc(100% - 40rem);
    margin: auto;
    margin-top: 46rem;
  }
}
.stock .benefits .catalog p {
  font-size: 18rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .stock .benefits .catalog p {
    font-size: 15rem;
  }
}
.stock .benefits .catalog .btn {
  width: 410rem;
  height: 83rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .catalog .btn {
    width: 100%;
  }
}
.stock .benefits .catalog .btn a {
  background-color: #0B91D9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
  height: inherit;
  color: #fff;
  font-size: 22rem;
  font-weight: 600;
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .stock .benefits .catalog .btn a {
    font-size: 18rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stock .benefits .catalog .btn a:hover {
    opacity: 0.7;
  }
}
.stock .benefits .catalog .btn a::before {
  content: "";
  position: absolute;
  width: 11rem;
  height: 11rem;
  right: 25rem;
  top: 50%;
  border-right: 2rem solid #fff;
  border-bottom: 2rem solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.stock .benefits .adobe__container {
  margin-bottom: 170rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .adobe__container {
    margin-bottom: 30rem;
  }
}
.stock .benefits .donate__text {
  font-size: 18rem;
  font-weight: 400;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate__text {
    padding: 0 20rem;
    font-size: 15rem;
    line-height: 30rem;
  }
}
.stock .benefits .donate {
  margin-top: 70rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 77rem;
  border-bottom: 1rem solid #D9D9D9;
  gap: 30rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate {
    flex-direction: column;
    gap: 30rem;
    margin-top: 20rem;
    padding-bottom: 20rem;
  }
}
.stock .benefits .donate .donate__left {
  max-width: 641rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate .donate__left {
    width: 100%;
  }
}
.stock .benefits .donate .donate__left p {
  margin-top: 20rem;
  font-size: 18rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate .donate__left p {
    padding: 0 20rem;
    box-sizing: border-box;
    font-size: 15rem;
    line-height: 30rem;
  }
}
.stock .benefits .donate .donate__left a {
  font-size: 18rem;
  color: #0691D9;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate .donate__left a {
    padding: 0 20rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stock .benefits .donate .donate__left a:hover {
    opacity: 0.7;
  }
}
.stock .benefits .donate .donate__left a img {
  display: inline-block;
  margin-left: 0.5em;
  height: 1em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate .donate__right {
    padding: 0 20rem;
    box-sizing: border-box;
  }
}
.stock .benefits .donate .donate__right img {
  max-width: 490rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stock .benefits .donate .donate__right img {
    max-width: 100%;
  }
}
.stock .benefits .growth__donate {
  margin-top: 52rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30rem;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate {
    flex-direction: column;
    gap: 30rem;
    margin-top: 20rem;
  }
}
.stock .benefits .growth__donate .donate__left {
  max-width: 641rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate .donate__left {
    width: 100%;
  }
}
.stock .benefits .growth__donate .donate__left p {
  margin-top: 20rem;
  font-size: 18rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate .donate__left p {
    padding: 0 20rem;
    box-sizing: border-box;
    font-size: 15rem;
    line-height: 30rem;
  }
}
.stock .benefits .growth__donate .donate__left a {
  font-size: 18rem;
  color: #0691D9;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate .donate__left a {
    padding: 0 20rem;
    box-sizing: border-box;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stock .benefits .growth__donate .donate__left a:hover {
    opacity: 0.7;
  }
}
.stock .benefits .growth__donate .donate__left a img {
  display: inline-block;
  margin-left: 0.5em;
  height: 1em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate .donate__right {
    padding: 0 20rem;
    box-sizing: border-box;
  }
}
.stock .benefits .growth__donate .donate__right img {
  max-width: 490rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stock .benefits .growth__donate .donate__right img {
    max-width: 100%;
  }
}
.stock .procedure {
  margin-top: 50rem;
}
@media screen and (max-width: 768px) {
  .stock .procedure#procedure {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
.stock .procedure p {
  font-size: 18rem;
  margin-top: 25rem;
}
@media screen and (max-width: 768px) {
  .stock .procedure p {
    padding: 0 20rem;
    line-height: 30rem;
    font-size: 15rem;
  }
}
.stock .procedure h3 {
  margin-top: 25rem;
}
.stock .procedure .procedure__table {
  font-size: 18rem;
  margin-top: 40rem;
}
@media screen and (max-width: 768px) {
  .stock .procedure .procedure__table {
    font-size: 15rem;
    padding-left: 20rem;
    padding-right: 20rem;
    overflow-x: scroll;
  }
}
.stock .procedure .procedure__table table {
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .stock .procedure .procedure__table table {
    display: block;
    width: 1200rem; /* 画像の実際の幅 */
    max-width: none;
  }
}
.stock .procedure .procedure__table table th, .stock .procedure .procedure__table table td {
  border: 1rem solid #949494;
}
.stock .procedure .procedure__table table th {
  font-weight: 600;
  width: 236rem;
  box-sizing: border-box;
  padding: 20rem;
  padding-left: 30rem;
  background-color: #F4F4F4;
  text-align: left;
}
.stock .procedure .procedure__table table td {
  width: 964rem;
  text-align: left;
  padding: 20rem;
  padding-left: 47rem;
  box-sizing: border-box;
}
.stock .procedure .procedure__table table td a {
  display: flex;
  gap: 10rem;
  align-items: center;
  transition: opacity 0.3s;
  width: -moz-max-content;
  width: max-content;
}
@media (hover: hover) and (pointer: fine) {
  .stock .procedure .procedure__table table td a:hover {
    opacity: 0.7;
  }
}
.stock .procedure .procedure__table table td a p {
  color: #2699FB;
  margin: 0;
}
.stock .procedure .procedure__table table td a img {
  width: 25rem;
}
.stock .coverage {
  margin-top: 110rem;
}
@media screen and (max-width: 768px) {
  .stock .coverage#coverage {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .coverage {
    margin-top: 50rem;
  }
}
.stock .coverage .coverage__table {
  margin-top: 40rem;
}
@media screen and (max-width: 768px) {
  .stock .coverage .coverage__table {
    padding-left: 20rem;
    padding-right: 20rem;
    overflow-x: scroll;
  }
}
.stock .coverage .coverage__table table {
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .stock .coverage .coverage__table table {
    display: block;
    width: 1200rem; /* 画像の実際の幅 */
    max-width: none;
  }
}
.stock .coverage .coverage__table table th, .stock .coverage .coverage__table table td {
  border: 4rem solid #F8F8F8;
  font-weight: 500;
  font-size: 15rem;
}
.stock .coverage .coverage__table table thead th {
  background-color: #D2E4ED;
  color: #0B92D9;
  box-sizing: border-box;
  padding: 20rem;
  padding-left: 54rem;
  text-align: left;
}
.stock .coverage .coverage__table table thead th:nth-child(1) {
  width: 863rem;
}
.stock .coverage .coverage__table table thead th:nth-child(2) {
  width: 330rem;
  text-align: center;
  padding: 20rem;
}
.stock .coverage .coverage__table table tbody tr:nth-child(odd) td {
  background-color: #EEF2F5;
  text-align: left;
  padding: 20rem;
  padding-left: 54rem;
  box-sizing: border-box;
}
.stock .coverage .coverage__table table tbody tr:nth-child(odd) td:nth-child(2) {
  text-align: center;
  padding: 20rem;
}
.stock .coverage .coverage__table table tbody tr:nth-child(even) td {
  background-color: #fff;
  text-align: left;
  padding: 20rem;
  padding-left: 54rem;
  box-sizing: border-box;
}
.stock .coverage .coverage__table table tbody tr:nth-child(even) td:nth-child(2) {
  text-align: center;
  padding: 20rem;
}
.stock .coverage p {
  font-size: 18rem;
  margin-top: 54rem;
}
@media screen and (max-width: 768px) {
  .stock .coverage p {
    padding: 0 20rem;
    line-height: 30rem;
    font-size: 15rem;
  }
}
.stock .incorporation {
  margin-top: 100rem;
}
@media screen and (max-width: 768px) {
  .stock .incorporation#incorporation {
    margin-top: -62rem;
    padding-top: 124rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .incorporation {
    margin-top: 50rem;
  }
}
.stock .incorporation .intro {
  font-size: 20rem;
  margin-top: 25rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .stock .incorporation .intro {
    padding: 0 20rem;
    line-height: 30rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .stock .incorporation .pdf {
    padding: 0 20rem;
  }
}
.stock .incorporation .pdf a {
  background-color: #fff;
  display: block;
  box-sizing: border-box;
  padding: 38rem 18rem;
  margin-top: 27rem;
  transition: opacity 0.3s;
  font-size: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .stock .incorporation .pdf a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .stock .incorporation .pdf a {
    font-size: 16rem;
  }
}
.stock .incorporation .pdf a p {
  font-weight: 500;
  color: #0991D9;
  display: inline;
}
.stock .incorporation .pdf a img {
  width: 1em;
  height: 1em;
}
/*# sourceMappingURL=stock-information.css.map */