@charset "utf-8";
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/tyo/common/font/NotoSansJP-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Zen Old Mincho';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/tyo/common/font/ZenOldMincho-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url(/tyo/common/font/MaterialSymbolsRounded.woff2) format('woff2');
}
/*★ リセット ★*/
.main {
  div:not([class])::after {
    content: none;
  }
  a {
    text-decoration: none;
  }
  .is-em {
    font-weight: bold;
  }
}
#topbuttonApp, #searchArea {
  position: relative;
  z-index: 1;
}
figure {
  margin: 0;
}
/*------------------------------------------------*/
/*★ ページスタイル設定 ★*/
#hisApp {
  position: relative;
  overflow: hidden;
}
:root {
  --default-font-size-pc: 16px;
  --default-font-size-sp: calc(13vw / 3.75);
  --default-font-size: min(var(--default-font-size-sp), var(--default-font-size-pc));
  --default-font-lh: 1.5;
  --default-font-lh2: 1.3;
  --default-width-sp-val: 336;
  --default-width-pc-val: 1104;
  --default-width-sp: (336vw / 3.75);
  --default-width-pc: 1104px;
  --default-width: min(var(--default-width-sp), var(--default-width-pc));
  --default-width2: min(100%, var(--default-width-pc));
  --default-bg-width-pc: max(100%, 1920px);
  --default-ff-min: "Zen Old Mincho", serif;
  --default-ff-icon: "Material Symbols Rounded";
  --default-ico-arrow-r: "\e5e1";
  --default-ico-arrow-d: "\e313";
  --default-ico-blank: "\e89e";
  --default-color-blue: #3C4EA7;
  --default-color-blue2: #32439A;
  --default-color-yellow: #FFEC5D;
  --default-radius: 16px;
  --default-hover-speed: .3s;
  --default-hover-opacity: .8;
  --default-hover-transition-opacity: opacity var(--default-hover-speed);
  --default-hover-transition-background: background var(--default-hover-speed);
  --default-hover-transition-color: color var(--default-hover-speed);
}
.material-symbols-rounded {
  font-family: var(--default-ff-icon);
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
.main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--default-font-size);
  color: #000;
  line-height: var(--default-font-lh);
  padding-bottom: 0 !important;
  .is-mark {
    background: linear-gradient(transparent 50%, var(--default-color-yellow) 50%, var(--default-color-yellow) 100%);
  }
}
.is-inline-block {
  display: inline-block;
}
.is-indent-1, .section [class*="notes--item"] {
  text-indent: -1em;
  padding-left: 1em;
}
.is-sp .is-dsp-pc, .is-pc .is-dsp-sp {
  display: none !important;
}
/*.base-button*/
.base-button {
  .base-button__link {
    min-width: auto;
    background: var(--btn-bg, var(--default-color-blue));
    border: 2px solid var(--default-color-blue);
    line-height: var(--default-font-lh2);
    height: max-content;
    font-size: min((13vw / 3.75), 16px);
    color: var(--btn-fc, #fff);
    .is-pc & {
      line-height: var(--default-font-lh);
    }
    &:not(:has(.ui-static-icon)) {
      padding: min((6vw / 3.75), 6px) min((38vw / 3.75), 38px);
    }
  }
}
/*.base-textlink*/
.base-textlink__texts {
  display: flex;
  align-items: center;
  gap: .25em;
  color: var(--ui-static-unleash-blue-100);
  line-height: 1.2;
  .ui-static-icon {
    color: inherit;
  }
}
/*------------------------------------------------*/
/*★ ＝＝ hover ＝＝ ★*/
@media (hover : hover) and (pointer : fine) {
  .base-button__link {
    &:hover {
      --btn-bg: #fff;
      --btn-fc: var(--default-color-blue);
    }
  }
  .base-textlink__link {
    &:hover {
      .base-textlink__text {
        text-decoration: underline;
        text-underline-offset: .2em;
      }
    }
  }
}