@charset "utf-8";
@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');
}
@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: 900;
  font-display: swap;
  src: url(/tyo/common/font/ZenOldMincho-900.woff2) format('woff2');
}
/*★ リセット ★*/
.main {
  div:not([class])::after {
    content: none;
  }
  a {
    text-decoration: none;
  }
  .is-em {
    font-weight: bold;
  }
}
#searchArea {
  position: relative;
  z-index: 1;
}
#topbuttonApp {
  position: relative;
  z-index: 3;
}
/*------------------------------------------------*/
/*★ ページスタイル設定 ★*/
#hisApp {
  position: relative;
  overflow: hidden;
}
:root {
  --default-color-orange: #ec6500;
  --default-font-size-pc: 18px;
  --default-font-size-sp: calc(32vw / 7.5);
  --default-font-size: min(var(--default-font-size-sp), var(--default-font-size-pc));
  --default-font-lh-m: 1.5;
  --default-font-lh-l: 1.8;
  --default-font-lh-s: 1.3;
  --default-width-sp-val: 670;
  --default-width-pc-val: 992;
  --default-width-sp: (670vw / 7.5);
  --default-width-pc: 992px;
  --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-icon: "Material Symbols Rounded";
  --default-ico-arrow-r: "\e5e1";
  --default-ico-blank: "\e89e";
  --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-size: var(--default-font-size);
  color: var(--ui-static-black);
  line-height: var(--default-font-lh);
  padding-bottom: 0 !important;
  a[class*="link"] {
    color: inherit;
  }
}
.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;
}
.js-accordion-button {
  cursor: pointer;
  + * {
    display: none;
  }
}
.js-toggleControl:not([class*="active"]) {
  cursor: pointer;
}
/*.float-button*/
.float-button {
  width: min((108vw / 3.75), 160px);
  height: min((109vw / 3.75), 161px);
  position: fixed;
  top: min((20vw / 3.75), 33px);
  right: 14px;
  translate: var(--floatbtn-posi-x, 200%) 0;
  transition: translate .7s;
  z-index: 10;
  &.is-fixed:not(.is-over) {
    --floatbtn-posi-x: 0
  }
}
.float-button__link {
  display: block;
}
.float-button__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*.base-picture*/
.base-picture__image {
  width: 100%;
  height: 100%;
}
/*.base-button*/
.base-button {
  text-align: center;
  a.ui-static-button {
    width: min((590vw / 7.5), 400px);
    height: auto;
    min-height: min((64vw / 7.5), 60px);
    font-family: "Zen Old Mincho";
    font-weight: 900;
    font-size: min((28vw / 7.5), 20px);
    background: var(--default-color-orange);
    color: #fff;
    border-radius: 100px;
    @media(width <861px) {
    }
  }
}
/*.base-textlink*/
.main .base-textlink__link {
  display: inline-block;
  color: inherit;
}
.base-textlink__texts {
  display: flex;
  align-items: center;
  gap: .1em;
  text-indent: initial;
  line-height: 1.2;
  margin-right: .2em;
  .ui-static-icon {
    text-indent: initial;
    color: inherit;
  }
  .ui-static-icon-size-small {
    font-size: 14px;
  }
}
.base-textlink__text {
  text-decoration: underline;
  text-underline-offset: .3em;
}

/*------------------------------------------------*/
/*★ ＝＝ hover ＝＝ ★*/
@media (hover : hover) and (pointer : fine) {
  .base-button .base-button__link {
    &:hover {
      background: #f4a366;
    }
  }
  .main .base-textlink__text {
    &:hover {
      text-decoration: none;
    }
  }
}