@charset "UTF-8";
:root {
  --global-text-color: black;
  --global-text-color-hover: white;
  --color-bg: #ffffff;
  --side-window-bg: #b3eca8;
  --color-active: #b3eca8;
  --color-active-dark: #7dac74;
  --bg-hightlight: rgb(74, 128, 120);
  --bg-hightlight-dark: rgb(84, 104, 101);
  --mobile-width: 750px;
  --laptop-width: 1280px;
  --header-height: 80px;
  --main-top-margin: calc(var(--header-height) + 20px);
  --color-break: pink;
  --color-overlay: rgba(0, 0, 0, 0.25);
  --color-inactive: rgb(179, 179, 179);
  --color-reminder: rgb(217, 255, 216);
  --color-warning: rgb(255, 100, 100);
  --color-disabled: rgb(141, 141, 141);
  --border-color: rgba(0, 0, 0, 1);
  --color-lightgrey: rgb(223, 223, 223);
  --color-grey: rgb(106, 106, 106);
  --table-shadow: 0 0 5px grey;
  --table-row-color: rgb(238, 238, 238);
  --table-row-alt: white;
  --table-row-hover: rgb(221, 221, 221);
  --column-mobile-height: 50px;
  --section-margin: 20px;
  --side-window-width: 250px;
  --font-default: 14px;
}
@media screen and (max-width: 750px) {
  :root {
    --header-height: 8rem;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --font-default: 2.1vw;
  }
}
@media screen and (max-width: var(--laptop-width)) {
  :root {
    --font-default: 0.3vw;
  }
}

:root {
  --size-small: 5px;
  --size-medium: 10px;
  --size-large: 15px;
  --font-small: 10px;
  --font-medium: 20px;
  --font-large: 30px;
}

@media screen and (max-width: 750px) {
  :root {
    --size-small: 0.2rem;
    --size-medium: 0.8rem;
    --size-large: 1.5rem;
    --font-small: 1.8rem;
    --font-medium: 2.3rem;
    --font-large: 3rem;
  }
}
html {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.6vw;
  }
}

main {
  margin-left: var(--header-height);
  margin-top: calc(var(--header-height) + var(--section-margin));
}
@media screen and (max-width: 750px) {
  main {
    margin-left: 0;
  }
}

h1 {
  font-size: var(--font-large);
  margin-top: var(--size-large);
  margin-bottom: var(--size-large);
}

h2 {
  font-size: var(--font-medium);
  margin-top: var(--size-medium);
  margin-bottom: var(--size-medium);
}

h3 {
  font-size: var(--font-medium);
}

hr {
  width: 100%;
  border-color: rgba(0, 0, 0, 0.5);
}

img[src=""] {
  background-image: URL("https://birth-htrib.co.jp/group_file/chubu/assets/common/no-img.png");
  background-size: 100%;
  background-position-y: center;
}

a:link {
  text-decoration: none;
}

section,
div,
head,
header,
button,
a,
input,
td,
select,
th,
* {
  font-family: "Noto Sans JP", sans-serif;
}

section {
  margin: 0 var(--section-margin);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-5 {
  padding: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-s {
  padding: var(--size-small);
}
.p-m {
  padding: var(--size-medium);
}
.p-l {
  padding: var(--size-large);
}
.p-xl {
  padding: 40px;
}

.pv-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pv-s {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pv-m {
  padding-top: var(--size-medium);
  padding-bottom: var(--size-medium);
}
.pv-l {
  padding-top: var(--size-large);
  padding-bottom: var(--size-large);
}
.pv-xl {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ph-5 {
  padding-left: 5px;
  padding-right: 5px;
}
.ph-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.ph-s {
  padding-left: var(--size-small);
  padding-right: var(--size-small);
}
.ph-m {
  padding-left: var(--size-medium);
  padding-right: var(--size-medium);
}
.ph-l {
  padding-left: var(--size-large);
  padding-right: var(--size-large);
}
.ph-xl {
  padding-right: 40px;
  padding-left: 40px;
}

.pl-5 {
  padding-left: 5px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-s {
  padding-left: var(--size-small);
}
.pl-m {
  padding-left: var(--size-medium);
}
.pl-l {
  padding-left: var(--size-large);
}

.pr-s {
  padding-right: var(--size-small);
}
.pr-m {
  padding-right: var(--size-medium);
}
.pr-l {
  padding-right: var(--size-large);
}
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}

.pt-s {
  padding-top: var(--size-small);
}
.pt-m {
  padding-top: var(--size-medium);
}
.pt-l {
  padding-top: var(--size-large);
}
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}

.pb-s {
  padding-bottom: var(--size-small);
}
.pb-m {
  padding-bottom: var(--size-medium);
}
.pb-l {
  padding-bottom: var(--size-large);
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .m-p-01 {
    padding: 0.1vw;
  }
}
.pos-sticky {
  position: sticky;
}
.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.pos-fixed {
  position: fixed;
}
.pos-initial {
  position: initial;
}

.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.max-hei-fit {
  max-height: fit-content;
}
.max-hei-100per {
  max-height: 100%;
}
.max-hei-75 {
  max-height: 75px;
}
.max-hei-100 {
  max-height: 100px;
}
.max-hei-auto {
  max-height: auto;
}
.max-hei-25 {
  max-height: 25px;
}
.max-hei-50 {
  max-height: 50px;
}
.max-hei-150 {
  max-height: 150px;
}
.max-hei-200 {
  max-height: 200px;
}
.max-hei-300 {
  max-height: 300px;
}
.max-hei-600 {
  max-height: 600px;
}
.max-hei-400 {
  max-height: 400px;
}
.max-hei-500 {
  max-height: 500px;
}
.max-hei-900 {
  max-height: 900px;
}
.max-hei-80per {
  max-height: 80%;
}
.max-hei-10p {
  max-height: 10%;
}
.max-hei-20p {
  max-height: 20%;
}
.max-hei-30p {
  max-height: 30%;
}
.max-hei-40p {
  max-height: 40%;
}
.max-hei-50p {
  max-height: 50%;
}
.max-hei-60p {
  max-height: 60%;
}
.max-hei-70p {
  max-height: 70%;
}
.max-hei-80p {
  max-height: 80%;
}
.max-hei-90p {
  max-height: 90%;
}
.max-hei-100p {
  max-height: 100%;
}

.min-hei-fit {
  min-height: fit-content;
}
.min-hei-100per {
  min-height: 100%;
}
.min-hei-75 {
  min-height: 75px;
}
.min-hei-100 {
  min-height: 100px;
}
.min-hei-auto {
  min-height: auto;
}
.min-hei-25 {
  min-height: 25px;
}
.min-hei-50 {
  min-height: 50px;
}
.min-hei-150 {
  min-height: 150px;
}
.min-hei-200 {
  min-height: 200px;
}
.min-hei-300 {
  min-height: 300px;
}
.min-hei-350 {
  min-height: 350px;
}
.min-hei-600 {
  min-height: 600px;
}
.min-hei-400 {
  min-height: 400px;
}
.min-hei-500 {
  min-height: 500px;
}
.min-hei-900 {
  min-height: 900px;
}
.min-hei-10p {
  min-height: 10%;
}
.min-hei-20p {
  min-height: 20%;
}
.min-hei-30p {
  min-height: 30%;
}
.min-hei-40p {
  min-height: 40%;
}
.min-hei-50p {
  min-height: 50%;
}
.min-hei-60p {
  min-height: 60%;
}
.min-hei-70p {
  min-height: 70%;
}
.min-hei-80p {
  min-height: 80%;
}
.min-hei-90p {
  min-height: 90%;
}
.min-hei-100p {
  min-height: 100%;
}

.hei-fit {
  height: fit-content;
}
.hei-100per {
  height: 100%;
}
.hei-75 {
  height: 75px;
}
.hei-100 {
  height: 100px;
}
.hei-125 {
  height: 125px;
}
.hei-auto {
  height: auto;
}
.hei-25 {
  height: 25px;
}
.hei-50 {
  height: 50px;
}
.hei-150 {
  height: 150px;
}
.hei-200 {
  height: 200px;
}
.hei-250 {
  height: 250px;
}
.hei-300 {
  height: 300px;
}
.hei-600 {
  height: 600px;
}
.hei-400 {
  height: 400px;
}
.hei-500 {
  height: 500px;
}
.hei-900 {
  height: 900px;
}
.hei-header {
  height: var(--header-height);
}
.hei-main {
  height: calc(100% - var(--header-height) - var(--section-margin));
}
.hei-10p {
  height: 10%;
}
.hei-20p {
  height: 20%;
}
.hei-30p {
  height: 30%;
}
.hei-40p {
  height: 40%;
}
.hei-50p {
  height: 50%;
}
.hei-60p {
  height: 60%;
}
.hei-70p {
  height: 70%;
}
.hei-80p {
  height: 80%;
}
.hei-90p {
  height: 90%;
}
.hei-100p {
  height: 100%;
}

@media screen and (max-width: 750px) {
  .m-height-fit {
    height: fit-content;
  }
}
.max-wid-fit {
  max-width: fit-content;
}
.max-wid-100per {
  max-width: 100%;
}
.max-wid-auto {
  max-width: auto;
}
.max-wid-25 {
  max-width: 25px;
}
.max-wid-50 {
  max-width: 50px;
}
.max-wid-100 {
  max-width: 100px;
}
.max-wid-125 {
  max-width: 125px;
}
.max-wid-150 {
  max-width: 150px;
}
.max-wid-200 {
  max-width: 200px;
}
.max-wid-300 {
  max-width: 300px;
}
.max-wid-600 {
  max-width: 600px;
}
.max-wid-400 {
  max-width: 400px;
}
.max-wid-500 {
  max-width: 500px;
}
.max-wid-800 {
  max-width: 800px;
}
.max-wid-900 {
  max-width: 900px;
}
.max-wid-10p {
  max-width: 10%;
}
.max-wid-20p {
  max-width: 20%;
}
.max-wid-30p {
  max-width: 30%;
}
.max-wid-40p {
  max-width: 40%;
}
.max-wid-50p {
  max-width: 50%;
}
.max-wid-60p {
  max-width: 60%;
}
.max-wid-70p {
  max-width: 70%;
}
.max-wid-80p {
  max-width: 80%;
}
.max-wid-90p {
  max-width: 90%;
}
.max-wid-100p {
  max-width: 100%;
}

.min-wid-fit {
  min-width: fit-content;
}
.min-wid-100per {
  min-width: 100%;
}
.min-wid-auto {
  min-width: auto;
}
.min-wid-25 {
  min-width: 25px;
}
.min-wid-50 {
  min-width: 50px;
}
.min-wid-100 {
  min-width: 100px;
}
.min-wid-125 {
  min-width: 125px;
}
.min-wid-150 {
  min-width: 150px;
}
.min-wid-200 {
  min-width: 200px;
}
.min-wid-300 {
  min-width: 300px;
}
.min-wid-600 {
  min-width: 600px;
}
.min-wid-400 {
  min-width: 400px;
}
.min-wid-500 {
  min-width: 500px;
}
.min-wid-900 {
  min-width: 900px;
}
.min-wid-10p {
  min-width: 10%;
}
.min-wid-20p {
  min-width: 20%;
}
.min-wid-30p {
  min-width: 30%;
}
.min-wid-40p {
  min-width: 40%;
}
.min-wid-50p {
  min-width: 50%;
}
.min-wid-60p {
  min-width: 60%;
}
.min-wid-70p {
  min-width: 70%;
}
.min-wid-80p {
  min-width: 80%;
}
.min-wid-90p {
  min-width: 90%;
}
.min-wid-100p {
  min-width: 100%;
}

.wid-fit {
  width: fit-content;
}
.wid-100per {
  width: 100%;
}
.wid-auto {
  width: auto;
}
.wid-25 {
  width: 25px;
}
.wid-50 {
  width: 50px;
}
.wid-75 {
  width: 75px;
}
.wid-100 {
  width: 100px;
}
.wid-125 {
  width: 125px;
}
.wid-125 {
  width: 125px;
}
.wid-150 {
  width: 150px;
}
.wid-200 {
  width: 200px;
}
.wid-300 {
  width: 300px;
}
.wid-350 {
  width: 350px;
}
.wid-600 {
  width: 600px;
}
.wid-700 {
  width: 700px;
}
.wid-400 {
  width: 400px;
}
.wid-500 {
  width: 500px;
}
.wid-900 {
  width: 900px;
}
.wid-side {
  width: var(--side-window-width);
}
.wid-10p {
  width: 10%;
}
.wid-20p {
  width: 20%;
}
.wid-30p {
  width: 30%;
}
.wid-40p {
  width: 40%;
}
.wid-50p {
  width: 50%;
}
.wid-60p {
  width: 60%;
}
.wid-70p {
  width: 70%;
}
.wid-80p {
  width: 80%;
}
.wid-90p {
  width: 90%;
}
.wid-100p {
  width: 100%;
}


.font-small {
  font-size: 14px;
}
.font-m {
  font-size: 18px;
}
.font-l, .font-heading {
  font-size: 24px;
}
.font-title {
  font-size: 30px;
}
.font-14 {
  font-size: 14px;
}
.font-18 {
  font-size: 18px;
}
.font-24 {
  font-size: 24px;
}
.font-30 {
  font-size: 30px;
}
.font-50 {
  font-size: 50px;
}
.font-nowrap {
  white-space: nowrap;
}
.font-break {
  white-space: break-spaces;
}
.font-bold {
  font-weight: bold;
}
.font-initial {
  font-weight: initial;
}
.font-sans-serif {
  font-family: "Noto Sans JP", sans-serif;
}
.font-serif {
  font-family: "Noto Serif JP", serif;
}

.text-contain-4 {
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.text-contain-2 {
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.text-contain-1 {
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.text-middle {
  vertical-align: middle;
}
.text-center {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .m-font-2 {
    font-size: 2vw;
  }
  .m-font-3 {
    font-size: 3vw;
  }
  .m-font-4 {
    font-size: 4vw;
  }
}
.m-m {
  margin: var(--size-medium);
}
.m-s {
  margin: var(--size-small);
}
.m-l {
  margin: var(--size-large);
}

.mv-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mv-s {
  margin-top: var(--size-small);
  margin-bottom: var(--size-small);
}
.mv-m {
  margin-top: var(--size-medium);
  margin-bottom: var(--size-medium);
}
.mv-l {
  margin-top: var(--size-large);
  margin-bottom: var(--size-large);
}
.mv-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.mv-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.mv-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mh-s {
  margin-left: var(--size-small);
  margin-right: var(--size-small);
}
.mh-m {
  margin-left: var(--size-medium);
  margin-right: var(--size-medium);
}
.mh-l {
  margin-left: var(--size-large);
  margin-right: var(--size-large);
}
.mh-10 {
  margin-left: 10px;
  margin-right: 10px;
}
.mh-auto {
  margin-left: auto;
  margin-right: auto;
}
.mh-15 {
  margin-left: 15px;
  margin-right: 15px;
}
.mh-20 {
  margin-left: 20px;
  margin-right: 20px;
}
.mh-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mt-s {
  margin-top: var(--size-small);
}
.mt-m {
  margin-top: var(--size-medium);
}
.mt-l {
  margin-top: var(--size-large);
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-head {
  margin-top: calc(var(--header-height) + 30px);
}

.mb-s {
  margin-bottom: var(--size-small);
}
.mb-m {
  margin-bottom: var(--size-medium);
}
.mb-l {
  margin-bottom: var(--size-large);
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-30 {
  margin-bottom: 30px;
}

.ml-s {
  margin-left: var(--size-small);
}
.ml-m {
  margin-left: var(--size-medium);
}
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}

.mr-s {
  margin-right: var(--size-small);
}
.mr-m {
  margin-right: var(--size-medium);
}
.mr-l {
  margin-right: var(--size-large);
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}

@media screen and (max-width: 750px) {
  .m-mv-2 {
    margin: 2vw 0;
  }
  .m-mh-2 {
    margin: 0 2vw;
  }
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-auto {
  flex: auto;
}

.justify-right {
  justify-content: right;
}
.justify-center {
  justify-content: center;
}
.justify-spread {
  justify-content: space-between;
}
.justify-even {
  justify-content: space-around;
}

.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: end;
}

@media screen and (max-width: 750px) {
  .mobile-flex-column {
    flex-direction: column !important;
  }
  .m-flex-column {
    flex-direction: column;
  }
  .m-flex-wrap {
    flex-wrap: wrap;
  }
  .m-gap-1 {
    gap: 1vw;
  }
}
.gap-10 {
  gap: 10px;
}
.gap-5 {
  gap: 5px;
}
.gap-s {
  gap: var(--size-small);
}
.gap-m {
  gap: var(--size-medium);
}
.gap-l {
  gap: var(--size-large);
}

.trans-25-ease {
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-property: all;
}

.trans-05-ease {
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-property: all;
}

.grid-r-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.ratio-1 {
  aspect-ratio: 1;
}
.ratio-2 {
  aspect-ratio: 2;
}
.ratio-golden {
  aspect-ratio: 1.61803;
}
.ratio-display {
  aspect-ratio: 1.7777777778;
}

.b-none {
  border: none;
}
.b-r-1 {
  border-right: 1px solid black;
}
.b-l-1 {
  border-left: 1px solid black;
}
.b-b-1 {
  border-bottom: 1px solid black;
}
.b-t-1 {
  border-top: 1px solid black;
}
.b-h-1 {
  border-left: 1px;
  border-right: 1px;
}
.b-v-1 {
  border-top: 1px;
  border-bottom: 1px;
}
.b-1 {
  border: 1px solid black;
}

.b-radius-0 {
  border-radius: 0;
}
.b-radius-5 {
  border-radius: 5px;
}
.b-radius-15 {
  border-radius: 15px;
}
.b-radius-100 {
  border-radius: 100px;
}

.ol-none {
  outline: 0;
}
.ol-1 {
  outline: 1px solid;
}
.ol-lightgrey {
  outline-color: rgba(0, 0, 0, 0.15);
}

.bg-row-color {
  background-color: var(--table-row-color);
}
.bg-white {
  background-color: white;
}
.bg-lightgrey {
  background-color: var(--colro-lightgrey);
}
.bg-active {
  background-color: var(--color-active);
}
.bg-active-f {
  background-color: var(--color-active) !important;
}
.bg-break {
  background-color: var(--color-break);
}
.bg-break-f {
  background-color: var(--color-break) !important;
}
.bg-side {
  background-color: var(--side-window-bg);
}
.bg-overlay {
  background-color: var(--color-overlay);
}
.bg-disabled {
  background-color: var(--color-disabled);
}
.bg-warning {
  background-color: var(--color-warning);
}
.bg-default {
  background-color: var(--color-bg);
}
.bg-reminder {
  background-color: var(--color-reminder);
}

.hov-lightgrey:hover {
  background-color: var(--color-lightgrey);
}
.hov-outline:hover {
  outline: 1px solid;
}
.hov-active:hover {
  background-color: var(--color-active);
}

.shadow-5 {
  box-shadow: 0 0 5px black;
}

.shadow-h-5 {
  box-shadow: inset 15px 0 5px rgba(0, 0, 0, 0.12), inset -15px 0 15px rgba(0, 0, 0, 0.12);
}

.op-half {
  opacity: 0.5;
}
.op-quarter {
  opacity: 0.25;
}
.op-01 {
  opacity: 0.1;
}
.op-1 {
  opacity: 1;
}

.col-white {
  color: white;
}
.col-black {
  color: black;
}
.col-grey {
  color: var(--color-grey);
}
.col-lightgrey {
  color: var(--color-lightgrey);
}
.col-red {
  color: red;
}
.col-active {
  border-color: var(--color-active);
  color: var(--color-active);
}
.col-inactive {
  color: var(--color-inactive);
}
.col-overlay {
  color: var(--color-overlay);
}
.col-reminder {
  color: var(--color-reminder);
}
.col-warning {
  color: var(--color-warning);
}
.col-disabled {
  color: var(--color-disabled);
}

.c-pointer {
  cursor: pointer;
}
.c-default {
  cursor: default;
}
.c-grab {
  cursor: grab;
}
.c-grabbing {
  cursor: grabbing;
}

.scroll-y-auto {
  overflow-y: auto;
}

.scroll-x-auto {
  overflow-y: auto;
}

.of-hidden {
  overflow: hidden;
}

.display-block {
  display: block;
}
.display-none {
  display: none;
}

.no-drag {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.side-root {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.side-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  transition: background-color 0.1s ease;
}
.side-item:hover {
  background-color: var(--color-active-dark);
}
.side-item:hover i {
  opacity: 1;
}
.side-item a {
  height: 75px;
  border-right: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.side-item i {
  margin-right: 20px;
  margin-left: 20px;
  opacity: 0.25;
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  .side-item i {
    margin-left: 3rem;
    font-size: 6rem;
  }
}

.side-window-container {
  height: 100%;
  background-color: var(--side-window-bg);
  width: var(--header-height);
  position: relative;
  border-right: 1px solid var(--border-color);
}
.side-window-container a {
  color: black;
  text-decoration: none;
}

.sidewindow-text {
  left: -300px;
  position: relative;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .sidewindow-text {
    font-size: var(--font-medium);
  }
}

.sidewindow-open .side-window-container {
  width: var(--side-window-width);
}
.sidewindow-open main,
.sidewindow-open .header-container {
  margin-left: var(--side-window-width);
}
.sidewindow-open #header_button {
  left: 0;
  margin-right: 10px;
}
.sidewindow-open .sidewindow-text {
  left: 0;
  opacity: 1;
}
.sidewindow-open .header-list.logout-btn {
  opacity: 1;
  width: 100%;
}
.sidewindow-open .header-list.logout-btn i {
  margin-left: 20px;
}
.sidewindow-open .header-list a {
  height: 75px;
}

.side-top {
  background-color: var(--color-bg);
  border-right: 1px solid var(--border-color);
  height: var(--header-height);
}
.side-top a {
  transition: background-color 0.1s ease;
  height: 100%;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
}
.side-top a:hover {
  background-color: var(--color-active-dark);
}

@media screen and (max-width: 750px) {
  .side-window-container {
    opacity: 0;
    width: 0;
  }
  .side-window-container i {
    margin-left: -9rem;
  }
  .sidewindow-open .side-window-container {
    opacity: 1;
    position: fixed;
  }
  .sidewindow-open .side-window-container i {
    margin-left: 3rem;
  }
}
.header-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
.header-wrapper .header-container {
  pointer-events: all;
  background-color: white;
  border-bottom: 1px solid;
  height: var(--header-height);
}

.header-container {
  height: 100%;
}

.header-container {
  margin-left: var(--header-height);
}

#header_button {
  background-color: white;
  position: relative;
  left: calc(-1 * var(--header-height));
  box-sizing: border-box;
  border-right: 1px solid var(--border-color);
  z-index: 2;
  margin-right: -60px;
}
#header_button i {
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  #header_button {
    margin-right: -3rem;
    border-bottom: 1px solid var(--border-color);
  }
  #header_button i {
    font-size: 2rem;
  }
}

.table-scroll {
  overflow-y: auto;
  box-shadow: var(--table-shadow);
}
.table-scroll thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-scroll thead th:last-of-type {
  padding-right: 1.5rem;
}

.table-scroll-v {
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--table-shadow);
}
.table-scroll-v thead {
  position: sticky;
  z-index: 1;
  top: 0;
}
.table-scroll-v thead th:last-of-type {
  padding-right: 1.5rem;
}

.table-scroll-h {
  overflow: auto;
  box-shadow: var(--table-shadow);
}
.table-scroll-h thead th {
  position: sticky;
  z-index: 1;
  top: 0;
}
.table-scroll-h tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
}

.td-alt td:not(.td-no-alt):nth-child(2n) {
  background-color: var(--color-lightgrey);
}

.table-text-center td,
.table-text-center th,
.table-text-center td div,
.table-text-center th div {
  text-align: center;
  vertical-align: middle;
}

.table-text-top td,
.table-text-top th,
.table-text-top td div,
.table-text-top th div {
  vertical-align: top;
}

.table-column-line td,
.table-column-line th {
  border-left: 1px solid;
  border-right: 1px solid;
}

.table-p-v-5 td,
.table-p-v-5 th {
  padding: 5px 0;
}

.table-p-5 td,
.table-p-5 th {
  padding: 5px;
}

.table-p-l td,
.table-p-l th {
  padding: var(--size-large);
}
.table-p-m td,
.table-p-m th {
  padding: var(--size-medium);
}
.table-p-s td,
.table-p-s th {
  padding: var(--size-small);
}
.table-p--v-l td,
.table-p--v-l th {
  padding: var(--size-large) 0;
}
.table-p--v-m td,
.table-p--v-m th {
  padding: var(--size-medium) 0;
}
.table-p--v-s td,
.table-p--v-s th {
  padding: var(--size-small) 0;
}

@media screen and (max-width: 750px) {
  .table-p-v-5 td,
  .table-p-v-5 th {
    padding: 0.5vw;
  }
}
table {
  width: 100%;
  background-color: white;
  box-shadow: var(--table-shadow);
}
table thead {
  box-shadow: var(--table-shadow);
}
table thead tr {
  background-color: white;
}
table tbody tr {
  background-color: var(--table-row-color);
}
table th,
table td {
  border-bottom: 1px solid;
  text-align: start;
  font-size: var(--font-medium);
  padding: var(--size-medium) !important;
}
@media screen and (max-width: 750px) {
  table th,
  table td {
    font-size: var(--font-small);
  }
}
table td {
  border-top: 1px solid;
}
table.row-hover tbody tr:hover {
  background-color: var(--table-row-hover);
}

@media screen and (max-width: 750px) {
  table.mobile-dropdown thead {
    display: none;
  }
  table.mobile-dropdown tbody tr {
    display: grid;
    grid-auto-flow: row;
    height: var(--column-mobile-height);
    overflow: hidden;
    transition: height ease 0.5s;
    border: 1px solid;
  }
  table.mobile-dropdown tbody tr:hover {
    background-color: var(--table-row-color);
  }
  table.mobile-dropdown tbody tr.active {
    transition: height ease 0.5s;
    background-color: var(--table-row-alt);
    overflow: initial;
    height: fit-content;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.355);
  }
  table.mobile-dropdown tbody tr.active:hover {
    background-color: var(--table-row-alt);
  }
  table.mobile-dropdown tbody tr.active td {
    border: 1px solid rgba(0, 0, 0, 0.25);
  }
  table.mobile-dropdown tbody tr.active td.mobile-head::after {
    transform: rotateZ(90deg);
  }
  table.mobile-dropdown tbody tr td {
    display: flex;
    align-items: center;
    max-width: 100%;
    text-align: center;
    overflow: auto;
    min-height: var(--column-mobile-height);
    border: 0;
    padding: 0;
    font-size: 3vw;
    padding-left: 4vw;
    position: relative;
  }
  table.mobile-dropdown tbody tr td.mobile-head {
    grid-row: 1;
  }
  table.mobile-dropdown tbody tr td.mobile-head::after {
    position: absolute;
    right: 3vw;
    content: "<";
    transform: rotateZ(-90deg);
    transition: transform ease 0.25s;
  }
}
.row-alt tbody tr:nth-of-type(2n) {
  background-color: var(--table-row-alt);
}

.row-no-border td {
  border: none !important;
}
.row-no-border td:first-of-type {
  border-left-width: 1;
  border-right-width: 0;
}
.row-no-border td:last-of-type {
  border-right-width: 1;
  border-left-width: 0;
}

.table-nowrap table td,
.table-nowrap table th {
  white-space: nowrap;
}

.icon-ok {
  position: relative;
}
.icon-ok::after {
  position: absolute;
  border: 2px solid;
  border-color: var(--color-active);
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  width: 17px;
  top: 0;
}

.icon-x {
  position: relative;
}
.icon-x::after, .icon-x::before {
  position: absolute;
  background-color: red;
  height: 2px;
  width: 17px;
  content: "";
  top: 12px;
  transform: rotateZ(-45deg);
}
.icon-x::after {
  transform: rotateZ(45deg);
}

.section-wrapper {
  background-color: rgb(249, 249, 249);
  border-radius: 3px;
  box-shadow: 0 0 5px #9b9b9b;
  padding: 40px 60px;
}
@media screen and (max-width: 750px) {
  .section-wrapper {
    padding: 3.5vw !important;
  }
}

.section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bulletpoint-list {
  margin-top: 10px;
  flex-direction: column;
  display: flex;
  gap: 10px;
  min-width: fit-content;
}
.bulletpoint-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  white-space: nowrap;
}
.bulletpoint-list label {
  white-space: nowrap;
}
.bulletpoint-list label::before {
  color: var(--color-active);
  content: "・";
}
.bulletpoint-list span {
  margin-left: 2rem;
}

.input-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-list div,
.input-list li {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  vertical-align: middle;
}

* {
  color: var(--global-text-color);
  border-color: var(--border-color);
}

option {
  background-color: var(--color-bg);
}

body {
  background-color: var(--color-bg);
}

body {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
}

main {
  min-height: calc(100% - var(--main-top-margin));
  height: calc(100% - var(--main-top-margin));
  height: -webkit-fill-available;
}

.section-wrapper {
  box-shadow: 0 0 2px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
@media screen and (max-width: var(--laptop-width)) {
  .section-wrapper {
    padding: 25px 35px;
  }
}
.section-wrapper .section-wrapper {
  border: 0;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.header-wrapper .header-container {
  background-color: var(--color-bg);
  border-color: var(--border-color);
}

@media screen and (max-width: 750px) {
  h1 {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
}
@media screen and (max-width: 750px) {
  .sidewindow-open h1 {
    opacity: 0;
    pointer-events: none;
  }
}
.sidewindow-open #header_button {
  left: 0;
  margin-right: 10px;
  border-color: var(--border-color);
}
@media screen and (max-width: 750px) {
  .sidewindow-open #header_button {
    margin-left: calc(-1 * var(--side-window-width));
  }
}

.table-column-line td {
  border-left: 1px solid;
  border-left-color: rgba(255, 255, 255, 0.24);
  border-right: 0;
}
.table-column-line td:first-child {
  border-left: none;
}

th {
  vertical-align: middle;
  color: var(--color-grey);
  font-size: var(--font-default);
  border: none !important;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  th {
    font-size: var(--m-font-default);
  }
}
th a {
  font-size: initial;
}

thead th {
  border: none;
}

table,
thead,
.table-scroll {
  box-shadow: none;
}

.table-scroll {
  box-shadow: 0 0 2px;
}

.section-wrapper > h2 {
  margin-top: 0;
  margin-left: -10px;
}

form label {
  font-size: 18px !important;
}
@media screen and (max-width: 750px) {
  form label {
    font-size: var(--m-font-default);
  }
}
form input,
form select,
form textarea {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  form input,
  form select,
  form textarea {
    margin-left: 2.5rem;
  }
}
form input:disabled,
form select:disabled,
form textarea:disabled {
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: var(--laptop-width)) {
  form select {
    padding: 5px;
    font-size: 12px;
  }
}

button {
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  width: fit-content;
  font-size: 14pxk;
  min-width: 100px;
  padding: var(--size-medium);
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.1s ease;
}
@media screen and (max-width: var(--laptop-width)) {
  button {
    min-width: 75px;
    padding: 9px;
  }
}
button:hover {
  color: black;
  background-color: var(--color-active-dark);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  button {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

select,
input[type=text],
input[type=number],
input[type=date],
textarea,
input[type=tel],
input[type=email],
input[type=password] {
  border-radius: 0;
  background-color: transparent;
  border: 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  select,
  input[type=text],
  input[type=number],
  input[type=date],
  textarea,
  input[type=tel],
  input[type=email],
  input[type=password] {
    padding: 2rem;
  }
}

input[type=radio] {
  border: 1px solid;
}

input[type=checkbox] {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 750px) {
  input[type=checkbox] {
    width: 8rem;
    height: 8rem;
  }
}

.hov-active {
  transition: color 0.1s, background-color 0.1s ease;
}
.hov-active:hover {
  color: var(--global-text-color-hover);
  background-color: var(--color-active-dark);
  cursor: pointer;
}
.hov-active:hover div {
  color: black;
}
.hov-active:hover i {
  opacity: 1;
}

section a:link, section a:visited {
  color: var(--color-active-dark);
}

table thead {
  box-shadow: none;
}
table th,
table td {
  background-color: var(--color-bg);
  color: var(--global-text-color);
  border-color: var(--color-active-dark);
}

.side-window-container a {
  color: var(--global-text-color);
}

.alert .alert-instance {
  color: black;
}

.row-hightlight td {
  background-color: var(--bg-hightlight);
}

.row-hightlight-dark td {
  background-color: var(--bg-hightlight-dark);
}

.alert {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.alert .alert-instance {
  display: none;
}
.alert .alert-instance.active {
  display: initial;
}

.alert-container {
  height: fit-content;
  width: fit-content !important;
  background-color: white;
  border-radius: 15px;
  border: 1px solid grey;
  transition: top 0.3s ease, height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  top: -60px;
  position: absolute;
}
.alert-container.active {
  top: 20px;
}

* {
  box-sizing: border-box;
}

.m-show {
  visibility: collapse;
}

.m-hide {
  visibility: initial;
}

@media screen and (max-width: 750px) {
  .m-show {
    visibility: initial;
  }
  .m-hide {
    visibility: collapse;
  }
}

/*# sourceMappingURL=buildingblocks.css.map */
