@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* 灰 */
/* --------------------------------------------------
  COMMON STYLES
  -------------------------------------------------- */
:root {
  --blue: #0055A2;
  /* 青 */
  --blue--rgb: 0, 85, 162;
  /* 青のRGB */
  --blue--light: #77B7FF;
  /* 薄い青 */
  --blue--ex-light: #e8f2f7;
  /* 薄い青 */
  --blue--dark: #002672;
  --blue--ex-dark: #002B53;
  --aqua: #00A9D5;
  --green: #15874e;
  /* 濃い青 */
  --gray: #808080;
  --gray--light: #aaa;
  --gray--dark:#444;
  --red: #FF0000;
  --fontColor: #000000;
  --fontColor--light: #333333;
  --fontSize: 16;
  --linkTxtColor: var(--blue);
  --borderColor--light: #d3d3d3;
  --borderColor: #B9B9B9;
  --borderColor--dark: #A4A4A4;
  --borderColor--blue--light: #B2C6D8;
  --containerMaxWidth: 1366;
  --bg--gray: #ededed;
  --bg--gray--light: #f6f6f6;
  --bg--blue--light: #F6F9FC;
  /* 灰 */
}

@layer reset, common, components, layout, pages, utilities, pickup;
@layer reset {
  /* ===== RESET ===== */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  *:before,
  *:after {
    box-sizing: border-box;
  }
  li {
    list-style: none;
  }
  p {
    margin: 0;
  }
  /* CSS Document */
  html {
    font-size: 62.5%;
    scrollbar-gutter: stable;
  }
  body {
    line-height: 1.86;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(1.4rem, 1.1439065109rem + 0.3338898164vw, 1.6rem);
    color: var(--fontColor);
    background: #fff;
    -webkit-text-size-adjust: 100%;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
}
@layer common {
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  a {
    opacity: 1;
    transition: 0.3s ease-in-out;
    color: var(--linkTxtColor);
    text-decoration: none;
    cursor: pointer;
  }
  a:hover {
    opacity: 0.7;
    color: var(--linkTxtColor);
    text-decoration: underline;
  }
  /* ===== FORM ===== */
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=date],
  input[type=button],
  input[type=submit],
  textarea {
    /* reset */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    /* font-size      : 100%; */
    font-weight: normal;
    outline: none;
    /* end - reset */
  }
  select {
    /* reset */
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    font-weight: normal;
    outline: none;
    /* end - reset */
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=date],
  select,
  textarea {
    padding: min(0.5em, 1.8vw) min(0.8em, 2vw);
    border: 1px solid var(--borderColor);
    border-radius: 0.3em;
    background: #fff;
    color: var(--fontColor);
    font-size: 100%;
  }
  input[type=text]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #aaa;
  }
  input[type=text]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=password]::-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #aaa;
  }
  input[type=text]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=password]::-moz-input-placeholder,
  select::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #aaa;
  }
  input[type=checkbox],
  input[type=radio] {
    margin-right: 4px;
  }
  textarea {
    resize: vertical;
  }
  select::-ms-expand {
    display: none;
  }
  /* ===== end - FORM ===== */
}
@layer components {
  .section {
    overflow: hidden;
    padding-block: clamp(1.5em, 3%, 2.2em);
  }
  .section.borderTop {
    padding-top: 10px;
  }
  .section.borderTop > .container:first-child {
    padding-top: 10px;
    border-top: 1px solid var(--borderColor);
  }
  .section.anchr {
    margin-top: -80px;
    padding-top: calc(80px + min(4%, 2.8em));
  }
  @media (max-width: 991px) {
    .section.anchr {
      margin-top: -55px;
      padding-top: calc(55px + min(4%, 2.8em));
    }
  }
  @media (max-width: 767px) {
    .section.anchr {
      margin-top: -55px;
      padding-top: calc(55px + min(4%, 2.8em));
    }
  }
  .section.--full {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .section p + p {
    margin-top: 1.5em;
  }
  .section .article + .article {
    margin-top: 65px;
  }
  .section:first-child {
    padding-top: 0;
  }
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-inline: min(5.7833089312vw, 79px);
    max-width: 1366px;
  }
  .container.--full {
    max-width: 100%;
    max-width: initial;
  }
  .container.--no-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .directory__frame {
    padding-block: 1em 0;
  }
  .directory__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.4rem;
    letter-spacing: 0;
  }
  .directory__list-item {
    font-size: 0.875em;
  }
  .directory__list-item:not(:last-child):after {
    content: "";
    display: inline-block;
    position: relative;
    top: -0.15em;
    margin: 0 0.4rem;
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page-title {
    position: relative;
    margin: 0;
    color: var(--blue);
    margin-block: min(2%, 0.75em) min(0.8%, 0.35em);
    padding-left: 0.4em;
    font-size: clamp(3rem, -0.5853088481rem + 4.674457429vw, 5.8rem);
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.3;
    will-change: opacity, transform;
  }
  .page-title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.08em;
    height: 1.7em;
    background: var(--blue);
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(-50%) scaleY(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  }
  .page-title.active:before {
    opacity: 1;
    transform: translateY(-50%) scaleY(1);
  }
  .page-title__en {
    display: block;
    color: #000;
    font-size: max(0.4em, 1.3rem);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-top: 0.25em;
  }
  .page-title .sub {
    display: block;
    position: relative;
    font-size: 0.45em;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
  }
  .page-title__wrap + .section {
    padding-top: 0;
  }
  .section__title {
    position: relative;
    margin: 0 0 0.5em;
    font-size: clamp(2.1rem, 0.0512520868rem + 2.6711185309vw, 3.7rem);
    line-height: 1.3;
    font-weight: bold;
    color: var(--blue--dark);
  }
  .section__title.--ordered {
    display: flex;
    align-items: center;
    gap: 0.35em;
  }
  .section__title.--ordered .idx {
    display: block;
    font-size: 1.2em;
    position: relative;
    top: -0.03em;
    color: var(--blue);
    font-family: "Lato", sans-serif;
    opacity: 0.4;
  }
  .section__title.--lined {
    padding-bottom: 0.75em;
    border-bottom: 2px solid var(--blue);
    font-size: clamp(1.8rem, 1.0317195326rem + 1.0016694491vw, 2.4rem);
  }
  @media (min-width: 768px) {
    .section__title {
      padding: 0;
    }
  }
  .section__title-sub {
    display: inline-block;
    position: relative;
    top: -0.15em;
    margin-left: 0.5em;
    font-size: max(1.4rem, 0.55em);
  }
  .section__title-sub.d-block {
    margin: 0.5em 0 0;
    display: block;
  }
  .section__title-sub.--black {
    color: #000000;
  }
  .section__title-en {
    display: inline-block;
    position: relative;
    top: -0.25em;
    margin-left: 1.5em;
    font-size: max(1.2rem, 0.52em);
    color: #0055A2;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.05em;
  }
  .section__title-en.d-block {
    margin: 0.5em 0 0;
    display: block;
  }
  .section__title:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .section__title--m {
    margin: 2.25em 0 1em;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.4em;
    font-size: clamp(1.7rem, 2.6vw, 1.45em);
    line-height: 1.3;
    border-bottom: 1px solid var(--blue--light);
  }
  .section__title--m-sub {
    font-size: 0.8em;
  }
  .section__title--m.txt-num .num {
    top: 0;
  }
  .section__title + .article .section__title--m:first-child {
    margin-top: 1.25em;
  }
  .section__title--s {
    margin: 2.25em 0 1em;
    position: relative;
    overflow: hidden;
    font-size: clamp(1.5rem, 2.3vw, 1.15em);
    color: var(--blue--dark);
    line-height: 1.3;
  }
  .section__title--s.txt-num .num {
    top: 0;
  }
  .btn_input > input, .btn--no-arrw:before, .btn--text-left, .btn--left, .btn, .btn--right {
    --btnColor: var(--blue--dark);
    display: block;
    position: relative;
    line-height: 1.3;
    font-weight: 500;
    border: 1px solid var(--btnColor);
    background: var(--btnColor);
    color: var(--btn-text-color, #fff);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
  }
  .btn_input > input:before, .btn--no-arrw:before, .btn--text-left:before, .btn--left:before, .btn:before, .btn--right:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1.25em;
    box-sizing: border-box;
    width: 0.3625em;
    height: 0.3625em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.1s ease-out;
  }
  .btn_input > input:link, .btn--no-arrw:link:before, .btn--text-left:link, .btn--left:link, .btn:link, .btn--right:link, .btn_input > input:hover, .btn--no-arrw:hover:before, .btn--text-left:hover, .btn--left:hover, .btn:hover, .btn--right:hover, .btn_input > input:active, .btn--no-arrw:active:before, .btn--text-left:active, .btn--left:active, .btn:active, .btn--right:active, .btn_input > input:visited, .btn--no-arrw:visited:before, .btn--text-left:visited, .btn--left:visited, .btn:visited, .btn--right:visited {
    text-decoration: none;
  }
  .btn_input > input:hover, .btn--no-arrw:hover:before, .btn--text-left:hover, .btn--left:hover, .btn:hover, .btn--right:hover {
    opacity: 1;
    background: transparent;
    color: var(--blue--dark);
  }
  .btn_input > input:hover:before, .btn--no-arrw:hover:before, .btn--text-left:hover:before, .btn--left:hover:before, .btn:hover:before, .btn--right:hover:before {
    border-color: var(--blue);
  }
  .btn_input > input.--square, .--square.btn--no-arrw:before, .--square.btn--text-left, .--square.btn--left, .--square.btn, .--square.btn--right {
    border-radius: 0;
  }
  .btn_input > input.--round-square, .--round-square.btn--no-arrw:before, .--round-square.btn--text-left, .--round-square.btn--left, .--round-square.btn, .--round-square.btn--right {
    border-radius: 0.3em;
  }
  .btn_input > input.--aqua, .--aqua.btn--no-arrw:before, .--aqua.btn--text-left, .--aqua.btn--left, .--aqua.btn, .--aqua.btn--right {
    --btnColor: var(--blue);
  }
  .btn_input > input.--stroke, .--stroke.btn--no-arrw:before, .--stroke.btn--text-left, .--stroke.btn--left, .--stroke.btn, .--stroke.btn--right {
    background: transparent;
    color: var(--blue);
  }
  .btn_input > input.--stroke:before, .--stroke.btn--no-arrw:before, .--stroke.btn--text-left:before, .--stroke.btn--left:before, .--stroke.btn:before, .--stroke.btn--right:before {
    border-color: var(--blue);
  }
  .btn_input > input.--stroke:hover, .--stroke.btn--no-arrw:hover:before, .--stroke.btn--text-left:hover, .--stroke.btn--left:hover, .--stroke.btn:hover, .--stroke.btn--right:hover {
    background: var(--blue);
    color: #fff;
  }
  .btn_input > input.--stroke:hover:before, .--stroke.btn--no-arrw:hover:before, .--stroke.btn--text-left:hover:before, .--stroke.btn--left:hover:before, .--stroke.btn:hover:before, .--stroke.btn--right:hover:before {
    border-color: #fff;
  }
  .btn_input > input.--white, .--white.btn--no-arrw:before, .--white.btn--text-left, .--white.btn--left, .--white.btn, .--white.btn--right {
    --btnColor: #fff;
    color: var(--blue--dark);
    border: 1px solid var(--blue--light);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  }
  .btn_input > input.--white:before, .--white.btn--no-arrw:before, .--white.btn--text-left:before, .--white.btn--left:before, .--white.btn:before, .--white.btn--right:before {
    border-top: 2px solid var(--blue--dark);
    border-right: 2px solid var(--blue--dark);
  }
  .btn_input > input.--white:hover, .--white.btn--no-arrw:hover:before, .--white.btn--text-left:hover, .--white.btn--left:hover, .--white.btn:hover, .--white.btn--right:hover {
    background: var(--blue--dark);
    color: #fff;
  }
  .btn_input > input.--white:hover:before, .--white.btn--no-arrw:hover:before, .--white.btn--text-left:hover:before, .--white.btn--left:hover:before, .--white.btn:hover:before, .--white.btn--right:hover:before {
    background: var(--blue--dark);
  }
  .btn_input > input.--white.pdf--after, .--white.pdf--after.btn--no-arrw:before, .--white.pdf--after.btn--text-left, .--white.pdf--after.btn--left, .--white.pdf--after.btn, .--white.pdf--after.btn--right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1em;
    gap: 0.5em;
  }
  .btn_input > input.--white.pdf--after:before, .--white.pdf--after.btn--no-arrw:before, .--white.pdf--after.btn--text-left:before, .--white.pdf--after.btn--left:before, .--white.pdf--after.btn:before, .--white.pdf--after.btn--right:before {
    display: none;
  }
  .btn_input > input.--white.pdf--after:hover:after, .--white.pdf--after.btn--text-left:hover:after, .--white.pdf--after.btn--left:hover:after, .--white.pdf--after.btn:hover:after, .--white.pdf--after.btn--right:hover:after {
    color: #fff;
  }
  .btn_input > input.--white.login--after, .--white.login--after.btn--no-arrw:before, .--white.login--after.btn--text-left, .--white.login--after.btn--left, .--white.login--after.btn, .--white.login--after.btn--right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1em;
    gap: 0.5em;
  }
  .btn_input > input.--white.login--after:before, .--white.login--after.btn--no-arrw:before, .--white.login--after.btn--text-left:before, .--white.login--after.btn--left:before, .--white.login--after.btn:before, .--white.login--after.btn--right:before {
    display: none;
  }
  .btn_input > input.--white.login--after:hover:after, .--white.login--after.btn--text-left:hover:after, .--white.login--after.btn--left:hover:after, .--white.login--after.btn:hover:after, .--white.login--after.btn--right:hover:after {
    color: #fff;
  }
  .btn, .btn--right {
    margin-left: auto;
    margin-right: auto;
    padding: 1.3em 2.85em 1.3em 1.8em;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 18em;
    line-height: 1.3;
    font-weight: 500;
    border-radius: 99999px;
    word-break: break-word;
  }
  .btn--s {
    font-size: 0.9em;
    padding: 1em;
    min-width: 16.5em;
  }
  .btn--input {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 18em;
    line-height: 1.3;
    font-weight: 500;
    line-height: 1.3;
    font-size: 1em;
    border: 1px solid var(--blue--dark);
    background: var(--blue--dark);
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .btn--input.--round-square {
    border-radius: 0.3em;
  }
  .btn--input > input {
    display: block;
    padding: 1.3em 2.85em 1.3em 1.8em;
    width: 100%;
    height: 100%;
    line-height: 1.3;
    font-size: 100%;
    color: inherit;
    cursor: pointer;
    text-align: center;
  }
  .btn--input:hover {
    transition: all 0.4s ease-out;
    background: transparent;
    color: var(--blue--dark) !important;
  }
  .btn--left {
    margin-left: 0;
    margin-right: 0;
  }
  .btn--right {
    float: right;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 18em;
  }
  .btn--text-left {
    text-align: left;
  }
  .btn--no-arrw:before {
    display: none;
  }
  .btn.d-in-block, .d-in-block.btn--right {
    display: inline-block;
    padding: 18px 28px;
    width: auto;
    max-width: initial;
  }
  .btn_input > input {
    padding-inline: 1em;
  }
  .btn--send:before {
    display: none;
  }
  .btn--send:after {
    right: auto;
    left: 1em;
    border-color: #fff;
  }
  .btn--send:hover:after {
    border-color: var(--blue);
  }
  .btn--reset,
  .btn--del {
    background: var(--stone);
  }
  .btn--reset:after,
  .btn--del:after {
    display: none;
  }
  .btn--reset:before,
  .btn--del:before {
    right: auto;
    left: 1em;
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    background: none;
    line-height: 1;
  }
  .btn--reset:hover:before,
  .btn--del:hover:before {
    background: none;
  }
  .btn--conf {
    background: var(--aqua);
  }
  .btn--conf:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    background: none;
    line-height: 1;
  }
  .btn--dl {
    background: var(--kale);
  }
  .btn--dl:before {
    content: "\f063";
    top: calc(50% - 1px);
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    background: none;
    line-height: 1;
  }
  .btn--dl:after {
    content: "";
    display: block;
    position: absolute;
    left: 0.6em;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: calc(1em + 2px);
    font-size: 0.8em;
    border-bottom: 2px solid #fff;
  }
  .btn--pdf:before {
    content: "\f1c1";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    background: none !important;
    border: 0;
    width: 1em;
    height: 1em;
    transform: translateY(-50%);
    line-height: 1;
  }
  .btn_input {
    padding: 0;
    overflow: hidden;
  }
  .btn_input > input {
    border: 0;
    font: inherit;
    font-weight: bold;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }
  .btn_input:before, .btn_input:after {
    z-index: 2;
  }
  .btn_input:hover > input {
    color: var(--blue);
  }
  .btn_input.btn--reset {
    border-color: var(--stone);
  }
  .btn_input.btn--reset > input {
    background: var(--stone);
    color: #fff;
  }
  .btn_input.btn--reset:hover > input {
    background: #fff;
    color: var(--stone);
  }
  .btn_input.btn--reset:hover:before {
    color: var(--stone);
  }
  .btn-wrap:has(.btn--right) {
    overflow: hidden;
  }
  * + .btn-wrap {
    margin-top: clamp(1.8rem, 0.2634390651rem + 2.0033388982vw, 3rem);
  }
  .table {
    width: 100%;
    border-collapse: collapse;
  }
  .table caption {
    font-weight: bold;
    margin-bottom: 0.25em;
  }
  .table th,
  .table td {
    padding: 1.25em;
    border: 1px solid var(--borderColor--light);
  }
  .table th {
    font-weight: normal;
  }
  .table tbody th {
    text-align: left;
  }
  .table .text-center th,
  .table th.text-center {
    text-align: center;
  }
  .table--common th {
    font-weight: normal;
    background: var(--bg--gray--light);
  }
  .table.--blue thead th {
    background: rgba(5.7, 39.9, 108.3, 0.85);
    color: #fff;
    padding-block: 0.65em;
  }
  .table.--blue tbody th, .table.--blue tbody .th {
    background: var(--bg--blue--light);
  }
  .table.--type02 thead th {
    border-top: 0;
    color: #0055A2;
    font-weight: bold;
  }
  .table.--type02 td, .table.--type02 th {
    border-left: 0;
    border-right: 0;
  }
  .section__title--m + .--type02 tr:first-child th, .section__title--m + .--type02 tr:first-child td {
    border-top: 0;
  }
  .table__th--bt0, .table__td--bt0 {
    border-top: 0 !important;
  }
  .table__th--bb0, .table__td--bb0 {
    border-bottom: 0 !important;
  }
  .table__th--bl0, .table__td--bl0 {
    border-left: 0 !important;
  }
  .table__th--br0, .table__td--br0 {
    border-right: 0 !important;
  }
  .tbl-wrap {
    position: relative;
    overflow-x: auto;
  }
  .tbl-guide-txt {
    display: none;
    margin: 0 0 10px;
    padding: 8px 15px;
    line-height: 1;
    font-size: 0.9em;
    border-radius: 12px;
    background: #e0eaef;
  }
  @media (max-width: 767px) {
    table:not(.sp-table),
    table:not(.sp-table) > thead,
    table:not(.sp-table) > tbody,
    table:not(.sp-table) > thead > tr,
    table:not(.sp-table) > tbody > tr,
    table:not(.sp-table) > thead > tr > th,
    table:not(.sp-table) > thead > tr > td,
    table:not(.sp-table) > tbody > tr > th,
    table:not(.sp-table) > tbody > tr > td,
    table.tb-table:not(.sp-table),
    table.tb-table:not(.sp-table) > thead,
    table.tb-table:not(.sp-table) > tbody,
    table.tb-table:not(.sp-table) > thead > tr,
    table.tb-table:not(.sp-table) > tbody > tr,
    table.tb-table:not(.sp-table) > tbody > tr > td table.tb-table:not(.sp-table) > thead > tr > th,
    table.tb-table:not(.sp-table) > thead > tr > td,
    table.tb-table:not(.sp-table) > tbody > tr > th,
    table.tb-table:not(.sp-table) > tbody > tr > td {
      display: block;
      width: 100% !important;
      box-sizing: border-box;
    }
    table:not(.sp-table) > thead > tr > th,
    table:not(.sp-table) > thead > tr > td,
    table:not(.sp-table) > tbody > tr > th,
    table:not(.sp-table) > tbody > tr > td table.tb-table:not(.sp-table) > thead > tr > th,
    table.tb-table:not(.sp-table) > thead > tr > td,
    table.tb-table:not(.sp-table) > tbody > tr > th,
    table.tb-table:not(.sp-table) > tbody > tr > td {
      /* display: block;
      width: 100% !important; */
      border-bottom: 0;
    }
    table:not(.sp-table) {
      border-bottom: 1px solid var(--borderColor);
    }
    table:not(.sp-table) th {
      padding: 0.5em;
      margin-bottom: 0.35em;
      font-weight: bold;
    }
    table:not(.sp-table) td {
      padding: 0.5em;
      border-block: 0;
    }
    table:not(.sp-table) td:last-child {
      padding-bottom: 1em;
    }
    table.sp-table th,
    table.sp-table td {
      padding: 1em;
    }
    /* labeled table */
    table.sp-labeled {
      border-bottom: 0;
    }
    table.sp-labeled thead > tr,
    table.sp-labeled tbody > tr {
      border-bottom: 1px solid #B9B9B9;
      padding-block: 0.75em;
    }
    table.sp-labeled thead > tr {
      display: flex;
      justify-content: center;
    }
    table.sp-labeled thead > tr > th {
      width: auto !important;
      padding: 0;
      margin: 0;
      border: 0;
    }
    table.sp-labeled thead > tr > th:empty {
      display: none;
    }
    table.sp-labeled thead > tr > th:not(:last-child):after {
      content: "/";
      margin: 0 1em 0 1em;
    }
    table.sp-labeled thead.sp-text-left > tr {
      justify-content: start;
    }
    table.sp-labeled tbody th, table.sp-labeled tbody td {
      padding-block: 0;
      margin: 0;
      border: 0;
    }
    table.sp-labeled tbody th:last-child, table.sp-labeled tbody td:last-child {
      padding-block: 0;
      margin: 0;
      border: 0;
    }
    table.sp-labeled tbody th[data-label]:before, table.sp-labeled tbody td[data-label]:before {
      content: attr(data-label);
      flex: 0 0 4em;
      margin-right: 0.5em;
      text-align: left;
      font-size: 1.1rem;
      color: var(--blue);
    }
    table.sp-labeled tbody th {
      margin-bottom: 0.35em;
    }
    table.--type02:not(.sp-table) tr {
      padding-block: 0.75em;
      border-bottom: 1px solid var(--borderColor--light);
    }
    table.--type02:not(.sp-table) th, table.--type02:not(.sp-table) td {
      padding-block: 0;
      border: 0;
    }
    table.--type02:not(.sp-table) td {
      padding-top: 0.25em;
    }
  }
  @media (max-width: 575px) {
    table.sp2-block,
    table.sp2-block > thead,
    table.sp2-block > tbody,
    table.sp2-block > thead > tr,
    table.sp2-block > tbody > tr,
    table.sp2-block > thead > tr > th,
    table.sp2-block > thead > tr > td,
    table.sp2-block > tbody > tr > th,
    table.sp2-block > tbody > tr > td {
      display: block;
      width: 100% !important;
      box-sizing: border-box;
    }
    table.sp2-block {
      border-bottom: 1px solid var(--borderColor);
    }
    table.sp2-block td {
      border-block: 0;
    }
  }
  .form {
    color: var(--fontColor);
  }
  .form .flowList {
    display: flex;
    margin: 0 auto 2em;
    border-radius: 3px;
    border: 1px solid var(--blue--light);
    overflow: hidden;
    font-size: clamp(1.2rem, 3.4vw, 1em);
    font-weight: 500;
  }
  .form .flowList li {
    flex-grow: 1;
    position: relative;
    display: grid;
    place-items: center;
    height: 3.2em;
    padding-left: 1.15em;
    color: #666;
    background: #f8f8f8;
  }
  .form .flowList li:first-child {
    padding-left: 0.5em;
  }
  .form .flowList li > span {
    position: relative;
    z-index: 1;
  }
  .form .flowList li:last-child:before {
    display: none;
  }
  .form .flowList li:before {
    content: "";
    display: block;
    width: 2.5em;
    height: 2.5em;
    border-top: 1px solid var(--blue--light);
    border-right: 1px solid var(--blue--light);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%) rotate(45deg) skew(10deg, 10deg);
    z-index: 1;
  }
  .form .flowList li .step {
    display: inline-block;
    font-size: 0.85em;
    letter-spacing: 0;
    margin: 0 0.5em;
  }
  .form .flowList li.current {
    color: #fff;
    font-weight: bold;
    background: var(--blue);
  }
  .form .flowList li.current:before {
    border-color: var(--blue);
    background: var(--blue);
  }
  .form .agreement {
    all: unset !important;
  }
  .form .agreement-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 clamp(1em, 8%, 4em);
    align-items: center;
  }
  .form .is-disabled {
    pointer-events: none;
    opacity: 0.3;
  }
  .form__table {
    margin-top: 2em;
  }
  .section__title--m + .form__table.--type02 {
    margin-top: 0;
  }
  @media (min-width: 768px) {
    .form__th--vtop {
      vertical-align: top;
      padding-top: 1.75em !important;
    }
  }
  .form__zip {
    width: 5em;
    margin-inline: 0.5em;
  }
  .form__label--optional, .form__label--required {
    --labelColor: var(--gray--dark);
    display: inline-block;
    padding: 0 0.35em;
    margin-right: 1em;
    line-height: 1.5;
    font-size: 0.8em;
    border-radius: 2px;
    text-align: center;
    color: var(--labelColor);
    border: 1px solid var(--labelColor);
  }
  .form__label--optional {
    --labelColor: var(--blue);
  }
  .form__label--required {
    --labelColor: var(--red);
  }
  .form__guide-txt {
    display: block;
    padding-block: 0.5em;
    font-size: 0.85em;
    color: var(--gray--dark);
  }
  th .form__guide-txt {
    display: inline-block;
  }
  .form__label {
    display: inline-block;
  }
  .form__label + .form__label {
    margin-left: 2em;
  }
  .form__inner {
    display: flex;
    align-items: center;
    gap: 1em;
  }
  .form__inner-label {
    font-size: 0.9em;
    white-space: nowrap;
  }
  .form__inner + .form__inner {
    margin-top: 1em;
  }
  .form__row + .form__row {
    margin-top: 1em;
  }
  @media (min-width: 768px) {
    .form__row.--flex {
      display: flex;
      justify-content: flex-start;
      gap: 2em;
    }
    .form__row.--flex > .--1fr {
      flex: 1;
    }
    .form__row.--col2 {
      display: grid;
      gap: 2em;
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }
  }
  @media (min-width: 768px) {
    .form__row.--flex .form__inner + .form__inner, .form__row.--col2 .form__inner + .form__inner {
      margin-top: 0;
    }
  }
  .form__help {
    display: inline-block;
    margin: 0.25em 1em;
  }
  .form__help .icon-attention {
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.2em;
    text-align: center;
    font-size: 0.8em;
    background: var(--blue--ex-light);
    border: 1px solid var(--blue--light);
    color: var(--blue);
    margin-right: 0.5em;
    border-radius: 50%;
  }
  @media print, screen and (max-width: 767px) {
    .form__th, .form__td {
      display: block;
      padding: 0.75em 0 0 !important;
      width: 100%;
    }
    .form__th {
      font-weight: bold;
      font-size: 0.95em;
      padding-bottom: 0.5em !important;
      border-bottom: 1px solid var(--borderColor--light);
    }
    .form__th:before {
      display: none;
    }
    .form__input--disabled .form__td {
      padding-left: 0.5em !important;
    }
  }
  .form input[type=text]:disabled,
  .form input[type=text] .is-disabled,
  .form input[type=radio]:disabled,
  .form input[type=radio] .is-disabled,
  .form input[type=checkbox]:disabled,
  .form input[type=checkbox] .is-disabled,
  .form input[type=tel]:disabled,
  .form input[type=tel] .is-disabled,
  .form input[type=email]:disabled,
  .form input[type=email] .is-disabled,
  .form input[type=date]:disabled,
  .form input[type=date] .is-disabled,
  .form select:disabled,
  .form select .is-disabled,
  .form textarea:disabled,
  .form textarea .is-disabled {
    opacity: 0.5;
    background: var(--bg--gray);
    border-color: transparent;
    pointer-events: none;
  }
  .form .btn--input.is-disabled > input {
    opacity: 0.5;
    pointer-events: none;
  }
  @media (min-width: 768px) {
    .form__table tr:has(.form__section) th {
      padding-bottom: 5.5em;
    }
  }
  .form__field-container .table.--type02 {
    margin-top: 0;
  }
  .form__field-container .table.--type02 tr:first-child th, .form__field-container .table.--type02 tr:first-child td {
    border-top: 0;
  }
  .form__field-container + .form__field-container {
    margin-top: 1em;
  }
  @media (max-width: 767px) {
    .form__field-container + .form__field-container {
      margin-top: 1.5em;
      padding-top: 1.5em;
      border-top: 1px dotted var(--blue--light);
    }
  }
  .form__section .add-btn-wrapper {
    margin-top: 1.5em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
  }
  .form__section .add-btn-wrapper .btn-add, .form__section .add-btn-wrapper .btn-remove {
    --btnColor: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 1.05em;
    font-size: 0.9em;
    font-weight: bold;
    color: var(--btnColor);
    border: 2px solid var(--btnColor);
    border-radius: 0.3em;
    letter-spacing: normal;
    text-decoration: none;
  }
  .form__section .add-btn-wrapper .btn-add:before, .form__section .add-btn-wrapper .btn-remove:before {
    content: "\f067";
    display: block;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    line-height: 1;
  }
  .form__section .add-btn-wrapper .btn-add:hover, .form__section .add-btn-wrapper .btn-remove:hover {
    opacity: 1;
  }
  .form__section .add-btn-wrapper .btn-remove {
    --btnColor: var(--gray);
  }
  .form__section .add-btn-wrapper .btn-remove:before {
    content: "ー";
  }
  .form__section .add-btn-wrapper .btn-add.disabled {
    pointer-events: none;
    opacity: 0.3;
  }
  .form__section .section__title--s {
    margin-bottom: 0;
  }
  .form__section .section__title--s .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.8em;
    margin-left: 0.3em;
    position: relative;
    top: -0.1em;
  }
  .cart__list {
    margin: 1em auto 0;
  }
  .cart__list-thead, .cart__list-tbody {
    --gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 120px 80px 150px;
    gap: 0 var(--gap);
  }
  .cart__list-thead {
    background: var(--blue--ex-light);
    border-block: 1px solid var(--borderColor);
    align-items: center;
    line-height: 1.3;
    font-size: 0.85em;
  }
  .cart__list-tbody {
    padding-block: 1em;
  }
  .cart__list-th, .cart__list-td {
    padding-top: 1em;
  }
  .cart__list-th {
    padding-block: 1em;
    text-align: center;
  }
  .cart__list-tbody {
    line-height: 1.4;
  }
  .cart__list-tbody .col__item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    line-height: 1.7;
  }
  .cart__list-tbody .col__price,
  .cart__list-tbody .col__total {
    text-align: right;
  }
  .cart__list-tbody .col__num {
    text-align: center;
  }
  .cart__list-tbody .col__num input[type=text] {
    text-align: center;
  }
  .cart__list-tbody .col__btn {
    grid-column: span 4;
    padding-top: 0;
  }
  .cart__list-tbody .col__btn .btn-delete {
    float: right;
  }
  .cart__list-tbody .col__total {
    color: #FF0000;
    font-weight: bold;
  }
  .cart__list-tbody .col__total .cart__list-item__total-num,
  .cart__list-tbody .col__total .price--member {
    font-size: 1.1em;
  }
  .cart__list-tbody .cart__list-item__img {
    width: 100%;
  }
  .cart__list-tbody .cart__list-item__img img {
    display: block;
    margin: 0 auto;
    width: min(120px, 100%);
  }
  .cart__list-tbody .cart__list-item__title {
    font-weight: bold;
  }
  .cart__list-tbody .cart__list-item__cat {
    --_color: var(--color, var(--blue));
    display: inline-block;
    font-size: 0.8em;
    margin-right: 0.75em;
    padding: 0 0.5em;
    height: 100%;
    color: #fff;
    text-align: center;
    border-radius: 0.25em;
    background: var(--_color);
  }
  .cart__list-tbody .cart__list-item__cat.--book {
    --color: var(--aqua);
  }
  .cart__list-tbody .cart__list-item__cat.--ebook {
    --color: var(--green);
  }
  .cart__list-tbody .cart__list-item__cat.--dl {
    --color: var(--blue);
  }
  .cart__list-tbody .cart__list-item__toc {
    margin-top: 0.7em;
    font-size: 0.9em;
  }
  @media (min-width: 768px) {
    .cart__list-tbody .cart__list-item__img {
      max-width: 120px;
      flex: 0 0 33%;
    }
    .cart__list-tbody .cart__list-item__summary {
      flex: 1;
    }
  }
  .cart__list-tfoot {
    --tfootW: 420px;
    display: grid;
    grid-template-columns: 1fr var(--tfootW);
    gap: 0 var(--gap);
  }
  .cart__list-total__tbl {
    grid-column: 2;
    background: var(--bg--blue--light);
    margin-top: 2em;
    padding: 1.5em;
  }
  .cart__list-total__tbl .btn, .cart__list-total__tbl .btn--right {
    margin-top: 1.5em;
  }
  .cart__list-total__tbl .btn + .btn, .cart__list-total__tbl .btn--right + .btn, .cart__list-total__tbl .btn + .btn--right, .cart__list-total__tbl .btn--right + .btn--right {
    margin-top: 1em;
  }
  .cart__list-total__tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1em;
    margin-block: 0.5em;
  }
  .cart__list-total__td {
    text-align: right;
  }
  .cart__list-total__td .price {
    font-weight: bold;
    font-size: 1.2em;
    color: #FF0000;
  }
  .cart__list-total__num {
    padding-bottom: 1em;
    border-bottom: 1px solid var(--borderColor);
  }
  @media (max-width: 991px) {
    .cart__list-tbody {
      font-size: 0.9em;
    }
  }
  @media (max-width: 767px) {
    .cart__list-thead {
      padding: 0 0.5em;
      gap: 0;
      grid-template-columns: repeat(5, max-content);
    }
    .cart__list-thead > * {
      padding-inline: 0.8em;
      font-size: 0.85em;
      position: relative;
    }
    .cart__list-thead > *:before {
      content: "/";
      display: block;
      position: absolute;
      right: -0.2em;
      top: 50%;
      font-size: 1.85em;
      color: rgba(0, 0, 0, 0.2);
      transform: translateY(-50%);
    }
    .cart__list-thead > *:last-child:before {
      display: none;
    }
    .cart__list-tbody {
      font-size: 1em;
      grid-template-columns: repeat(2, 30%) 1fr;
    }
    .cart__list-tbody .col__item,
    .cart__list-tbody .col__btn {
      grid-column: span 3;
    }
    .cart__list-tbody .col__btn {
      padding-top: 1em;
    }
    .cart__list-td::before {
      display: block;
      margin: 0 0 0.5em;
      padding: 0.05em 0.75em;
      background: var(--bg--gray);
      content: attr(data-label);
      font-size: 1.1rem;
      color: var(--gray--dark);
      text-align: center;
    }
    .cart__list-td.col__item:before, .cart__list-td.col__btn:before {
      display: none;
    }
  }
  @media (max-width: 575px) {
    .cart__list-tbody {
      --gap: 1em;
      grid-template-columns: repeat(3, calc((100% - 2em) / 3));
    }
    .cart__list-tbody .col__item,
    .cart__list-tbody .col__btn {
      grid-column: span 3;
    }
    .cart__list-tfoot {
      --tfootW: 100%;
    }
  }
  .cart__list-tbody + .cart__list-tbody {
    border-top: 1px solid var(--borderColor);
  }
  .cart__list .btn-delete {
    display: block;
    margin: 0 auto;
    padding: 0.25em 1em;
    font-size: 1.05em;
    border: 1px solid var(--gray);
    border-radius: 4px;
  }
  .cart__list .btn-delete:before {
    content: "\f1f8";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-right: 0.5em;
    font-size: 0.8em;
    color: var(--gray--dark);
    position: relative;
    top: -0.1em;
    opacity: 0.8;
  }
  .cart__btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
  }
  .cart__btn-wrap .cart__btn {
    --btnBg: var(--blue);
    --btnColor: #fff;
    display: flex;
    gap: 0.8em;
    align-items: center;
    position: relative;
    padding: 0.65em 1.5em 0.65em 1.25em;
    font-size: 0.9em;
    color: var(--btnColor);
    background: var(--btnBg);
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
  }
  .cart__btn-wrap .cart__btn .ico {
    width: 0.9em;
    height: 0.9em;
    line-height: 0.9em;
  }
  .cart__btn-wrap .cart__btn .ico svg {
    display: block;
    position: relative;
    top: -0.15em;
  }
  .cart__btn-wrap .btn-back {
    --btnColor: var(--blue--dark);
    --btnBg: var(--blue--ex-light);
    border: 1px solid rgba(0, 85, 162, 0.5);
  }
  @media (max-width: 575px) {
    .cart__btn-wrap {
      justify-content: center;
    }
  }
  @media (max-width: 767px) {
    /* ===== FLEX BOX ===== */
    .sp-d-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .sp-d-flex.sp-rtl {
      flex-direction: row-reverse;
    }
    .sp-d-flex.sp-col {
      flex-direction: column;
    }
    .sp-d-flex.sp-wrap {
      flex-wrap: wrap;
    }
    .sp-d-flex.sp-justify-start,
    .sp-d-flex.sp--justify-start {
      justify-content: flex-start;
    }
    .sp-d-flex.sp-justify-end,
    .sp-d-flex.sp--justify-end {
      justify-content: flex-end;
    }
    .sp-d-flex.sp-justify-center,
    .sp-d-flex.sp--justify-center {
      justify-content: center;
    }
    .sp-alignItemsCenter {
      align-items: center;
    }
    .sp-d-flex.sp-col {
      flex-direction: column;
    }
    .sp-d-flex.sp-col-rev {
      flex-direction: column-reverse;
    }
    .sp-d-flex.sp-align-left {
      justify-content: flex-start;
    }
    .sp-d-flex.sp-align-right {
      justify-content: flex-end;
    }
    .sp-d-flex.sp-align-center {
      justify-content: center;
    }
    .sp-d-flex.sp-even > * {
      flex: 1;
    }
    .sp-d-flex.sp-col2 > * {
      width: 50%;
    }
    .sp-d-flex.sp-col3 > * {
      width: 33.33%;
    }
    .pc-d-flex {
      flex-direction: column;
      gap: 1.65em;
    }
    /* ===== end - FLEX BOX ===== */
  }
  @media (max-width: 575px) {
    .d-flex.sp2-block,
    .tb-d-flex.sp2-block,
    .sp-d-flex.sp2-block {
      display: block !important;
    }
    .d-flex.sp2-block > *,
    .tb-d-flex.sp2-block > *,
    .sp-d-flex.sp2-block > * {
      width: 100%;
    }
  }
  .googleMap {
    border: 0;
    width: 100%;
    aspect-ratio: 4/3;
  }
  @media (min-width: 768px) {
    .googleMap {
      aspect-ratio: 7/3;
    }
  }
  .movie__wrapper .movie iframe {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .list > li + li {
    margin-top: 0.5em;
  }
  @media (max-width: 767px) {
    .list > li + li {
      margin-top: 1.2em;
    }
  }
  .list--number > li {
    text-indent: -1.25em;
    padding-left: 1.25em;
  }
  .list--number2 > li {
    text-indent: -2em;
    padding-left: 2em;
  }
  .list--number > li > *,
  .list--number2 > li > * {
    text-indent: initial;
  }
  .list--alpha {
    list-style-type: lower-alpha;
  }
  .list--alpha > li {
    margin-left: 1.25em;
    list-style-type: lower-alpha;
  }
  .list--arrow > li,
  .list--arrow2 > li {
    position: relative;
    padding-left: 1.2em;
  }
  .list--arrow > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 0.4em;
    height: 0.4em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  .list--arrow2 > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.4em;
    height: 0.4em;
    border-top: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    transform: rotate(45deg);
  }
  .list--arrow.--lined li {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .list--arrow.--lined li:before {
    top: 1.8em;
  }
  .list--arrow.--lined li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .list--dot > li,
  .list--dot > .li,
  .list--dot-blue > li,
  .list--dot-blue > .li {
    position: relative;
    padding-left: 0.75em;
  }
  .list--dot > li:before,
  .list--dot > .li:before,
  .list--dot-blue > li:before,
  .list--dot-blue > .li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background: #000;
  }
  .list--dot-blue > li:before,
  .list--dot-blue > .li:before {
    background: var(--blue);
  }
  .list--border li {
    position: relative;
    padding: 1.25em 0.5em;
  }
  .list--border li:not(:last-child) {
    border-bottom: 1px solid var(--borderColor);
  }
  .list--indent > li {
    text-indent: -1em;
    padding-left: 1em;
  }
  .list--indent2 > li {
    text-indent: -2em;
    padding-left: 2em;
  }
  .list--indent3 > li {
    text-indent: -3.25em;
    padding-left: 3.25em;
  }
  .ol {
    margin: 2.5em 0;
  }
  .ttl + .ol,
  .ttl_m + .ol,
  .ttl_s + ol {
    margin-top: 0 !important;
  }
  .ol > li {
    counter-increment: ol-idx;
    position: relative;
    margin: 0 0 0.65em;
    padding-left: 2em;
  }
  .ol > li:before {
    content: counter(ol-idx);
    display: block;
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 0.1em;
    background: rgb(34, 100, 184);
    color: #fff;
    text-align: center;
  }
  .txt-num {
    position: relative;
    padding-left: 2em;
  }
  .txt-num .num {
    content: counter(ol-idx);
    display: block;
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 0.1em;
    background: rgb(34, 100, 184);
    color: #fff;
    text-align: center;
  }
  .dl .txt-num + dd {
    padding-left: 2em;
  }
  @media (max-width: 767px) {
    .dl .txt-num + dd {
      padding-left: 0;
    }
  }
  .bg {
    background: var(--bg--gray);
  }
  .bg--blue {
    background: var(--blue);
  }
  .color--blue {
    color: var(--blue--dark);
  }
  .color00 {
    color: var(--fontColor);
  }
  .box, .attention-box {
    background: #f5f5f5;
    padding: 1.65em;
    margin: 30px 0;
  }
  .box.--blue, .--blue.attention-box {
    background: #EBF5FF;
  }
  .box.--blue.--border, .--blue.--border.attention-box {
    background: #F6F9FC;
  }
  .box.--pink, .--pink.attention-box {
    background: #ffeff1;
  }
  .box.--frame, .--frame.attention-box {
    background: none;
    border: 3px solid rgba(0, 85, 162, 0.2);
  }
  .box.--border, .--border.attention-box {
    border: 1px solid var(--borderColor--blue--light);
  }
  .box.--round, .--round.attention-box {
    border-radius: 0.5em;
  }
  .attention-box {
    background: #FFF8E5;
    border-radius: 0.5em;
  }
  .attention-box__title {
    margin: 0 0 0.5em;
    line-height: 1.3;
    font-size: 1.2em;
    font-weight: bold;
    color: #002B53;
    position: relative;
    padding-left: calc(1.4em + 0.35em);
  }
  .attention-box__title:before {
    content: "!";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    font-size: 0.9em;
    text-align: center;
    background: #FFA200;
    color: #fff;
    font-weight: 900;
    border-radius: 50%;
  }
  .box__title {
    margin: 0 0 0.65em;
    line-height: 1.3;
    font-size: 1.1em;
    font-weight: bold;
  }
  .box__title--m {
    font-size: 1em;
  }
  .box__title--m.--blue {
    color: var(--blue);
  }
  .box__title.--lined {
    margin: 0 0 0.75em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--borderColor--blue--light);
  }
  .box__title.--blue {
    color: #0055A2;
  }
  .box__title.--dark-blue {
    color: #002672;
  }
  .round {
    border-radius: 0.25em;
  }
  .arrow01 {
    position: relative;
    padding-left: 1em;
    width: -moz-fit-content;
    width: fit-content;
  }
  .arrow01:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.57em;
    width: 0.4em;
    height: 0.4em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  .arrow01:has(.pdf):before,
  .arrow01:has(.pdf--after):before {
    top: 0.8em;
  }
  .arrow01_after {
    position: relative;
    padding-right: 1.05em;
    width: -moz-fit-content;
    width: fit-content;
  }
  .arrow01_after:before {
    content: "";
    display: block;
    position: absolute;
    right: 0.2em;
    top: calc(50% + 0.1em);
    width: 0.4em;
    height: 0.4em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
  }
  .arrow02 {
    position: relative;
    padding-left: 0.9em;
  }
  .arrow02:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    border: 4px solid transparent;
    border-left: 5px solid var(--blue);
  }
  .arrow02_after {
    position: relative;
    padding-right: 1.05em;
  }
  .arrow02_after:before {
    content: "";
    display: block;
    position: absolute;
    right: 0.2em;
    top: 50%;
    border: 4px solid transparent;
    border-left: 5px solid var(--blue);
    transform: translateY(-50%);
  }
  dl.dl > dd:not(:last-of-type) {
    margin: 0 0 1em;
  }
  dl.dl > dd {
    padding-left: 1em;
  }
  .label_checkbox,
  .label_radio {
    position: relative;
    cursor: pointer;
  }
  .checkbox,
  .radio {
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 6px;
    width: 1.3em;
    height: 1.3em;
    vertical-align: middle;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    background: #fff;
  }
  .radio {
    border-radius: 50%;
  }
  .checkbox:before {
    content: "";
    display: block;
    position: absolute;
    left: 0.098em;
    top: 0.54em;
    width: 0;
    height: 0;
    border-left: 3px solid #009688;
    border-bottom: 3px solid #009688;
    margin: 1px 0 0 1px;
    opacity: 0;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    transition: opacity 0.2s cubic-bezier(0, 0, 0, 0.97) 0s, width 0.2s cubic-bezier(0, 0, 0, 0.97) 0.2s, height 0.2s cubic-bezier(0, 0, 0, 0.97) 0.2s;
  }
  .radio:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: #009688;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: all 0.25s ease-out;
  }
  .label_checkbox input[type=checkbox]:checked + .checkbox:before {
    transition-duration: 0.35s;
    transition-delay: 0s, 0.2s, 0s;
    opacity: 1;
    width: 0.75em;
    height: 0.45em;
  }
  .label_radio input[type=radio]:checked + .radio:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  .label_checkbox input[type=checkbox],
  .label_radio input[type=radio] {
    display: none;
  }
  .label_checkbox.locked {
    opacity: 0.7;
    color: #aaa;
    pointer-events: none;
  }
  .sel {
    position: relative;
    background: #fff;
    border: 1px solid var(--borderColor);
    border-radius: 0.35em;
  }
  .sel select {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.9em;
    font-size: 1em;
    color: var(--fontColor);
    cursor: pointer;
    -webkit-appearance: none;
  }
  .sel::after {
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    width: 0.4em;
    height: 0.4em;
    border-bottom: 2px solid var(--gray--dark);
    border-right: 2px solid var(--gray--dark);
    transform: translateY(-50%) rotate(45deg);
  }
  .marker {
    display: inline;
    padding: 0 0.5em;
    background: linear-gradient(transparent 60%, rgba(0, 142, 227, 0.25) 60%);
  }
  a.open {
    position: relative;
    padding-right: 1.5em;
  }
  a.open:after {
    content: "";
    display: inline-block;
    position: relative;
    margin-left: 0.5em;
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_link_blank.svg) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }
  a.pdf,
  a.word {
    position: relative;
    padding-left: 1.75em;
  }
  a.pdf:before {
    content: "\f1c1";
    display: inline-block;
    position: absolute;
    top: 0.025em;
    left: 0;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: var(--blue);
  }
  a.pdf--after:after {
    content: "\f1c1";
    display: inline-block;
    position: relative;
    margin: 0.2em 0.25em 0.2em 0.5em;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: var(--blue);
  }
  a.word:before {
    content: "\f1c2";
    display: inline-block;
    position: absolute;
    top: 0.4em;
    left: 0;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: var(--blue);
  }
  a.word--after:after {
    content: "\f1c2";
    display: inline-block;
    position: relative;
    margin: 0.2em 0.25em 0.2em 0.5em;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: var(--blue--dark);
    color: #365897;
  }
  a.excel {
    position: relative;
    padding-left: 1.35em;
  }
  a.excel:before {
    content: "\f1c3";
    display: inline-block;
    position: absolute;
    top: 0.4em;
    left: 0;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: var(--blue);
  }
  a.excel--after:after {
    content: "\f1c3";
    display: inline-block;
    position: relative;
    margin: 0.2em 0.25em 0.2em 0.5em;
    width: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.25;
    color: #217346;
  }
  a.login--after:after {
    content: "";
    display: inline-block;
    position: relative;
    margin: 0.2em 0.25em 0.2em 0.25em;
    width: 1.3333333333em;
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23398AC5' d='M404.234,197.867H179.417v-79.809c0.007-21.222,8.543-40.23,22.435-54.159c13.921-13.891,32.937-22.412,54.144-22.426c21.215,0.014,40.231,8.542,54.159,22.426c13.884,13.929,22.413,32.937,22.427,54.159v31.834h41.472v-31.834c0.015-32.537-13.246-62.179-34.577-83.481C318.175,13.246,288.534-0.015,255.996,0c-32.53-0.015-62.172,13.246-83.474,34.577c-21.331,21.302-34.584,50.944-34.577,83.481v79.809h-30.179c-19.48,0-35.266,15.793-35.266,35.266V345.03C72.5,437.243,154.66,512,256.003,512C357.347,512,439.5,437.243,439.5,345.03V233.134C439.5,213.66,423.714,197.867,404.234,197.867z M269.373,355.62l10.756,45.972h-48.258l10.756-45.98c-13.224-5.305-22.572-18.224-22.572-33.343c0-19.851,16.098-35.941,35.942-35.941c19.851,0,35.949,16.09,35.949,35.941C291.945,337.388,282.589,350.307,269.373,355.62z'/></svg>");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    color: #398AC5;
  }
  a.login--after:hover:after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M404.234,197.867H179.417v-79.809c0.007-21.222,8.543-40.23,22.435-54.159c13.921-13.891,32.937-22.412,54.144-22.426c21.215,0.014,40.231,8.542,54.159,22.426c13.884,13.929,22.413,32.937,22.427,54.159v31.834h41.472v-31.834c0.015-32.537-13.246-62.179-34.577-83.481C318.175,13.246,288.534-0.015,255.996,0c-32.53-0.015-62.172,13.246-83.474,34.577c-21.331,21.302-34.584,50.944-34.577,83.481v79.809h-30.179c-19.48,0-35.266,15.793-35.266,35.266V345.03C72.5,437.243,154.66,512,256.003,512C357.347,512,439.5,437.243,439.5,345.03V233.134C439.5,213.66,423.714,197.867,404.234,197.867z M269.373,355.62l10.756,45.972h-48.258l10.756-45.98c-13.224-5.305-22.572-18.224-22.572-33.343c0-19.851,16.098-35.941,35.942-35.941c19.851,0,35.949,16.09,35.949,35.941C291.945,337.388,282.589,350.307,269.373,355.62z'/></svg>");
  }
  a.ico i {
    position: relative;
    top: -0.15em;
    margin-right: 0.5em;
    line-height: 1;
    font-size: 1.2em;
    color: var(--blue);
    vertical-align: middle;
  }
  /* animation */
  .anim,
  .animItem {
    will-change: transform;
  }
  .anim--txt {
    visibility: hidden;
  }
  .anim--fadeIn {
    position: relative;
    opacity: 0;
  }
  .anim--fadeIn.active {
    transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .anim--fadeIn_in-row .animItem {
    position: relative;
    opacity: 0;
  }
  .anim--fadeIn_in-row.active .animItem, .anim--fadeInUp_in-row.active .animItem {
    transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(0), .anim--fadeInUp_in-row.active .animItem:nth-of-type(0) {
    transition-delay: 0s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(1), .anim--fadeInUp_in-row.active .animItem:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(2), .anim--fadeInUp_in-row.active .animItem:nth-of-type(2) {
    transition-delay: 0.4s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(3), .anim--fadeInUp_in-row.active .animItem:nth-of-type(3) {
    transition-delay: 0.6s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(4), .anim--fadeInUp_in-row.active .animItem:nth-of-type(4) {
    transition-delay: 0.8s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(5), .anim--fadeInUp_in-row.active .animItem:nth-of-type(5) {
    transition-delay: 1s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(6), .anim--fadeInUp_in-row.active .animItem:nth-of-type(6) {
    transition-delay: 1.2s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(7), .anim--fadeInUp_in-row.active .animItem:nth-of-type(7) {
    transition-delay: 1.4s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(8), .anim--fadeInUp_in-row.active .animItem:nth-of-type(8) {
    transition-delay: 1.6s;
  }
  .anim--fadeIn_in-row.active .animItem:nth-of-type(9), .anim--fadeInUp_in-row.active .animItem:nth-of-type(9) {
    transition-delay: 1.8s;
  }
  .anim--fadeInUp {
    position: relative;
    opacity: 0;
    transform: translate(0, 40px);
  }
  .anim--fadeInUp--hard {
    position: relative;
    opacity: 0;
    transform: translate(0, 80px);
  }
  .anim--fadeInUp_in-row .animItem {
    position: relative;
    opacity: 0;
    transform: translate(0, 50px);
  }
  .anim--fadeInUp.active, .anim--fadeInUp--hard.active {
    transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .anim--fadeIn.active {
    transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .anim--fadeInLtR {
    position: relative;
    opacity: 0;
    transform: translate(-1em, 0);
  }
  .anim--fadeInLtR {
    transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .anim--fadeIn.active, .anim--fadein.active, .anim--fadeInUp.active, .anim--fadeInUp--hard.active, .anim--fadeIn_in-row.active .animItem, .anim--fadeInUp_in-row.active .animItem, .anim--fadeInLtR.active {
    opacity: 1;
    transform: translate(0, 0);
  }
  @media (prefers-reduced-motion: reduce) {
    .anim,
    .anim--txt {
      visibility: visible;
      opacity: 1;
      transform: none;
    }
  }
  .reduce-motion .anim:not(.splide__list), .reduce-motion .animItem, .reduce-motion .anim--txt {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  @keyframes menu-bar01 {
    0% {
      top: 50%;
      background: #002672;
      transform: translateY(-1px) rotate(45deg);
    }
    50% {
      top: 50%;
      transform: translateY(-1px) rotate(0);
    }
    100% {
      top: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar03 {
    0% {
      bottom: 50%;
      background: #002672;
      transform: translateY(1px) rotate(-45deg);
    }
    50% {
      bottom: 50%;
      transform: translateY(1px) rotate(0);
    }
    100% {
      bottom: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      top: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
    50% {
      top: 50%;
      transform: translateY(-1px) rotate(0);
    }
    100% {
      top: 50%;
      background: #002672;
      transform: translateY(-1px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      bottom: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
    50% {
      bottom: 50%;
      transform: translateY(1px) rotate(0);
    }
    100% {
      bottom: 50%;
      background: #002672;
      transform: translateY(1px) rotate(-45deg);
    }
  }
  @keyframes ttl_block {
    0% {
      opacity: 0;
      transform: translateY(-25px) rotate(-20deg) scale(0.75);
    }
    30% {
      opacity: 1;
      transform: translateY(-25px) rotate(-15deg) scale(1);
    }
    75% {
      opacity: 1;
      transform: translateY(0) rotate(0) scale(1);
    }
    88% {
      opacity: 1;
      transform: translateY(-6px) rotate(-5deg);
    }
    94% {
      opacity: 1;
      transform: translateY(-3px) rotate(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes underline {
    0% {
      left: auto;
      right: 0;
      width: 100%;
      opacity: 1;
    }
    49% {
      left: auto;
      right: 0;
      width: 0;
      opacity: 1;
    }
    50% {
      left: auto;
      right: 0;
      width: 0;
      opacity: 0;
    }
    51% {
      left: 0;
      right: auto;
      width: 0;
      opacity: 1;
    }
    100% {
      left: 0;
      right: auto;
      width: 100%;
      opacity: 1;
    }
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @media (min-width: 768px) {
    .btn-wrap--multi {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5em 3em;
    }
    .btn-wrap--multi .btn, .btn-wrap--multi .btn--right {
      display: grid;
      margin-left: 0;
      margin-right: 0;
    }
  }
  .btn-wrap--multi--align-left {
    --col-num: 3;
    --gap-row: 1.5em;
    --gap-col: 3em;
    --col-width: calc((100% - (var(--col-num) * var(--gap-col))) / var(--col-num));
    max-width: 960px;
    margin-inline: auto;
    display: grid;
    gap: var(--gap-row) var(--gap-col);
    grid-template-columns: repeat(auto-fit, minmax(min(var(--col-width), 100%), 1fr));
  }
  .btn-wrap--multi--align-left .btn, .btn-wrap--multi--align-left .btn--right {
    display: grid;
    margin-left: 0;
    margin-right: 0;
    min-width: 0;
    width: auto;
  }
  @media (max-width: 767px) {
    .btn-wrap--multi--align-left {
      --col-num: 2;
      --gap-col: 2em;
    }
  }
  @media (max-width: 480px) {
    .btn-wrap--multi--align-left {
      --col-num: 1;
    }
  }
  @media (max-width: 991px) {
    .section .article + .article {
      margin-top: 45px;
    }
    .container {
      padding-inline: 4.5408678103vw;
    }
  }
  @media (max-width: 767px) {
    .section .article + .article {
      margin-top: 35px;
    }
    .container {
      padding-inline: max(6%, 1.35em);
    }
    .directory {
      margin-block: 0.75em;
      font-size: 1.3rem;
    }
    .btn, .btn--right {
      width: min(100%, 360px);
    }
    .btn--right.sp-m-auto {
      float: none;
    }
    .btn--input {
      width: min(100%, 360px);
    }
    .btn.d-in-block, .d-in-block.btn--right {
      padding: 16px 15px;
    }
    .btn.d-in-block.--pdf, .d-in-block.--pdf.btn--right {
      padding: 16px 2em 16px 3.15em;
    }
    .btn.--left, .--left.btn--right,
    .btn.--right,
    .--right.btn--right {
      float: none;
      margin-left: auto;
      margin-right: auto;
    }
    .btn--pdf {
      padding-right: 35px;
    }
    .btn--pdf:before {
      right: 16px;
    }
    .btn--pdf.d-in-block {
      padding-right: 45px;
    }
    .btn-wrap--multi .btn + .btn, .btn-wrap--multi .btn--right + .btn, .btn-wrap--multi .btn + .btn--right, .btn-wrap--multi .btn--right + .btn--right {
      margin-top: 1.5em;
    }
    .ol > li {
      padding-left: 1.9em;
      line-height: 1.6;
      margin: 0 0 1.2em;
    }
    .ol > li:before {
      top: 0.25em;
      font-size: 0.85em;
    }
    .box01,
    .box02,
    .box03,
    .box04 {
      padding: 1.2em;
    }
  }
  @media (max-width: 575px) {
    .btn--right {
      float: none;
      margin-inline: auto;
    }
  }
  .bnr__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
  .bnr__wrapper.--justify-center {
    width: auto;
  }
  @media (max-width: 767px) {
    .bnr__wrapper.--justify-center {
      justify-content: center;
    }
  }
  .bnr {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: flex-start;
    background-color: #f6f6f6;
    padding: 0.75em 1em;
    color: inherit;
    text-decoration: none;
    min-width: 240px;
  }
  @media (max-width: 575px) {
    .bnr__wrapper {
      flex-direction: column;
      width: auto;
    }
    .bnr__wrapper .bnr {
      width: auto;
      margin-inline: auto;
    }
  }
  .grid--auto-fit {
    --grid-col-minw: 180px;
    --grid-gap: 2em;
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(auto-fit, minmax(min(var(--grid-col-minw), 100%), 1fr));
  }
  .grid--auto-fill {
    --grid-col-minw: 220px;
    --grid-gap: 2em;
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-col-minw), 100%), 1fr));
  }
  .link-list {
    --col-minWidth: 250px;
    --gap: 1.5em;
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(min(var(--col-minWidth), 100%), 1fr));
  }
  .link-list-item {
    display: grid;
    align-items: center;
    padding: 0.5em 1em;
    min-height: 4.5em;
    background: #f6f6f6;
    line-height: 1.5;
  }
  .link-list-item a {
    position: relative;
    color: inherit;
    text-decoration: none;
  }
  .link-list-item a[target=_blank] {
    padding-right: 2em;
  }
  .link-list-item a[target=_blank]:before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/common/icon_link_blank.svg) no-repeat 0 0;
    background-size: contain;
  }
  .link-list-item a[href$=".pdf"]:before {
    content: "\f1c1";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    line-height: 1;
    color: var(--blue);
    background: none;
  }
  @media (max-width: 767px) {
    .link-list {
      --gap: 1em;
    }
  }
  .dl-grid {
    --dtWidth: auto;
    --gap: 1.5em;
    display: grid;
    gap: var(--gap);
    grid-template-columns: var(--dtWidth) 1fr;
  }
  .dl-grid.--condensed {
    --gap: 0 1.5em;
  }
  .dl-grid.--dt-w1em {
    --dtWidth: 1em;
  }
  .dl-grid.--dt-w2em {
    --dtWidth: 2em;
  }
  .dl-grid.--dt-w3em {
    --dtWidth: 3em;
  }
  .dl-grid.--dt-w4em {
    --dtWidth: 4em;
  }
  .dl-grid.--dt-w5em {
    --dtWidth: 5em;
  }
  .dl-grid.--dt-w6em {
    --dtWidth: 6em;
  }
  .dl-grid.--dt-w7em {
    --dtWidth: 7em;
  }
  .dl-grid.--dt-w8em {
    --dtWidth: 8em;
  }
  .dl-grid.--dt-w9em {
    --dtWidth: 9em;
  }
  .dl-grid.--dt-w10em {
    --dtWidth: 10em;
  }
  .dl-grid.--dt-w11em {
    --dtWidth: 11em;
  }
  .dl-grid.--dt-w12em {
    --dtWidth: 12em;
  }
  .dl-grid.--dt-w13em {
    --dtWidth: 13em;
  }
  .dl-grid.--dt-w14em {
    --dtWidth: 14em;
  }
  .dl-grid.--dt-w15em {
    --dtWidth: 15em;
  }
  .dl-grid.--dt-w16em {
    --dtWidth: 16em;
  }
  .dl-grid.--dt-w17em {
    --dtWidth: 17em;
  }
  .dl-grid.--dt-w18em {
    --dtWidth: 18em;
  }
  .dl-grid.--dt-w19em {
    --dtWidth: 19em;
  }
  @media (max-width: 767px) {
    .dl-grid.sp-d-block dd {
      padding-left: 1em;
    }
    .dl-grid.sp-d-block dt:not(:first-child) {
      margin-top: 1em;
    }
  }
  .tbl-list.--lined__tr {
    border-bottom: 1px solid var(--borderColor);
  }
  .tbl-list.--lined__tr:last-child {
    border-bottom: 0;
  }
  .tbl-list.--lined__th, .tbl-list.--lined__td {
    padding: 5px 5px;
  }
  .tbl-list.sp-tbl-list__tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1em;
  }
  @media (min-width: 768px) {
    .tbl-list__tr {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0 1em;
    }
    .tbl-list.--th-w1em {
      grid-template-columns: 1em 1fr;
    }
    .tbl-list.--th-w2em {
      grid-template-columns: 2em 1fr;
    }
    .tbl-list.--th-w3em {
      grid-template-columns: 3em 1fr;
    }
    .tbl-list.--th-w4em {
      grid-template-columns: 4em 1fr;
    }
    .tbl-list.--th-w5em {
      grid-template-columns: 5em 1fr;
    }
    .tbl-list.--th-w6em {
      grid-template-columns: 6em 1fr;
    }
    .tbl-list.--th-w7em {
      grid-template-columns: 7em 1fr;
    }
    .tbl-list.--th-w8em {
      grid-template-columns: 8em 1fr;
    }
    .tbl-list.--th-w9em {
      grid-template-columns: 9em 1fr;
    }
    .tbl-list.--th-w10em {
      grid-template-columns: 10em 1fr;
    }
    .tbl-list.--th-w11em {
      grid-template-columns: 11em 1fr;
    }
    .tbl-list.--th-w12em {
      grid-template-columns: 12em 1fr;
    }
    .tbl-list.--th-w13em {
      grid-template-columns: 13em 1fr;
    }
    .tbl-list.--th-w14em {
      grid-template-columns: 14em 1fr;
    }
    .tbl-list.--th-w15em {
      grid-template-columns: 15em 1fr;
    }
    .tbl-list.--th-w16em {
      grid-template-columns: 16em 1fr;
    }
    .tbl-list.--th-w17em {
      grid-template-columns: 17em 1fr;
    }
    .tbl-list.--th-w18em {
      grid-template-columns: 18em 1fr;
    }
    .tbl-list.--th-w19em {
      grid-template-columns: 19em 1fr;
    }
    .tbl-list.--th-w20em {
      grid-template-columns: 20em 1fr;
    }
    .tbl-list.--th-w21em {
      grid-template-columns: 21em 1fr;
    }
    .tbl-list.--th-w22em {
      grid-template-columns: 22em 1fr;
    }
    .tbl-list.--th-w23em {
      grid-template-columns: 23em 1fr;
    }
    .tbl-list.--th-w24em {
      grid-template-columns: 24em 1fr;
    }
    .tbl-list.--th-w25em {
      grid-template-columns: 25em 1fr;
    }
    .tbl-list.--th-w26em {
      grid-template-columns: 26em 1fr;
    }
    .tbl-list.--th-w27em {
      grid-template-columns: 27em 1fr;
    }
    .tbl-list.--th-w28em {
      grid-template-columns: 28em 1fr;
    }
    .tbl-list.--th-w29em {
      grid-template-columns: 29em 1fr;
    }
    .tbl-list.--th-w5per {
      grid-template-columns: 5% 1fr;
    }
    .tbl-list.--th-w10per {
      grid-template-columns: 10% 1fr;
    }
    .tbl-list.--th-w15per {
      grid-template-columns: 15% 1fr;
    }
    .tbl-list.--th-w20per {
      grid-template-columns: 20% 1fr;
    }
    .tbl-list.--th-w25per {
      grid-template-columns: 25% 1fr;
    }
    .tbl-list.--th-w30per {
      grid-template-columns: 30% 1fr;
    }
    .tbl-list.--th-w35per {
      grid-template-columns: 35% 1fr;
    }
    .tbl-list.--th-w40per {
      grid-template-columns: 40% 1fr;
    }
    .tbl-list.--th-w45per {
      grid-template-columns: 45% 1fr;
    }
    .tbl-list.--th-w50per {
      grid-template-columns: 50% 1fr;
    }
    .tbl-list.--th-w55per {
      grid-template-columns: 55% 1fr;
    }
    .tbl-list.--th-w60per {
      grid-template-columns: 60% 1fr;
    }
    .tbl-list.--th-w65per {
      grid-template-columns: 65% 1fr;
    }
    .tbl-list.--th-w70per {
      grid-template-columns: 70% 1fr;
    }
    .tbl-list.--th-w75per {
      grid-template-columns: 75% 1fr;
    }
    .tbl-list.--th-w80per {
      grid-template-columns: 80% 1fr;
    }
    .tbl-list.--th-w85per {
      grid-template-columns: 85% 1fr;
    }
    .tbl-list.--th-w90per {
      grid-template-columns: 90% 1fr;
    }
    .tbl-list.--th-w95per {
      grid-template-columns: 95% 1fr;
    }
    .tbl-list.--th-w100per {
      grid-template-columns: 100% 1fr;
    }
    .tbl-list.--th-w105per {
      grid-template-columns: 105% 1fr;
    }
    .tbl-list.--th-w110per {
      grid-template-columns: 110% 1fr;
    }
    .tbl-list.--th-w115per {
      grid-template-columns: 115% 1fr;
    }
    .tbl-list.--th-w120per {
      grid-template-columns: 120% 1fr;
    }
    .tbl-list.--th-w125per {
      grid-template-columns: 125% 1fr;
    }
    .tbl-list.--th-w130per {
      grid-template-columns: 130% 1fr;
    }
    .tbl-list.--th-w135per {
      grid-template-columns: 135% 1fr;
    }
    .tbl-list.--th-w140per {
      grid-template-columns: 140% 1fr;
    }
    .tbl-list.--th-w145per {
      grid-template-columns: 145% 1fr;
    }
    .tbl-list.--th-w150per {
      grid-template-columns: 150% 1fr;
    }
    .tbl-list.--th-w155per {
      grid-template-columns: 155% 1fr;
    }
    .tbl-list.--th-w160per {
      grid-template-columns: 160% 1fr;
    }
    .tbl-list.--th-w165per {
      grid-template-columns: 165% 1fr;
    }
    .tbl-list.--th-w170per {
      grid-template-columns: 170% 1fr;
    }
    .tbl-list.--th-w175per {
      grid-template-columns: 175% 1fr;
    }
    .tbl-list.--th-w180per {
      grid-template-columns: 180% 1fr;
    }
    .tbl-list.--th-w185per {
      grid-template-columns: 185% 1fr;
    }
    .tbl-list.--th-w190per {
      grid-template-columns: 190% 1fr;
    }
    .tbl-list.--th-w195per {
      grid-template-columns: 195% 1fr;
    }
    .tbl-list.--th-w200per {
      grid-template-columns: 200% 1fr;
    }
    .tbl-list.--th-w205per {
      grid-template-columns: 205% 1fr;
    }
    .tbl-list.--th-w210per {
      grid-template-columns: 210% 1fr;
    }
    .tbl-list.--th-w215per {
      grid-template-columns: 215% 1fr;
    }
    .tbl-list.--th-w220per {
      grid-template-columns: 220% 1fr;
    }
    .tbl-list.--th-w225per {
      grid-template-columns: 225% 1fr;
    }
    .tbl-list.--th-w230per {
      grid-template-columns: 230% 1fr;
    }
    .tbl-list.--th-w235per {
      grid-template-columns: 235% 1fr;
    }
    .tbl-list.--th-w240per {
      grid-template-columns: 240% 1fr;
    }
    .tbl-list.--th-w245per {
      grid-template-columns: 245% 1fr;
    }
  }
  .tbl-dl > .tbl-dl__dt.--blue {
    color: var(--blue--ex-dark);
  }
  .tbl-dl.--arrow > .tbl-dl__dt {
    position: relative;
    padding-left: 1em;
  }
  .tbl-dl.--arrow > .tbl-dl__dt:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 0.4em;
    height: 0.4em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  @media (min-width: 768px) {
    .tbl-dl {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1em;
    }
  }
  @media (max-width: 767px) {
    .tbl-dl > .tbl-dl__dd {
      padding-left: 1em;
    }
    .tbl-dl > .tbl-dl__dd:not(:last-child) {
      margin-bottom: 1em;
    }
  }
  .img-box {
    --gap: clamp(4rem, 3%, 2em);
    --img-width: 30%;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  @media (min-width: 768px) {
    .img-box {
      flex-direction: row;
    }
    .img-box.--rtl {
      flex-direction: row-reverse;
    }
    .img-box__img {
      flex: 0 1 var(--img-width);
    }
    .img-box__img.--cover {
      position: relative;
    }
    .img-box__img.--cover img {
      display: block;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .img-box__txt {
      flex: 1;
    }
    .img-box.--even > * {
      flex: 1;
    }
    .img-box.--img40per .img-box__img {
      flex: 0 0 40%;
    }
  }
  .img-box__img .cap {
    display: block;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.4;
  }
  .img-box__img img + .cap {
    margin-top: 15px;
  }
  [data-tab-content] {
    display: none;
  }
  [data-tab-content].--current {
    display: block;
  }
  .accordion .acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.5s grid-template-rows ease;
  }
  .accordion .acc-body__inner {
    overflow: hidden;
  }
  .accordion.open .acc-body {
    grid-template-rows: 1fr;
  }
}
@layer layout {
  /* header */
  .loading .header {
    visibility: hidden;
  }
  .header {
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 100;
  }
  .header > .container {
    padding: 1.4375em !important;
    width: 100%;
    align-items: center;
    transition: padding 0.35s ease-out;
  }
  .header__container {
    position: relative;
    height: 80px;
    padding-inline: 20px;
    overflow: hidden;
    transition: all 0.5s ease-out;
  }
  .header__container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0.5em;
    transition: all 0.5s ease-out;
    will-change: auto;
    -webkit-transform: translateZ(0);
    z-index: -1;
  }
  @media (min-width: 992px) {
    .pg_lower .header__container {
      height: 68px;
    }
    .pg_lower .header > .container {
      height: 68px;
    }
  }
  .header.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
  }
  .header.sticky {
    background: #fff;
    height: 68px;
    transition: all 1s ease-out 0.25s;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
  }
  .header.sticky > .container {
    padding: 0 !important;
    height: 68px;
  }
  .header.sticky .header__container {
    height: 100%;
  }
  .header.sticky .header__container:before {
    border-radius: 0;
  }
  @media (max-width: 991px) {
    .header.sticky {
      height: 46px;
    }
    .header.sticky > .container,
    .header.sticky .header__container {
      height: 46px;
    }
  }
  .header__logo {
    display: flex;
    align-items: center;
    gap: 1em;
    position: relative;
    width: clamp(160px, 23.0600292826%, 315px);
    height: 100%;
    background: #fff;
  }
  .header__logo a {
    display: block;
    margin-inline: auto;
    text-decoration: none;
  }
  @media (min-width: 992px) {
    .gnav,
    .gnav__menu {
      display: flex;
    }
    .gnav__menu {
      gap: 2.75em;
      justify-content: space-between;
      height: 100%;
    }
    .gnav__menu > li:hover > a, .gnav__menu > li:hover > span {
      opacity: 1;
    }
    .gnav__menu > li > a:before, .gnav__menu > li > span:before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: var(--blue);
      opacity: 0;
      transition: all 0.3s ease-out;
      transform: scaleX(0);
      transform-origin: left;
    }
    .gnav__menu > li > a:hover:before, .gnav__menu > li > span:hover:before {
      opacity: 1;
      transform: scaleX(1);
    }
  }
  .gnav__menu > li {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
  }
  .gnav__menu > li > a, .gnav__menu > li > span {
    display: grid;
    align-items: center;
    position: relative;
    font-size: clamp(1.1rem, 0.4597662771rem + 0.8347245409vw, 1.6rem);
    padding: 0.5em 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.38;
    color: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .search__wrapper .search__toggle,
  .search__wrapper .search__btn {
    display: grid;
    place-items: center;
    margin: 0 auto;
    width: 1em;
    height: 1em;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }
  .search__wrapper .search__toggle:before,
  .search__wrapper .search__btn:before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1em;
    line-height: 1;
    color: #0055A2;
    transition: all 0.3s ease-out;
  }
  .search__wrapper .search__toggle.open,
  .search__wrapper .search__btn.open {
    width: auto;
    flex: 0 0 3em;
    margin: 0;
  }
  @media (min-width: 992px) {
    .search__wrapper {
      width: 3em;
      margin-inline: 1em;
      overflow: hidden;
      display: grid;
      place-items: center;
    }
    .search__wrapper .search__box {
      --posY: 110px;
      display: flex;
      justify-content: flex-end;
      position: fixed;
      left: 50%;
      top: var(--posY);
      width: calc(100% - 2.875em);
      padding: 1.4em 1em 1em;
      background: var(--blue);
      border-radius: 0 0 0.5em 0.5em;
      transform: translate(-50%, -100%);
      opacity: 0;
      transition: all 0.3s ease-out;
      z-index: -2;
    }
    .search__wrapper .search__box input[type=text] {
      padding: 0.25em 0.7em;
      font-size: 0.85em;
      width: 18em;
      box-sizing: border-box;
    }
    .search__wrapper .search__box .search__btn {
      position: relative;
      margin: 0;
      flex: 0 0 3em;
      height: initial;
      background: var(--blue);
    }
    .search__wrapper .search__box .search__btn:before {
      box-sizing: border-box;
      position: absolute;
      top: 50%;
      left: 50%;
      color: #fff;
      padding-block: 1em;
      transform: translate(-50%, -50%);
    }
    .search__wrapper .open + .search__box {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
  @media (max-width: 991px) {
    .search__wrapper .search__toggle {
      display: none;
    }
  }
  @media (min-width: 992px) {
    .header.sticky .search__wrapper .search__box {
      --posY: 68px;
      padding-block: 1em;
      border-radius: 0;
      width: 100%;
    }
    .pg_lower header:before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: -1;
    }
    .pg_lower .search__wrapper .search__box {
      --posY: 98px;
      width: 100%;
      border-radius: 0;
    }
  }
  .lang_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5em;
    margin-inline: 0.2em;
  }
  .lang_wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #D2D2D2;
  }
  .lang_wrapper a {
    display: block;
    line-height: 1;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    color: #000000;
    text-decoration: none;
    font-size: clamp(1.2rem, 0.8158597663rem + 0.5008347245vw, 1.5rem);
    font-weight: 600;
  }
  .lang_wrapper a.--current {
    color: #0055A2;
  }
  @media (max-width: 991px) {
    .gnav {
      position: fixed;
      overflow: hidden;
      top: 0;
      right: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      width: 300px;
      height: 100%;
      /* max-height: 0; */
      overflow-y: auto;
      background: #fff;
      /* -webkit-overflow-scrolling: touch;
      -webkit-transition: max-height .3s ease-out;
      transition: max-height .3s ease-out;
      transform: none; */
      transition: all 0.25s ease-out;
      transform: translateX(100%);
      z-index: 100;
      scrollbar-width: none; /* Firefox */
    }
    .gnav::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Edge */
    }
    .gnav nav {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      margin: 0;
      padding: 55px 1.8em 0;
      width: 100%;
      max-width: 100%;
      overflow-y: auto;
      background: none;
      border: 0;
    }
    .gnav nav > * {
      width: 100%;
    }
    .gnav__menu {
      display: block;
      flex-grow: 0;
      position: relative;
      margin: 0 auto;
      padding: 0;
      max-width: initial;
      height: auto;
      border: 0;
    }
    .gnav__menu > li {
      display: block;
      position: relative;
      margin: 0;
      padding: 0;
      border: 0;
      height: auto;
    }
    .gnav__menu > li.nav_contact, .gnav__menu > li.nav_member {
      margin: 2em auto 0;
      border: 0;
    }
    .gnav__menu > li.nav_contact a, .gnav__menu > li.nav_member a {
      display: block;
      padding: 0.7em 0.5em;
      text-align: center;
      font-size: 0.9em;
    }
    .gnav__menu > li.nav_contact a:after, .gnav__menu > li.nav_member a:after {
      border-color: #fff;
      right: 1.2em;
      opacity: 0.6;
    }
    .gnav__menu > li.nav_contact + li, .gnav__menu > li.nav_member + li {
      margin-top: 1.25em;
    }
    .gnav .menu > li:before {
      display: none;
    }
    .gnav__menu > li > a,
    .gnav__menu > li > span {
      display: block;
      position: relative;
      width: 100%;
      padding: 0.7em 0;
      line-height: 1.3;
      font-weight: 700;
      font-size: 1em;
      text-decoration: none;
      text-align: left;
      opacity: 1;
    }
    .gnav__menu > li > a:after,
    .gnav__menu > li > span:after {
      content: "";
      box-sizing: border-box;
      display: block;
      position: absolute;
      right: 1.5px;
      top: 50%;
      width: 0.7rem;
      height: 0.7rem;
      border-right: 2px solid #808080;
      border-top: 2px solid #808080;
      transform: translateY(-50%) rotate(45deg);
      /* opacity: .6; */
    }
    .gnav.open {
      /* max-height: 100vh; */
      transform: translateX(0);
      box-shadow: -1px 0 6px rgba(0, 0, 0, 0.3);
    }
    .header:before {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 99;
      display: block;
      visibility: hidden;
      width: 100%;
      height: 100vh;
      background-color: #000;
      content: "";
      opacity: 0;
      transition: all 0.4s ease-out;
      pointer-events: none;
    }
    header:has(.gnav.open):before {
      visibility: visible;
      opacity: 0.5;
    }
    .menu-btn,
    .gnav .close-btn {
      display: grid !important;
      place-items: center;
      position: fixed;
      top: 8px;
    }
    .search__box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 1.5em auto;
      padding: 0 20px;
    }
    .lang_wrapper {
      margin: 1em auto;
      flex-direction: row;
      margin-inline: auto;
    }
    .lang_wrapper:before {
      width: 1px;
      height: 100%;
    }
    .lang_wrapper a {
      padding: 0.5em 1em;
    }
  }
  .header > .container {
    height: 120px;
    padding: 2.5em 1.4375em 0 !important;
  }
  @media (min-width: 992px) {
    .pg_lower .header:not(.sticky) > .container {
      height: 98px;
      padding-top: 30px !important;
    }
  }
  .header__menu {
    right: 25px;
    position: absolute;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 7.5em);
    align-items: center;
    background: var(--blue);
    overflow: hidden;
    border-radius: 0 0 0.5em 0.5em;
    z-index: 999;
  }
  .header__menu a {
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 0.2em 0.5em;
    line-height: 1;
    color: var(--fontColor);
    color: #fff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }
  .header__menu-item {
    padding: 0.35em 0;
  }
  .header__menu-item:not(:last-child) a {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  @media (max-width: 991px) {
    .header > .container {
      height: 55px;
      padding: 0 1.8em !important;
    }
    .header__menu {
      position: relative;
      top: auto;
      right: auto;
      width: -moz-fit-content;
      width: fit-content;
      margin: 1em auto 2em;
      background: none;
    }
    .header__menu-item a {
      color: #000000;
      text-align: center;
    }
    .header__menu-item:not(:last-child) a {
      border-right-color: #B9B9B9;
    }
  }
  .submenu {
    transition: all 0.5s ease-out;
  }
  .submenu .container {
    width: 100%;
  }
  .submenu__list li {
    padding: 0;
  }
  .submenu__list li > a, .submenu__list li > span {
    display: block;
    position: relative;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-out;
  }
  .submenu__title {
    margin: 0 0 0.5em;
    font-weight: bold;
    font-size: 1.4rem;
  }
  .submenu__title a {
    display: block;
    position: relative;
    color: #000000;
    text-decoration: none;
  }
  @media screen and (min-width: 992px) {
    .submenu {
      display: block;
      position: fixed;
      overflow: hidden;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
      left: 0;
      top: calc(80px + 2.5em);
      width: 100%;
      padding-inline: 1.4375em;
      transform: none;
    }
    .submenu__inner {
      padding-block: min(3.5%, 3.5em) min(4.3%, 4.3em);
      min-height: 240px;
      display: grid;
      align-items: center;
      background: #fff;
      color: #000000;
      border-radius: 0.5em;
      margin-top: 1px;
    }
    .submenu__title {
      margin: 0 0 1em;
      width: -moz-fit-content;
      width: fit-content;
      font-size: clamp(1.2rem, 0.1756260434rem + 1.3355592654vw, 2rem);
      font-weight: bold;
    }
    .submenu__title a {
      display: block;
      width: -moz-fit-content;
      width: fit-content;
      padding-right: 1.85em;
      line-height: 1.4;
      text-decoration: none;
      color: var(--blue);
    }
    .submenu__title a:hover {
      opacity: 0.7;
    }
    .submenu__title a:after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 1.25em;
      height: 1.25em;
      background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat center;
      background-size: contain;
    }
    .submenu__title-en {
      display: block;
      font-size: 0.6em;
      font-weight: normal;
      font-family: "Poppins", sans-serif;
    }
    .submenu__list {
      --col-minwidth: 13.75em;
      --gap-row: 1.5em;
      --gap-col: min(3.5vw, 3.5em);
      display: grid;
      gap: var(--gap-row) var(--gap-col);
      grid-template-columns: repeat(auto-fit, minmax(min(var(--col-minwidth), 100%), 1fr));
    }
    .submenu__list > li > a, .submenu__list > li > span {
      display: block;
      width: 100%;
      position: relative;
      padding-block: 0.25em;
      font-size: clamp(1.25rem, 1.25vw, 1.6rem);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease-out;
    }
    .submenu__list > li > a:before, .submenu__list > li > a:after, .submenu__list > li > span:before, .submenu__list > li > span:after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1.5px;
      background: rgba(170, 170, 170, 0.5);
    }
    .submenu__list > li > a:after, .submenu__list > li > span:after {
      background: var(--blue);
      width: 1em;
      transition: all 0.3s ease-out;
    }
    .submenu__list > li > a:hover, .submenu__list > li > span:hover {
      opacity: 1;
    }
    .submenu__list > li > a:hover:after, .submenu__list > li > span:hover:after {
      width: 100%;
    }
    .submenu__title, .submenu__list {
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
      transform: translateY(1em);
    }
  }
  @media screen and (min-width: 992px) {
    .pg_lower .header:not(.sticky) .submenu {
      top: 98px;
    }
    .header.sticky .submenu {
      top: 68px;
      padding: 0;
    }
  }
  .gnav .gnav__menu-item--has-child {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .gnav .gnav__menu-item--has-child.open a:before, .gnav .gnav__menu-item--has-child.open span:before {
    opacity: 1;
    transform: scaleX(1);
  }
  .gnav .gnav__menu-item--has-child.open .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
  @media (min-width: 991px) {
    .gnav .gnav__menu-item--has-child.open .submenu__title, .gnav .gnav__menu-item--has-child.open .submenu__list {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 991px) {
    .submenu {
      position: relative;
      top: 0;
      left: 0;
      transition-duration: 0.5s;
      background: transparent;
      display: grid;
      grid-template-rows: 0fr;
      transform: none;
      transition: 0.5s grid-template-rows ease;
    }
    .submenu .container {
      padding: 0 0 0.25em !important;
    }
    .submenu__title {
      font-weight: normal;
      margin: 0 0 0 0.5em;
    }
    .submenu__title-en {
      display: none;
    }
    .submenu__title > a {
      width: auto;
      padding: 0.2em 0;
      font-size: 0.95em;
      line-height: inherit;
    }
    .submenu__title > a:after {
      content: "";
      display: block;
      position: absolute;
      right: 1px;
      top: 50%;
      width: 0.7rem;
      height: 0.7rem;
      border-top: 2px solid #808080;
      border-right: 2px solid #808080;
      transform: translateY(-50%) rotate(45deg);
    }
    .submenu__list {
      padding-left: 0.5em;
      min-width: 0;
    }
    .submenu__list li {
      padding: 0;
    }
    .submenu__list li > a, .submenu__list li > span {
      display: block;
      position: relative;
      padding: 0.2em 0;
      font-size: 0.95em;
    }
    .submenu__list li > a {
      padding-right: 1em;
    }
    .submenu__list li > a:hover {
      opacity: 1;
      color: var(--blue);
    }
    .submenu__list li > a:after {
      left: auto;
      right: 0.8em;
      content: "";
      box-sizing: border-box;
      display: block;
      position: absolute;
      right: 1px;
      top: 50%;
      width: 0.7rem;
      height: 0.7rem;
      border-right: 2px solid #808080;
      border-top: 2px solid #808080;
      transform: translateY(-50%) rotate(45deg);
      /* opacity: .6; */
    }
    .submenu__inner {
      padding: 0;
      overflow: hidden;
      width: 100%;
    }
    .gnav .gnav__menu-item--has-child {
      padding-right: 0;
    }
    .gnav .gnav__menu-item--has-child > span:after {
      transform: translateY(-50%) rotate(135deg);
    }
    .gnav .gnav__menu-item--has-child.open > span:after {
      transform: rotate(-45deg);
    }
    .gnav .gnav__menu-item--has-child.open > .submenu {
      grid-template-rows: 1fr;
    }
  }
  /* menuBtn */
  @media (min-width: 992px) {
    .menu-btn {
      display: none;
    }
  }
  .menu-btn {
    transition: all 0.3s ease-out;
  }
  .menu-btn,
  .gnav .close-btn {
    position: fixed;
    top: 7px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    pointer-events: all;
    z-index: 200;
  }
  .menu-btn div,
  .gnav .close-btn div {
    position: relative;
    margin: 7px auto;
    width: 30px;
    height: 18px;
    top: 0;
    transition: all 0.75s ease-out;
  }
  .menu-btn div:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin-top: -1px;
    margin-left: -16px;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: #002672;
    opacity: 1;
    transition: 0.35s ease-in-out;
  }
  .menu-btn span,
  .gnav .close-btn span {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 22px;
    color: #fff;
    font-size: 1.1rem;
    font-family: Helvetica, Arial, sans-serif;
    letter-spacing: 0.5px;
    line-height: 76px;
    overflow: hidden;
  }
  .menu-btn span:before,
  .gnav .close-btn span:before {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    margin-left: -16px;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: #002672;
    transform-origin: center center;
    top: 0;
    transition: transform 0.3s ease-out;
  }
  .menu-btn span:after,
  .gnav .close-btn span:after {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    margin-left: -16px;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: #002672;
    transform-origin: center center;
    bottom: 0;
    transition: transform 0.3s ease-out;
  }
  .menu-btn.close span:before {
    animation: menu-bar01 0.75s forwards;
    animation: menu-bar01 0.75s forwards;
  }
  .menu-btn.close span:after {
    animation: menu-bar03 0.75s forwards;
    animation: menu-bar03 0.75s forwards;
  }
  .menu-btn.open {
    background: none;
  }
  .menu-btn.open span:before {
    animation: active-menu-bar01 0.75s forwards;
    animation: active-menu-bar01 0.75s forwards;
  }
  .menu-btn.open span:after {
    animation: active-menu-bar03 0.75s forwards;
    animation: active-menu-bar03 0.75s forwards;
  }
  .menu-btn.open div:before {
    opacity: 0;
  }
  @keyframes menu-bar01 {
    0% {
      top: 50%;
      background: #002672;
      transform: translateY(-1px) rotate(45deg);
    }
    50% {
      top: 50%;
      transform: translateY(-1px) rotate(0);
    }
    100% {
      top: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar03 {
    0% {
      bottom: 50%;
      background: #002672;
      transform: translateY(1px) rotate(-45deg);
    }
    50% {
      bottom: 50%;
      transform: translateY(1px) rotate(0);
    }
    100% {
      bottom: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      top: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
    50% {
      top: 50%;
      transform: translateY(-1px) rotate(0);
    }
    100% {
      top: 50%;
      background: #002672;
      transform: translateY(-1px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      bottom: 0;
      background: #002672;
      transform: translateY(0) rotate(0);
    }
    50% {
      bottom: 50%;
      transform: translateY(1px) rotate(0);
    }
    100% {
      bottom: 50%;
      background: #002672;
      transform: translateY(1px) rotate(-45deg);
    }
  }
  .gnav .close-btn {
    position: absolute;
    top: 7px;
    right: 15px;
    z-index: 200;
    background: none;
  }
  .gnav .close-btn span:before,
  .gnav .close-btn span:after {
    background: #002672;
  }
  .gnav .close-btn span:before {
    top: 50%;
    transform: translateY(-2px) rotate(45deg);
  }
  .gnav .close-btn span:after {
    top: 50%;
    transform: translateY(-2px) rotate(-45deg);
  }
  .page-top {
    --page-top-size: 70px;
    position: fixed;
    right: min(5.7833089312%, 79px);
    bottom: 90px;
    z-index: 99;
    width: var(--page-top-size);
    height: var(--page-top-size);
  }
  .page-top a {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding: var(--page-top-size) 0 0;
    width: 100%;
    height: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--blue);
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
  }
  .page-top a:before {
    content: "\f062";
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--blue);
    font-weight: bold;
    font-family: "Font Awesome 6 Free";
    font-size: 1.8rem;
    transform: translate(-50%, -50%);
  }
  @media (max-width: 767px) {
    .page-top {
      width: 50px;
      height: 50px;
      right: 15px;
      bottom: 80px;
      transform: translateY(50%);
    }
    .page-top a {
      width: 50px;
      padding: 48px 0 0;
    }
    .page-top a:before {
      font-size: 1.2rem;
    }
  }
  .page-nav__item > a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0.5em 0.25em;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    border: 1px solid #B9B9B9;
    text-align: center;
    text-decoration: none;
  }
  .page-nav__item:not(:last-child) > a {
    border-right: 0;
  }
  .page-nav__item.--current a {
    border-bottom: 3px solid #0055A2;
    color: #0055A2;
    font-weight: bold;
  }
  @media (min-width: 992px) {
    .page-nav {
      display: flex;
      justify-content: space-between;
      gap: 0;
    }
    .page-nav__item {
      flex: 1;
    }
  }
  @media (max-width: 991px) {
    .page-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid #B9B9B9;
    }
    .page-nav__item > a {
      font-size: clamp(1.1rem, 0.7158597663rem + 0.5008347245vw, 1.4rem);
      border-top: 0;
      letter-spacing: normal;
    }
    .page-nav__item:nth-child(4n) > a {
      border-right: 1px solid #B9B9B9;
    }
  }
  /* footer */
  .footer {
    background: #0055A2;
    overflow: hidden;
    font-size: clamp(1.3rem, 0.9158597663rem + 0.5008347245vw, 1.6rem);
    color: #fff;
  }
  .footer a,
  .footer a:hover {
    color: #fff;
    text-decoration: none;
  }
  .footer__inner {
    padding-block: min(5.8%, 5.4em);
    gap: min(3.8em, 6%);
  }
  .footer__logo-wrapper {
    flex: 0 0 clamp(150px, 19%, 200px);
  }
  .footer__logo-wrapper .btn-contact {
    margin: 2em 0 0 !important;
    width: max(100%, 140px) !important;
    min-width: 0 !important;
    padding-inline: 0.5em 1.2em;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }
  .footer__logo-wrapper .btn-contact:hover {
    color: #0055A2 !important;
    background: #fff !important;
  }
  .footer__menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: min(8vw, 1.875em);
    flex: 1;
    align-items: flex-start;
  }
  .footer__menu {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
  }
  @media (min-width: 992px) {
    .footer__menu {
      flex: 1;
    }
    .footer__menu > li {
      font-size: 0.925em;
    }
  }
  .footer__copyright {
    padding: min(2%, 1.8em) 2.5em;
    border-top: 1px solid #417CBF;
    word-break: break-word;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
  }
  .wrapper {
    word-break: break-all;
  }
  .main {
    overflow: hidden;
  }
  .content {
    margin-top: calc(80px + 2.5em);
    padding: 0 0 65px;
  }
  .content > .section:first-child {
    padding-top: 0;
  }
  @media (min-width: 992px) {
    .pg_lower .content {
      margin-top: calc(68px + 2.5em);
    }
  }
  .content__wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: min(3.5vw, 3em);
    padding-block: clamp(1.5em, 3%, 2.2em);
  }
  .content__wrapper .main {
    flex: 1;
  }
  .content__wrapper .side {
    --padd: min(1.5vw, 1.8rem);
    flex: 0 0 clamp(200px, 24%, 286px);
  }
  .content__wrapper .side__section {
    margin-bottom: 2em;
    border: 1px solid var(--borderColor--blue--light);
    border-radius: 0 0 0.5em 0.5em;
  }
  .content__wrapper .side__section:last-child {
    margin-bottom: 0;
  }
  .content__wrapper .side__title {
    padding: 0.65em var(--padd);
    color: var(--blue--ex-dark);
    font-size: 1.35em;
    border-top: 6px solid var(--blue);
    border-bottom: 1px solid var(--borderColor--blue--light);
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
  .content__wrapper .side__title-sub {
    display: block;
    margin: 0 0 0.15em;
    color: var(--blue);
    font-size: max(1.1rem, 0.35em);
  }
  .content__wrapper .side__title--m {
    margin-bottom: 0.3em;
    color: var(--blue--ex-dark);
  }
  .content__wrapper .side__title--m:not(:first-child) {
    margin-top: 1em;
  }
  .content__wrapper .side__nav {
    --linkColor: #666;
  }
  .content__wrapper .side__nav-list {
    border-bottom: 1px solid var(--borderColor--blue--light);
  }
  .content__wrapper .side__nav-title {
    background: var(--bg--blue--light);
    border-bottom: 1px solid var(--borderColor--blue--light);
    color: var(--blue);
    padding: 0.8em var(--padd);
    font-size: 1em;
    font-weight: 500;
  }
  .content__wrapper .side__nav li {
    position: relative;
    border-bottom: 1px solid var(--borderColor--blue--light);
  }
  .content__wrapper .side__nav li:last-child {
    border-bottom: 0;
  }
  .content__wrapper .side__nav-item.--has-child > a {
    color: var(--linkColor);
  }
  .content__wrapper .side__nav-item.--has-child:hover {
    background: var(--bg--blue--light);
  }
  .content__wrapper .side__nav-item a {
    display: block;
    position: relative;
    padding: 0.9em var(--padd);
    padding-right: calc(var(--padd) + 0.5em);
    line-height: 1.4;
    font-weight: 500;
    color: #668B92;
    text-decoration: none;
  }
  .content__wrapper .side__nav-item a:hover {
    opacity: 1;
  }
  .content__wrapper .side__nav-item a:hover:before {
    background-image: url(../img/common/icon_arrow-circle-right-fill.svg);
  }
  .content__wrapper .side__nav-link:before {
    content: "";
    display: block;
    position: absolute;
    right: var(--padd);
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_arrow-circle-right.svg) no-repeat 0 0;
    background-size: 1em;
    transform: translateY(-50%);
  }
  .content__wrapper .side__nav__submenu {
    background: var(--bg--blue--light);
    border: 1px solid var(--borderColor--blue--light);
  }
  .content__wrapper .side__nav__submenu > li > a {
    color: var(--linkColor);
  }
  .content__wrapper .side__nav__submenu > li > a:hover {
    color: var(--blue);
  }
  @media (min-width: 768px) {
    .content__wrapper .side__nav__submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
    }
  }
  .content__wrapper .side__nav-item:hover .side__nav__submenu {
    display: block;
  }
  .content__wrapper .side__nav-list.--others {
    padding: 1.4em var(--padd);
  }
  .content__wrapper .side__nav-list.--others > li {
    border: 0;
  }
  .content__wrapper .side__nav-list.--others > li > a {
    position: relative;
    display: block;
    color: #778D92;
    font-weight: 500;
    padding-block: 0.4em;
    line-height: 1.4;
    text-decoration: none;
  }
  .content__wrapper .side__inner {
    padding: var(--padd);
  }
  .content__wrapper .side__contact__tel {
    margin: 1em 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
  }
  .content__wrapper .side__contact .btn-contact {
    position: relative;
    margin: 1em auto 0;
    min-width: 0;
    width: 100%;
    min-height: 3em;
    padding: 0.5em 0.9em;
    background: var(--bg--blue--light);
    border-color: #7E9DBC;
    color: var(--blue--ex-dark);
    display: flex;
    gap: 0.5em;
    align-items: center;
    justify-content: center;
  }
  .content__wrapper .side__contact .btn-contact:before {
    all: unset;
    content: "\f0e0";
    width: 1em;
    height: 1em;
    line-height: 1em;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1em;
    line-height: 1;
    color: var(--blue);
    transition: all 0.3s ease-out;
  }
  @media (max-width: 767px) {
    .content__wrapper {
      flex-direction: column;
      gap: 3em;
    }
    .content__wrapper .side {
      --padd: 15px;
    }
    .content__wrapper .side__nav-item {
      padding-right: 3em;
    }
    .content__wrapper .side__nav-link:before {
      pointer-events: none;
      right: -2em;
      transform: translateY(-50%) rotate(90deg);
    }
    .content__wrapper .side__nav__submenu-wrapper {
      top: 0;
      left: 0;
      margin-right: -3em;
      transition-duration: 0.5s;
      background: transparent;
      display: grid;
      grid-template-rows: 0fr;
      transform: none;
      transition: 0.5s grid-template-rows ease;
    }
    .content__wrapper .side__nav__submenu {
      border: 0;
      overflow: hidden;
    }
    .content__wrapper .side__nav__submenu a {
      padding-left: 2em;
    }
    .content__wrapper .side__nav .open .side__nav__submenu-wrapper {
      grid-template-rows: 1fr;
    }
    .content__wrapper .side__nav .open .side__nav__submenu {
      border-top: 1px solid var(--borderColor--blue--light);
    }
    .content__wrapper .side__nav .open a:before {
      background-image: url(../img/common/icon_arrow-circle-right-fill.svg);
      transform: translateY(-50%) rotate(-90deg);
    }
  }
  /* --------------------------------------------------
  ********** LESS THAN 991px WIDTH **********
  -------------------------------------------------- */
  @media (max-width: 991px) {
    /* header */
    .header > .container {
      height: 55px;
      padding: 10px !important;
    }
    .header__container {
      height: 35px;
      padding-inline: min(4%, 15px);
    }
    .header__container:before {
      border-radius: 0.35em;
    }
    .header.sticky .header__container {
      height: 46px;
    }
    .header.sticky .menu-btn {
      top: 2px;
    }
    .content {
      margin-top: 55px;
    }
  }
  /* *************************************************************
  LESS THAN width 767px
  **************************************************************** */
  @media (max-width: 767px) {
    body {
      font-size: 14px;
      font-size: 1.4rem;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    /* header */
    .header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      padding: 0;
    }
    .header > .container {
      height: 55px;
      padding-inline: min(4%, 20px);
    }
    /* footer */
    .footer > .container {
      padding: 1.8em;
    }
    .footer__logo-wrapper {
      margin: 1em auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer__logo-wrapper .btn-contact {
      margin: 0 !important;
      padding: 1em 1em !important;
      width: min(50%, 160px) !important;
    }
    .footer__logo img {
      width: 120px;
    }
    .footer__menu-wrapper {
      --grid-col-minw: 140px;
      --grid-gap: 2em 0;
      display: grid;
      gap: var(--grid-gap);
      grid-template-columns: repeat(auto-fit, minmax(min(var(--grid-col-minw), 100%), 1fr));
    }
    .footer__menu {
      margin: 1em 0 0;
      padding: 0;
      gap: 0.05em;
    }
    .footer__menu a {
      font-size: 0.9em;
    }
    .footer__copyright {
      padding: 1.1em 1em;
      font-size: 10px;
    }
    .content {
      margin-top: 55px;
    }
  }
}
@layer utilities {
  .tb,
  .sp {
    display: none;
  }
  .sp,
  .sp2 {
    display: none !important;
  }
  .pc,
  .pc.tb {
    display: block;
  }
  .em {
    color: #ff316f;
  }
  .bold {
    font-weight: bold;
  }
  .text-note,
  .text-note--mark,
  .list--note {
    font-size: 0.9em;
    letter-spacing: 0;
    color: #333;
  }
  .text-note--mark,
  .list--note > li {
    display: flex;
    gap: 0.25em;
  }
  .text-note--mark:before,
  .list--note > li:before {
    content: "※";
  }
  * + .text-note,
  * + .text-note--mark,
  * + .list--note {
    margin-top: 1em;
  }
  .f_bold {
    font-weight: bold !important;
  }
  .f_md {
    font-weight: 500 !important;
  }
  .f_normal {
    font-weight: normal !important;
  }
  .font_en {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    letter-spacing: 0.055em;
  }
  .font_jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
  }
  .font_jp-serif {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
  }
  .fz-xxs {
    font-size: 0.7em;
  }
  .fz-xs {
    font-size: 0.8em;
  }
  .fz-s {
    font-size: 0.9em;
  }
  .fz-m {
    font-size: 1em;
  }
  .fz-l {
    font-size: 1.2em;
  }
  .fz-xl {
    font-size: 1.3em;
  }
  .fz-xxl {
    font-size: 1.4em;
  }
  .ls0 {
    letter-spacing: 0;
  }
  .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .img-full {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  .img-left,
  .img-right {
    margin: 0 auto 1.5em;
  }
  .ico {
    position: relative;
    top: 0.15em;
  }
  .border {
    border: 1px solid var(--borderColor);
  }
  .fit-cover {
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  @media (min-width: 768px) {
    .img-left {
      display: block;
      float: left;
      margin: 0 2.5em 1.5em 0;
    }
    .img-right {
      display: block;
      float: right;
      margin: 0 1.5em 2.5em;
    }
  }
  .mt0 {
    margin-top: 0 !important;
  }
  .mb0 {
    margin-bottom: 0 !important;
  }
  .mt5 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mt15 {
    margin-top: 15px !important;
  }
  .mt20 {
    margin-top: 20px !important;
  }
  .mt25 {
    margin-top: 25px !important;
  }
  .mt30 {
    margin-top: 30px !important;
  }
  .mt35 {
    margin-top: 35px !important;
  }
  .mt-3 {
    margin-top: -3px !important;
  }
  .mt-5 {
    margin-top: -5px !important;
  }
  .mt05em {
    margin-top: 0.5em !important;
  }
  .mt1-5em {
    margin-top: 1.5em !important;
  }
  .mt1em {
    margin-top: 1em;
  }
  .mt2em {
    margin-top: 2em;
  }
  .mt3em {
    margin-top: 3em;
  }
  .mt4em {
    margin-top: 4em;
  }
  .mt5em {
    margin-top: 5em;
  }
  .mt6em {
    margin-top: 6em;
  }
  .mt7em {
    margin-top: 7em;
  }
  .mt8em {
    margin-top: 8em;
  }
  .mt9em {
    margin-top: 9em;
  }
  .mb5 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb25 {
    margin-bottom: 25px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb35 {
    margin-bottom: 35px !important;
  }
  .mb05em {
    margin-bottom: 0.5em !important;
  }
  .mb1em {
    margin-bottom: 1em !important;
  }
  .mb1-5em {
    margin-bottom: 1.5em !important;
  }
  .mb2em {
    margin-bottom: 2em !important;
  }
  .mb3em {
    margin-bottom: 3em !important;
  }
  .ml0 {
    margin-left: 0 !important;
  }
  .ml10 {
    margin-left: 10px !important;
  }
  .ml1em {
    margin-left: 1em !important;
  }
  .ml2em {
    margin-left: 2em !important;
  }
  .mr1em {
    margin-right: 1em !important;
  }
  .pt0 {
    padding-top: 0 !important;
  }
  .pt10 {
    padding-top: 10px !important;
  }
  .pt15 {
    padding-top: 15px !important;
  }
  .pt20 {
    padding-top: 20px !important;
  }
  .pt25 {
    padding-top: 25px !important;
  }
  .pt30 {
    padding-top: 30px !important;
  }
  .pt05em {
    padding-top: 0.5em !important;
  }
  .pt1em {
    padding-top: 1em !important;
  }
  .pt1-5em {
    padding-top: 1.5em !important;
  }
  .pt2em {
    padding-top: 2em !important;
  }
  .pb0 {
    padding-bottom: 0 !important;
  }
  .pb10 {
    padding-bottom: 10px !important;
  }
  .pb15 {
    padding-bottom: 15px !important;
  }
  .pb20 {
    padding-bottom: 20px !important;
  }
  .pb25 {
    padding-bottom: 25px !important;
  }
  .pb30 {
    padding-bottom: 30px !important;
  }
  .pl10 {
    padding-left: 10px !important;
  }
  .pl15 {
    padding-left: 15px !important;
  }
  .pl20 {
    padding-left: 20px !important;
  }
  .pl30 {
    padding-left: 30px !important;
  }
  .pl1em {
    padding-left: 1em !important;
  }
  .pr0 {
    padding-right: 0 !important;
  }
  .pr05em {
    padding-right: 0.5em !important;
  }
  .pr1em {
    padding-right: 1em !important;
  }
  .w5per {
    width: 5% !important;
  }
  .w10per {
    width: 10% !important;
  }
  .w15per {
    width: 15% !important;
  }
  .w20per {
    width: 20% !important;
  }
  .w25per {
    width: 25% !important;
  }
  .w30per {
    width: 30% !important;
  }
  .w35per {
    width: 35% !important;
  }
  .w40per {
    width: 40% !important;
  }
  .w45per {
    width: 45% !important;
  }
  .w50per {
    width: 50% !important;
  }
  .w55per {
    width: 55% !important;
  }
  .w60per {
    width: 60% !important;
  }
  .w65per {
    width: 65% !important;
  }
  .w70per {
    width: 70% !important;
  }
  .w75per {
    width: 75% !important;
  }
  .w80per {
    width: 80% !important;
  }
  .w85per {
    width: 85% !important;
  }
  .w90per {
    width: 90% !important;
  }
  .w95per {
    width: 95% !important;
  }
  .w100per {
    width: 100% !important;
  }
  .w100per {
    width: 100% !important;
  }
  .w1em {
    width: 1em !important;
  }
  .w2em {
    width: 2em !important;
  }
  .w3em {
    width: 3em !important;
  }
  .w4em {
    width: 4em !important;
  }
  .w5em {
    width: 5em !important;
  }
  .w6em {
    width: 6em !important;
  }
  .w7em {
    width: 7em !important;
  }
  .w8em {
    width: 8em !important;
  }
  .w9em {
    width: 9em !important;
  }
  .w10em {
    width: 10em !important;
  }
  .w11em {
    width: 11em !important;
  }
  .w12em {
    width: 12em !important;
  }
  .w13em {
    width: 13em !important;
  }
  .w14em {
    width: 14em !important;
  }
  .w15em {
    width: 15em !important;
  }
  .w16em {
    width: 16em !important;
  }
  .w17em {
    width: 17em !important;
  }
  .w18em {
    width: 18em !important;
  }
  .w19em {
    width: 19em !important;
  }
  .w15em {
    width: 15em !important;
  }
  .w20em {
    width: 20em !important;
  }
  .w25em {
    width: 25em !important;
  }
  .w30em {
    width: 30em !important;
  }
  .w35em {
    width: 35em !important;
  }
  .w40em {
    width: 40em !important;
  }
  .w45em {
    width: 45em !important;
  }
  .w50em {
    width: 50em !important;
  }
  .w55em {
    width: 55em !important;
  }
  .w60em {
    width: 60em !important;
  }
  .w65em {
    width: 65em !important;
  }
  .w70em {
    width: 70em !important;
  }
  .w75em {
    width: 75em !important;
  }
  .w80em {
    width: 80em !important;
  }
  .w85em {
    width: 85em !important;
  }
  .w90em {
    width: 90em !important;
  }
  .w95em {
    width: 95em !important;
  }
  .w100em {
    width: 100em !important;
  }
  .fit-content {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .max-w100per {
    max-width: 100% !important;
  }
  .max-w22em {
    max-width: 22em !important;
  }
  .max-w300 {
    max-width: 300px !important;
  }
  .min-w920 {
    min-width: 920px;
  }
  .max-w500 {
    max-width: 500px !important;
  }
  .max-w600 {
    max-width: 600px !important;
  }
  .max-w700 {
    max-width: 700px !important;
  }
  .max-w800 {
    max-width: 800px !important;
  }
  .max-w900 {
    max-width: 900px !important;
  }
  .max-w1000 {
    max-width: 1000px !important;
  }
  .max-w1100 {
    max-width: 1100px !important;
  }
  .max-w1200 {
    max-width: 1200px !important;
  }
  .max-w1300 {
    max-width: 1300px !important;
  }
  .max-w1400 {
    max-width: 1400px !important;
  }
  .max-w1em {
    max-width: 1em !important;
  }
  .max-w2em {
    max-width: 2em !important;
  }
  .max-w3em {
    max-width: 3em !important;
  }
  .max-w4em {
    max-width: 4em !important;
  }
  .max-w5em {
    max-width: 5em !important;
  }
  .max-w6em {
    max-width: 6em !important;
  }
  .max-w7em {
    max-width: 7em !important;
  }
  .max-w8em {
    max-width: 8em !important;
  }
  .max-w9em {
    max-width: 9em !important;
  }
  .max-w10em {
    max-width: 10em !important;
  }
  .max-w11em {
    max-width: 11em !important;
  }
  .max-w12em {
    max-width: 12em !important;
  }
  .max-w13em {
    max-width: 13em !important;
  }
  .max-w14em {
    max-width: 14em !important;
  }
  .max-w15em {
    max-width: 15em !important;
  }
  .max-w16em {
    max-width: 16em !important;
  }
  .max-w17em {
    max-width: 17em !important;
  }
  .max-w18em {
    max-width: 18em !important;
  }
  .max-w19em {
    max-width: 19em !important;
  }
  .max-w20em {
    max-width: 20em !important;
  }
  .max-w21em {
    max-width: 21em !important;
  }
  .max-w22em {
    max-width: 22em !important;
  }
  .max-w23em {
    max-width: 23em !important;
  }
  .max-w24em {
    max-width: 24em !important;
  }
  .max-w25em {
    max-width: 25em !important;
  }
  .max-w26em {
    max-width: 26em !important;
  }
  .max-w27em {
    max-width: 27em !important;
  }
  .max-w28em {
    max-width: 28em !important;
  }
  .max-w29em {
    max-width: 29em !important;
  }
  .min-w500 {
    min-width: 500px !important;
  }
  .min-w600 {
    min-width: 600px !important;
  }
  .min-w700 {
    min-width: 700px !important;
  }
  .min-w800 {
    min-width: 800px !important;
  }
  .min-w900 {
    min-width: 900px !important;
  }
  .min-w1000 {
    min-width: 1000px !important;
  }
  .min-w1100 {
    min-width: 1100px !important;
  }
  .min-w1200 {
    min-width: 1200px !important;
  }
  .min-w1300 {
    min-width: 1300px !important;
  }
  .min-w1400 {
    min-width: 1400px !important;
  }
  .min-w1em {
    min-width: 1em !important;
  }
  .min-w2em {
    min-width: 2em !important;
  }
  .min-w3em {
    min-width: 3em !important;
  }
  .min-w4em {
    min-width: 4em !important;
  }
  .min-w5em {
    min-width: 5em !important;
  }
  .min-w6em {
    min-width: 6em !important;
  }
  .min-w7em {
    min-width: 7em !important;
  }
  .min-w8em {
    min-width: 8em !important;
  }
  .min-w9em {
    min-width: 9em !important;
  }
  .min-w10em {
    min-width: 10em !important;
  }
  .min-w11em {
    min-width: 11em !important;
  }
  .min-w12em {
    min-width: 12em !important;
  }
  .min-w13em {
    min-width: 13em !important;
  }
  .min-w14em {
    min-width: 14em !important;
  }
  .min-w15em {
    min-width: 15em !important;
  }
  .min-w16em {
    min-width: 16em !important;
  }
  .min-w17em {
    min-width: 17em !important;
  }
  .min-w18em {
    min-width: 18em !important;
  }
  .min-w19em {
    min-width: 19em !important;
  }
  .min-w20em {
    min-width: 20em !important;
  }
  .min-w21em {
    min-width: 21em !important;
  }
  .min-w22em {
    min-width: 22em !important;
  }
  .min-w23em {
    min-width: 23em !important;
  }
  .min-w24em {
    min-width: 24em !important;
  }
  .min-w25em {
    min-width: 25em !important;
  }
  .min-w26em {
    min-width: 26em !important;
  }
  .min-w27em {
    min-width: 27em !important;
  }
  .min-w28em {
    min-width: 28em !important;
  }
  .min-w29em {
    min-width: 29em !important;
  }
  .w1per {
    width: 1% !important;
  }
  .w2per {
    width: 2% !important;
  }
  .w3per {
    width: 3% !important;
  }
  .w4per {
    width: 4% !important;
  }
  .w5per {
    width: 5% !important;
  }
  .w6per {
    width: 6% !important;
  }
  .w7per {
    width: 7% !important;
  }
  .w8per {
    width: 8% !important;
  }
  .w9per {
    width: 9% !important;
  }
  .w10per {
    width: 10% !important;
  }
  .w11per {
    width: 11% !important;
  }
  .w12per {
    width: 12% !important;
  }
  .w13per {
    width: 13% !important;
  }
  .w14per {
    width: 14% !important;
  }
  .w15per {
    width: 15% !important;
  }
  .w16per {
    width: 16% !important;
  }
  .w17per {
    width: 17% !important;
  }
  .w18per {
    width: 18% !important;
  }
  .w19per {
    width: 19% !important;
  }
  .w20per {
    width: 20% !important;
  }
  .w21per {
    width: 21% !important;
  }
  .w22per {
    width: 22% !important;
  }
  .w23per {
    width: 23% !important;
  }
  .w24per {
    width: 24% !important;
  }
  .w25per {
    width: 25% !important;
  }
  .w26per {
    width: 26% !important;
  }
  .w27per {
    width: 27% !important;
  }
  .w28per {
    width: 28% !important;
  }
  .w29per {
    width: 29% !important;
  }
  .w30per {
    width: 30% !important;
  }
  .w31per {
    width: 31% !important;
  }
  .w32per {
    width: 32% !important;
  }
  .w33per {
    width: 33% !important;
  }
  .w34per {
    width: 34% !important;
  }
  .w35per {
    width: 35% !important;
  }
  .w36per {
    width: 36% !important;
  }
  .w37per {
    width: 37% !important;
  }
  .w38per {
    width: 38% !important;
  }
  .w39per {
    width: 39% !important;
  }
  .w25per {
    width: 25% !important;
  }
  .w30per {
    width: 30% !important;
  }
  .w35per {
    width: 35% !important;
  }
  .w40per {
    width: 40% !important;
  }
  @media (min-width: 768px) {
    .pc-fit-content {
      width: -moz-fit-content !important;
      width: fit-content !important;
    }
    .pc-max-w100per {
      max-width: 100% !important;
    }
    .pc-min-w500 {
      min-width: 500px !important;
    }
    .pc-min-w600 {
      min-width: 600px !important;
    }
    .pc-min-w700 {
      min-width: 700px !important;
    }
    .pc-min-w800 {
      min-width: 800px !important;
    }
    .pc-min-w900 {
      min-width: 900px !important;
    }
    .pc-min-w1000 {
      min-width: 1000px !important;
    }
    .pc-min-w1100 {
      min-width: 1100px !important;
    }
    .pc-min-w1200 {
      min-width: 1200px !important;
    }
    .pc-min-w1300 {
      min-width: 1300px !important;
    }
    .pc-min-w1400 {
      min-width: 1400px !important;
    }
    .pc-min-w1em {
      min-width: 1em !important;
    }
    .pc-min-w2em {
      min-width: 2em !important;
    }
    .pc-min-w3em {
      min-width: 3em !important;
    }
    .pc-min-w4em {
      min-width: 4em !important;
    }
    .pc-min-w5em {
      min-width: 5em !important;
    }
    .pc-min-w6em {
      min-width: 6em !important;
    }
    .pc-min-w7em {
      min-width: 7em !important;
    }
    .pc-min-w8em {
      min-width: 8em !important;
    }
    .pc-min-w9em {
      min-width: 9em !important;
    }
    .pc-min-w10em {
      min-width: 10em !important;
    }
    .pc-min-w11em {
      min-width: 11em !important;
    }
    .pc-min-w12em {
      min-width: 12em !important;
    }
    .pc-min-w13em {
      min-width: 13em !important;
    }
    .pc-min-w14em {
      min-width: 14em !important;
    }
    .pc-min-w15em {
      min-width: 15em !important;
    }
    .pc-min-w16em {
      min-width: 16em !important;
    }
    .pc-min-w17em {
      min-width: 17em !important;
    }
    .pc-min-w18em {
      min-width: 18em !important;
    }
    .pc-min-w19em {
      min-width: 19em !important;
    }
    .pc-min-w20em {
      min-width: 20em !important;
    }
    .pc-min-w21em {
      min-width: 21em !important;
    }
    .pc-min-w22em {
      min-width: 22em !important;
    }
    .pc-min-w23em {
      min-width: 23em !important;
    }
    .pc-min-w24em {
      min-width: 24em !important;
    }
    .pc-min-w25em {
      min-width: 25em !important;
    }
    .pc-min-w26em {
      min-width: 26em !important;
    }
    .pc-min-w27em {
      min-width: 27em !important;
    }
    .pc-min-w28em {
      min-width: 28em !important;
    }
    .pc-min-w29em {
      min-width: 29em !important;
    }
    .pc-w1per {
      width: 1% !important;
    }
    .pc-w2per {
      width: 2% !important;
    }
    .pc-w3per {
      width: 3% !important;
    }
    .pc-w4per {
      width: 4% !important;
    }
    .pc-w5per {
      width: 5% !important;
    }
    .pc-w6per {
      width: 6% !important;
    }
    .pc-w7per {
      width: 7% !important;
    }
    .pc-w8per {
      width: 8% !important;
    }
    .pc-w9per {
      width: 9% !important;
    }
    .pc-w10per {
      width: 10% !important;
    }
    .pc-w11per {
      width: 11% !important;
    }
    .pc-w12per {
      width: 12% !important;
    }
    .pc-w13per {
      width: 13% !important;
    }
    .pc-w14per {
      width: 14% !important;
    }
    .pc-w15per {
      width: 15% !important;
    }
    .pc-w16per {
      width: 16% !important;
    }
    .pc-w17per {
      width: 17% !important;
    }
    .pc-w18per {
      width: 18% !important;
    }
    .pc-w19per {
      width: 19% !important;
    }
    .pc-w20per {
      width: 20% !important;
    }
    .pc-w21per {
      width: 21% !important;
    }
    .pc-w22per {
      width: 22% !important;
    }
    .pc-w23per {
      width: 23% !important;
    }
    .pc-w24per {
      width: 24% !important;
    }
    .pc-w25per {
      width: 25% !important;
    }
    .pc-w26per {
      width: 26% !important;
    }
    .pc-w27per {
      width: 27% !important;
    }
    .pc-w28per {
      width: 28% !important;
    }
    .pc-w29per {
      width: 29% !important;
    }
    .pc-w30per {
      width: 30% !important;
    }
    .pc-w31per {
      width: 31% !important;
    }
    .pc-w32per {
      width: 32% !important;
    }
    .pc-w33per {
      width: 33% !important;
    }
    .pc-w34per {
      width: 34% !important;
    }
    .pc-w35per {
      width: 35% !important;
    }
    .pc-w36per {
      width: 36% !important;
    }
    .pc-w37per {
      width: 37% !important;
    }
    .pc-w38per {
      width: 38% !important;
    }
    .pc-w39per {
      width: 39% !important;
    }
    .pc-w25per {
      width: 25% !important;
    }
    .pc-w30per {
      width: 30% !important;
    }
    .pc-w35per {
      width: 35% !important;
    }
    .pc-w40per {
      width: 40% !important;
    }
  }
  .text-center {
    text-align: center !important;
  }
  .text-left {
    text-align: left !important;
  }
  .text-right {
    text-align: right !important;
  }
  .clearfix {
    overflow: hidden !important;
  }
  .d-block {
    display: block !important;
  }
  .d-in-block {
    display: inline-block !important;
  }
  .d-inline {
    display: inline !important;
  }
  .block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  input[type=text].max,
  input[type=tel].max,
  input[type=email].max,
  input[type=password].max,
  select.max,
  textarea.max {
    width: 100%;
  }
  .clr:after {
    content: "";
    display: block;
    clear: both;
  }
  .ico {
    position: relative;
    top: -2px;
    vertical-align: middle;
  }
  .nowrap {
    white-space: nowrap;
  }
  .d-none,
  .hide {
    display: none;
  }
  .indent {
    text-indent: -1em;
    padding-left: 1em;
  }
  .indent * {
    text-indent: 0;
  }
  .indent1-5em {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  .indent1-5em * {
    text-indent: 0;
  }
  .indent2em {
    text-indent: -2em;
    padding-left: 2em;
  }
  .indent2em * {
    text-indent: 0;
  }
  .indent3em {
    text-indent: -3em;
    padding-left: 3em;
  }
  .indent3em * {
    text-indent: 0;
  }
  .indent-0 {
    text-indent: 0;
  }
  .indent-05em {
    text-indent: -0.5em;
  }
  .indent-05em * {
    text-indent: 0;
  }
  .indent-1em {
    text-indent: -1em;
  }
  .indent-1em * {
    text-indent: 0;
  }
  .pc-d-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  @media (min-width: 768px) {
    .d-flex,
    .pc-d-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .d-flex.--rtl,
    .pc-d-flex.--rtl {
      flex-direction: row-reverse;
    }
    .d-flex.--col,
    .pc-d-flex.--col {
      flex-direction: column;
    }
    .d-flex.--wrap,
    .pc-d-flex.--wrap {
      flex-wrap: wrap;
    }
    .d-flex.--align-items-center,
    .pc-d-flex.--align-items-center {
      align-items: center;
    }
    .d-flex.--justify-start,
    .pc-d-flex.--justify-start {
      justify-content: flex-start;
    }
    .d-flex.--justify-end,
    .pc-d-flex.--justify-end {
      justify-content: flex-end;
    }
    .d-flex.--justify-center,
    .pc-d-flex.--justify-center {
      justify-content: center;
    }
    .d-flex.--even > *,
    .pc-d-flex.--even > * {
      flex: 1;
    }
    .d-flex.--col2,
    .pc-d-flex.--col2 {
      gap: 0 2em;
    }
    .d-flex.--col2 > *,
    .pc-d-flex.--col2 > * {
      width: calc((100% - 2em) / 2);
    }
    .d-flex.pc-gap1em,
    .pc-d-flex.pc-gap1em {
      gap: 0 1em;
    }
    .d-flex.pc-gap2em,
    .pc-d-flex.pc-gap2em {
      gap: 0 2em;
    }
    .d-flex.pc-gap3em,
    .pc-d-flex.pc-gap3em {
      gap: 0 3em;
    }
    .d-flex.pc-gap4em,
    .pc-d-flex.pc-gap4em {
      gap: 0 4em;
    }
    .d-flex.pc-gap0-5em,
    .pc-d-flex.pc-gap0-5em {
      gap: 0.5em;
    }
  }
  .gap1em {
    gap: 0 1em;
  }
  .gap2em {
    gap: 0 2em;
  }
  .gap3em {
    gap: 0 3em;
  }
  .gap4em {
    gap: 0 4em;
  }
  .gap0-5em {
    gap: 0.5em;
  }
  @media (max-width: 991px) {
    .pc {
      display: none;
    }
    .tb,
    .tb.sp,
    .tb.sp2 {
      display: block;
    }
    .tb-text-center {
      text-align: center;
    }
    .tb-text-left {
      text-align: left;
    }
    .tb-text-right {
      text-align: right;
    }
    .tb-d-block {
      display: block;
    }
  }
  @media print and (max-width: 991px), screen and (max-width: 991px) and (min-width: 768px) {
    .tb-d-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .tb-d-flex.rtl {
      flex-direction: row-reverse;
    }
    .tb-d-flex.tb-col {
      flex-direction: column;
    }
    .tb-d-flex.--wrap {
      flex-wrap: wrap;
    }
    .tb-d-flex.--align-left {
      justify-content: flex-start;
    }
    .tb-d-flex.--align-right {
      justify-content: flex-end;
    }
    .tb-d-flex.--align-center {
      justify-content: center;
    }
    .tb-d-flex.align-items-center {
      align-items: center;
    }
    .tb-d-flex.--align-items-center {
      align-items: center;
    }
    .tb-d-flex.--col4 {
      margin-left: -10px;
      margin-right: -10px;
    }
    .tb-d-flex.--col4 > * {
      margin: 0 10px 20px;
      width: calc(25% - 20px);
    }
    .tb-d-flex.--col2 {
      gap: 0 2em;
    }
    .tb-d-flex.--col2 > * {
      width: calc((100% - 2em) / 2);
    }
    .tb-d-flex.--row-gap1em {
      gap: 0 1em;
    }
    .tb-d-flex.--row-gap2em {
      gap: 0 2em;
    }
    .tb-d-flex.--row-gap3em {
      gap: 0 3em;
    }
    .tb-d-flex.--row-gap4em {
      gap: 0 4em;
    }
    .tb-mt0 {
      margin-top: 0 !important;
    }
    .tb-mt10 {
      margin-top: 10px !important;
    }
    .tb-mt20 {
      margin-top: 20px !important;
    }
    .tb-mt1em {
      margin-top: 1em !important;
    }
    .tb-mt2em {
      margin-top: 2em !important;
    }
    .tb-mt3em {
      margin-top: 3em !important;
    }
  }
  @media (max-width: 767px) {
    .pc,
    .tb,
    .pc.tb,
    .pc.sp2,
    .tb.sp2,
    .sp2 {
      display: none !important;
    }
    .sp {
      display: block !important;
    }
    .sp-mt0 {
      margin-top: 0 !important;
    }
    .sp-mt5 {
      margin-top: 5px !important;
    }
    .sp-mt10 {
      margin-top: 10px !important;
    }
    .sp-mt20 {
      margin-top: 20px !important;
    }
    .sp-mt1em {
      margin-top: 1em !important;
    }
    .sp-mt2em {
      margin-top: 2em !important;
    }
    .sp-mt3em {
      margin-top: 3em !important;
    }
    .sp-mb0 {
      margin-bottom: 0 !important;
    }
    .sp-ml0 {
      margin-left: 0 !important;
    }
    .sp-mr0 {
      margin-right: 0 !important;
    }
    .sp-pt0 {
      padding-top: 0 !important;
    }
    .sp-pb0 {
      padding-bottom: 0 !important;
    }
    .sp-pl0 {
      padding-left: 0 !important;
    }
    .sp-pr0 {
      padding-right: 0 !important;
    }
    .sp-pt1em {
      padding-top: 1em !important;
    }
    .sp-pt2em {
      padding-top: 2em !important;
    }
    .sp-pt5 {
      padding-top: 5px !important;
    }
    .sp-pt10 {
      padding-top: 10px !important;
    }
    .sp-pt15 {
      padding-top: 15px !important;
    }
    .sp-pt20 {
      padding-top: 20px !important;
    }
    .sp-pt25 {
      padding-top: 25px !important;
    }
    .sp-pl5 {
      padding-left: 5px !important;
    }
    .sp-pl10 {
      padding-left: 10px !important;
    }
    .sp-mt1em {
      margin-top: 1em !important;
    }
    .sp-ml-1em {
      margin-left: -1em !important;
    }
    .sp-ml-1-5em {
      margin-left: -1.5em !important;
    }
    .sp-fit-content {
      width: -moz-fit-content !important;
      width: fit-content !important;
    }
    .sp-w-auto {
      width: auto !important;
    }
    .sp-m-auto {
      margin-inline: auto !important;
    }
    .sp-max-w200 {
      max-width: 200px !important;
    }
    .sp-max-w300 {
      max-width: 300px !important;
    }
    .sp-w5per {
      width: 5% !important;
    }
    .sp-w10per {
      width: 10% !important;
    }
    .sp-w15per {
      width: 15% !important;
    }
    .sp-w20per {
      width: 20% !important;
    }
    .sp-w25per {
      width: 25% !important;
    }
    .sp-w30per {
      width: 30% !important;
    }
    .sp-w35per {
      width: 35% !important;
    }
    .sp-w40per {
      width: 40% !important;
    }
    .sp-w45per {
      width: 45% !important;
    }
    .sp-w50per {
      width: 50% !important;
    }
    .sp-w55per {
      width: 55% !important;
    }
    .sp-w60per {
      width: 60% !important;
    }
    .sp-w65per {
      width: 65% !important;
    }
    .sp-w70per {
      width: 70% !important;
    }
    .sp-w75per {
      width: 75% !important;
    }
    .sp-w80per {
      width: 80% !important;
    }
    .sp-w85per {
      width: 85% !important;
    }
    .sp-w90per {
      width: 90% !important;
    }
    .sp-w95per {
      width: 95% !important;
    }
    .sp-w100per {
      width: 100% !important;
    }
    .sp-w100per {
      width: 100% !important;
    }
    .sp-w1em {
      width: 1em !important;
    }
    .sp-w2em {
      width: 2em !important;
    }
    .sp-w3em {
      width: 3em !important;
    }
    .sp-w4em {
      width: 4em !important;
    }
    .sp-w5em {
      width: 5em !important;
    }
    .sp-w6em {
      width: 6em !important;
    }
    .sp-w7em {
      width: 7em !important;
    }
    .sp-w8em {
      width: 8em !important;
    }
    .sp-w9em {
      width: 9em !important;
    }
    .sp-w10em {
      width: 10em !important;
    }
    .sp-w11em {
      width: 11em !important;
    }
    .sp-w12em {
      width: 12em !important;
    }
    .sp-w13em {
      width: 13em !important;
    }
    .sp-w14em {
      width: 14em !important;
    }
    .sp-w15em {
      width: 15em !important;
    }
    .sp-w20em {
      width: 20em !important;
    }
    .sp-w25em {
      width: 25em !important;
    }
    .sp-w30em {
      width: 30em !important;
    }
    .sp-w35em {
      width: 35em !important;
    }
    .sp-w40em {
      width: 40em !important;
    }
    .sp-w45em {
      width: 45em !important;
    }
    .sp-w50em {
      width: 50em !important;
    }
    .sp-w55em {
      width: 55em !important;
    }
    .sp-w60em {
      width: 60em !important;
    }
    .sp-w65em {
      width: 65em !important;
    }
    .sp-w70em {
      width: 70em !important;
    }
    .sp-w75em {
      width: 75em !important;
    }
    .sp-w80em {
      width: 80em !important;
    }
    .sp-w85em {
      width: 85em !important;
    }
    .sp-w90em {
      width: 90em !important;
    }
    .sp-w95em {
      width: 95em !important;
    }
    .sp-w100em {
      width: 100em !important;
    }
    .sp-font_xl {
      font-size: 1.2em;
    }
    .sp-font_l {
      font-size: 1.1em;
    }
    .sp-font_m {
      font-size: 1em;
    }
    .sp-font_s {
      font-size: 11px;
    }
    .sp-font_xs {
      font-size: 10px;
    }
    .sp-indnt-0 {
      text-indent: 0;
    }
    .sp-indnt-05 {
      text-indent: -0.5em;
    }
    .sp-indnt-05 * {
      text-indent: 0;
    }
    .sp-indnt-1 {
      text-indent: -1em;
    }
    .sp-indnt-1 * {
      text-indent: 0;
    }
    .sp-text-center {
      text-align: center !important;
    }
    .sp-text-left {
      text-align: left !important;
    }
    .sp-text-right {
      text-align: right !important;
    }
    .sp-d-block {
      display: block !important;
    }
    .sp-d-in-block {
      display: inline-block !important;
    }
    .sp-d-inline {
      display: inline !important;
    }
    .sp-block-center {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    input[type=text].sp-max,
    input[type=tel].sp-max,
    input[type=email].sp-max,
    input[type=password].sp-max,
    select.sp-max,
    textarea.sp-max {
      width: 100%;
    }
  }
  @media (max-width: 575px) {
    .sp2,
    .pc.sp2,
    .tb.sp2,
    .sp.sp2 {
      display: block !important;
    }
    .d-flex.sp2-block,
    .tb-d-flex.sp2-block,
    .sp-d-flex.sp2-block {
      display: block !important;
    }
    .d-flex.sp2-block > *,
    .tb-d-flex.sp2-block > *,
    .sp-d-flex.sp2-block > * {
      width: 100%;
    }
    .sp2-block,
    .sp2-d-block {
      display: block !important;
    }
    .sp2-in-block,
    .sp2-d-in-block {
      display: inline-block !important;
    }
    .sp2-inline,
    .sp2-d-inline {
      display: inline !important;
    }
    .sp2-text-left {
      text-align: left;
    }
    .sp2-text-right {
      text-align: right;
    }
    .sp2-text-center {
      text-align: center;
    }
    .sp2-mt0 {
      margin-top: 0 !important;
    }
    .sp2-mt10 {
      margin-top: 10px !important;
    }
    .sp2-mt20 {
      margin-top: 20px !important;
    }
    .sp2-mt1em {
      margin-top: 1em !important;
    }
    .sp2-mt2em {
      margin-top: 2em !important;
    }
    .sp2-mt3em {
      margin-top: 3em !important;
    }
    .sp2-mb5 {
      margin-bottom: 5px !important;
    }
    .sp2-m-auto {
      margin-inline: auto !important;
    }
  }
  @media (max-width: 424px) {
    .sp2 {
      display: none !important;
    }
    .sp3,
    .pc.sp3,
    .tb.sp3,
    .sp.sp3,
    .sp2.sp3 {
      display: block !important;
    }
    .sp3-d-block,
    .d-flex.sp3-block,
    .tb-d-flex.sp3-block,
    .sp-d-flex.sp3-block {
      display: block !important;
    }
    .d-flex.sp3-block > *,
    .tb-d-flex.sp3-block > *,
    .sp-d-flex.sp3-block > * {
      width: 100%;
    }
    .sp3-d-inline {
      display: inline !important;
    }
    .sp3-text-left {
      text-align: left;
    }
    .sp2-text-right {
      text-align: right;
    }
    .sp3-text-center {
      text-align: center;
    }
  }
}
@layer print {
  @media print {
    .header.fixed {
      position: absolute !important;
    }
    .footer,
    .menu-btn,
    .gnav,
    .page-top {
      display: none !important;
    }
    .anim, .animItem {
      opacity: 1 !important;
      display: block;
      transition: none !important;
      transform: none !important;
    }
    .btn, .btn--right {
      display: none;
    }
    .page1 {
      zoom: 0.56;
      -webkit-print-color-adjust: exact;
    }
  }
}
@layer pages {
  .pg_top .content {
    padding: 0;
    margin-top: 0;
  }
  .pg_top .section {
    padding-block: min(6.588579795vw, 5.625em);
  }
  .pg_top .container {
    width: 100%;
    max-width: initial;
  }
  .pg_top .anim--fadeInUp {
    position: relative;
    /* 一時的に非表示（テスト用）
    opacity   : 0;
    transform : translate(0, 40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    */
  }
  .pg_top .anim--fadeInUp.active {
    opacity: 1;
    transform: none;
  }
  .pg_top {
    /* anim2: per-character animation */
    /* fallback: avoid hiding text by default — GSAP will set the initial hidden state when JS runs */
  }
  .pg_top .anim--txt .char {
    display: inline-block;
    white-space: pre;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }
  .pg_top .section__title--top {
    margin: 0 0 0.35em;
    font-size: clamp(1.8rem, 0.7756260434rem + 1.3355592654vw, 2.6rem);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #0055A2;
  }
  .pg_top .section__title--top-sub {
    display: block;
    font-size: clamp(1.2rem, 0.3428571429em, 2.1rem);
    margin: 1em 0;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.025em;
  }
  .pg_top .btn-more {
    --_btn-color: var(--btn-color, var(--blue));
    display: grid;
    place-items: center;
    position: relative;
    margin: min(12%, 4em) 0 0;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 182px;
    min-height: 3.33em;
    padding-inline: 1.25em 2.25em;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.4rem, 0.8878130217rem + 0.6677796327vw, 1.8rem);
    font-weight: 600;
    border: 1px solid var(--_btn-color) !important;
    color: var(--_btn-color) !important;
    background: #fff;
    border-radius: 999999px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.025em;
  }
  .pg_top .btn-more:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 0.8888888889em;
    height: 0.8888888889em;
    background: url(../img/common/icon_arrow-circle-right-fill-s.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateY(-50%);
    right: 1em;
    transition: all 0.1s ease-out;
  }
  .pg_top .btn-more.--jp {
    font-family: "Noto Sans JP", sans-serif;
  }
  @media print, screen and (min-width: 768px) {
    .pg_top .btn-more.--right {
      float: right;
    }
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .btn-more {
      margin: 1.5em auto;
      min-height: 45px;
      width: min(100%, 180px);
    }
  }
  .pg_top .fv-effect {
    position: fixed;
    inset: -1px;
    z-index: 9999999;
    pointer-events: none;
  }
  .pg_top .fv-tiles {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999999;
  }
  .pg_top .fv-tiles .tile {
    background: #0055A2;
    will-change: transform, opacity;
  }
  .pg_top .fv-logo {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
  }
  .pg_top .fv {
    position: relative;
  }
  .pg_top .fv .scroll__wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(100px, 10vw);
    text-align: center;
    z-index: 10;
  }
  .pg_top .fv .scroll {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
  }
  .pg_top .intro {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 100vh;
  }
  .pg_top .intro:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.29);
    transition: opacity 0.3s ease-out;
  }
  .pg_top .intro__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
  }
  .pg_top .intro__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0055A2;
    z-index: 2;
  }
  .pg_top .intro .spinner {
    width: 36px;
    height: 36px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  .pg_top .intro.video-ready .intro__bg {
    opacity: 1;
  }
  .pg_top .intro.video-ready .intro__loader {
    display: none;
  }
  .pg_top .intro .intro__content {
    position: relative;
    display: grid;
    align-items: center;
    height: calc(100% - min(100px, 10vw));
    padding-top: 80px;
    z-index: 3;
  }
  @media (max-width: 992px) {
    .pg_top .intro .intro__content {
      padding-top: 55px;
    }
  }
  .pg_top .intro__ttl {
    font-weight: bold;
    font-size: max(1.375em, 3.074670571vw);
    line-height: 1.25;
  }
  .pg_top .intro__ttl-inner > * {
    display: block;
  }
  .pg_top .intro__ttl-sub {
    margin: 0 0 max(0.8em, 15px);
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.25em 1.56em;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.9rem, 0.003672788rem + 1.1686143573vw, 1.6rem);
    letter-spacing: 0.055em;
    border-radius: 99999px;
    background: rgba(255, 255, 255, 0.28);
    text-align: center;
  }
  .pg_top .intro__txt-item {
    margin-top: 1em;
    font-size: clamp(1.15rem, 1.4641288433vw, 1.25em);
    font-weight: bold;
    line-height: 1.65;
    letter-spacing: 0.055em;
  }
  .pg_top .intro .anim {
    transition-delay: 0.5s !important;
  }
  .pg_top .intro__txt-item.anim {
    transition-delay: 0.8s !important;
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .intro__txt > * {
      flex: 1;
    }
    .pg_top .intro__ttl {
      font-size: min(6.5vw, 2.2em);
    }
  }
  .pg_top .intro__ttl .anim--txt {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  .pg_top .intro.video-ready .anim--txt {
    opacity: 1;
    visibility: visible;
  }
  .pg_top .about {
    position: relative;
  }
  .pg_top .about__ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5em 0;
    background: #0055A2;
    text-align: center;
    overflow: hidden;
    min-height: min(4.5em, 205px);
    font-size: clamp(2.2rem, 0.5353923205rem + 2.1702838063vw, 3.5rem);
    font-weight: bold;
    color: #fff;
    text-transform: initial;
  }
  .pg_top .about__ttl-sub {
    margin: 0;
    letter-spacing: 0.055em;
    color: inherit;
    font-size: 1.5rem;
  }
  .pg_top .about__menu {
    position: relative;
  }
  .pg_top .about__menu-box {
    padding: max(1.5em, 3vw) 0;
    aspect-ratio: 20/8;
    display: flex;
    align-items: flex-end;
  }
  .pg_top .about__menu-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translate(-50%, -50%);
  }
  .pg_top .about__menu-txt {
    position: relative;
    padding: 3vw;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 35%;
    max-width: 50%;
    background: linear-gradient(45deg, #0055a2, #3aafdb);
    box-shadow: 0 0 0.4em rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .pg_top .about__menu-catch {
    font-size: clamp(1.9rem, 0.4914858097rem + 1.83639399vw, 3rem);
    line-height: 1.6;
    font-weight: bold;
    color: #fff;
  }
  .pg_top .about__menu-summary {
    margin-top: 0.75em;
    color: #fff;
  }
  .pg_top .about__menu .btn-more {
    width: auto;
    max-width: 260px;
    margin-top: min(10%, 3em);
  }
  .pg_top .about__menu-nav-wrapper {
    background: #002672;
    padding-block: 14px;
  }
  .pg_top .about__menu-nav {
    display: flex;
    gap: 1.75%;
  }
  .pg_top .about__menu-nav-item {
    flex: 1;
    background: #fff;
  }
  .pg_top .about__menu-nav-item a {
    display: block;
    opacity: 0.72;
  }
  .pg_top .about__menu-nav-item.is-active a,
  .pg_top .about__menu-nav-item a:hover {
    opacity: 1;
  }
  .pg_top .about__menu-nav-item.splide__slide, .pg_top .about__menu-nav-item.splide__slide.is-active {
    border: 0 !important;
  }
  .pg_top .about__menu-nav img {
    aspect-ratio: 3/1;
    width: 100%;
    height: auto;
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .about {
      padding-bottom: 0;
    }
    .pg_top .about__menu-txt {
      width: 100%;
      min-width: initial;
      max-width: initial;
      padding: min(6vw, 2em);
      margin-top: min(30vw, 250px);
    }
    .pg_top .about__menu-summary {
      font-size: 1.125rem;
    }
    .pg_top .about .btn-more {
      margin: 1.5em auto 0;
    }
    .pg_top .about__menu-nav img {
      aspect-ratio: 1.5/1;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .about__menu-box {
      aspect-ratio: initial !important;
      min-height: 276px;
      min-height: 0;
    }
    .splide__slide#about-slider-slide03 {
      background-position: 95% 0 !important;
      background-size: 50%;
      background-color: #fff;
    }
    .splide__slide#about-slider-slide04 {
      background-size: 180% !important;
      background-position: 98% center !important;
      background-color: #3c357f !important;
    }
    #thumbnail-slider-slide03 img {
      -o-object-position: 100% center;
         object-position: 100% center;
    }
    #thumbnail-slider-slide04 img {
      -o-object-position: 90% center;
         object-position: 90% center;
    }
  }
  .pg_top .topics {
    background: url(../img/index/topics_bg.jpg) no-repeat center center;
    background-size: cover;
  }
  .pg_top .topics__ttl img {
    width: 100%;
    height: auto;
  }
  .pg_top .topics__ttl .catch {
    position: relative;
    font-size: clamp(0.5rem, 1.05vw, 1em);
    color: #2f4974;
    line-height: 1;
    letter-spacing: normal;
    -moz-text-align-last: justify;
         text-align-last: justify;
    margin-top: 0.8em;
    padding-top: 0.8em;
  }
  .pg_top .topics__ttl .catch:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0075b8 0%, #00a9b9 100%);
  }
  .pg_top .topics__slider {
    gap: 10px;
  }
  .pg_top .topics__slider-box {
    background: #fff;
  }
  .pg_top .topics__slider-box img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 716/390;
  }
  .pg_top .topics__slider-txt {
    padding: 1.35em 0.75em 1em;
  }
  .pg_top .topics__slider-txt-item {
    font-size: clamp(1.7rem, 1.3158597663rem + 0.5008347245vw, 2rem);
    font-weight: bold;
    line-height: 1.3;
  }
  .pg_top .topics__slider-date {
    margin: 1em 0 0;
    font-size: clamp(1.2rem, 0.8158597663rem + 0.5008347245vw, 1.5rem);
    line-height: 1;
  }
  .pg_top .topics__slider {
    padding-bottom: 45px;
  }
  .pg_top .topics .splide__arrows.splide__arrows--ltr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 30px;
  }
  .pg_top .topics .splide__arrow {
    width: 32px !important;
    height: 32px !important;
    color: var(--blue) !important;
    opacity: 1 !important;
    overflow: hidden;
  }
  .pg_top .topics .splide__arrow > svg {
    display: none;
  }
  .pg_top .topics .splide__arrow:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    background: url(../img/common/icon_slider-arrow-prev.svg) no-repeat 0 0;
    background-size: contain;
  }
  .pg_top .topics .splide__arrow--prev {
    left: 0 !important;
  }
  .pg_top .topics .splide__arrow--next {
    right: 0 !important;
  }
  .pg_top .topics .splide__arrow--next:before {
    background: url(../img/common/icon_slider-arrow-next.svg) no-repeat 0 0;
    background-size: contain;
  }
  .pg_top .topics ul.splide__pagination.splide__pagination--ltr {
    gap: 10px;
    left: 100px !important;
    padding: 0 !important;
    width: -moz-fit-content;
    width: fit-content;
    height: 32px !important;
    bottom: 0 !important;
  }
  .pg_top .topics .splide__pagination__page {
    background: var(--blue--light) !important;
    width: 9px !important;
    height: 9px !important;
  }
  .pg_top .topics .splide__pagination__page.is-active {
    background: var(--blue) !important;
    transform: none !important;
  }
  @media print, screen and (min-width: 768px) {
    .pg_top .topics__wrapper {
      padding-inline: 0;
      overflow: hidden;
      gap: 0;
    }
    .pg_top .topics__txt-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 3em;
      flex: 1 0 25%;
      min-width: 200px;
    }
    .pg_top .topics__txt-wrapper > * {
      width: -moz-fit-content;
      width: fit-content;
      margin-inline: auto;
      width: 68%;
      min-width: initial;
    }
    .pg_top .topics__txt-wrapper img {
      margin-inline: auto;
    }
    .pg_top .topics__txt-wrapper .section__title--top {
      margin-bottom: 0;
    }
    .pg_top .topics__slider-wrapper {
      max-width: 80%;
    }
    .pg_top .topics__slider-inner {
      margin-right: -15%;
    }
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .topics__ttl {
      width: 180px;
      margin: 0 auto;
    }
    .pg_top .topics__ttl .catch {
      font-size: 1.1rem;
    }
  }
  .pg_top .news__ttl {
    font-size: clamp(4.2rem, 1.3829716194rem + 3.67278798vw, 6.4rem);
    text-transform: initial;
    line-height: 1.15;
    color: var(--blue);
  }
  .pg_top .news__ttl .font_en {
    letter-spacing: 0.025em !important;
  }
  .pg_top .news__ttl-sub {
    margin-top: 0;
    color: #000000;
    font-size: clamp(1.4rem, 0.8878130217rem + 0.6677796327vw, 1.8rem);
  }
  .pg_top .news__ttl-inner {
    display: block;
    line-height: 1;
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .news__ttl {
      text-align: center;
    }
  }
  .pg_top .news__list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    padding-block: min(3.6%, 1.75em);
    border-bottom: 1px solid var(--borderColor);
    font-size: clamp(1.3rem, 0.6597662771rem + 0.8347245409vw, 1.8rem);
  }
  .pg_top .news__list-item:first-child .news__list-link {
    padding-top: 0 !important;
  }
  .pg_top .news__list-meta {
    display: flex;
    gap: 1em;
    flex: 0 0 min(22%, 12em);
    line-height: 1;
    align-items: center;
  }
  .pg_top .news__list-date {
    display: block;
    color: #333333;
    font-weight: 500;
    font-size: 0.8333333333em;
    white-space: nowrap;
  }
  .pg_top .news__list-cat {
    display: grid;
    place-items: center;
    padding: 0.75em 0.5em;
    min-width: 100px;
    font-weight: bold;
    font-size: 0.7777777778em;
    color: #fff;
    background: #9E9E9E;
    text-align: center;
    border-radius: 0.33em;
  }
  @media (max-width: 767px) {
    .pg_top .news__list-cat {
      padding: 0.4em;
      min-width: 70px;
    }
  }
  .pg_top .news__list-cat--release {
    background: #00A9D5;
  }
  .pg_top .news__list-cat--stat {
    background: #9E9E9E;
  }
  .pg_top .news__list-link {
    color: #333333;
    text-decoration: none;
    padding-right: 2.5em;
    width: 100%;
  }
  .pg_top .news__list-link:before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.3888888889em;
    height: 1.3888888889em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateY(-50%);
  }
  .pg_top .news__list-link[target=_blank]:before {
    background-image: url(../img/common/icon_link_blank.svg);
  }
  .pg_top .news__list-link:hover {
    color: var(--blue);
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .news__list-link {
      padding-right: clamp(2em, 7vw, 6em);
    }
    .pg_top .news__list-link:before {
      width: max(13px, 3vw);
      height: max(13px, 3vw);
    }
  }
  @media print, screen and (min-width: 768px) {
    .pg_top .news__wrap {
      gap: 2.5em;
    }
    .pg_top .news__ttl-wrap {
      margin-bottom: 1.5em;
      flex: 0 1 calc(41.4348462665% - 2.5em);
      align-items: flex-end;
    }
    .pg_top .news__ttl {
      margin: 0;
    }
    .pg_top .news__list-wrap {
      flex: 1;
    }
    .pg_top .news__list-item {
      flex-direction: row;
      align-items: flex-start;
    }
  }
  .pg_top .pickup {
    padding-bottom: min(5%, 5em);
    background: url(../img/index/pickup_bg.png) no-repeat center center;
    background-size: cover;
  }
  .pg_top .pickup__tab-menu {
    --nav-blue--bg: rgba(0, 93, 178, 0.09);
    --_navBg: var(--navBg, var(--nav-blue--bg));
    display: flex;
  }
  .pg_top .pickup__tab-menu-item {
    flex: 1;
  }
  .pg_top .pickup__tab-menu-txt {
    position: relative;
    display: flex;
    gap: 1em;
    align-items: center;
    padding: min(1.6em, 1.8vw);
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    color: #005DB2;
    background: var(--_navBg);
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
  }
  .pg_top .pickup__tab-menu-txt .pickup__tab-menu-en {
    display: inline-block;
    text-transform: uppercase;
    font-size: clamp(2rem, -0.4328881469rem + 3.1719532554vw, 3.9rem);
    letter-spacing: 0.025em;
  }
  .pg_top .pickup__tab-menu-txt:after {
    content: "";
    display: block;
    position: absolute;
    right: 1.5em;
    top: 50%;
    width: 1.5625em;
    height: 1.5625em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease-out;
    opacity: 0.26;
  }
  .pg_top .pickup__tab-menu .--current a {
    --_navBg: #fff;
  }
  .pg_top .pickup__tab-menu .--current a:after {
    opacity: 1;
  }
  @media print, screen and (max-width: 767px) {
    .pg_top .pickup__tab-menu-txt {
      flex-direction: column;
      text-align: center;
      gap: 0.3em;
      font-size: 0.6em;
    }
  }
  .pg_top .pickup__tab-content {
    display: none;
    background: #fff;
  }
  .pg_top .pickup__tab-content.--current {
    display: block;
  }
  .pg_top .pickup__list {
    padding: clamp(0.7em, 2.75%, 1.65em) clamp(1.25em, 3.8%, 2em);
  }
  .pg_top .pickup__list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    padding: clamp(1em, 4%, 1.5em) 0.5em;
    font-size: clamp(1.3rem, 0.6597662771rem + 0.8347245409vw, 1.8rem);
    border-bottom: 1px solid #DFDFDF;
  }
  .pg_top .pickup__list-item:last-child {
    border-bottom: 0;
  }
  .pg_top .pickup__list-date {
    display: block;
    line-height: 2;
    flex: 0 0 auto;
    color: #333333;
    font-weight: 500;
    font-size: 0.8333333333em;
    white-space: nowrap;
  }
  .pg_top .pickup__list-link {
    position: relative;
    display: block;
    width: 100%;
    color: #333333;
    text-decoration: none;
    padding-right: 2.5em;
  }
  .pg_top .pickup__list-link:before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.3888888889em;
    height: 1.3888888889em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateY(-50%);
  }
  .pg_top .pickup__list-link[target=_blank]:before {
    background-image: url(../img/common/icon_link_blank.svg);
  }
  .pg_top .pickup__list-link:hover {
    color: var(--blue);
  }
  @media print, screen and (min-width: 768px) {
    .pg_top .pickup__wrap {
      gap: 2.5em;
    }
    .pg_top .pickup__ttl-wrap {
      flex: 0 1 calc(41.4348462665% - 2.5em);
    }
    .pg_top .pickup__ttl {
      margin: 0;
    }
    .pg_top .pickup .btn-more {
      margin: 0;
    }
    .pg_top .pickup__list {
      padding-inline: min(7%, 3em);
    }
    .pg_top .pickup__list-wrap {
      flex: 1;
    }
    .pg_top .pickup__list-item {
      flex-direction: row;
      align-items: flex-start;
      gap: 1em;
    }
  }
  .pg_top .pickup .btn-wrap {
    margin-top: clamp(2rem, -0.5609348915rem + 3.3388981636vw, 4rem);
    overflow: hidden;
  }
  .pg_top .c-menu {
    padding-top: clamp(35px, 5%, 5em);
  }
  .pg_top .c-menu__list {
    --col-num: 4;
    --grid-gap: 0;
    margin: 2.5em auto 0;
    display: grid;
    grid-template-columns: repeat(var(--col-num), 1fr);
  }
  @media (max-width: 991px) {
    .pg_top .c-menu__list {
      grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    }
  }
  .pg_top .c-menu__list-link {
    background: #F9F9F9;
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em min(15%, 3.6em) 1em 1em;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 1.3rem;
    color: #000000;
    text-decoration: none;
    line-height: 1.5;
    min-height: 8.5em;
    position: relative;
    overflow: hidden;
    transform: translate(0, 0, 0);
    z-index: 1;
  }
  .pg_top .c-menu__list-link:after {
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3em;
    height: 1.3em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    transition: all 0.3s ease-out;
  }
  .pg_top .c-menu__list-link:hover {
    opacity: 1;
    color: #fff;
    background: #000;
  }
  .pg_top .c-menu__list-link:hover:after {
    background-image: url(../img/common/icon_arrow-circle-white.svg);
  }
  .pg_top .c-menu__list-link:hover .c-menu__list-txt-en {
    color: #0055A2;
  }
  .pg_top .c-menu__list-txt {
    position: relative;
    z-index: 1;
  }
  .pg_top .c-menu__list-txt-en {
    font-size: 0.8461538462em;
    color: #0055A2;
    margin: 0 0 0.6em;
  }
  .pg_top .c-menu__list-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
  .pg_top .c-menu__list-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pg_top .c-menu__list-link:hover .c-menu__list-img {
    opacity: 0.65;
  }
  .pg_top .c-menu__list-link:hover .c-menu__list-txt-en {
    color: #fff;
  }
}/*# sourceMappingURL=index.css.map */