@charset "utf-8";

:root {
  --color_primary_black: #0c0c0c;
  --color_primary_white: #fff;
  --color_primary_red: #fa000f;
  --color_primary_gray: #737373;
  --color_secondary_black: #222222;
  --color_secondary_white: #f4f4f4;
  --color_secondary_gray: #b3b3b3;
  --color_secondary_red: #cc0000;
  --color_border_gray: #d9d9d9;
}

html {
  font-size: 62.5%;
}
:where(#main) img {
  max-width: 100%;
  height: auto;
}
:where(#main) .btn,
:where(#main) a.btn {
  width: auto;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}
:where(#main) a:link,
:where(#main) a:active,
:where(#main) a:hover,
:where(#main) a:visited {
  text-decoration: none;
  color: inherit;
}
:where(#main) h3 a:link,
:where(#main) h3 a:active,
:where(#main) h3 a:hover,
:where(#main) h3 a:visited {
  text-decoration: none;
  color: inherit;
  background-image: none;
}
:where(#main) button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
:where(#main) ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  line-height: 1.6;
  font-size: 1.6rem;
  color: var(--color_primary_black);
  background-color: var(--color_primary_white);
}
body:not(.page-content) #main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .breadcrumbs {
    max-width: 1305px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
sup {
  font-size: 1rem;
  vertical-align: super;
}
sub {
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--color_primary_black);
}
/*---------------------------------------
インナー幅
---------------------------------------*/
.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1024px) {
  .inner {
    margin-inline: auto;
    padding-inline: 40px;
    max-width: 1180px;
    width: 100%;
  }
}
/*---------------------------------------
見出し
---------------------------------------*/
#main .titleA {
  line-height: calc(40 / 28);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #main .titleA {
    font-size: 3.6rem;
  }
}
#main .titleB {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 8px;
  font-size: 2rem;
  font-weight: bold;
  border-left: 6px solid var(--color_primary_red);
}
#main .titleB::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
  z-index: 2;
  width: 6px;
  height: 6px;
  background-color: var(--color_secondary_gray);
}
@media screen and (min-width: 1024px) {
  #main .titleB {
    margin-bottom: 24px;
    padding-left: 12px;
    padding-block: 5px 6px;
    line-height: 1.2;
    font-size: 2.4rem;
    border-left: 8px solid var(--color_primary_red);
  }
  #main .titleB::before {
    left: -8px;
    width: 8px;
    height: 8px;
  }
}
#main .titleC {
  position: relative;
  padding-left: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 2rem;
  font-weight: bold;
}
#main .titleC__icon {
  display: inline-block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 1px;
  height: 24px;
  background-color: var(--color_primary_red);
}
#main .titleC__icon::before,
#main .titleC__icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
}
#main .titleC__icon::before {
  left: 4px;
}
#main .titleC__icon::after {
  left: 8px;
}
#main .titleD {
  position: relative;
  margin-bottom: 10px;
  padding-left: 16px;
  line-height: 1.33;
  font-size: 1.8rem;
  font-weight: 600;
}
#main .titleD::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color_primary_red);
}
/*---------------------------------------
box
---------------------------------------*/
.box {
  margin-top: 10px;
  border: 1px solid var(--color_primary_red);
  border-radius: 10px;
  padding: 20px 20px 30px;
}
@media screen and (min-width: 1024px) {
  .box {
    margin-top: 24px;
    padding: 26px 27px 30px 30px;
  }
  .box--materiality {
    padding: 40px 30px;
  }
}
.box__media {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (min-width: 1024px) {
  .box__media {
    flex-direction: row;
    align-items: center;
    gap: 0 30px;
  }
}
.box__mediaImg {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .box__mediaImg {
    flex-shrink: 0;
    width: 100%;
    max-width: 387px;
  }
}
.box__mediaImg figcaption {
  margin-top: 6px;
  line-height: 1.6;
  font-size: 1.6rem;
}
/*---------------------------------------
リスト
---------------------------------------*/
@media screen and (min-width: 1024px) {
  .list {
    margin-left: 13px;
  }
  .list.list--materiality {
    margin-left: 0;
    flex-grow: 1;
  }
}
.list__item {
  position: relative;
  line-height: 1.6;
  font-size: 1.6rem;
  padding-left: calc(0.75em + 5px);
}
.list__item + .list__item {
  margin-top: 8px;
}
.list__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 0.75em;
  height: 0.75em;
  border-radius: 9999px;
  background-color: var(--color_primary_gray);
}
.list--discBlack .list__item::before {
  top: 0.75em;
  width: 0.25em;
  height: 0.25em;
  background-color: #000;
}
/*---------------------------------------
注釈リスト
---------------------------------------*/
.note__list {
    margin-block: 10px 20px;
}
@media screen and (min-width: 1024px) {
    .note__list {
        margin-block: 10px 30px;
    }
}
.note__list li {
    display: flex;
    align-items: baseline;
    column-gap: 5px;
    line-height: 1.8;
    font-size: 1.2rem;
}
.note__list li + li {
    margin-top: 8px;
}
.note__list li span {
    display: inline-block;
    flex-shrink: 0;
}
a.note__listLink {
  display: inline-block;
  color: var(--color_secondary_red);
}
a.note__listLink.note__listLink--target::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  background: url(https://s1.fl.platisher.jp/p16777610/2026/03/17/og0r7JKzNMFK7gx9BZKNt4dXbrklydiR3Mo/icon_blank_02.svg) no-repeat center / contain;
}
@media (hover: hover) and (pointer: fine) {
  a.note__listLink {
    transition: text-decoration 0.3s;
  }
  a.note__listLink:hover {
    text-decoration: underline;
  }
}
/*---------------------------------------
順序ありリスト
---------------------------------------*/
.num__list {
  counter-reset: num;
}
.num__list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.num__list li:nth-child(10n) {
  padding-left: 35px;
}
.num__list li:not(:first-child) {
  margin-top: 10px;
}
.num__list li::before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
/*---------------------------------------
リード文
---------------------------------------*/
.intro {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  .intro {
    margin-top: 30px;
  }
}
/*---------------------------------------
リンク
---------------------------------------*/
.link {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  color: var(--color_secondary_red) !important;
  border: none !important;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .link {
    font-size: 1.6rem;
  }
}
.link.link--underLine {
  line-height: 1.8;
  font-size: 1.6rem;
  text-decoration: underline !important;
}
.link.link--blank::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 13px;
  height: 13px;
  background: url(https://s1.fl.platisher.jp/p16777610/2026/03/17/og0r7JKzNMFK7gx9BZKNt4dXbrklydiR3Mo/icon_blank_02.svg) no-repeat center / contain;
}
.link.link--arrow {
  padding-right: 28px;
}
.link.link--arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  margin-left: 5px;
  background: url(https://s1.fl.platisher.jp/p16777610/2025/11/18/X8XKB489zJFBm9jl3vN9FeLj8OVe1yUGRLD/icon_button_arrow.svg) no-repeat center / contain;
}
.link.link--topics::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 22px;
  height: 22px;
  background: url(https://s1.fl.platisher.jp/p16777610/2026/03/17/X87pmne83ltAnPrlkmlGcXMnY4QJm1iGwKm/icon_topics.svg) no-repeat center / contain;
  vertical-align: text-bottom;
}
@media screen and (min-width: 768px) {
  .link.link--arrow {
    padding-right: 27px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .link {
    transition: text-decoration 0.3s;
  }
  .link:hover {
    text-decoration: underline !important;
  }
  /* .link.link--underLine {
    transition: text-decoration 0.3s;
  } */
  .link.link--underLine:hover {
    text-decoration: none !important;
  }
}
.link.link--pdf {
  padding-right: 20px;
  text-decoration: underline;
}
.link.link--pdf::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 18px;
  background: url(https://s1.fl.platisher.jp/p16777610/2025/11/18/oEow8Pj8eNS9bmymp08rUAOzBDXXgxSRpKj/icon_pdf.svg) no-repeat 0 0 / contain;
}
/*---------------------------------------
ボタン
---------------------------------------*/
.btnArea + .btnArea {
  margin-top: 20px;
}
.btnArea a.btn {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 5px 44px 7px 20px;
  line-height: calc(20 / 14);
  border: 1px solid var(--color_primary_red);
  border-radius: 9999px;
  background-color: var(--color_primary_red);
}
.btnArea a.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(https://s1.fl.platisher.jp/p16777610/2025/11/18/4zRDQAyDlLie430aYERRfZ4kvMBwMOUw8nv/icon_arrow_white.svg) no-repeat center / contain,
  url(https://s1.fl.platisher.jp/p16777610/2025/11/18/QR0dGK8olzIjRMNrLlpehld3ElaRJMCO03/icon_arrow_red.svg) no-repeat center / 0 0;
}
.btnArea a.btn .btn__text {
  position: relative;
  display: inline-block;
  line-height: calc(20 / 14);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color_primary_white);
}
.btnArea a.btn--pdf {
  padding-right: 47px;
}
.btnArea a.btn--pdf::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 19px;
  height: 24px;
  background: url(https://s1.fl.platisher.jp/p16777610/2025/11/18/oEow8Pj8eNS9bmymp08rUAOzBDXXgxSRpKj/icon_pdf.svg) no-repeat 0 0 / contain;
}
@media (hover: hover) and (pointer: fine) {
  .btnArea a.btn {
    transition: all 0.3s;
  }
  .btnArea a.btn:hover {
    background-color: var(--color_primary_white);
  }
  .btnArea a.btn:hover:not(.btn--pdf)::after {
    background-size: 0 0, contain;
  }
  .btnArea a.btn:hover .btn__text {
    color: var(--color_primary_red);
  }
}
/*---------------------------------------
アコーディオン
---------------------------------------*/
.accordion {
  margin-top: 40px;
}
.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px 16px 24px;
  width: 100%;
  background-color: var(--color_secondary_white);
}
.accordion__btn:hover {
  border: none;
  background-color: var(--color_secondary_white);
}
.accordion__text {
  display: inline-block;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 500;
  color: #000;
}
.accordion__icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: var(--color_primary_red);
  transition: background-color 0.3s;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--color_primary_white);
  transition: opacity 0.3s;
}
.accordion__icon::after {
  transform: rotate(90deg);
}
.is_open .accordion__icon {
  background-color: var(--color_secondary_gray);
}
.is_open .accordion__icon::after {
  opacity: 0;
}
.accordion__contents {
  display: none;
  padding-top: 32px;
}
.accordion__contentsItem + .accordion__contentsItem {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .accordion__contentsItem + .accordion__contentsItem {
    margin-top: 40px;
  }
}
/*---------------------------------------
メディア
---------------------------------------*/
.media {
  margin-top: 40px;
}
.media + .media {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .media {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
  }
  .media.media--reverse {
    flex-direction: row;
  }
  .media + .media {
    margin-top: 40px;
  }
}
.media__img {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
.media__img.media__img--rightOver {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  width: calc(300 / 390 * 100vw);
}
.media__img.media__img--leftOver {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
  width: calc(300 / 390 * 100vw);
}
@media screen and (min-width: 768px) {
  .media__img {
    margin-inline: 0;
    width: calc(800 / 1100 * 100%);
    flex-shrink: 0;
  }
  .media__img.media__img--small {
    width: calc(750 / 1100 * 100%);
  }
  .media__img.media__img--rightOver,
  .media__img.media__img--leftOver {
    margin-inline: 0;
  }
}
.media__img img {
  width: 100%;
}
.media__contents {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  padding-block: 30px;
  padding-inline: 20px;
  background-color: #ffffffcc;
  box-shadow: 0px 5px 10px 0px #0c0c0c0d;
  border-radius: 10px;
}
.media__contents.media__contents--small {
  margin-top: -200px;
  max-width: 303px;
  width: 100%;
  padding-block: 20px;
}
.media__contents.media__contents--right {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .media__contents {
    align-items: center;
    margin-top: 40px;
    margin-right: calc(-250 / 1100 * 100%);
    padding-inline: 30px;
    max-width: 550px;
    width: 100%;
  }
  .media--reverse .media__contents {
    margin-right: 0;
    margin-left: calc(-200 / 1100 * 100%);
  }
  .media__contents.media__contents--small {
    margin-top: 40px;
    max-width: 550px;
    width: 100%;
    padding-block: 30px;
  }
}
.media__title {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .media__title {
    font-size: 2.4rem;
  }
}
.media__text {
  line-height: calc(36 / 20);
  font-size: 2rem;
}
.media__text.media__text--small {
  line-height: 1.6;
  font-size: 1.6rem;
}
.media__text.media__text--small + .media__text.media__text--small {
  margin-top: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .media__text {
    line-height: calc(36 / 22);
  }
}
.media__name {
  margin-top: 20px;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .media__name {
    margin-top: 18px;
  }
}
.media__btnArea {
    margin-top: 20px;
    text-align: right;
}
.media__link {
  display: block;
  position: relative;
  padding-right: 32px;
}
.media__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(https://s1.fl.platisher.jp/p16777610/2026/03/17/AYMXBM0G0rtB9K42L3gmiYX7NGd1BAun8D/icon_button_arrow_large.svg) no-repeat 0 0 / contain;
}
@media screen and (min-width: 768px) {
  .media__link::after {
    content: "";
    width: 30px;
    height: 30px;
  }
}
/*---------------------------------------
下層ページ メディア
---------------------------------------*/
.lowerPage__media {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.lowerPage__media.lowerPage__media--type02 {
  gap: 30px 55px;
}
@media screen and (min-width: 768px) {
  .lowerPage__media {
    flex-direction: row;
  }
}
.lowerPage__mediaContents,
.lowerPage__mediaFigure,
.lowerPage__media--type02 .lowerPage__mediaContents,
.lowerPage__media--type02 .lowerPage__mediaFigure {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lowerPage__mediaContents,
  .lowerPage__mediaFigure {
    width: calc(50% - 15px);
  }
  .lowerPage__media--type02 .lowerPage__mediaContents {
    width: calc(711 / 1100 * 100%);
  }
  .lowerPage__media--type02 .lowerPage__mediaFigure {
    width: calc(334 / 1100 * 100%);
  }
}
.lowerPage__mediaTitle {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
}
/*---------------------------------------
バナー
---------------------------------------*/
.bnr {
  padding-block: 30px;
  background: linear-gradient(179.87deg, #D9D9D9 0.11%, #D26464 71.02%, #CC0000 99.89%);
}
@media screen and (min-width: 768px) {
  .bnr.bnr--left {
    margin-left: calc(50% - 50vw);
    background: linear-gradient(90.01deg, #D9D9D9 0%, #D26464 52.28%, #CC0000 73.56%);
  }
  .bnr.bnr--right {
    margin-right: calc(50% - 50vw);
    background: linear-gradient(-90.01deg, #D9D9D9 0%, #D26464 52.28%, #CC0000 73.56%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .bnr__link {
    transition: filter 0.3s ease-in-out;
  }
  .bnr__link:hover {
    filter: brightness(1.1);
  }
}
.bnr__inner {
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .bnr__inner {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-left: auto;
    padding-inline: 30px;
    max-width: 1130px;
  }
  .bnr--right .bnr__inner {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: auto;
  }
}
.bnr__link {
  display: inline-block;
}
.bnr__img {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .bnr__img {
    width: calc(650 / 1070 * 100%);
  }
}
.bnr__title {
  margin-top: 20px;
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 2rem;
  color: var(--color_primary_white);
}
@media screen and (min-width: 768px) {
  .bnr__title {
    margin-top: 0;
    margin-bottom: 22px;
    line-height: 1.3;
    font-size: 2.2rem;
  }
}
.bnr__text {
  margin-top: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color_primary_white);
}
@media screen and (min-width: 768px) {
  .bnr__text {
    margin-top: 0;
    line-height: 1.6;
  }
}
/*---------------------------------------
表組
---------------------------------------*/
.table {
    margin-top: 16px;
    border: 1px solid var(--color_primary_gray);
    border-right: none;
}
.table .table__title {
    padding-inline: 14px 17px;
    border: none;
    width: calc(145 / 350 * 100%);
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color_primary_white);
    vertical-align: middle;
    background-color: var(--color_primary_gray);
}
.table__item:not(:last-child) .table__title {
    border-bottom: 1px solid var(--color_primary_white);
}
@media screen and (min-width: 1024px) {
    .table .table__title {
        padding-inline: 19px;
        width: 200px;
    }
}
.table .table__text {
    padding-block: 11px;
    padding-inline: 16px 11px;
    border: none;
    line-height: 1.4;
    font-size: 1.6rem;
}
.table__item:not(:last-child) .table__text {
    border-bottom: 1px solid var(--color_primary_gray);
}
@media screen and (min-width: 1024px) {
    .table .table__text {
        padding-block: 19px;
        padding-inline: 16px 13px;
        width: calc(900 / 1100 * 100%);
    }
}
.table .table__text a {
  display: inline-block;
  text-decoration: underline !important;
  color: var(--color_primary_red);
}
/*---------------------------------------
ESG表組
---------------------------------------*/
.esgTableScroll {
  overflow-x: auto;
}
.scrollText {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 10px;
  color: var(--color_secondary_red);
}
@media screen and (min-width: 1180px) {
  .scrollText {
    display: none;
  }
}
.esgTable {
  width: 100%;
}
.esgTable.esgTable--overWrap {
  margin-inline: auto;
  width: 1100px;
}
.esgTable thead th {
  padding: 0 10px 16px;
  border: none;
  border-bottom: 1px solid var(--color_primary_black);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color_secondary_red);
  background-color: var(--color_primary_white);
}
.esgTable thead th:first-child,
.esgTable thead th:last-child {
  padding-inline: 10px;
}
.esgTable tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--color_primary_gray);
}
.esgTable tbody tr:last-child {
  border-bottom: 1px solid var(--color_primary_black);
}
.esgTable tbody td {
  padding: 18px 10px;
  border: none;
  font-size: 1.6rem;
}
.esgTable tbody td:has(ul) {
  vertical-align: top;
}
.esgTable tbody td ul li {
  position: relative;
  padding-left: 16px;
}
.esgTable tbody td ul li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color_secondary_red);
}
/*---------------------------------------
カード型リスト
---------------------------------------*/
.card {
  margin-top: 30px;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 40px 48px;
}
@media screen and (min-width: 768px) {
  .card__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.card__listItem {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_secondary_gray);
}
@media screen and (min-width: 768px) {
  .card__listItem {
    width: calc(33.3% - 48px * 2 / 3);
  }
}
.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 334 / 223;
  object-fit: cover;
}
.card__contents {
  display: flex;
  column-gap: 16px;
  padding: 15px;
  height: 100%;
}
.card__text {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: bold;
}
.card__icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
}
/*---------------------------------------
関連ページ
---------------------------------------*/
.related {
  margin-top: 60px;
  border-top: 1px solid var(--color_secondary_gray);
}
.related__inner {
  margin-top: 50px;
}
.related__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .related__list {
    flex-direction: row;
  }
}
.related__listItem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .related__listItem {
    width: calc(50% - 15px);
  }
}
.related__link {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1180px) {
  .related__link {
    flex-direction: row;
  }
}
.related__img {
  width: 100%;
}
@media screen and (min-width: 1180px) {
  .related__img {
    max-width: 267px;
  }
}
.related__contents {
  position: relative;
  display: grid;
  align-items: center;
  flex-grow: 1;
  padding-block: 33px;
  padding-inline: 20px 10px;
  background-color: var(--color_secondary_white);
}
.related__text {
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: bold;
}
.related__icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin-top: 4px;
  width: 20px;
  height: 20px;
}
.related__icon img {
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}
/*---------------------------------------
ピンチアウト
---------------------------------------*/
.figureZoom {
  display: block;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .figureZoom {
    display: none;
  }
}
.figureZoom__text {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-size: 1.2rem;
}
.figureZoom__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(https://s1.fl.platisher.jp/p16777610/2026/03/17/gPXAp8XKkLC8p99Gxzv4hZO3YR71k2I4wK/icon_zoom.svg) no-repeat center / contain;
}
/*---------------------------------------
下層ページ
---------------------------------------*/
.pageTitle {
  position: relative;
}
.pageTitle__img {
  width: 100%;
}
.pageTitle__contens {
  position: absolute;
  top: calc(78 / 390 * 100vw);
  left: 0;
  z-index: 5;
  padding-inline: 16px;
}
.pageTitle__contens.pageTitle__contens--center {
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .pageTitle__contens {
    top: calc(84 / 1400 * 100vw);
    left: 50%;
    transform: none;
    padding-inline: 40px;
    max-width: 1180px;
    width: 100%;
    transform: translateX(-50%);
  }
  .pageTitle__contens.pageTitle__contens--center {
    top: calc(160 / 1400 * 100vw);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1401px) {
  .pageTitle__contens {
    top: calc(105 / 1400 * 100vw);
  }
}
.pageTitle__subTitle {
  margin-bottom: 10px;
  line-height: calc(18 / 12);
  font-weight: bold;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .pageTitle__subTitle {
    line-height: 1;
    font-size: 2rem;
  }
}
.pageTitle__subTitle.pageTitle__subTitle--colorWhite {
  color: var(--color_primary_white);
}
.pageTitle__subTitle.pageTitle__subTitle--space {
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .pageTitle__subTitle.pageTitle__subTitle--space {
    margin-left: 3rem;
  }
}
.pageTitle__title {
  font-weight: bold;
  font-size: 2.8rem;
}
.pageTitle__title.pageTitle__title--colorWhite {
  color: var(--color_primary_white);
}
@media screen and (min-width: 768px) {
  .pageTitle__title {
    line-height: calc(64 / 56);
    font-size: min(calc(56 / 1400 * 100vw), 5.6rem);
  }
}
.pageTitle__text {
  margin-top: 50px;
  padding-inline: 20px;
  font-weight: bold;
}
.pageTitle__text.pageTitle__text--colorWhite {
  color: var(--color_primary_white);
}
@media screen and (min-width: 768px) {
  .pageTitle__text {
    position: absolute;
    top: calc(184 / 1400 * 100vw);
    left: 50%;
    margin-top: 0;
    padding-inline: 40px;
    max-width: 1180px;
    width: 100%;
    transform: translateX(-50%);
    font-size: min(calc(18 / 1400 * 100vw), 1.8rem);
    font-weight: normal;
  }
}
@media screen and (min-width: 1401px) {
  .pageTitle__text {
    top: calc(190 / 1400 * 100vw);
  }
}
.lowerPage {
  margin-block: 50px 0;
}
@media screen and (min-width: 1024px) {
  .lowerPage {
    margin-block: 103px 0;
  }
}
.lowerPage__intro {
  display: block;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .lowerPage__intro {
    display: none;
  }
}
.lowerPage__text {
  line-height: 1.8;
  font-size: 1.6rem;
}
.lowerPage__text + .lowerPage__text {
  margin-top: 30px;
}
.lowerPage__section + .lowerPage__section {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .lowerPage__section + .lowerPage__section {
    margin-top: 60px;
  }
}
.lowerPage__sectionItem {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .lowerPage__sectionItem {
    margin-top: 24px;
  }
}
.lowerPage__img {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lowerPage__img {
    margin-top: 24px;
  }
}
.lowerPage__imgInner {
  display: inline-block;
}
.lowerPage__imgTitle {
  text-align: left;
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: bold;
}
.lowerPage__imgTitle.lowerPage__imgTitle--narrow {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .lowerPage__imgTitle {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .lowerPage__imgTitle.lowerPage__imgTitle--narrow {
    margin-bottom: 5px;
  }
}
.lowerPage__img a {
  display: inline-block;
}
/*---------------------------------------
ユーティリティクラス
---------------------------------------*/
.fwb {
  font-weight: bold !important;
}
.fontPalt {
  font-feature-settings: "palt" !important;
}
.tac {
  text-align: center !important;
}
.vam {
  vertical-align: middle !important;
}
.borderTop {
  border-top: 1px solid var(--color_primary_black) !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.un767,
.un1023,
.ov768,
.ov1024,
.ov1180,
.ov1400 {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .un767 {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .un1023 {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .ov768 {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .ov1024 {
    display: block !important;
  }
}
@media screen and (min-width: 1180px) {
  .ov1180 {
    display: block !important;
  }
}
@media screen and (min-width: 1400px) {
  .ov1400 {
    display: block !important;
  }
}