:root {
  --header-height: 80px;
  --section-margin: 20px;
  --side-window-width: 250px;
}
@media screen and (max-width: 750px) {
  :root {
    --header-height: 15rem;
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: 0.6vw;
  }
}

h1 {
  font-size: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  h1 {
    font-size: 4.5vw;
  }
}

h2 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
}

hr {
  width: 100%;
}

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;
}

.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);
}

@media screen and (max-width: 750px) {
  .header-list i {
    margin-left: 3rem;
    font-size: 6rem;
  }
}

a:link {
  text-decoration: none;
}

main {
  margin-top: calc(var(--header-height) + var(--section-margin));
}

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;
}
section .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 .section-wrapper {
    padding: 3.5vw !important;
  }
}
.table-scroll {
  overflow-y: auto;
  box-shadow: 0 0 5px grey;
}
.table-scroll thead {
  position: sticky;
  top: 0;
}
.table-scroll thead th:last-of-type {
  padding-right: 1.5rem;
}

.table-scroll-v {
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 5px grey;
}
.table-scroll-v thead {
  position: sticky;
  top: 0;
}
.table-scroll-v thead th:last-of-type {
  padding-right: 1.5rem;
}

.table-scroll-h {
  overflow: auto;
  box-shadow: 0 0 5px grey;
}
.table-scroll-h thead th {
  position: sticky;
  top: 0;
}
.table-scroll-h tbody th {
  position: sticky;
  left: 0;
}

.td-alt td:not(.td-no-alt):nth-child(2n) {
  background-color: rgb(223, 223, 223);
}

.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-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;
}

@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: 0 0 5px grey;
}
table thead {
  box-shadow: 0 0 5px grey;
}
table thead tr {
  background-color: white;
}
table tbody tr {
  background-color: rgb(238, 238, 238);
}
table th,
table td {
  border-bottom: 1px solid;
  text-align: start;
}
table td {
  border-top: 1px solid;
}
table.row-hover tbody tr:hover {
  background-color: rgb(221, 221, 221);
}

@media screen and (max-width: 750px) {
  table.mobile-dropdown thead {
    display: none;
  }
  table.mobile-dropdown tbody tr {
    display: grid;
    grid-auto-flow: row;
    height: 50px;
    overflow: hidden;
    transition: height ease 0.5s;
    border: 1px solid;
  }
  table.mobile-dropdown tbody tr:hover {
    background-color: rgb(238, 238, 238);
  }
  table.mobile-dropdown tbody tr.active {
    transition: height ease 0.5s;
    background-color: white;
    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: white;
  }
  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: 50px;
    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: white;
}

.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;
}

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

@media screen and (max-width: 750px) {
  main {
    margin-left: 0;
  }
}

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

.side-window-container {
  width: var(--header-height);
  position: relative;
}
.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: 8.5rem;
  }
}

.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;
}

@media screen and (max-width: 750px) {
  .header-list a {
    height: 20rem !important;
  }
}
.header-list.logout-btn {
  opacity: 0;
  width: 0%;
}
.header-list.logout-btn i {
  margin-left: -30px;
}

@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;
  }
  .sidewindow-open main {
    margin-left: var(--header-height);
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .sidewindow-open main {
    margin-left: 0;
  }
}
.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

.pos-initial {
  position: initial;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.pos-sticky {
  position: sticky;
}

.height-fit {
  height: fit-content;
}

.height-100per {
  height: 100%;
}

.height-75 {
  height: 75px;
}

.height-100 {
  height: 100px;
}

.height-125 {
  height: 125px;
}

.height-auto {
  height: auto;
}

.height-25 {
  height: 25px;
}

.height-50 {
  height: 50px;
}

.height-150 {
  height: 150px;
}

.height-200 {
  height: 200px;
}

.height-250 {
  height: 250px;
}

.height-300 {
  height: 300px;
}

.height-600 {
  height: 600px;
}

.height-400 {
  height: 400px;
}

.height-500 {
  height: 500px;
}

.height-900 {
  height: 900px;
}

.height-header {
  height: var(--header-height);
}

.height-main {
  height: calc(100% - var(--header-height) - var(--section-margin));
}

.height-10p {
  height: 10%;
}

.height-20p {
  height: 20%;
}

.height-30p {
  height: 30%;
}

.height-40p {
  height: 40%;
}

.height-50p {
  height: 50%;
}

.height-60p {
  height: 60%;
}

.height-70p {
  height: 70%;
}

.height-80p {
  height: 80%;
}

.height-90p {
  height: 90%;
}

.height-100p {
  height: 100%;
}

.min-height-fit {
  min-height: fit-content;
}

.min-height-100per {
  min-height: 100%;
}

.min-height-75 {
  min-height: 75px;
}

.min-height-100 {
  min-height: 100px;
}

.min-height-auto {
  min-height: auto;
}

.min-height-25 {
  min-height: 25px;
}

.min-height-50 {
  min-height: 50px;
}

.min-height-150 {
  min-height: 150px;
}

.min-height-200 {
  min-height: 200px;
}

.min-height-300 {
  min-height: 300px;
}

.min-height-350 {
  min-height: 350px;
}

.min-height-600 {
  min-height: 600px;
}

.min-height-400 {
  min-height: 400px;
}

.min-height-500 {
  min-height: 500px;
}

.min-height-900 {
  min-height: 900px;
}

.min-height-10p {
  min-height: 10%;
}

.min-height-20p {
  min-height: 20%;
}

.min-height-30p {
  min-height: 30%;
}

.min-height-40p {
  min-height: 40%;
}

.min-height-50p {
  min-height: 50%;
}

.min-height-60p {
  min-height: 60%;
}

.min-height-70p {
  min-height: 70%;
}

.min-height-80p {
  min-height: 80%;
}

.min-height-90p {
  min-height: 90%;
}

.min-height-100p {
  min-height: 100%;
}

.max-height-fit {
  max-height: fit-content;
}

.max-height-100per {
  max-height: 100%;
}

.max-height-75 {
  max-height: 75px;
}

.max-height-100 {
  max-height: 100px;
}

.max-height-auto {
  max-height: auto;
}

.max-height-25 {
  max-height: 25px;
}

.max-height-50 {
  max-height: 50px;
}

.max-height-150 {
  max-height: 150px;
}

.max-height-200 {
  max-height: 200px;
}

.max-height-300 {
  max-height: 300px;
}

.max-height-600 {
  max-height: 600px;
}

.max-height-400 {
  max-height: 400px;
}

.max-height-500 {
  max-height: 500px;
}

.max-height-900 {
  max-height: 900px;
}

.max-height-80per {
  max-height: 80%;
}

.max-height-10p {
  max-height: 10%;
}

.max-height-20p {
  max-height: 20%;
}

.max-height-30p {
  max-height: 30%;
}

.max-height-40p {
  max-height: 40%;
}

.max-height-50p {
  max-height: 50%;
}

.max-height-60p {
  max-height: 60%;
}

.max-height-70p {
  max-height: 70%;
}

.max-height-80p {
  max-height: 80%;
}

.max-height-90p {
  max-height: 90%;
}

.max-height-100p {
  max-height: 100%;
}

.width-fit {
  width: fit-content;
}

.width-100per {
  width: 100%;
}

.width-auto {
  width: auto;
}

.width-25 {
  width: 25px;
}

.width-50 {
  width: 50px;
}

.width-75 {
  width: 75px;
}

.width-100 {
  width: 100px;
}

.width-125 {
  width: 125px;
}

.width-125 {
  width: 125px;
}

.width-150 {
  width: 150px;
}

.width-200 {
  width: 200px;
}

.width-300 {
  width: 300px;
}

.width-350 {
  width: 350px;
}

.width-600 {
  width: 600px;
}

.width-400 {
  width: 400px;
}

.width-500 {
  width: 500px;
}

.width-900 {
  width: 900px;
}

.width-side {
  width: var(--side-window-width);
}

.width-10p {
  width: 10%;
}

.width-20p {
  width: 20%;
}

.width-30p {
  width: 30%;
}

.width-40p {
  width: 40%;
}

.width-50p {
  width: 50%;
}

.width-60p {
  width: 60%;
}

.width-70p {
  width: 70%;
}

.width-80p {
  width: 80%;
}

.width-90p {
  width: 90%;
}

.width-100p {
  width: 100%;
}

.min-width-fit {
  min-width: fit-content;
}

.min-width-100per {
  min-width: 100%;
}

.min-width-auto {
  min-width: auto;
}

.min-width-25 {
  min-width: 25px;
}

.min-width-50 {
  min-width: 50px;
}

.min-width-100 {
  min-width: 100px;
}

.min-width-125 {
  min-width: 125px;
}

.min-width-150 {
  min-width: 150px;
}

.min-width-200 {
  min-width: 200px;
}

.min-width-300 {
  min-width: 300px;
}

.min-width-600 {
  min-width: 600px;
}

.min-width-400 {
  min-width: 400px;
}

.min-width-500 {
  min-width: 500px;
}

.min-width-900 {
  min-width: 900px;
}

.min-width-10p {
  min-width: 10%;
}

.min-width-20p {
  min-width: 20%;
}

.min-width-30p {
  min-width: 30%;
}

.min-width-40p {
  min-width: 40%;
}

.min-width-50p {
  min-width: 50%;
}

.min-width-60p {
  min-width: 60%;
}

.min-width-70p {
  min-width: 70%;
}

.min-width-80p {
  min-width: 80%;
}

.min-width-90p {
  min-width: 90%;
}

.min-width-100p {
  min-width: 100%;
}

.max-width-fit {
  max-width: fit-content;
}

.max-width-100per {
  max-width: 100%;
}

.max-width-auto {
  max-width: auto;
}

.max-width-25 {
  max-width: 25px;
}

.max-width-50 {
  max-width: 50px;
}

.max-width-100 {
  max-width: 100px;
}

.max-width-125 {
  max-width: 125px;
}

.max-width-150 {
  max-width: 150px;
}

.max-width-200 {
  max-width: 200px;
}

.max-width-300 {
  max-width: 300px;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-400 {
  max-width: 400px;
}

.max-width-500 {
  max-width: 500px;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-900 {
  max-width: 900px;
}

.max-width-10p {
  max-width: 10%;
}

.max-width-20p {
  max-width: 20%;
}

.max-width-30p {
  max-width: 30%;
}

.max-width-40p {
  max-width: 40%;
}

.max-width-50p {
  max-width: 50%;
}

.max-width-60p {
  max-width: 60%;
}

.max-width-70p {
  max-width: 70%;
}

.max-width-80p {
  max-width: 80%;
}

.max-width-90p {
  max-width: 90%;
}

.max-width-100p {
  max-width: 100%;
}

.font-nowrap {
  white-space: nowrap;
}

.font-break {
  white-space: break-spaces;
}

.font-bold {
  font-weight: bold;
}

.font-initial {
  font-weight: initial;
}

.font-50 {
  font-size: 50px;
}

.font-30 {
  font-size: 30px;
}

.font-24 {
  font-size: 24px;
}

.font-14 {
  font-size: 14px;
}

.font-18 {
  font-size: 18px;
}

.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-align-middle {
  vertical-align: middle;
}

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

.mv-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.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-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;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.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);
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.pv-5 {
  padding: 5px;
}

.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ph-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.ph-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.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;
}

.flex-auto {
  flex: auto;
}

@media screen and (max-width: 750px) {
  .mobile-flex-column {
    flex-direction: column !important;
  }
}
.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;
}

.gap-10 {
  gap: 10px;
}

.gap-5 {
  gap: 5px;
}

.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-radius-0 {
  border-radius: 0;
}

.b-radius-5 {
  border-radius: 5px;
}

.b-radius-15 {
  border-radius: 15px;
}

.b-radius-100 {
  border-radius: 100px;
}

.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;
}

.ol-none {
  outline: 0;
}

.ol-1 {
  outline: 1px solid;
}

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

.bg-row-color {
  background-color: rgb(238, 238, 238);
}

.bg-white {
  background-color: white;
}

.bg-lightgrey {
  background-color: rgb(238, 238, 238);
}

.bg-active {
  background-color: rgb(158, 213, 255);
}

.bg-active-f {
  background-color: rgb(158, 213, 255) !important;
}

.bg-break {
  background-color: pink;
}

.bg-break-f {
  background-color: pink !important;
}

.bg-side {
  background-color: rgb(94, 94, 94);
}

.bg-overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

.hov-lightgrey:hover {
  background-color: rgb(238, 238, 238);
}

.hov-outline:hover {
  outline: 1px solid;
}

.hov-active:hover {
  background-color: rgb(108, 183, 253);
}

.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;
}

.col-black {
  color: black;
}

.col-grey {
  color: grey;
}

.col-red {
  color: red;
}

.col-active {
  border-color: rgb(7, 159, 236);
  color: rgb(7, 159, 236);
}

.col-inactive {
  color: rgb(179, 179, 179);
}

.col-overlay {
  color: rgba(0, 0, 0, 0.25);
}

.c-pointer {
  cursor: pointer;
}

.c-default {
  cursor: default;
}

.c-grab {
  cursor: grab;
}

.c-grabbing {
  cursor: grabbing;
}

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

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

.tr-color-break td,
.tr-color-break th {
  background-color: pink !important;
}

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

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

.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;
}

.display-block {
  display: block;
}

.of-hidden {
  overflow: hidden;
}

.m-show {
  visibility: collapse;
}

.m-hide {
  visibility: initial;
}

@media screen and (max-width: 750px) {
  .m-show {
    visibility: initial;
  }
  .m-hide {
    visibility: collapse;
  }
  .m-mv-2 {
    margin: 2vw 0;
  }
  .m-mh-2 {
    margin: 0 2vw;
  }
  .m-p-01 {
    padding: 0.1vw;
  }
  .m-height-fit {
    height: fit-content;
  }
  .m-gap-1 {
    gap: 1vw;
  }
  .m-flex-column {
    flex-direction: column;
  }
  .m-flex-wrap {
    flex-wrap: wrap;
  }
  .m-font-2 {
    font-size: 2vw;
  }
  .m-font-3 {
    font-size: 3vw;
  }
  .m-font-4 {
    font-size: 4vw;
  }
}

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