/* 下層ページMV
------------------------------------- */
.mainvisual {
  position: relative;
  overflow: hidden;      
  /* タイプ２
  ------------------------------------- */
}
.mainvisual.type_2 .mainvisual_container {
  height: 4rem;
}
.mainvisual.type_2 .page_ttl {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #222;
}

.mainvisual_container {
  padding-block: 2rem;
  margin-inline: auto;
  position: relative;
  width 100%;
  /*   max-height: 341px;
  height: 18.94rem; */
  z-index: 1;
  display: grid;
  grid-template-rows: repeat(max-content max-content);
  row-gap: 1rem;
  align-items: center;
  @media(min-width: 1100px) {
    padding-block: unset;
    width: calc(100% - 13.34rem);
    max-height: 341px;
    height: 18.94rem;
    row-gap: unset;
    grid-template-rows: unset;
  }
}

.mainvisual_img {
  margin: unset;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.page_ttl {
  margin: unset;  
  display: grid;
  color: #ffffff;
  justify-content: flex-start;
  row-gap: 1rem;
}

.page_ttl .en {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #ffffff;
  font-size: 0.89rem;
}

.page_ttl .en::after {
  display: block;
  content: "";
  width: 1.22rem;
  height: 1px;
  background-color: #ffffff;
}
.page_ttl .txt {
  font-size: 2rem;
  font-weight: 700;
}
.stock-price_wrap {
  position: relative;
  max-height: 341px;
  height: 11.94rem;
  @media(min-width: 700px){
    max-height: 341px;
    height: 18.94rem;
  }  
  @media(min-width: 1100px){
    position: absolute;
    max-height: unset;
    height: 100%;
    width: 100%;
  }
}
.stock-price {
  position: absolute;
  transform: translateX(-50%);
  transform-origin: 0 0;
  left: 50%;
  width: 90%;
  margin-inline: auto;
  @media(min-width: 700px) {
    width: fit-content;
    transform: translateX(-50%);
  }
  @media(min-width: 1100px) {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: right;
    left: unset;
  }
  iframe {
    width: 644px;
    height: 364px;
  }
}

.stockpanel {
  padding: 15px;
  background-color: #fff;
  max-width: 100%;
  @media(min-width: 700px) {
    max-width: 380px;
  }
}
.stockpanel img {

}

.stock-price_content {
  padding: 1.11rem 1.78rem 0.67rem;
  background-color: #ffffff;
}

.stock-price_info {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.stock-price_ttl {
  font-size: 1.5rem;
  font-weight: 500;
}

.stock-price_day-info {
  font-size: 0.67rem;
  font-weight: 400;
  text-align: right;
}

.stock-price_etc-info {
  display: grid;
  row-gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.stock-price_closing-price,
.stock-price_previous-day {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  align-items: flex-end;
}

.stock-price_closing-price .txt,
.stock-price_previous-day .txt {
  font-size: 1.11rem;
  font-weight: 400;
  justify-self: flex-end;
}

.stock-price_closing-price .txt {
  position: relative;
  bottom: 0.4rem;
}

.stock-price_closing-price .number {
  font-size: 2.22rem;
  font-weight: 400;
}

.stock-price_previous-day .number {
  font-size: 1.11rem;
  font-weight: 400;
}

.stock-price_source {
  margin-top: 1rem;
  font-size: 0.56rem;
  font-weight: 400;
  text-align: right;
}

.stock-price_disclaimer_list {
  margin-top: 0.33rem;
  margin-bottom: unset;
  padding: unset;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  @media(min-width: 1100px){
    justify-content: flex-end;
  }
}

.stock-price_disclaimer_item_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  -moz-column-gap: 0.33rem;
  column-gap: 0.33rem;
  /*   font-size: 0.78rem; */
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
  row-gap: 0.28rem;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  @media(min-width: 700px) {
    font-size: 0.7rem;
  }  
  @media(min-width: 1100px){
    font-size: 0.7rem;
  }
}

.stock-price_disclaimer_item_link::before {
  display: block;
  content: "";
  background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") no-repeat center/contain;
  /*   width: 0.39rem;
  height: 0.72rem; */
  width: 0.4rem;
  height: 1rem;  
  @media(min-width: 700px) {
    width: 0.4rem;
    height: 1rem;
  }  
  @media(min-width: 1100px){
    width: 0.4rem;
    height: 1rem;
  }
}

.stock-price_disclaimer_item_link:hover {
  opacity: 0.75;
}

/* 背景色 */
.back {
  background: #005bac;
}

.mainvisual_backround {
  position: absolute;
  margin: auto;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
  img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: 59% 50%;
    @media screen and (min-width: 768px) {
      object-position: center;
    }
  }
}