@charset "UTF-8";
@layer reset {
  /*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
  *, ::before, ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0;
  }
  html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  body {
    margin: 0;
  }
  main {
    display: block;
  }
  p, table, blockquote, address, pre, iframe, form, figure, dl {
    margin: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
  }
  ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  dt {
    font-weight: 700;
  }
  dd {
    margin-left: 0;
  }
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
  }
  pre {
    font-family: monospace, monospace;
    font-size: inherit;
  }
  address {
    font-style: inherit;
  }
  a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
  }
  abbr[title] {
    text-decoration: underline dotted;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp {
    font-family: monospace, monospace;
    font-size: inherit;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  svg, img, embed, object, iframe {
    vertical-align: bottom;
  }
  button, input, optgroup, select, textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
  }
  button, [type=button], [type=reset], [type=submit] {
    cursor: pointer;
  }
  button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
    cursor: default;
  }
  :-moz-focusring {
    outline: auto;
  }
  select:disabled {
    opacity: inherit;
  }
  option {
    padding: 0;
  }
  fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  legend {
    padding: 0;
  }
  progress {
    vertical-align: baseline;
  }
  textarea {
    overflow: auto;
  }
  [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  [type=search] {
    outline-offset: -2px;
  }
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  [type=number] {
    -moz-appearance: textfield;
  }
  label[for] {
    cursor: pointer;
  }
  details {
    display: block;
  }
  summary {
    display: list-item;
  }
  [contenteditable]:focus {
    outline: auto;
  }
  table {
    border-color: inherit;
    border-collapse: collapse;
  }
  caption {
    text-align: left;
  }
  td, th {
    vertical-align: top;
    padding: 0;
  }
  th {
    text-align: left;
    font-weight: 700;
  }
}
@layer base {
  @font-face {
    font-family: AdjustedYuGothic;
    font-weight: 400;
    src: local("Yu Gothic Medium");
  }
  @font-face {
    font-family: AdjustedYuGothic;
    font-weight: 700;
    src: local("Yu Gothic Bold");
  }
  :root {
    --site-color-white: rgb(255 255 255);
    --site-color-black: rgb(0 0 0);
    --site-color-blue: rgb(0 137 184);
    --site-color-blueLight: rgb(204 231 241);
    --site-color-blueDark: rgb(0 42 73);
    --site-color-red: rgb(255 0 0);
    --site-color-orange: rgb(235 100 60);
    --site-color-yellow: rgb(255 224 62);
    --site-color-beige: rgb(220 220 200);
    --site-color-beigeDark: rgb(200 200 180);
    --site-color-gray: rgb(210 220 220);
  }
  html {
    font-size: 16px;
    font-family: AdjustedYuGothic, "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    color: var(--site-color-black);
    line-height: 1.75;
  }
  @media screen and (width < 600px) {
    html.js_scrollstop {
      overflow: hidden;
    }
  }
  body {
    background-image: url(../img/common/bg_body.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-color: rgb(0, 137, 184);
  }
  @media screen and (width > 1920px) {
    body {
      background-size: cover;
    }
  }
  body a {
    cursor: pointer;
  }
}
@layer layout {
  .ly_wrap {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }
  @media screen and (width >= 800px) {
    .ly_wrap {
      margin-top: 20px;
      grid-template-columns: 270px 1fr;
      grid-template-rows: auto auto;
    }
  }
  .ly_main {
    display: flex;
    flex-direction: column;
  }
  @media screen and (width >= 800px) {
    .ly_main {
      grid-column: 2/3;
      grid-row: 1/2;
    }
  }
  .ly_main_content {
    width: 100%;
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
  }
  @media screen and (width >= 800px) {
    .ly_main_content {
      padding-top: 45px;
      padding-left: 30px;
      padding-right: 30px;
      padding-bottom: 60px;
    }
  }
  @media screen and (width >= 800px) {
    .ly_side {
      grid-column: 1/2;
      grid-row: 1/2;
    }
  }
  .ly_footer {
    height: 60px;
    padding-left: 16px;
    padding-right: 16px;
    color: var(--site-color-white);
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (width >= 800px) {
    .ly_footer {
      height: 80px;
      font-size: unset;
      grid-column: 1/3;
      grid-row: 2/3;
    }
  }
}
@layer content {
  .ly_main_content > *:not(:first-child) {
    margin-top: 16px;
  }
  .ly_main_content a:not([class]) {
    color: var(--site-color-blue);
    text-decoration: underline;
    font-weight: bold;
    transition-property: opacity;
    transition-duration: 0.3s;
  }
  @media (any-hover: hover) {
    .ly_main_content a:not([class]):hover {
      opacity: 0.7;
    }
  }
  .ly_main_content > img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@layer component {
  .bl_sideNav {
    width: 100%;
    background-color: rgba(0, 137, 184, 0.5);
  }
  @media screen and (width < 800px) {
    .bl_sideNav {
      height: 100vh;
      padding: 16px;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      overflow-y: auto;
      transition-property: opacity visibility;
      transition-duration: 0.3s;
    }
    .bl_sideNav.js_open {
      background-color: rgba(0, 42, 73, 0.9);
      opacity: 1;
      visibility: visible;
    }
  }
  .bl_sideNav_list {
    overflow-y: auto;
    font-weight: bold;
    color: rgb(255, 255, 255);
  }
  .bl_sideNav_item {
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .bl_sideNav_link {
    padding: 0.5rem 0.75rem;
    display: flex;
    background: url(../img/common/sideNav_arrow.png) no-repeat;
    background-position: 95% 50%;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 0;
  }
  .bl_sideNav_link::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url(../img/common/sideNav_arrow_over.png) no-repeat, linear-gradient(to right, var(--site-color-orange), 50%, var(--site-color-yellow));
    background-position: 95% 50%;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .bl_sideNav_link[aria-current=page]::before {
    opacity: 1;
  }
  @media (any-hover: hover) {
    .bl_sideNav_link:hover::before {
      opacity: 1;
    }
  }
  .bl_sideNav_link.bl_sideNav_link--disabled {
    pointer-events: none;
  }
  .bl_jimukyoku {
    padding: 24px 16px;
  }
  .bl_jimukyoku_list {
    font-weight: bold;
  }
  .bl_jimukyoku_list > *:not(:first-child) {
    margin-top: 16px;
  }
  .bl_jimukyoku_list > dt {
    background-color: var(--site-color-yellow);
    /*    background-image: linear-gradient(
          to right,
          rgb(255 241 29) 0%,
          rgb(240 147 46) 66%,
          rgb(233 101 45) 88%,
          rgb(228 53 43) 100%
        );
    */
    font-size: 0.875rem;
    color: #002a49;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bl_jimukyoku_list > dd {
    font-size: 0.75rem;
    color: var(--site-color-white);
  }
  .bl_jimukyoku_list > dd > a {
    transition-property: opacity;
    transition-duration: 0.3s;
    text-decoration: underline;
  }
  .bl_jimukyoku_list > dd > a:hover {
    opacity: 0.7;
  }
  .bl_siteLogo {
    display: flex;
    align-items: center;
  }
  @media screen and (width < 600px) {
    .bl_siteLogo {
      height: 48px;
      padding-right: 48px;
    }
  }
  @media screen and (width >= 600px) {
    .bl_siteLogo {
      height: 64px;
      padding-right: 64px;
    }
  }
  @media screen and (width >= 800px) {
    .bl_siteLogo {
      height: 100px;
      padding-right: unset;
    }
  }
  .bl_siteLogo .bl_siteLogo_img {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 730/100;
    display: block;
  }
  .bl_hbgBtn {
    position: fixed;
  }
  @media screen and (width >= 800px) {
    .bl_hbgBtn {
      display: none;
    }
  }
  @media screen and (width < 800px) {
    .bl_hbgBtn {
      width: 64px;
      height: 64px;
      padding: 20px 16px;
      background-color: var(--site-color-black);
      top: 0;
      right: 0;
    }
  }
  @media screen and (width < 600px) {
    .bl_hbgBtn {
      width: 48px;
      height: 48px;
      padding: 16px 12px;
      top: 0;
      right: 0;
    }
  }
  .bl_hbgBtn .bl_hbgBtn_line {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #d6d5d5;
    transition: 0.3s;
  }
  .bl_hbgBtn .bl_hbgBtn_line::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d6d5d5;
    transition: 0.3s;
  }
  @media screen and (width < 800px) {
    .bl_hbgBtn .bl_hbgBtn_line::before {
      transform: translateY(-11px);
    }
  }
  @media screen and (width < 600px) {
    .bl_hbgBtn .bl_hbgBtn_line::before {
      transform: translateY(-7px);
    }
  }
  .bl_hbgBtn .bl_hbgBtn_line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d6d5d5;
    transition: 0.3s;
  }
  @media screen and (width < 800px) {
    .bl_hbgBtn .bl_hbgBtn_line::after {
      transform: translateY(11px);
    }
  }
  @media screen and (width < 600px) {
    .bl_hbgBtn .bl_hbgBtn_line::after {
      transform: translateY(7px);
    }
  }
  .bl_hbgBtn .bl_hbgBtn_line.js_open {
    background-color: transparent;
  }
  .bl_hbgBtn .bl_hbgBtn_line.js_open::before {
    content: "";
    transition: 0.3s;
    transform: rotate(45deg);
  }
  .bl_hbgBtn .bl_hbgBtn_line.js_open::after {
    content: "";
    transition: 0.3s;
    transform: rotate(-45deg);
  }
  .bl_bulletList {
    list-style-type: disc;
    padding-left: 1.75em;
  }
  .bl_bulletList.bl_bulletList--styleNone {
    list-style-type: none;
    padding-left: unset;
  }
  .bl_bulletList > li::marker {
    color: var(--site-color-blue);
  }
  .bl_bulletList > li > ul {
    list-style-type: circle;
    padding-left: 1.75em;
  }
  .bl_bulletList > li > ul > li > ul {
    list-style-type: square;
    padding-left: 1.75em;
  }
  .bl_bulletList > li > ul.bl_bulletList_annotation {
    list-style-type: none;
    padding-left: 0;
  }
  .bl_bulletList > li > ul.bl_bulletList_annotation > li {
    display: flex;
  }
  .bl_bulletList > li > ul.bl_bulletList_annotation > li::before {
    content: "※";
    margin-right: 0.25em;
    flex-shrink: 0;
  }
  .bl_orderList {
    list-style-type: decimal;
    padding-left: 1.75em;
  }
  .bl_orderList--listLowerroman {
    list-style-type: lower-roman;
  }
  .bl_orderList--listUpperroman {
    list-style-type: upper-roman;
  }
  .bl_orderList--listBrackets {
    list-style: none;
    counter-reset: olbnum;
    padding-left: 1em;
  }
  .bl_orderList--listBrackets > li {
    display: flex;
  }
  .bl_orderList--listBrackets > li::before {
    width: 2em;
    text-align: right;
    margin-right: 0.5em;
    counter-increment: olbnum;
    content: "(" counter(olbnum) ") ";
  }
  @container (width < 600px) {
    .bl_tableCross {
      overflow-x: auto;
    }
  }
  .bl_tableCross--fontsizeSmall {
    font-size: 14px;
  }
  .bl_tableCross table {
    width: 100%;
    line-height: 1.75;
    border-top: solid 1px var(--site-color-white);
    border-left: solid 1px var(--site-color-white);
  }
  .bl_tableCross table caption {
    font-weight: bold;
    margin-bottom: 8px;
  }
  .bl_tableCross table thead tr th,
  .bl_tableCross table thead tr td,
  .bl_tableCross table tbody tr th,
  .bl_tableCross table tbody tr td {
    padding: 0.5em 0.5em;
    border-bottom: solid 1px var(--site-color-white);
    border-right: solid 1px var(--site-color-white);
    vertical-align: middle;
  }
  .bl_tableCross table thead tr th,
  .bl_tableCross table tbody tr th {
    background-color: var(--site-color-blue);
    color: var(--site-color-white);
  }
  .bl_tableCross table thead tr td,
  .bl_tableCross table tbody tr td {
    background-color: var(--site-color-blueLight);
  }
  .bl_tableCross table thead tr th {
    min-width: 80px;
    text-align: center;
  }
  .bl_tableCross table tbody tr th, .bl_tableCross table tbody tr td {
    min-width: 80px;
  }
  .bl_noticeBox {
    background-color: var(--site-color-beige);
    padding: 1rem;
    border-radius: 8px;
  }
  @media screen and (width >= 800px) {
    .bl_noticeBox {
      padding: 1rem 1.5rem;
    }
  }
  .bl_noticeBox.bl_noticeBox--border {
    background-color: unset;
    border: 2px solid var(--site-color-blue);
  }
  .bl_noticeBox .bl_noticeBox_heading {
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--site-color-blue);
    margin-bottom: 1rem;
    font-weight: bold;
  }
  .bl_noticeBox .bl_noticeBox_content > *:not(:first-child) {
    margin-top: 16px;
  }
  .bl_gridBox {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  @media screen and (width >= 800px) {
    .bl_gridBox.bl_gridBox--col2 {
      grid-template-columns: 1fr 1fr;
      column-gap: 2rem;
    }
  }
  .bl_accordionBox {
    border: 2px solid var(--site-color-blue);
    border-radius: 8px;
  }
  .bl_accordionBox_button {
    padding: 1rem;
    font-weight: bold;
    color: var(--site-color-blue);
  }
  @media screen and (width >= 800px) {
    .bl_accordionBox_button {
      padding: 1rem 1.5rem;
    }
  }
  .bl_accordionBox_heading {
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--site-color-blue);
    margin-bottom: 1rem;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  @media screen and (width >= 800px) {
    .bl_accordionBox_heading {
      margin-left: 1.5rem;
      margin-right: 1.5rem;
    }
  }
  .bl_accordionBox_content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
  @media screen and (width >= 800px) {
    .bl_accordionBox_content {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  .bl_accordionBox_content > *:not(:first-child) {
    margin-top: 16px;
  }
  .el_ondemandBtn {
    height: 80px;
    padding: 0 16px;
    background-image: linear-gradient(to bottom, rgb(255, 241, 29) 0%, rgb(228, 53, 43) 20%, rgb(228, 53, 43) 80%, rgb(255, 241, 29) 100%);
    border: 4px solid rgb(228, 53, 43);
    color: var(--site-color-white);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.25;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .el_pageTitle {
    padding: 15px 30px;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.5;
    text-box-trim: trim-both;
    color: var(--site-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/common/bg_pageTitle.png) center;
    /*
      border-top-width: 4px;
      border-top-style: solid;
      border-image-source: linear-gradient(to right, rgb(255 241 29) 0%, rgb(240 147 46) 66%, rgb(233 101 45) 88%, rgb(228 53 43) 100%);
      border-image-slice: 1;
    */
  }
  @media screen and (width >= 800px) {
    .el_pageTitle {
      min-height: 100px;
      font-size: 2.5rem;
    }
  }
  .el_headingLv2 {
    padding: 0.75rem 1rem;
    margin-top: 40px;
    margin-bottom: 16px;
    border-top: 3px solid;
    background-color: var(--site-color-gray);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--site-color-blueDark);
  }
  .el_headingLv2:first-child {
    margin-top: unset;
  }
  .el_headingLv3 {
    position: relative;
    padding: 0.75rem 1rem;
    border-left: 6px solid var(--site-color-orange);
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--site-color-blueDark);
  }
  .el_headingLv3::before {
    content: "";
    width: 6px;
    height: 50%;
    position: absolute;
    background: var(--site-color-yellow);
    display: inline;
    bottom: 0;
    margin: auto;
    left: -6px;
  }
  .el_headingLv4 {
    padding: 0.5rem 0.75rem;
    background-color: var(--site-color-beige);
    border-left: 3px solid var(--site-color-blue);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--site-color-blue);
  }
  .el_headingLv2 + .el_headingLv3,
  .el_headingLv3 + .el_headingLv4 {
    margin-top: unset;
  }
  .el_googlemaps {
    width: 100%;
  }
  .el_btn {
    padding: 0.75rem 0.1rem;
    border: solid 2px var(--site-color-blueDark);
    border-radius: 8px;
    background-color: var(--site-color-blueDark);
    color: var(--site-color-white);
    font-weight: bold;
    display: flex;
    place-content: center;
    transition-property: color, background-color, border-color;
    transition-duration: 0.2s;
  }
  .el_btn::after {
    content: "";
    width: 1em;
    margin: 0.35em 0 0 0.5em;
    background: url("../img/common/btn_arrow.png") no-repeat;
  }
  @media (any-hover: hover) {
    .el_btn:hover {
      border: solid 2px var(--site-color-blueDark);
      background-color: transparent;
      color: var(--site-color-blueDark);
    }
    .el_btn:hover::after {
      background: url("../img/common/btn_arrow_over.png") no-repeat;
    }
  }
  .el_btn.el_btn--disabled {
    background-color: var(--site-color-gray);
    border: unset;
    pointer-events: none;
  }
  .el_btn.el_btn--orange {
    border: solid 2px var(--site-color-orange);
    background-color: var(--site-color-orange);
    color: var(--site-color-white);
  }
  @media (any-hover: hover) {
    .el_btn.el_btn--orange:hover {
      border: solid 2px var(--site-color-orange);
      background-color: var(--site-color-white);
      color: var(--site-color-orange);
    }
  }
  @media screen and (width >= 800px) {
    .el_btn.el_btn--50 {
      max-width: 50%;
      margin-left: auto;
      margin-right: auto;
    }
  }
}
@layer unique {
  .un_topHero .un_topHero_img {
    max-width: 100%;
    height: auto;
  }
  .un_topInformation {
    margin-top: 3rem;
  }
  .un_topInformation .un_topInformation_title {
    padding: 0.75rem 1rem;
    background-image: linear-gradient(to right, var(--site-color-orange), 50%, var(--site-color-yellow));
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--site-color-white);
  }
  .un_topInformation .un_topInformation_list {
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
  }
  @media screen and (width >= 800px) {
    .un_topInformation .un_topInformation_list {
      padding-top: 30px;
      padding-left: 30px;
      padding-right: 30px;
      padding-bottom: 60px;
      grid-template-columns: auto 1fr;
    }
  }
  .un_topInformation .un_topInformation_list > dt {
    padding: 7px 16px;
    background-color: var(--site-color-blue);
    border-radius: 9999px;
    font-size: 0.875rem;
    line-height: 1;
    color: var(--site-color-white);
    align-self: start;
    justify-self: start;
  }
  .un_topInformation .un_topInformation_list > dd a:not([class]) {
    color: var(--site-color-blue);
    text-decoration: underline;
    font-weight: bold;
    transition-property: opacity;
    transition-duration: 0.3s;
  }
  @media (any-hover: hover) {
    .un_topInformation .un_topInformation_list > dd a:not([class]):hover {
      opacity: 0.7;
    }
  }
  .un_topQuestionsBanner {
    margin: 1rem;
    padding: 1rem 0.75rem;
    background-image: linear-gradient(to right, rgba(255, 241, 29, 0.85) 0%, rgba(240, 147, 46, 0.85) 66%, rgba(233, 101, 45, 0.85) 88%, rgba(228, 53, 43, 0.85) 100%);
  }
  @media screen and (width >= 800px) {
    .un_topQuestionsBanner {
      margin: 1rem 0;
    }
  }
  .un_topQuestionsBanner_heading {
    padding-bottom: 0.5rem;
    border-bottom: 4px solid rgb(228, 53, 43);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  @media screen and (width >= 800px) {
    .un_topQuestionsBanner_heading {
      font-size: 1.5rem;
    }
  }
  .un_topQuestionsBanner_heading {
    color: #fff;
    text-shadow: 0px 2px 4px #000;
  }
  .un_topQuestionsBanner_content {
    margin-top: 0.75rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .un_greetingProfile {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 2rem;
  }
  .un_greetingProfile .un_greetingProfile_content {
    grid-column: 2/3;
    align-content: flex-end;
    line-height: 1.8;
  }
  .un_greetingProfile .un_greetingProfile_imgWrapper {
    grid-column: 1/2;
  }
  .un_greetingProfile .un_greetingProfile_imgWrapper > img {
    width: 100%;
  }
  .un_outlineTable {
    width: 100%;
  }
  .un_outlineTable tr {
    border-top: solid 1px var(--site-color-gray);
  }
  .un_outlineTable tr th, .un_outlineTable tr td {
    padding: 1rem;
  }
  .un_outlineTable tr th {
    min-width: 7em;
    display: inline-block;
    text-align-last: justify;
  }
  .un_outlineTable tr:last-of-type {
    border-bottom: solid 1px var(--site-color-gray);
  }
}
@layer helper {
  .hp_fontsizeNormal {
    font-size: 1rem;
  }
  .hp_fontsizeXLarge {
    font-size: 1.5em;
  }
  .hp_fontsizeLarge {
    font-size: 1.25em;
  }
  .hp_fontsizeSmall {
    font-size: 0.875em;
  }
  .hp_fontsizeXSmall {
    font-size: 0.75em;
  }
  .hp_fontweightBold {
    font-weight: bold;
  }
  .hp_textalignCenter {
    text-align: center;
  }
  .hp_textalignRight {
    text-align: right;
  }
  .hp_textindent1em {
    text-indent: 1em;
  }
  .hp_burasageindent1em {
    text-indent: -1em;
    padding-left: 1em;
  }
  .hp_burasageindent2em {
    text-indent: -2em;
    padding-left: 2em;
  }
  .hp_colorRed {
    color: var(--site-color-red);
  }
  .hp_colorBlue {
    color: var(--site-color-blue);
  }
  .hp_margintop0 {
    margin-top: 0;
  }
  .hp_margintop1rem {
    margin-top: 1rem;
  }
  .hp_margintop2rem {
    margin-top: 2rem;
  }
  .hp_margintop3rem {
    margin-top: 3rem;
  }
  .hp_margintop5rem {
    margin-top: 5rem;
  }
  .hp_tablecellCenter {
    text-align: center;
  }
  .hp_tablecellRight {
    text-align: right;
  }
  .hp_tablecellNowrap {
    white-space: nowrap;
  }
  .hp_width100 {
    width: 100%;
  }
}
