@charset "UTF-8";
/* _media.scss
-------------------------------------------------------*/
/* /_media.scss
-------------------------------------------------------*/
/* _inner.scss
-------------------------------------------------------*/
/* /_inner.scss
-------------------------------------------------------*/
/* _font.scss
-------------------------------------------------------*/
/* /_font.scss
-------------------------------------------------------*/
/* _over.scss
-------------------------------------------------------*/
/* /_over.scss
-------------------------------------------------------*/
/* _other.scss
-------------------------------------------------------*/
/* /_other.scss
  -------------------------------------------------------*/
/* _invester.scss
-------------------------------------------------------*/
/* 個別対応 */
.mv {
  margin-top: 56px;
  position: relative;
  z-index: 3;
}
.mv .c-titPrimary {
  border-radius: 80px;
  background-color: #FFF;
  min-height: 614px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
}
.mv .c-titPrimary::before {
  display: none;
}
.mv .c-titPrimary_inner {
  width: 620px;
  height: 430px;
  padding: 0 50px 48px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  background-color: rgba(226, 21, 42, 0.9);
  border-radius: 0 48px 48px 0;
  position: relative;
}
.mv .c-titPrimary_inner::before {
  content: "";
  width: 320px;
  height: 100%;
  position: absolute;
  left: -320px;
  top: 0;
  background-color: rgba(226, 21, 42, 0.9);
}
.mv .c-titPrimary_text {
  color: #FFF;
}
.mv .c-titPrimary_title {
  color: #FFF;
}
.mv .c-titPrimary_image {
  left: auto;
  right: 74px;
  bottom: 0;
  width: 986px;
  height: 564px;
  margin: auto;
}
.mv .c-pnkz_item,
.mv .c-pnkz_item > a {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 48px;
    padding: 48px 0;
    background-color: #FFF;
    border-radius: 0 0 56px 0;
  }
  .mv .c-titPrimary {
    border-radius: 0;
    min-height: 0;
  }
  .mv .c-titPrimary_wrap {
    width: 100%;
  }
  .mv .c-titPrimary_inner {
    width: calc(100% - 40px);
    height: auto;
    padding: 20px 20px 32px 20px;
  }
  .mv .c-titPrimary_inner::before {
    display: none;
  }
  .mv .c-titPrimary_image {
    right: 0;
    width: 80%;
    height: auto;
  }
  .mv .c-pnkz_item,
  .mv .c-pnkz_item > a {
    color: #FFF;
  }
}

.anchor {
  position: relative;
  padding: 40px 0 32px;
}
.anchor::before {
  content: "";
  width: 100%;
  height: calc(100% + 228px);
  position: absolute;
  left: 0;
  top: -114px;
  background-color: var(--color-bg);
  z-index: -1;
}

.about {
  background-color: #FFF;
  border-radius: 108px 0 0 0;
  padding: 80px 0;
  position: relative;
}
.about::after {
  content: "";
  aspect-ratio: 1;
  width: 104px;
  -webkit-mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
          mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  rotate: 180deg;
}
@media screen and (max-width: 768px) {
  .about::after {
    width: 48px;
  }
}
.about::after {
  background-color: #FFF9EC;
}
.about_list {
  --_gap: 18px;
  --_column-max-count: 3;
  --_column-min-width: 320px;
  /* コンテナの横幅からギャップの合計値を引いたものをn等分する */
  --_column-width-calculated: calc((100% - var(--_gap) * (var(--_column-max-count) - 1)) / var(--_column-max-count));
  /* 最終的に適用される列の幅。
     * 理想の幅と最小幅を比較し、大きい方を採用します。
     * ただし、コンテナ全体の幅を超えることはありません。*/
  --_column-width: min(100%,
  		max(var(--_column-min-width), var(--_column-width-calculated)));
  display: block grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_column-width), 1fr));
  gap: var(--_gap);
  row-gap: 24px;
  margin-top: 48px;
}
.about_item {
  background-color: #FFF9EC;
  border-radius: 24px;
  min-height: 280px;
  padding-top: 64px;
  position: relative;
}
.about_item-title {
  background-color: #FFF;
  border-radius: 0 40px 40px 0;
  padding: 10px 16px 10px 48px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.5px;
  display: inline-block;
  min-width: 240px;
}
.about_item-icon {
  position: absolute;
  right: 0;
  top: 16px;
}
.about_item-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
}
.about_item-text--l {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 4.5rem;
  color: var(--color-main);
  padding-right: 8px;
  vertical-align: -2px;
}
@media screen and (max-width: 768px) {
  .about {
    border-radius: 48px 0 0 0;
    padding: 56px 0;
  }
  .about_list {
    margin-top: 32px;
  }
  .about_item {
    min-height: 240px;
    padding-top: 56px;
    overflow: hidden;
  }
  .about_item-title {
    padding-left: 32px;
    font-size: 1.125rem;
    min-width: 200px;
  }
  .about_item-icon {
    scale: 0.8;
    top: 4px;
    right: -10px;
  }
  .about_item-text {
    font-size: 1.375rem;
  }
  .about_item-text--l {
    font-size: 3.75rem;
  }
}

.point {
  border-radius: 0 104px 104px 0;
  background-color: #FFF9EC;
  padding: 80px 0;
}
.point_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  position: relative;
  padding: 56px 0 56px 48px;
  z-index: 2;
}
.point_item + .point_item {
  margin-top: 40px;
}
.point_item:first-of-type {
  margin-top: 48px;
}
.point_item::before {
  content: "";
  width: calc(100% - 220px);
  height: 100%;
  background-color: #FFF;
  border-left: var(--color-main) solid 8px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 32px 32px 0;
  z-index: -1;
}
.point_item--r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 0;
  padding-right: 48px;
}
.point_item--r::before {
  left: auto;
  right: 0;
  border-left: none;
  border-right: var(--color-main) solid 8px;
  border-radius: 32px 0 0 32px;
}
.point_item-image {
  width: 488px;
}
.point_item-image > img {
  border-radius: 24px;
  -webkit-box-shadow: 0 5px 10px rgba(132, 132, 132, 0.24);
          box-shadow: 0 5px 10px rgba(132, 132, 132, 0.24);
}
.point_item-main {
  width: 624px;
}
.point_item-point {
  color: var(--color-main);
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 600;
}
.point_item-point--l {
  font-size: 3.5rem;
  padding-left: 4px;
  vertical-align: -2px;
}
.point_item-lead {
  font-size: 1.75rem;
  line-height: var(--lineHeight-m);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .point {
    border-radius: 0 48px 48px 0;
    padding: 56px 0;
  }
  .point_item {
    display: block;
    padding: 32px 20px;
    border-radius: 0 0 24px 24px;
  }
  .point_item + .point_item {
    margin-top: 32px;
  }
  .point_item:first-of-type {
    margin-top: 32px;
  }
  .point_item::before {
    width: 100%;
    height: 100%;
    border: none;
    border-top: var(--color-main) solid 4px;
    border-radius: 0;
  }
  .point_item-image {
    width: 100%;
  }
  .point_item-main {
    width: 100%;
    margin-top: 16px;
  }
  .point_item-point {
    font-size: 1.125rem;
  }
  .point_item-point--l {
    font-size: 2.5rem;
  }
  .point_item-lead {
    font-size: 1.25rem;
  }
}

.history {
  background-color: #FFF;
  border-radius: 0 0 0 104px;
  position: relative;
  padding: 80px 0 104px;
}
.history::before {
  content: "";
  aspect-ratio: 1;
  width: 104px;
  -webkit-mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
          mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFF;
  rotate: -90deg;
}
@media screen and (max-width: 768px) {
  .history::before {
    width: 48px;
  }
}
.history::before {
  background-color: #FFF9EC;
}
.history_item {
  border-radius: 40px;
  border: var(--color-main) solid 1px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.history_item + .history_item {
  margin-top: 88px;
}
.history_item + .history_item::before {
  content: "";
  width: 2px;
  height: 56px;
  z-index: -1;
  position: absolute;
  top: -88px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-main);
}
.history_item + .history_item::after {
  content: "";
  aspect-ratio: 1;
  width: 32px;
  outline: var(--color-main) solid 1px;
  border: #FFF solid 3px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  right: 0;
  top: -104px;
  margin: auto;
  border-radius: 100%;
}
.history_item:first-of-type {
  margin-top: 72px;
}
.history_item-title {
  background-color: var(--color-main);
  color: #FFF;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  min-height: 64px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: var(--lineHeight-m);
  margin: -32px auto 0;
  border-radius: 40px;
}
.history_item-main {
  max-width: 980px;
  width: calc(100% - 40px);
  margin: 24px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.history_item-image {
  width: 300px;
}
.history_item-image > img {
  border-radius: 24px;
}
.history_item-inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.history_history {
  background-color: var(--color-bg);
  border-radius: 12px;
  padding: 12px 24px;
}
.history_history-item {
  padding: 12px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.history_history-item + .history_history-item {
  border-top: #FFF solid 1px;
}
.history_history-year {
  min-width: 180px;
  font-size: 1rem;
  line-height: var(--lineHeight-l);
  color: var(--color-main);
}
.history_history-year--s {
  text-align: center;
  min-width: 150px;
}
.history_history-text {
  font-size: 1rem;
  line-height: var(--lineHeight-l);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .history {
    border-radius: 0 0 0 48px;
    padding: 56px 0 64px;
  }
  .history_item {
    border-radius: 24px;
    padding-bottom: 40px;
  }
  .history_item + .history_item {
    margin-top: 88px;
  }
  .history_item + .history_item::before {
    content: "";
    width: 2px;
    height: 56px;
    z-index: -1;
    position: absolute;
    top: -88px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--color-main);
  }
  .history_item + .history_item::after {
    content: "";
    aspect-ratio: 1;
    width: 32px;
    outline: var(--color-main) solid 1px;
    border: #FFF solid 3px;
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    right: 0;
    top: -104px;
    margin: auto;
    border-radius: 100%;
  }
  .history_item:first-of-type {
    margin-top: 72px;
  }
  .history_item-title {
    font-size: 1.125rem;
    padding: 12px 20px;
    width: calc(100% - 40px);
  }
  .history_item-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .history_item-image {
    width: 100%;
  }
  .history_history-item {
    display: block;
  }
  .history_history-year {
    font-size: 0.9375rem;
  }
  .history_history-year--s {
    text-align: left;
  }
  .history_history-text {
    font-size: 0.9375rem;
  }
}

.sdgs {
  position: relative;
  position: relative;
  padding: 76px 0;
}
.sdgs::before {
  content: "";
  aspect-ratio: 1;
  width: 104px;
  -webkit-mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
          mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .sdgs::before {
    width: 48px;
  }
}
.sdgs::after {
  content: "";
  aspect-ratio: 1;
  width: 104px;
  -webkit-mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
          mask: url("/assets/images/common/bg_parts.svg") center/contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  rotate: 90deg;
}
@media screen and (max-width: 768px) {
  .sdgs::after {
    width: 48px;
  }
}
.sdgs_bg {
  position: absolute;
  width: 100%;
  height: calc(100% + 208px);
  top: -104px;
  left: 0;
  z-index: -1;
}
.sdgs_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.sdgs_inner {
  background-color: #FFF;
  border-radius: 32px;
  padding: 68px 56px;
}
.sdgs_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.sdgs_list-item {
  width: 50%;
  padding: 48px 32px;
  border-bottom: var(--color-border) solid 1px;
  position: relative;
}
.sdgs_list-item:last-child {
  width: 100%;
  border-bottom: none;
  padding-bottom: 0;
}
.sdgs_list-item:nth-child(2n)::before {
  content: "";
  width: 1px;
  height: calc(100% - 84px);
  background-color: var(--color-border);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sdgs_list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
}
.sdgs_list-icon {
  aspect-ratio: 1;
  width: 104px;
}
.sdgs_list-main {
  width: 328px;
}
.sdgs_list-item:last-child .sdgs_list-main {
  width: 480px;
}
.sdgs_list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--lineHeight-m);
  color: var(--color-main);
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .sdgs {
    padding: 56px 0;
  }
  .sdgs_inner {
    border-radius: 24px;
    padding: 40px 20px;
  }
  .sdgs_list {
    display: block;
  }
  .sdgs_list-item {
    width: 100%;
    padding: 24px 0;
  }
  .sdgs_list-item:nth-child(2n)::before {
    display: none;
  }
  .sdgs_list-box {
    display: block;
  }
  .sdgs_list-icon {
    width: 80px;
    margin: 0 auto 16px;
  }
  .sdgs_list-main {
    width: 100%;
  }
  .sdgs_list-item:last-child .sdgs_list-main {
    width: 100%;
  }
  .sdgs_list-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}

.relative {
  background-color: #FFF;
  border-radius: 104px 0 0 0;
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .relative {
    border-radius: 48px 0 0 0;
    padding: 56px 0;
  }
}

.cmn_btn {
  max-width: 400px;
  margin: 48px auto 0;
}
@media screen and (max-width: 768px) {
  .cmn_btn {
    margin-top: 32px;
  }
}/*# sourceMappingURL=ir_invester.css.map */