:root {
  --max-width: 1200px;
  --max-width-narrow: 996px;
  --side-padding: 4%;
  --side-padding-home-sp: 4vw;
  --side-padding-home-pc: 3vw;
  --height-header-sp: 93px;
  --height-header-pc: 157px;
  --primary-color: #E40011;
  --gray-color: #ABB8C3;
  --white-color: #fff;
  --red-color: #C80000;
  --base-textcolor: #333;
  --gray-textcolor: #666;
  --lightgray-bgcolor: #F6F6F6;
  --fontsize-84: 5.25rem;
  --fontsize-80: 5rem;
  --fontsize-68: 4.25rem;
  --fontsize-56: 3.5rem;
  --fontsize-48: 3rem;
  --fontsize-44: 2.75rem;
  --fontsize-42: 2.625rem;
  --fontsize-40: 2.5rem;
  --fontsize-34: 2.125rem;
  --fontsize-32: 2rem;
  --fontsize-28: 1.75rem;
  --fontsize-26: 1.625rem;
  --fontsize-24: 1.5rem;
  --fontsize-22: 1.375rem;
  --fontsize-20: 1.25rem;
  --fontsize-18: 1.125rem;
  --fontsize-16: 1rem;
  --fontsize-14: 0.875rem;
  --fontsize-13: 0.8125rem;
  --fontsize-12: 0.75rem;
}

[class^=heading-] {
  line-height: 1.4;
  font-weight: 700;
}

.heading-header {
  margin-block: 60px;
}
@media (width < 768px) {
  .heading-header {
    margin-top: 32px;
    margin-bottom: 44px;
  }
}
.heading-header:has(.heading__subtitle) .heading-a {
  margin-top: 16px;
}
.heading-header .heading-a {
  padding-top: 0;
}
.heading-header .text {
  font-weight: 400;
}

.heading-header__inner {
  display: flex;
  flex-direction: column;
}

.heading__subtitle {
  order: -1;
  margin-top: 0;
  font-size: var(--fontsize-18);
  font-weight: 700;
  line-height: 1.4;
}

.heading-a {
  padding-top: 68px;
  font-size: var(--fontsize-42);
}
@media (width < 768px) {
  .heading-a {
    padding-top: 42px;
    font-size: var(--fontsize-26);
  }
}

.heading-a--line {
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
  border-top: 2px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  text-align: center;
}
@media (width < 768px) {
  .heading-a--line {
    margin-top: 32px;
  }
}
.heading-a--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.heading-b {
  position: relative;
  margin-top: 100px;
  padding-top: 24px;
  font-size: var(--fontsize-32);
  color: var(--base-textcolor);
}
@media (width < 768px) {
  .heading-b {
    margin-top: 84px;
    font-size: var(--fontsize-24);
  }
}
.heading-b::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 37.5%, var(--gray-color) 37.5%, var(--gray-color) 100%);
}
.heading-b + section > .heading-c {
  margin-top: 32px;
}
@media (width < 768px) {
  .heading-b + section > .heading-c {
    margin-top: 26px;
  }
}

.heading-c {
  margin-top: 64px;
  font-size: var(--fontsize-28);
  line-height: 1.4;
  color: var(--base-textcolor);
}
@media (width < 768px) {
  .heading-c {
    margin-top: 44px;
    font-size: var(--fontsize-20);
  }
}

.heading-d {
  font-size: var(--fontsize-24);
  line-height: 1.4;
  color: var(--base-textcolor);
}
@media (width < 768px) {
  .heading-d {
    font-size: var(--fontsize-18);
  }
}

.lead-text {
  margin-top: 32px;
}
@media (width < 768px) {
  .lead-text {
    margin-top: 24px;
  }
}

.text {
  margin-top: 20px;
}
.text em {
  font-style: normal;
  font-weight: 700;
}
.text strong {
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--right {
  text-align: right;
}

.text--left {
  text-align: left;
}

@keyframes toright {
  30% {
    opacity: 0;
    transform: translateX(30%);
  }
  31%, 40% {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin: 0 8px 0.2em;
  vertical-align: middle;
}
.icon img {
  width: 100%;
  height: auto;
}

.icon--blank {
  width: 1.25em;
  height: 1.0625em;
}

.icon--pdf {
  width: 1.25em;
  height: 1.25em;
}

.inline-link {
  text-decoration: underline;
}
@media (hover: hover) {
  .inline-link:hover {
    color: var(--primary-color);
  }
}

.link-list {
  display: grid;
  gap: 16px 0;
  margin-top: 20px;
  list-style: none;
}
.link-list li a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.875em;
  margin: 0 0 0.2em 8px;
  vertical-align: middle;
  background: url(/common-files/img/icons/icon_arrow_r_red.svg) no-repeat 0 0;
  background-size: contain;
}
.link-list li a:has(.icon--blank, .icon--pdf)::after {
  content: none;
}
@media (hover: hover) {
  .link-list li a:hover {
    color: var(--primary-color);
  }
}

.link-button-grid {
  display: grid;
}

.link-button-grid--center {
  justify-items: center;
}

.link-button-grid--right {
  justify-items: end;
}

.link-button-grid--left {
  justify-items: start;
}

.link-button {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 22px 80px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 39px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}
@media (width < 768px) {
  .link-button {
    font-size: var(--fontsize-16);
  }
}
.link-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  transform: translateY(-50%);
}
.link-button::after {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  right: 32px;
  display: inline-block;
  width: 16px;
  height: 14px;
  vertical-align: middle;
  background: url(/common-files/img/icons/icon_arrow_r_red.svg) no-repeat 0 0;
  background-size: contain;
}
.link-button[target=_blank]::after {
  content: none;
}
@media (hover: hover) {
  .link-button:hover {
    background-color: var(--red-color);
  }
  .link-button:hover::after,
  .link-button:hover .icon {
    animation-name: toright;
    animation-duration: 0.5s;
    animation-iteration-count: cubic-bezier(0.33, 1, 0.68, 1);
  }
}
.link-button .icon {
  position: absolute;
  right: 30px;
  margin: 0;
}
.link-button .icon img {
  vertical-align: top;
}
.link-button .icon--blank {
  top: calc(50% - 8.5px);
  width: 20px;
  height: 17px;
}
.link-button .icon--pdf {
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
}

.link-button--wide {
  max-width: 584px;
  width: 100%;
}
@media (width < 768px) {
  .link-button--wide {
    max-width: 100%;
  }
}

.card {
  display: grid;
  margin-top: 84px;
}
@media (width < 768px) {
  .card {
    margin-top: 64px;
  }
}

.card--col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (width < 768px) {
  .card--col2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.card__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: var(--lightgray-bgcolor);
  list-style: none;
  padding: 24px 24px 72px;
}
@media (width < 768px) {
  .card__item {
    padding: 24px 24px 66px;
  }
}

.card__ilnk::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}
.card__ilnk::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 24px;
  width: 1.112em;
  height: 1em;
  background: url(/common-files/img/icons/icon_arrow_r_red.svg) no-repeat 0 0;
  background-size: contain;
}
.card__ilnk[target=_blank]::after {
  content: none;
}
@media (hover: hover) {
  .card__ilnk:hover::after,
  .card__ilnk:hover .icon {
    animation-name: toright;
    animation-duration: 0.5s;
    animation-iteration-count: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .card__ilnk:hover ~ .card__image img {
    transform: scale(1.2);
    transition-duration: 0.35s;
  }
}
.card__ilnk .icon {
  position: absolute;
  bottom: 30px;
  right: 24px;
  margin: 0;
}

.card__title {
  margin-top: 24px;
  font-size: var(--fontsize-28);
  line-height: 1.4;
  font-weight: 700;
}
@media (width < 768px) {
  .card__title {
    font-size: var(--fontsize-20);
  }
}

.card__subTitle {
  margin-top: 12px;
  font-size: var(--fontsize-24);
  line-height: 1.4;
  font-weight: 700;
}
@media (width < 768px) {
  .card__subTitle {
    font-size: var(--fontsize-18);
  }
}

.card__image {
  order: -2;
  overflow: hidden;
}
.card__image img {
  transition-duration: 0.35s;
}

.related-link {
  display: grid;
  grid-template-columns: 1fr 2.088fr;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
}
@media (width < 768px) {
  .related-link {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding: 24px;
  }
}
@media (hover: hover) {
  .related-link:hover .related-link__title {
    color: var(--primary-color);
  }
  .related-link:hover .related-link__title::after,
  .related-link:hover .icon {
    animation-name: toright;
    animation-duration: 0.5s;
    animation-iteration-count: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .related-link:hover .related-link__image img {
    transform: scale(1.2);
    transition-duration: 0.35s;
  }
}
.related-link:not(:has(.related-link__image)) {
  grid-template-columns: 1fr;
}
.related-link .icon--pdf {
  width: 1em;
  height: 1em;
}

@media (hover: hover) {
  .related-link--no-link:hover .related-link__title {
    color: var(--base-textcolor);
  }
}
.related-link--no-link .related-link__title::after {
  content: none;
}

.related-link__image {
  display: flex;
  align-items: center;
  order: -1;
  overflow: hidden;
}
@media (width < 768px) {
  .related-link__image {
    display: none;
  }
}
.related-link__image img {
  transition-duration: 0.35s;
}

.related-link__image--border {
  border: 1px solid var(--gray-color);
}

.related-link__title {
  margin-top: 0;
  font-size: var(--fontsize-24);
  line-height: 1.4;
  text-wrap: wrap;
}
@media (width < 768px) {
  .related-link__title {
    font-size: var(--fontsize-18);
  }
}
.related-link__title::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.875em;
  margin: 0 0 0.2em 8px;
  vertical-align: middle;
  background: url(/common-files/img/icons/icon_arrow_r_red.svg) no-repeat 0 0;
  background-size: contain;
}
.related-link__title:has(.icon--blank, .icon--pdf)::after {
  content: none;
}
.related-link__title .icon--blank {
  width: 1em;
  height: 0.85em;
}
.related-link__title .icon--blank img {
  vertical-align: top;
}

.link-local {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  max-width: 776px;
  margin: 84px auto 64px;
}
@media (width < 768px) {
  .link-local {
    margin: 64px auto 44px;
  }
}
.link-local li {
  list-style: none;
}
.link-local a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.5em;
  margin: 0 0 0.2em 8px;
  vertical-align: middle;
  background: url(/common-files/img/icons/icon_arrow_d_red.svg) no-repeat 0 0;
  background-size: contain;
}
@media (hover: hover) {
  .link-local a:hover {
    color: var(--primary-color);
  }
}

.link-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px 24px;
  margin-top: 84px;
}
@media (width < 768px) {
  .link-block {
    margin-top: 64px;
  }
}
.link-block + .link-button-grid .link-button {
  margin-top: 64px;
}

.link-block--col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (width < 768px) {
  .link-block--col2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.link-block--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 84px 24px;
}
@media (width < 1001px) {
  .link-block--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .link-block--col3 {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.link-block__item {
  list-style: none;
}

.link-block__item__link {
  display: grid;
}
@media (hover: hover) {
  .link-block__item__link:hover .link-block__item__title {
    color: var(--primary-color);
  }
  .link-block__item__link:hover .link-block__item__image img {
    transform: scale(1.2);
    transition-duration: 0.35s;
  }
  .link-block__item__link:hover .link-block__item__title::after,
  .link-block__item__link:hover .icon {
    animation-name: toright;
    animation-duration: 0.5s;
    animation-iteration-count: cubic-bezier(0.33, 1, 0.68, 1);
  }
}

.link-block__item__title {
  position: relative;
  margin-top: 20px;
  padding-right: 28px;
  font-size: var(--fontsize-24);
  line-height: 1.4;
}
@media (width < 768px) {
  .link-block__item__title {
    font-size: var(--fontsize-20);
  }
}
.link-block__item__title::after {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  right: 0;
  width: 20px;
  height: 18px;
  background: url(/common-files/img/icons/icon_arrow_r_red.svg) no-repeat 0 0;
  background-size: contain;
}
.link-block__item__title:has(.icon--blank, .icon--pdf)::after {
  content: none;
}
.link-block__item__title .icon {
  margin: 0;
}
.link-block__item__title .icon--blank {
  position: absolute;
  top: calc(50% - 8.5px);
  right: 0;
  width: 20px;
  height: 17px;
}
.link-block__item__title .icon--blank img {
  vertical-align: top;
}

.link-block__item__image {
  position: relative;
  order: -1;
  overflow: hidden;
}
.link-block__item__image img {
  transition-duration: 0.35s;
}

.link-block__item__category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 0 0 8px 0;
  background-color: var(--white-color);
  font-size: var(--fontsize-16);
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-color);
  z-index: 1;
}
@media (width < 768px) {
  .link-block__item__category {
    font-size: var(--fontsize-14);
  }
}

@media (hover: hover) {
  .link-bannar:hover {
    opacity: 0.5;
    transition-duration: 0.35s;
  }
}

.box {
  margin-top: 32px;
  padding: 44px;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (width < 768px) {
  .box {
    margin-top: 26px;
    padding: 32px;
  }
}
.box > *:first-child {
  margin-top: 0;
}

.media {
  display: grid;
  margin-top: 44px;
}
@media (width < 768px) {
  .media {
    margin-top: 32px;
  }
}

.media--full {
  margin-bottom: 84px;
  width: 100%;
}
@media (width < 768px) {
  .media--full {
    margin-bottom: 24px;
  }
}
.media--full:has(+ .text) {
  margin-bottom: 32px;
}

.media--col1 {
  margin-inline: auto;
  margin-bottom: 44px;
  max-width: 792px;
  width: 100%;
}
@media (width < 768px) {
  .media--col1 {
    margin-bottom: 32px;
  }
}

.media--col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 24px;
}
@media (width < 768px) {
  .media--col2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.media--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 24px;
}
@media (width < 1001px) {
  .media--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .media--col3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.figure figcaption {
  margin-top: 12px;
  font-size: var(--fontsize-14);
  line-height: 1.6;
}

.media-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 24px;
  margin-top: 32px;
}
@media (width < 768px) {
  .media-block {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
}

.media-block__body > *:first-child {
  margin-top: 0;
}

.list {
  margin-top: 26px;
  list-style: none;
}
@media (width < 768px) {
  .list {
    margin-top: 20px;
  }
}
.list li {
  position: relative;
  padding-left: 1.112em;
}
.list li::before {
  content: "";
  display: inline-block;
  width: 0.445em;
  height: 0.445em;
  position: absolute;
  top: 0.5em;
  left: 0;
  margin: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.list li > ul {
  margin-top: 16px;
  list-style: none;
}
.list li:not(:first-child) {
  margin-top: 16px;
}
.list li span {
  font-size: var(--fontsize-14);
}
.list.list--color-text li::before {
  background-color: var(--base-textcolor);
}

.list--note li {
  display: table-row;
  font-size: var(--fontsize-14);
  line-height: 1.6;
  color: var(--gray-textcolor);
}
@media (width < 768px) {
  .list--note li {
    font-size: var(--fontsize-12);
  }
}
.list--note li::before {
  content: none;
}
.list--note li:first-child .list__marker {
  padding-top: 0;
}

.list__marker {
  display: table-cell;
  padding-top: 20px;
  padding-right: 8px;
  word-break: keep-all;
  white-space: nowrap;
}

.feature-list {
  display: grid;
  gap: 44px 24px;
}
@media (width < 768px) {
  .feature-list {
    gap: 26px;
  }
}

.feature-list--col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (width < 768px) {
  .feature-list--col2 {
    grid-template-columns: 1fr;
  }
}

.feature-list__item {
  margin-top: 0;
  padding: 26px 24px;
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.feature-list__title {
  position: relative;
  padding-top: 24px;
  font-size: var(--fontsize-22);
  line-height: 1.4;
  color: var(--base-textcolor);
  font-weight: 700;
}
@media (width < 768px) {
  .feature-list__title {
    font-size: var(--fontsize-20);
  }
}
.feature-list__title::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 37.5%, var(--gray-color) 37.5%, var(--gray-color) 100%);
}

.feature-list__desc {
  margin-left: 0;
}

.kv {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 84px;
  width: 100%;
  height: 400px;
}
@media (width < 768px) {
  .kv {
    margin-bottom: 64px;
    height: auto;
    aspect-ratio: 375/156;
  }
}
.kv:has(+ .container > .lead-text) {
  margin-bottom: 44px;
}
@media (width < 768px) {
  .kv:has(+ .container > .lead-text) {
    margin-bottom: 32px;
  }
}

.kv__title {
  position: relative;
  z-index: 1;
  font-size: var(--fontsize-56);
  line-height: 1;
  color: var(--white-color);
}
@media (width < 768px) {
  .kv__title {
    font-size: var(--fontsize-28);
    line-height: 1.6;
  }
}

.kv__image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kv__image picture,
.kv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.kv-movie {
  margin-bottom: 84px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (width < 768px) {
  .kv-movie {
    margin-bottom: 32px;
    height: 300px;
  }
}
.kv-movie video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cookie_bnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  padding: 30px 60px;
  background-color: #444;
  color: var(--white-color);
}
@media (width < 768px) {
  .cookie_bnr {
    padding: 15px;
  }
}

.cookie_bnr__row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 18px 18px 4%;
  background-color: #2b2b2b;
}
@media (width < 768px) {
  .cookie_bnr__row {
    display: block;
    padding: 15px;
  }
}

.cookie_bnr__text {
  margin-right: 1em;
  font-size: var(--fontsize-18);
  color: #ccc;
  line-height: 1.55;
}
@media (width < 768px) {
  .cookie_bnr__text {
    margin-right: 0;
    margin-bottom: 1em;
    font-size: var(--fontsize-12);
  }
}

.cookie_bnr__btn {
  display: flex;
}
.cookie_bnr__btn .btn {
  padding: 5px;
}
.cookie_bnr__btn .btn a, .cookie_bnr__btn .btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  padding: 5px;
  border: 0;
  background-color: #4b4b4b;
  color: var(--white-color);
  font-size: var(--fontsize-18);
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (width < 768px) {
  .cookie_bnr__btn .btn a, .cookie_bnr__btn .btn button {
    min-width: 130px;
    font-size: var(--fontsize-12);
  }
}
@media (hover: hover) {
  .cookie_bnr__btn .btn a:hover, .cookie_bnr__btn .btn button:hover {
    background-color: #5b5b5b;
  }
}
.cookie_bnr__btn .btn a .icon, .cookie_bnr__btn .btn button .icon {
  margin: 0;
}
@media (width < 768px) {
  .cookie_bnr__btn #js-cookie_agree {
    min-width: 86px;
  }
}