*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: break-word;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  border-width: 0;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(img[width][height], picture source[width][height]) {
  width: 100%;
  height: auto;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(body) {
  font-feature-settings: "palt" 1;
}

:where(svg, img, embed, object, iframe) {
  max-width: 100%;
}

:where(a) {
  text-decoration: none;
}

:root {
  color: #333333;
  font-size: 62.5%;
  min-width: 280px;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  min-width: 1024px;
}

/**
 * FORMS
 */
input[type=text],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=datetime],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local],
input[type=number],
input[type=range],
input[type=color],
input[type=file],
input[type=image] {
  padding: 4px 8px;
  font-size: 16px;
  background: none;
  border: 1px solid #acacac;
  border-radius: 0;
  outline: none;
}

select {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  outline: none;
}

select::-ms-expand {
  display: none;
}

.c-selectbox {
  padding: 1em 1.5em 1em 0.5em;
  cursor: pointer;
}

.c-selectbox__outer {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid #acacac;
  border-radius: 8px;
}

.c-selectbox__outer::before {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: inline-block;
  width: 0;
  height: 0;
  pointer-events: none;
  content: "";
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 8px 4px 0;
  transform: translateY(-50%);
}

textarea {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 5em;
  padding: 0.25em 0.5em;
  font-family: inherit;
  font-size: 16px;
  vertical-align: bottom;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  background: transparent;
  border: 1px solid #acacac;
  outline: none;
}

button,
input[type=submit] {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  padding-left: calc(12px + 0.5em) !important;
}

input[type=radio] + label::before {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid #acacac;
  border-radius: 50%;
}

input[type=radio]:checked + label::after {
  position: absolute;
  top: calc(50% - 4px);
  left: 3px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  background: #acacac;
  border-radius: 50%;
}

@keyframes border-animation {
  from {
    background-position: 0 0, -24px 0, 100% -24px, 0 100%;
  }
  to {
    background-position: 0 -24px, 0 0, 100% 0, -24px 100%;
  }
}
.l-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.l-loading__loader {
  width: 30px;
  aspect-ratio: 1;
  background: #ffcdb4;
  display: grid;
  transform-origin: top right;
  animation: load-anime1 4s infinite linear;
}
.l-loading__loader::before, .l-loading__loader::after {
  content: "";
  grid-area: 1/1;
  background: #ffa070;
  transform-origin: inherit;
  animation: inherit;
  animation-name: load-anime2;
  animation-duration: 1s;
}
.l-loading__loader::after {
  background: var(--main-color);
  --s:60deg;
}

.is-loaded .l-loading {
  animation: fade-out 0.5s forwards;
}

@keyframes fade-out {
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes load-anime1 {
  0%, 5% {
    transform: rotate(0);
  }
  25%, 30% {
    transform: rotate(90deg);
  }
  50%, 55% {
    transform: rotate(180deg);
  }
  75%, 80% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load-anime2 {
  50% {
    transform: rotate(var(--s, 30deg));
  }
  100% {
    transform: rotate(0);
  }
}
.l-body {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: calc(100vw - var(--scroll-bar-width));
  height: 100dvh;
}
.l-body--submenu {
  justify-content: flex-end;
  width: 100%;
}

.l-main {
  overflow: hidden;
  position: relative;
  flex: 1;
}
.l-main iframe {
  width: 100%;
  height: 100%;
}

.navi-link {
  display: none;
}

.l-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 500px;
  background-color: #fafafa;
  border-left: 4px solid var(--main-color);
  box-shadow: -4px 0 16px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.l-sidebar > * {
  width: 200px;
}
.l-sidebar__logo {
  padding: 16px 28px 16px 20px;
}
.l-sidebar__logo__heading {
  display: block;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5em;
  line-height: 1.2;
}
.l-sidebar__navi {
  flex: 1;
  height: 100%;
  overflow-y: scroll;
}
.l-sidebar__navi__list label {
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: block;
  font-size: 1.2rem;
  padding: 1.2rem;
  transition: background-color 0.2s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.l-body--submenu .l-sidebar__navi__list label {
  color: #ffffff;
}
.l-sidebar__navi__list label span {
  font-size: 1.4rem;
  font-weight: bold;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}
.l-sidebar__navi__list label::before {
  content: attr(data-submenu-id);
}
.l-sidebar__navi__list label:hover {
  background-color: #fd8b52;
}
.l-sidebar__navi__list label:has(:checked) {
  cursor: initial;
  position: relative;
  color: #ffffff;
  background-color: var(--main-color);
}
.l-sidebar__navi__list label:has(:checked) .navi-link {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.7rem 0;
  background-color: rgba(0, 0, 0, 0.075);
  transition: background-color 0.2s;
  border-radius: 4px;
}
.l-sidebar__navi__list label:has(:checked) .navi-link svg {
  margin-right: 0.4rem;
}
.l-sidebar__navi__list label:has(:checked) .navi-link svg path {
  fill: #ffffff;
}
.l-sidebar__navi__list label:has(:checked) .navi-link span {
  font-weight: normal;
}
.l-sidebar__navi__list label:has(:checked) .navi-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.l-sidebar__navi__list label:has(:checked) + .l-sidebar__subnavi {
  display: flex;
  flex-direction: column;
}
.l-sidebar__navi__list label:has(:checked) + .l-sidebar__subnavi > li:not(:first-child) {
  margin-top: 4px;
}
.l-sidebar__navi__list:nth-child(even) {
  background-color: #ececec;
}
.l-sidebar__subnavi {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 4px;
  width: 296px;
  max-height: 100dvh;
  overflow: auto;
}
.l-sidebar__subnavi__list label {
  background-color: #f3f3f3;
}
.l-sidebar__subnavi__list label::before {
  content: attr(data-page-id);
}
.l-sidebar__subnavi__list label:has(:checked) {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.l-sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 296px;
  height: 100%;
  background-color: var(--main-color);
}

.p-container h1 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
}

.p-main-section {
  margin-top: 1.6rem;
}
.p-main-section + .p-main-section {
  margin-top: 3.4rem;
}
.p-main-section > dl:not(:first-child) {
  margin-top: 3.4rem;
}
.p-main-section > dl > dt {
  font-size: 2.4rem;
  font-weight: bold;
}
.p-main-section > dl > dd {
  margin-top: 0.4rem;
  padding: 0.4rem 0 0.8rem 1.5rem;
  border-left: 1px solid #999999;
}

.p-vscode {
  display: flex;
  flex-direction: column;
  background-color: rgba(31, 31, 31, 0.975);
  color: #cacaca;
  width: calc(100vw - 80px);
  height: calc(100dvh - 48px);
  overflow: hidden;
  position: absolute;
  top: 24px;
  left: 40px;
  z-index: 3;
  border-radius: 4px;
}
.p-vscode .p-vscode__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #3f3f3f;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-vscode .p-vscode__header .p-vscode__header__left .p-vscode__header__left__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 32px;
}
.p-vscode .p-vscode__header .p-vscode__header__left .p-vscode__header__left__item {
  padding: 0 6px;
}
@media (width <= 699px) {
  .p-vscode .p-vscode__header .p-vscode__header__left .p-vscode__header__left__item:not(:first-child) {
    display: none;
  }
}
.p-vscode .p-vscode__header .p-vscode__header__left .p-vscode__header__left__logo {
  width: 20px;
}
.p-vscode .p-vscode__header .p-vscode__header__right .p-vscode__header__right__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 32px;
}
.p-vscode .p-vscode__header .p-vscode__header__right .p-vscode__header__right__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding: 0 16px;
}
.p-vscode .p-vscode__header .p-vscode__header__right .p-vscode__header__right__item span {
  font-size: 24px;
}
.p-vscode .p-vscode__header .p-vscode__header__right .p-vscode__header__right__item span.small {
  font-size: 20px;
}
.p-vscode .p-vscode__body {
  flex: 1;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow: auto;
}

.p-background {
  background-color: #fd8b52;
  background-image: url(./../images/common/background-suisai.png);
  background-position: center;
  background-size: auto;
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-background::after {
  content: "";
  border-style: solid;
  border-width: 0 0 1920px 4000px;
  border-color: transparent transparent #ff7029 transparent;
  position: absolute;
  bottom: 0;
  left: 24px;
  opacity: 1;
}
.p-background .p-background__boy {
  position: absolute;
  bottom: 0;
  left: 24px;
  filter: drop-shadow(-1px -1px 2px #000000);
  width: auto;
  height: 100%;
  opacity: 1;
}
.p-background .p-background__text {
  position: absolute;
  bottom: 0;
  left: 600px;
  z-index: 2;
  width: calc(100% - 700px);
  height: 100%;
  opacity: 1;
}
@media (width <= 1200px) {
  .p-background .p-background__text {
    width: auto;
    left: auto;
    right: 0;
  }
}

.opening-animation .p-vscode {
  animation: 1s disappear 13s ease-in both;
  background-color: rgb(31, 31, 31);
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 0;
  border-radius: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.opening-animation .p-vscode__body code {
  font-size: 2.4rem;
}
.opening-animation .p-vscode .js-typing {
  display: inline-block;
  width: 0;
  overflow: hidden;
  line-height: 1;
}
.opening-animation .p-vscode .js-typing.js-typing1 {
  animation: 0s appear 3s linear both;
  margin-left: 4px;
}
.opening-animation .p-vscode .js-typing.js-typing2 {
  animation: 0s appear 3.5s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing3 {
  animation: 0s appear 4s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing4 {
  animation: 0s appear 4.5s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing5 {
  animation: 0s appear 5s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing6 {
  animation: 0s appear 6s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing7 {
  animation: 0s appear 7s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing8 {
  animation: 0s appear 7.5s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing9 {
  animation: 0s appear 8s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing10 {
  animation: 0s appear 8.5s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing11 {
  animation: 0s appear 9s linear both;
}
.opening-animation .p-vscode .js-typing.js-typing12 {
  animation: 0s appear 10s linear both;
}
.opening-animation .p-vscode .js-typing-cursor {
  animation: flash 1s linear both 13;
  width: 10px;
  display: inline-block;
  margin-left: -4px;
}
.opening-animation .p-background::after {
  left: 0;
  opacity: 0;
  animation: 1s move 15s linear both;
}
.opening-animation .p-background__boy {
  left: 0;
  opacity: 0;
  animation: 1s move 15.5s linear both;
}
.opening-animation .p-background__text {
  bottom: -24px;
  opacity: 0;
  animation: 0.5s move-top 17.5s linear both;
}

@keyframes flash {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes appear {
  from {
    width: 0;
  }
  to {
    width: 0.5em;
  }
}
@keyframes disappear {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(90deg);
  }
}
@keyframes move {
  from {
    left: 24px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes move-top {
  from {
    bottom: 24px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.p-display__heading {
  background-color: rgba(202, 202, 202, 0.75);
  color: black;
  padding: 1rem;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
}
.p-display__body {
  background-color: rgba(255, 255, 255, 0.1);
}
.p-display__body--padding {
  padding: 1.5rem 1rem;
}

.u-mt05em {
  margin-top: 0.75em !important;
}

.u-mt1em {
  margin-top: 1.5em !important;
}/*# sourceMappingURL=style.css.map */