@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] {
    -webkit-text-decoration: underline dotted;
    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;
    -moz-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 91 171);
    --site-color-red: rgb(255 0 0);
    --site-color-beige: rgb(220 220 200);
    --site-color-beigeDark: rgb(200 200 180);
  }
  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, 0, 0);
  }
  @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, 0, 0, 0.7);
  }
  @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, 0, 0, 0.85);
      opacity: 1;
      visibility: visible;
    }
  }
  .bl_sideNav_list {
    overflow-y: auto;
    font-weight: bold;
    color: rgb(255, 255, 255);
  }
  .bl_sideNav_item {
    border-bottom: 2px dotted rgb(150, 150, 150);
  }
  .bl_sideNav_link {
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 0;
  }
  .bl_sideNav_link > svg {
    width: 1em;
    height: 1em;
  }
  .bl_sideNav_link::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(to right, var(--site-color-blue), 65%, rgb(67, 169, 174));
    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: 16px;
  }
  .bl_jimukyoku_list {
    font-weight: bold;
  }
  .bl_jimukyoku_list > *:not(:first-child) {
    margin-top: 16px;
  }
  .bl_jimukyoku_list > dt {
    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;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bl_jimukyoku_list > dd {
    font-size: 0.75rem;
    color: var(--site-color-white);
  }
  .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 > 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-beigeDark);
    border-left: solid 1px var(--site-color-beigeDark);
  }
  .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-beigeDark);
    border-right: solid 1px var(--site-color-beigeDark);
    vertical-align: middle;
  }
  .bl_tableCross table thead tr th,
  .bl_tableCross table tbody tr th {
    background-color: var(--site-color-beige);
  }
  .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;
  }
  .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 {
    height: 100px;
    padding: 15px 30px;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    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;
  }
  .el_headingLv2 {
    padding: 0.75rem 1rem;
    margin-top: 40px;
    margin-bottom: 16px;
    background-image: linear-gradient(to right, var(--site-color-blue), 70%, var(--site-color-black));
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--site-color-white);
  }
  .el_headingLv2:first-child {
    margin-top: unset;
  }
  .el_headingLv3 {
    padding-bottom: 0.25rem;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image-source: linear-gradient(to right, var(--site-color-blue), 70%, var(--site-color-black));
    border-image-slice: 1;
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .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_googlemaps {
    width: 100%;
  }
}
@layer unique {
  .un_topHero .un_topHero_img {
    max-width: 100%;
    height: auto;
  }
  .un_topInformation .un_topInformation_title {
    padding: 0.75rem 1rem;
    background-image: linear-gradient(to right, var(--site-color-blue), 70%, var(--site-color-black));
    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;
    -moz-column-gap: 1rem;
    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: rgb(67, 169, 174);
    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_aisatsuProfile {
    display: grid;
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .un_aisatsuProfile .un_aisatsuProfile_content {
    grid-column: 2/3;
    align-content: flex-end;
    line-height: 1.8;
  }
  .un_aisatsuProfile .un_aisatsuProfile_imgWrapper {
    grid-column: 1/2;
  }
  .un_gaiyoTable {
    width: 100%;
  }
  .un_gaiyoTable tr {
    border-top: solid 1px var(--site-color-beigeDark);
  }
  .un_gaiyoTable tr th, .un_gaiyoTable tr td {
    padding: 1rem;
  }
  .un_gaiyoTable tr th {
    min-width: 7em;
    display: inline-block;
    -moz-text-align-last: justify;
    text-align-last: justify;
  }
  .un_gaiyoTable tr:last-of-type {
    border-bottom: solid 1px var(--site-color-beigeDark);
  }
}
@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_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%;
  }
} 

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