@charset "UTF-8";

/* ----------------------------
  Layouts
 ---------------------------- */
/* wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.l-wrapper::before {
  content: "";
  background-image: url("/assets/img/bg_fixed_sp.png");
  background-size: cover;
  background-position: top left;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}
.l-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 480px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--color-bg-white) 71.63%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .l-wrapper::before {
    background-image: url("/assets/img/bg_fixed.webp");
  }
  .l-wrapper::after {
    height: 573px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      var(--color-bg-white) 100%
    );
    bottom: 52px;
  }
}

/* contents */
.l-main {
  flex-grow: 1;
}
.l-container {
  width: 91.79%;
  max-width: 1080px;
  margin-inline: auto;
}
.l-container.--small {
  max-width: 800px;
}
.l-headingPrimary {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-headingPrimary [lang="ja"] {
  font-size: 16px;
  line-height: 1.75;
}
.l-headingPrimary.--light {
  color: var(--color-text-light);
}
@media screen and (min-width: 1024px) {
  .l-headingPrimary {
    gap: 14px;
  }
  .l-headingPrimary [lang="ja"] {
    font-size: 18px;
  }
}

.l-darkSection {
  color: var(--color-text-light);
  padding-block: 72px;
  border-radius: 40px;
  background-image: url("/assets/img/bg_about_sp.png");
  background-size: cover;
  background-position: top left;
}
@media screen and (min-width: 768px) {
  .l-darkSection {
    background-image: url("/assets/img/bg_about.png");
    background-position: center left;
  }
}
@media screen and (min-width: 1024px) {
  .l-darkSection {
    padding-block: 120px;
  }
}

/* header */
.l-header {
  width: 100%;
  position: fixed;
  z-index: 5;
}
.l-headerContainer {
  min-height: 64px;
  padding-inline: 16px 0;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 25px),
    calc(100% - 25px) 100%,
    0 100%
  );
}
.l-header.is-sticky,
.l-header.is-menu-open {
  filter: drop-shadow(0 8px 8px rgb(30 40 89 / 10%));
}
.l-header.is-sticky .l-headerContainer,
.l-header.is-menu-open .l-headerContainer {
  background: linear-gradient(
    to right,
    var(--color-bg-white) 0%,
    var(--color-bg-white) calc(100% - 25px),
    transparent calc(100% - 25px),
    transparent 100%
  );
}
.l-headerContainer::after {
  content: "";
  display: inline-block;
  width: 132px;
  height: 64px;
  background-image: url("/assets/img/bg_header_menu_button.svg");
  background-size: cover;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  right: -32px;
}
.l-header.is-active .l-headerContainer {
  background: linear-gradient(
    to right,
    var(--color-bg-white) 0%,
    var(--color-bg-white) calc(100% - 25px),
    transparent calc(100% - 25px),
    transparent 100%
  );
  filter: drop-shadow(0 8px 8px rgb(30 40 89 / 8%));
}
.l-headerLogo a {
  display: block;
  width: fit-content;
  height: 56px;
}
.l-headerLogo img {
  display: block;
  width: auto;
  height: 100%;
}
.l-headerNavWrapper {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-image: url("/assets/img/bg_menu_sp.jpg");
  background-size: cover;
  background-position: top left;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-headerNavWrapper.is-active {
  opacity: 1;
  visibility: visible;
}

/* メニュー展開中のスクロール制御 */
body.is-menu-open {
  overflow: hidden;
}
.l-headerNavWrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 480px;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--color-bg-white) 71.63%
  );
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.l-headerNav {
  padding-top: calc(56px + 64px);
  padding-inline: 16px;
  padding-bottom: 132px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}
.l-headerNavWrapper.is-active .l-headerNav {
  opacity: 1;
  transform: translateY(0);
}
.l-headerMenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-headerMenu a {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  display: inline-block;
  transition: var(--hover);
  position: relative;
}
.l-headerMenu a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: var(--color-bg-link);
  transition: var(--hover);
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-headerCta {
  margin-top: 72px;
  text-align: center;
}
.l-headerCta .c-button {
  min-height: 56px;
}
.l-headerMenuButton {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  z-index: 1;
}
.l-headerMenuButton img {
  width: 32px;
  transition: opacity 0.3s ease;
}
.l-headerMenuButton img:last-child {
  opacity: 0;
  position: absolute;
}
.l-headerMenuButton.is-active img:first-child {
  opacity: 0;
}
.l-headerMenuButton.is-active img:last-child {
  opacity: 1;
}
@media (hover: hover) {
  .l-headerMenu a:hover {
    color: var(--color-bg-link);
  }
  .l-headerMenu a:hover::before {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    padding-inline: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header.is-sticky,
  .l-header.is-menu-open {
    filter: drop-shadow(0 2px 20px rgb(0 0 9 / 10%));
  }
  .l-header.is-sticky {
    background: var(--color-bg-white);
  }
  .l-headerContainer {
    padding-left: 0;
    min-height: 96px;
    clip-path: inherit;
  }
  .l-headerContainer::after {
    display: none;
  }
  .l-headerLogo a {
    height: 88px;
  }
  .l-headerNavWrapper {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    background-image: inherit;
    position: static;
  }
  .l-headerNavWrapper::after {
    display: none;
  }
  .l-headerNav {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 1;
    transform: none;
    min-height: auto;
    max-height: none;
    overflow-y: visible;
  }
  .l-headerMenu {
    flex-direction: row;
    gap: 40px;
  }
  .l-headerMenu a {
    font-size: 14px;
    padding: 8px 0;
  }
  .l-headerCta {
    margin-top: 0;
  }
  .l-headerCta .--spOnly {
    display: none;
  }
  .l-headerCta .c-button {
    min-width: auto;
    min-height: 40px;
    padding-inline: 16px;
    padding-block: 0;
  }
  .l-headerCta .c-button.--external {
    padding-right: calc(16px + 12px + 8px);
  }
  .l-headerCta .c-button.--external::after {
    right: 16px;
  }
  .l-headerMenuButton {
    display: none;
  }
}

/* footer */
.l-footer {
  padding-block: 72px 108px;
  margin-top: auto;
  position: relative;
  z-index: 0;
}

.l-footerUpper {
  padding-bottom: 56px;
}
.l-footerBottom {
  border-top: 1px solid var(--color-border-main);
  padding-top: 56px;
}
.l-footerSponsorGroup {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-footerSponsorItem {
  display: flex;
}
.l-footerSponsorTitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  width: 68px;
  flex-shrink: 0;
}
.l-footerSponsorLogoWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.l-footerSponsorLogo {
  width: 200px;
}
.l-footerSponsorLogoLink {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-white);
}
.l-footerSponsorLogoLink img {
  display: block;
  height: 100%;
  object-fit: contain;
}
.l-footerSponsorLogoLink.--igda img {
  width: 168px;
}
.l-footerSponsorLogoLink.--jcsf img {
  width: 82px;
}
.l-footerSponsorLogoLink.--bunka img {
  width: 182px;
}
.l-footerSponsorDescription {
  font-size: 10px;
}
.l-footerBottomContents {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.l-footerLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.l-footerSns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footerSnsTitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.l-footerSnsList {
  list-style: none;
  display: flex;
  gap: 8px;
}
.l-footerSnsList li {
  width: 40px;
}
.l-footerPrivacy {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.l-footerPrivacy::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: var(--color-border-dark);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.l-footerCopyright {
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}
.l-footerCopyright small {
  font-size: inherit;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-block: 120px 94px;
  }
  .l-footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 52px;
    background-color: var(--color-bg-white);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
  }

  .l-footerUpper {
    padding-bottom: 64px;
  }
  .l-footerBottom {
    padding-top: 64px;
  }
  .l-footerSponsorGroup {
    gap: 40px;
  }
  .l-footerSponsorItem {
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .l-footerSponsorItem + .l-footerSponsorItem {
    padding-left: 40px;
    position: relative;
  }
  .l-footerSponsorItem + .l-footerSponsorItem::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 40px;
    background-color: var(--color-border-dark);
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .l-footerSponsorTitle {
    font-size: 16px;
    width: auto;
  }
  .l-footerSponsorLogoWrapper {
    gap: 40px;
  }
  .l-footerSponsorLogoLink {
    height: 64px;
  }
  .l-footerSponsorLogoLink.--igda img {
    width: 183px;
  }
  .l-footerSponsorLogoLink.--jcsf img {
    width: 86px;
  }
  .l-footerSponsorLogoLink.--bunka img {
    width: 196px;
  }
  .l-footerSponsorDescription {
    font-size: 14px;
  }
  .l-footerBottomContents {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .l-footerSnsTitle,
  .l-footerPrivacy,
  .l-footerCopyright {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .l-footer a {
    transition: var(--hover);
  }
  .l-footer a:hover {
    opacity: 0.7;
  }
}

/* ----------------------------
  Components
 ---------------------------- */
/* Button */
.c-button {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  display: inline-flex;
  align-items: center;
  min-width: 248px;
  min-height: 56px;
  padding-block: 12px;
  padding-inline: 24px;
  border-radius: 32px;
  position: relative;
  background-color: var(--color-bg-navy);
  background-blend-mode: multiply;
  transition: var(--hover);
}
.c-button.--external {
  padding-right: calc(26px + 12px + 8px);
}
.c-button.--external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("/assets/img/icon_external_wh.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 26px;
  translate: 0 -50%;
}
.c-button.--pdf {
  padding-right: calc(14px + 24px + 8px);
}
.c-button.--pdf::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/assets/img/icon_pdf_wh.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
}
.c-button.--back {
  min-width: fit-content;
  gap: 8px;
}
.c-button.--back::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/assets/img/icon_arrow_back_wh.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .c-button:hover {
    opacity: var(--opacity);
  }
}
@media screen and (min-width: 1024px) {
  .c-button {
    font-size: 16px;
    min-height: 64px;
  }
}

/* text link */
.c-textLink {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--hover);
}
.c-textLink__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 2px;
  position: relative;
}
.c-textLink__text::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-radius: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: var(--hover);
  opacity: 0;
}
.c-textLink__icon,
.c-textLink__icon svg {
  display: block;
}
.c-textLink__icon {
  width: 32px;
  height: 32px;
}
@media (hover: hover) {
  .c-textLink:hover {
    color: #006fc9;
  }
  .c-textLink:hover .c-textLink__text::after {
    opacity: 1;
  }
}

.c-frame {
  padding: 32px 24px;
  border-radius: 16px;
}
.c-frame.--white {
  color: var(--color-text-main);
  background-color: rgb(255 255 255 / 50%);
}
.c-frame.--black {
  color: var(--color-text-light);
  background-color: rgb(38 39 61 / 75%);
}
@media screen and (min-width: 1024px) {
  .c-frame {
    padding: 40px;
    border-radius: 24px;
  }
}

.c-personCardList {
  list-style: none;
  display: grid;
  gap: 24px;
}
.c-personCard {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
}
.c-personCardButton {
  position: relative;
}
.c-personCardButton::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/assets/img/icon_plus_round.svg");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 6px;
  left: 6px;
  transition: var(--hover);
}
.c-personCardImage {
  order: 0;
}
.c-personCardContents {
  order: 1;
}
.c-personCardName {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.c-personCardText {
  font-size: 12px;
  line-height: 1.75;
}
@media (hover: hover) {
  .c-personCardButton:hover::before {
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) {
  .c-personCardList {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .c-personCardName {
    font-size: 24px;
  }
  .c-personCardText {
    font-size: 14px;
  }
}

/* modal */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modalOverlay {
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 90%);
}
.c-modalContainer {
  color: var(--color-text-light);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  background-color: var(--color-bg-dark);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 16px;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-modal.is-active .c-modalContainer {
  transform: scale(1);
  opacity: 1;
}
.c-modalClose {
  position: absolute;
  top: 0;
  right: -8px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  translate: 0 -50%;
}
.c-modalNavActions {
  border-top: 1px solid rgb(217 217 217 / 25%);
  padding-top: 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.c-modalNav {
  color: var(--color-text-light);
  font-family: var(--font-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-modalNav.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.c-modalContent {
  padding: 40px 24px;
  max-height: calc(90vh - 48px);
  overflow-y: auto;
}
.c-modalItem {
  display: none;
}
.c-modalItem.is-active {
  display: block;
}
.c-modalHeader {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.c-modalImage {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
}
.c-modalImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-modalInfo {
  flex: 1;
}
.c-modalName {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.c-modalTitle {
  font-size: 12px;
  line-height: 1.75;
}
.c-modalBody {
  font-size: 12px;
  line-height: 1.75;
  min-height: 200px;
}
.c-modalBody * {
  margin-bottom: 16px;
}
.c-modalBody *:last-child {
  margin-bottom: 0;
}
.c-modalBodyTitle {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 8px;
}

@media screen and (min-width: 1024px) {
  .c-modal {
    padding: 16px;
  }
  .c-modalContainer {
    border-radius: 32px;
  }
  .c-modalClose {
    top: -8px;
    translate: inherit;
  }
  .c-modalContent {
    padding: 56px 40px 50px;
    max-height: calc(90vh - 64px);
  }
  .c-modalHeader {
    gap: 24px;
    margin-bottom: 40px;
  }
  .c-modalName {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .c-modalTitle {
    font-size: 14px;
  }
  .c-modalBodyTitle {
    font-size: 20px;
  }
  .c-modalBody {
    font-size: 14px;
    min-height: 120px;
  }
  .c-modalNavActions {
    padding-top: 40px;
  }
}

/* table */
.c-tableSimple {
}
.c-tableSimpleTitle {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  padding: 16px;
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-left: 1px solid rgb(255 255 255 / 10%);
  border-right: 1px solid rgb(255 255 255 / 10%);
}
.c-tableSimpleText {
  font-size: 14px;
  line-height: 1.75;
  padding: 16px;
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border-gray);
  border-left: 1px solid var(--color-border-gray);
  border-right: 1px solid var(--color-border-gray);
}
.c-tableSimpleText .--small {
  font-size: 12px;
  padding-left: 0.25em;
}
.c-tableSimple .--noList {
  list-style: none;
}
.c-tableSimple .--noStyle {
  display: flex;
}
.c-tableSimple .--colorRed {
  color: var(--color-text-red);
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-tableSimpleRow {
    display: grid;
    grid-template-columns: 244px 1fr;
  }
  .c-tableSimpleTitle {
    border-right: 0;
  }
  .c-tableSimpleRow:last-child .c-tableSimpleTitle {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }
  .c-tableSimpleRow:last-child .c-tableSimpleText {
    border-bottom: 1px solid var(--color-border-gray);
  }
}
@media screen and (min-width: 1024px) {
  .c-tableSimpleTitle {
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  .c-tableSimpleText {
    font-size: 16px;
  }
  .c-tableSimpleText .--small {
    font-size: 14px;
  }
}

/* ----------------------------
  Utility
 ---------------------------- */
/* u-list-note */
/* u-list-dot */
.u-list-note,
.u-list-dot {
  font-size: 12px;
  list-style: none;
  line-height: 1.75;
}
.u-list-note li,
.u-list-dot li {
  padding-left: 1.25em;
  position: relative;
}
.u-list-note li::before,
.u-list-dot li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.u-list-note li::before {
  content: "※";
}
.u-list-dot li::before {
  content: "・";
}

/* u-list-dotNote */
.u-list-dotNote {
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  line-height: 1.75;
}
.u-list-dotNote li {
  padding-left: 12px;
  position: relative;
}
.u-list-dotNote li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgOCA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy40MjgzNiAwLjU2MTUyM0g0LjU3MTY0VjIuODQ3MzRINS43MTQxOFYxLjcwNDhINi44NTc0NlYyLjg0NzM0SDUuNzE0MThWMy45ODk4OEg4VjUuMTMzMTZINS43MTQxOFY2LjI3NTdINi44NTc0NlY3LjQxODk4SDUuNzE0MThWNi4yNzU3SDQuNTcxNjRWOC41NjE1MkgzLjQyODM2VjYuMjc1N0gyLjI4NTgyVjcuNDE4OThIMS4xNDI1NFY2LjI3NTdIMi4yODU4MlY1LjEzMzE2SDBWMy45ODk4OEgyLjI4NTgyVjIuODQ3MzRIMS4xNDI1NFYxLjcwNDhIMi4yODU4MlYyLjg0NzM0SDMuNDI4MzZWMC41NjE1MjNaIiBmaWxsPSIjMjEyMTIxIi8+Cjwvc3ZnPgo=");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 10px;
  left: 0;
}

/* u-list-check */
.u-list-check {
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  line-height: 1.75;
  display: grid;
  gap: 8px;
}
.u-list-check li {
  padding-left: 30px;
  position: relative;
}
.u-list-check li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/assets/img/icon_check_round.png");
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 6px;
  left: 4px;
}

@media screen and (min-width: 1024px) {
  .u-list-note,
  .u-list-dot {
    font-size: 14px;
  }
  .u-list-dotNote {
    font-size: 16px;
  }
  .u-list-dotNote li::before {
    top: 11px;
  }
  .u-list-check {
    font-size: 18px;
    gap: 16px;
  }
  .u-list-check li {
    padding-left: 36px;
  }
  .u-list-check li::before {
    width: 24px;
    height: 24px;
    top: 4px;
  }
}

/* text color */
.u-text-red {
  color: var(--color-text-red);
}

/* links */
.u-text-link {
  transition: var(--hover);
}
.u-text-link.--simple {
  color: inherit;
  text-decoration: none;
}
.u-text-link.--external {
  display: inline-flex;
  align-items: center;
}
.u-text-link.--external::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-image: url("/assets/img/icon_external_bl.svg");
  background-size: contain;
  background-position: center;
  margin-left: 0.5em;
}
.u-arrowLink {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--hover);
}
.u-arrowLink::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("/assets/img/icon_arrow_right_blk.svg");
  background-size: contain;
  background-position: center;
  transition: background-image 0.3s ease;
}
.u-arrowLink.--external::after,
.u-arrowLink.--pdf::after,
.u-arrowLink.--doc::after,
.u-arrowLink.--xls::after,
.u-arrowLink.--ppt::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.u-arrowLink.--external::after {
  background-image: url("/assets/img/icon_external_bl.svg");
  width: 14px;
  height: 14px;
}
.u-arrowLink.--pdf::after {
  background-image: url("/assets/img/icon_pdf_blk.svg");
}
.u-arrowLink.--doc::after {
  background-image: url("/assets/img/icon_doc_blk.svg");
}
.u-arrowLink.--xls::after {
  background-image: url("/assets/img/icon_xls_blk.svg");
}
.u-arrowLink.--ppt::after {
  background-image: url("/assets/img/icon_ppt_blk.svg");
}
.u-arrowLink__underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.u-arrowLink__underline::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: var(--color-bg-link);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: var(--hover);
}
.u-arrowLink small {
  font-size: 10px;
}
@media (hover: hover) {
  .u-text-link.--simple:hover,
  .u-text-link.--external:hover {
    opacity: var(--opacity);
  }
  .u-arrowLink:hover {
    color: var(--color-bg-link);
  }
  .u-arrowLink:hover::before {
    background-image: url("/assets/img/icon_arrow_right_blu.svg");
  }
  .u-arrowLink.--external:hover::after {
    background-image: url("/assets/img/icon_external_blu.svg");
  }
  .u-arrowLink.--pdf:hover::after {
    background-image: url("/assets/img/icon_pdf_blu.svg");
  }
  .u-arrowLink.--doc:hover::after {
    background-image: url("/assets/img/icon_doc_blu.svg");
  }
  .u-arrowLink.--xls:hover::after {
    background-image: url("/assets/img/icon_xls_blu.svg");
  }
  .u-arrowLink.--ppt:hover::after {
    background-image: url("/assets/img/icon_ppt_blu.svg");
  }
  .u-arrowLink__underline:hover::before {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .u-arrowLink {
    font-size: 16px;
  }
  .u-arrowLink::before {
    width: 32px;
    height: 32px;
  }
  .u-arrowLink.--external::after {
    width: 16px;
    height: 16px;
  }
  .u-arrowLink.--pdf::after,
  .u-arrowLink.--doc::after,
  .u-arrowLink.--xls::after,
  .u-arrowLink.--ppt::after {
    width: 24px;
    height: 24px;
  }
  .u-arrowLink small {
    font-size: 12px;
  }
}
