@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, .pg_letter .page-title__vol {
    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 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 {
    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;
  }
  .reduce-motion * {
    animation: none !important;
    transition: none !important;
  }
  /* 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);
  }
  .anim {
    /* zoom */
  }
  .anim--fadeInZoom {
    opacity: 0;
    transform: scale(0.9) translateY(50px);
    transition: transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .anim--fadeInZoom.active {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  .anim--slideIn {
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.35s ease 0.25s;
    transform: translateX(-99.99%);
  }
  .anim--slideIn.active {
    opacity: 1;
    transform: translateX(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);
    }
  }
  @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;
    }
  }
  [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 {
      justify-content: space-between;
      height: 100%;
    }
    .gnav__menu > li {
      flex: 1;
      min-width: 7em;
    }
    .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__box .search__btn {
    display: grid;
    place-items: center;
    margin: 0 auto;
    width: 1em;
    height: 1em;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }
  .search__box .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;
  }
  @media (min-width: 992px) {
    .search__wrapper {
      width: 3em;
      margin-right: 1em;
      overflow: hidden;
      display: grid;
      place-items: center;
    }
    .search__input {
      display: none;
    }
  }
  .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 pages {
  /* -------------------------
    index styles
  -------------------------*/
  .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(50vw, 400px);
    }
    .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;
    }
  }
  .pg_top .topics {
    background: url(../img/index/topics_bg.png) 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;
  }
  .section__index {
    padding-inline: 3px;
  }
  .pg_lower .index__list--col2 {
    --grid-gap: min(4.5vw, 4em);
    --grid-col-minw: calc(50% - var(--grid-gap));
    margin-top: min(4%, 4em);
  }
  .pg_lower .index__list--col2 > .section__index {
    padding-block: 0;
  }
  @media (min-width: 640px) {
    .pg_lower .index__list--col2 .index__wrapper {
      aspect-ratio: 1.65/1;
    }
  }
  @media (max-width: 639px) {
    .pg_lower .index__list--col2 {
      --grid-gap: 2em;
      --grid-col-minw: 1fr;
    }
    .pg_lower .index__list--col2 .index__wrapper {
      aspect-ratio: initial;
      min-height: 200px;
    }
  }
  .pg_lower .index__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: clamp(1.75em, 5%, 4em);
    color: #fff;
    aspect-ratio: 3/1.1;
    background-color: #fafafa;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .pg_lower .index__title {
    margin-bottom: 0.75em;
    color: #fff;
    display: block;
    font-size: clamp(2.4rem, 0.0951585977rem + 3.0050083472vw, 4.2rem);
    letter-spacing: 0.04em;
  }
  .pg_lower .index__title-sub {
    display: block;
    margin: 0.5em 0 0;
    font-size: min(1.2rem, 0.75em);
    line-height: 1.5;
  }
  @media (min-width: 576px) {
    .pg_lower .index__title {
      display: flex;
      gap: 0.5em;
      align-items: center;
    }
    .pg_lower .index__title-sub {
      padding-left: 1em;
      border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
  }
  @media (max-width: 575px) {
    .pg_lower .index__title-sub {
      font-size: 1.35rem;
    }
    .pg_lower .index__title-sub:before {
      content: "";
      display: block;
      margin-top: 0.7em;
      padding-top: 0.6em;
      width: 100px;
      height: 1px;
      border-top: 1px solid rgba(255, 255, 255, 0.5);
    }
  }
  .pg_lower .index__link {
    overflow: hidden;
    margin: 1.5em -3px 0 0;
    padding-right: 3px;
  }
  .pg_lower .index__link .btn-more {
    float: right;
    color: #0055A2;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2em;
  }
  .pg_lower .index__link .btn-more:after {
    content: "";
    display: inline-block;
    position: relative;
    top: -0.1em;
    margin-block: 0.1em;
    margin-left: 0.75em;
    width: 2.2em;
    height: 2.2em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    transition: transform 0.25s ease-out;
  }
  .pg_lower .index__link .btn-more:hover {
    opacity: 1;
  }
  .pg_lower .index__link .btn-more:hover:after {
    transform: translateX(3px);
  }
  #message .index__wrapper {
    background-image: url(../img/about/about_message.jpg);
  }
  #overview .index__wrapper {
    background-image: url(../img/about/about_overview.jpg);
  }
  #secret .index__wrapper {
    background-image: url(../img/about/about_secret.jpg);
  }
  #executive .index__wrapper {
    background-image: url(../img/about/about_executive.jpg);
  }
  #member .index__wrapper {
    background-image: url(../img/about/about_member.jpg);
  }
  #admission .index__wrapper {
    background-image: url(../img/about/about_admission.jpg);
  }
  #public_notice .index__wrapper {
    background-image: url(../img/about/about_public_notice.jpg);
  }
  #location .index__wrapper {
    background-image: url(../img/about/about_location.jpg);
  }
  #message .index__wrapper {
    background-color: var(--blue);
    background-size: contain;
  }
  @media (min-width: 768px) {
    .message__img {
      --img-width: 33.3%;
    }
    .message__img img {
      width: 100%;
      height: auto;
    }
  }
  @media (max-width: 767px) {
    .message__img img {
      -o-object-position: center 0;
         object-position: center 0;
      -o-object-fit: cover;
         object-fit: cover;
      aspect-ratio: 1/1.15;
    }
  }
  .executive__list {
    row-gap: 4em !important;
  }
  .executive__list-item {
    max-width: 220px;
    margin-inline: auto;
  }
  .executive__title {
    font-weight: bold;
    color: #002672;
    margin: 0 0 0.75em;
    line-height: 1.6;
  }
  .executive__title.--condensed {
    letter-spacing: -0.05em;
  }
  .executive__name {
    margin-top: 1em;
    line-height: 1.6;
    font-weight: bold;
  }
  .executive__position {
    font-size: 0.825em;
    margin-top: 0.5em;
  }
  .executive-company__img {
    display: block;
    margin-inline: auto;
  }
  .executive-company__title {
    color: #000000;
    margin: 0 0 0.75em;
    line-height: 1.6;
    text-align: center;
  }
  .pg_statistics .stat__news-list {
    margin: 1em auto 0;
  }
  .pg_statistics .stat__news-list-item {
    padding: 1em;
  }
  .pg_statistics .stat__news-list-item:nth-child(odd) {
    background: rgba(232, 242, 247, 0.8);
  }
  @media (min-width: 768px) {
    .pg_statistics .stat__news-list-item {
      display: flex;
      gap: 1em;
    }
  }
  .pg_statistics .stat__news-list-item > a:hover {
    opacity: 1;
  }
  .pg_statistics .stat__news-list .date {
    font-size: 0.9em;
    flex: 0 0 7em;
  }
  .pg_statistics .stat__related-list {
    gap: 1px;
  }
  .pg_statistics .stat__related-list-item {
    background: #0055A2;
    color: #fff;
  }
  .pg_statistics .stat__related-list-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    aspect-ratio: 2/1;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
  }
  .pg_statistics .stat__related-list-label {
    position: relative;
    display: block;
    margin: 1.25em auto 0;
    padding: 1em;
    width: 10em;
    font-size: 0.85em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  .pg_statistics .stat__related-list-label:before, .pg_statistics .stat__related-list-label:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    width: 33%;
    height: 50%;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform-origin: 0 0;
    transition: all 0.3s ease-out;
  }
  .pg_statistics .stat__related-list-label:after {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    border: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform-origin: right bottom;
  }
  .stat__related-list-link:hover {
    opacity: 1;
    background: #002672;
  }
  .stat__related-list-link:hover .stat__related-list-label:before, .stat__related-list-link:hover .stat__related-list-label:after {
    width: 100%;
    height: 100%;
  }
  .pg_statistics .stat__books-bn__item {
    padding-block: 0.5em;
    border-bottom: 1px dotted #B9B9B9;
  }
  .pg_statistics .c-menu {
    padding-top: clamp(35px, 5%, 5em);
  }
  .pg_statistics .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_statistics .c-menu__list {
      grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    }
  }
  .pg_statistics .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_statistics .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_statistics .c-menu__list-link:hover {
    opacity: 1;
    color: #fff;
    background: #000;
  }
  .pg_statistics .c-menu__list-link:hover:after {
    background-image: url(../img/common/icon_arrow-circle-white.svg);
  }
  .pg_statistics .c-menu__list-link:hover .c-menu__list-txt-en {
    color: #0055A2;
  }
  .pg_statistics .c-menu__list-txt {
    position: relative;
    z-index: 1;
  }
  .pg_statistics .c-menu__list-txt-en {
    font-size: 0.8461538462em;
    color: #0055A2;
    margin: 0 0 0.6em;
  }
  .pg_statistics .c-menu__list-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
  .pg_statistics .c-menu__list-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pg_statistics .c-menu__list-link:hover .c-menu__list-img {
    opacity: 0.65;
  }
  .pg_statistics .c-menu__list-link:hover .c-menu__list-txt-en {
    color: #fff;
  }
  .pg_statistics .stat__index-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
  }
  .pg_statistics .stat__index-title-cat {
    padding: 0.35em 0.8em;
    display: inline-block;
    background: #0055A2;
    color: #fff;
    font-size: 1.1rem;
  }
  .pg_statistics .stat__index-list {
    --grid-col-minw: 180px;
    --grid-gap: 1.5em 1em;
  }
  @media (max-width: 767px) {
    .pg_statistics .stat__index-list {
      --grid-col-minw: 158px;
    }
  }
  .pg_statistics .stat__index-list > li, .pg_statistics .stat__index-list-item {
    text-align: center;
    border: 1px solid #CBCBCB;
    border-radius: 0.45em;
    overflow: hidden;
    line-height: 1.3;
  }
  .pg_statistics .stat__index-list-label {
    padding: 0.3em 0.5em 0.5em;
    background: #0055A2;
    color: #fff;
    font-weight: bold;
  }
  .pg_statistics .stat__index-list-label .mon {
    font-size: 1.4em;
  }
  .pg_statistics .stat__index-list-body {
    padding: 1em 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }
  .pg_statistics .stat__index-list-link {
    position: relative;
    display: block;
    padding-left: 0.75em;
    width: -moz-fit-content;
    width: fit-content;
    color: #000000;
    font-weight: normal;
    text-decoration: none;
  }
  .pg_statistics .stat__index-list-link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_arrow-circle-down.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateX(-50%);
  }
  .pg_statistics .stat__index-list-link:hover {
    color: #0055A2;
    opacity: 1;
  }
  .pg_statistics .stat__index-list > li:not([class]) {
    min-height: 4em;
    text-align: center;
    background: var(--blue);
  }
  .pg_statistics .stat__index-list > li:not([class]) > a {
    position: relative;
    display: grid;
    place-items: center;
    padding-inline: 20px;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
  }
  .pg_statistics .stat__index-list > li:not([class]) > a:before {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url(../img/common/icon_arrow-circle-light-right.svg) no-repeat 0 0;
    background: url(../img/common/icon_arrow-circle-down.svg) no-repeat 0 0;
    background-size: contain;
    transform: translate(-50%, -50%);
  }
  .pg_statistics .stat__index-list.--multi > li {
    position: relative;
    color: #fff;
    font-weight: bold;
    padding-top: 0.3em;
    font-size: 1.2em;
  }
  .pg_statistics .stat__index-list.--multi > li:has(a:only-of-type) {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .pg_statistics .stat__index-list.--multi > li > br {
    display: none;
  }
  .pg_statistics .stat__index-list.--multi > li > a {
    display: block;
    padding: 0.7em 0.5em;
    padding-left: 1em;
    width: 100%;
    height: auto;
    background: #fff;
    color: #000000;
    font-weight: normal;
    font-size: max(1.4rem, 0.6em);
  }
  .pg_statistics .stat__index-list.--multi > li > a:only-of-type {
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .pg_statistics .stat__index-list.--multi > li > a:before {
    display: none;
  }
  .pg_statistics .stat__index-list.--multi > li > a:after {
    content: "";
    display: inline-block;
    position: relative;
    margin-left: 0.5em;
    top: 0.2em;
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_arrow-circle-down.svg) no-repeat 0 0;
    background-size: contain;
  }
  .pg_statistics .stat__index-list.--multi > li > a:first-of-type {
    margin-top: 0.5em;
    padding-bottom: 0.25em;
  }
  .pg_statistics .stat__index-list.--multi > li > a:last-of-type {
    padding-top: 0.25em;
  }
  .pg_statistics .stat__index-list.--multi > li > a:hover {
    opacity: 1;
    background: #fff;
    color: var(--blue);
  }
  .c-menu__archive .c-menu__index-title-cat {
    background: #507495;
  }
  .pg_statistics .stat__archive-list {
    --grid-col-minw: 4.8em;
    --grid-gap: .8em .4em;
    font-size: 0.9em;
  }
  .pg_statistics .stat__archive-list.--col2 {
    --grid-gap: 1em 1em;
    --grid-col-minw: 22em;
  }
  .pg_statistics .stat__archive-list.--col2 > li > a {
    padding-block: 0.3em;
  }
  .pg_statistics .stat__archive-list > li > a, .pg_statistics .stat__archive-list-link {
    display: block;
    padding: 0.15em 0.65em;
    width: 100%;
    border: 1px solid #0055A2;
    border-radius: 99999px;
    color: #0055A2;
    letter-spacing: normal;
    text-decoration: none;
    text-align: center;
  }
  .pg_statistics .stat__archive-list > li > a:hover, .pg_statistics .stat__archive-list-link:hover {
    opacity: 1;
    background: rgba(232, 242, 247, 0.8);
  }
  .pg_statistics .stat__archive-list > li.--current > a, .pg_statistics .stat__archive-list-item.--current a {
    background: #0055A2;
    color: #fff;
  }
  .pg_statistics .stat__year-index-list {
    --grid-col-minw: 180px;
    --grid-gap: 1.5em 1em;
  }
  @media (max-width: 767px) {
    .pg_statistics .stat__year-index-list {
      --grid-col-minw: 158px;
    }
  }
  .pg_statistics .stat__year-index-list > li, .pg_statistics .stat__year-index-list_item {
    text-align: center;
    overflow: hidden;
    line-height: 1.3;
    border: 1px solid #0055A2;
    border-radius: 0.45em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  }
  .pg_statistics .stat__year-index-list > li .icon-new, .pg_statistics .stat__year-index-list_item .icon-new {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FF0000;
  }
  .pg_statistics .stat__year-index-list_body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
  }
  .pg_statistics .stat__year-index-list_body .mon {
    font-size: 1.4em;
  }
  .pg_statistics .stat__year-index-list > li > a, .pg_statistics .stat__year-index-list_link {
    position: relative;
    display: block;
    padding: 1.6em 2em 1.6em 0.5em;
    width: 100%;
    height: 100%;
    color: #0055A2;
    background: white;
    font-weight: normal;
    text-decoration: none;
  }
  .pg_statistics .stat__year-index-list > li > a:before, .pg_statistics .stat__year-index-list_link:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: url(../img/common/icon_arrow-circle-light-right.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateX(-50%);
  }
  .pg_statistics .stat__year-index-list > li > a:hover, .pg_statistics .stat__year-index-list_link:hover {
    color: white;
    opacity: 1;
    background-color: #0055A2;
  }
  .pg_statistics .stat__year-index-list > li > a:hover:before, .pg_statistics .stat__year-index-list_link:hover:before {
    background: url(../img/common/icon_arrow-circle-light-right-hover.svg) no-repeat 0 0;
  }
  .pg_statistics .stat__year-index-list > li > a.__ex, .pg_statistics .stat__year-index-list_link.__ex {
    line-height: 1.77;
  }
  .pg_statistics .stat__year-index-list > li > a .year, .pg_statistics .stat__year-index-list_link .year {
    font-size: x-large;
    font-weight: bold;
  }
  .pg_statistics .stat__year-index-list > li:not([class]) {
    min-height: 3.4em;
    font-size: 1.4em;
  }
  .pg_statistics .stat__year-index-list > li:not([class]) > a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
    line-height: 1.3;
  }
  .pg_statistics .stat__footer {
    font-size: 0.9em;
  }
  .pg_statistics .stat__footer .hd {
    display: inline-block;
    margin-right: 1em;
  }
  .pg_statistics .section__title .label-year,
  .pg_statistics .section__title--m .label-year {
    position: relative;
    top: -0.17em;
    display: inline-block;
    border: 1px solid var(--blue--dark);
    color: inherit;
    padding: 0.2em 0.5em;
    width: -moz-fit-content;
    width: fit-content;
    font-size: max(1.4rem, 0.5em);
    margin: 0 0.75em 0 0;
    vertical-align: middle;
  }
  .pg_statistics .stat__title {
    font-size: clamp(1.8rem, 0.903672788rem + 1.1686143573vw, 2.5rem);
  }
  .pg_statistics .stat__title .label-year {
    font-size: 0.65em;
  }
  .pg_statistics .stat__title + .tbl-wrap {
    margin-top: 1.25em;
  }
  .pg_statistics .min-w1300 {
    min-width: 1300px;
  }
  .pg_statistics .min-w1700 {
    min-width: 1700px;
  }
  .pg_statistics .w4-5per {
    width: 4.5%;
  }
  .pg_statistics .w5-5per {
    width: 5.5%;
  }
  .pg_statistics.pg_achievement {
    --tblBorderColor: var(--borderColor--dark);
    --theadBg: var(--blue);
    --tbodyBg: #e9f3fe;
  }
  .pg_statistics.pg_achievement .tbl__cap {
    font-size: 0.9em;
    margin-bottom: 5px;
  }
  .pg_statistics.pg_achievement .tbl__container {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    border: 1px solid var(--tblBorderColor);
  }
  .pg_statistics.pg_achievement table {
    width: 100%;
    margin-inline: auto;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9em;
  }
  .pg_statistics.pg_achievement table.fz-s {
    font-size: 0.85em !important;
  }
  .pg_statistics.pg_achievement table.fz-xs {
    font-size: 0.76em !important;
  }
  .pg_statistics.pg_achievement th,
  .pg_statistics.pg_achievement td {
    border-right: 1px solid var(--tblBorderColor);
    border-bottom: 1px solid var(--tblBorderColor);
    padding: 0.4em 0.25em !important;
    width: auto !important;
    vertical-align: middle;
    text-align: center;
    letter-spacing: 0;
  }
  .pg_statistics.pg_achievement th:last-child,
  .pg_statistics.pg_achievement td:last-child {
    border-right: 0;
  }
  .pg_statistics.pg_achievement th.td--em,
  .pg_statistics.pg_achievement td.td--em {
    font-style: italic;
    font-weight: bold;
  }
  .pg_statistics.pg_achievement .--condensed th, .pg_statistics.pg_achievement .--condensed td {
    line-height: 1.5;
  }
  .pg_statistics.pg_achievement .bg--dark {
    background: var(--theadBg);
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 0;
    white-space: nowrap;
  }
  .pg_statistics.pg_achievement .bg--dark.bb1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .pg_statistics.pg_achievement .bg--dark.bt1 {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .pg_statistics.pg_achievement .bg--dark.br1 {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .pg_statistics.pg_achievement .bg--dark.bl1 {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .pg_statistics.pg_achievement .bg--dark a {
    color: #cff5ff;
    text-decoration: underline;
  }
  .pg_statistics.pg_achievement .bg--light {
    background: var(--tbodyBg);
    font-weight: 500;
  }
  .pg_statistics.pg_achievement tbody .tr--bb0 > td:not(.bg--light) {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement tbody tr:nth-child(even) {
    background: #f5faff;
  }
  .pg_statistics.pg_achievement tbody tr:last-child th,
  .pg_statistics.pg_achievement tbody tr:last-child td {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement tbody td:not(.bg--light) {
    text-align: right;
  }
  .pg_statistics.pg_achievement tbody td.--bggray {
    background-color: #a5a5a5;
  }
  .pg_statistics.pg_achievement thead th,
  .pg_statistics.pg_achievement thead td {
    font-weight: bold;
    background: #fff;
    color: var(--theadBg);
    font-weight: 600;
    text-align: center;
    vertical-align: middle !important;
  }
  .pg_statistics.pg_achievement thead th .icon-new,
  .pg_statistics.pg_achievement thead td .icon-new {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 0.35em;
    background: var(--blue);
    font-size: 0.8em;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    border-radius: 2px;
  }
  .pg_statistics.pg_achievement {
    /* theadの最後の段 */
  }
  .pg_statistics.pg_achievement thead tr:last-child th,
  .pg_statistics.pg_achievement thead tr:last-child td {
    border-bottom: 3px double var(--theadBg);
    border-top: 0;
  }
  .pg_statistics.pg_achievement td a {
    color: var(--theadBg);
    text-decoration: underline;
  }
  .pg_statistics.pg_achievement td a:hover {
    opacity: 0.65;
  }
  .pg_statistics.pg_achievement {
    /* 幅 */
  }
  .pg_statistics.pg_achievement .--w20,
  .pg_statistics.pg_achievement .fixed.--blank {
    min-width: 20px;
    width: 20px !important;
    padding-inline: 0 !important;
  }
  .pg_statistics.pg_achievement .--w10,
  .pg_statistics.pg_achievement .fixed-th--narrow .--blank {
    min-width: 10px;
    width: 10px !important;
    padding-inline: 0 !important;
  }
  .pg_statistics.pg_achievement .--w100 {
    min-width: 100px;
    width: 100px !important;
    padding-inline: 0 !important;
  }
  .pg_statistics.pg_achievement .col_head {
    min-width: 130px;
  }
  .pg_statistics.pg_achievement {
    /* ボーダー */
  }
  .pg_statistics.pg_achievement tbody .br0 {
    border-right: 0;
  }
  .pg_statistics.pg_achievement tbody .bt0 {
    border-top: 0;
  }
  .pg_statistics.pg_achievement tbody .bl0 {
    border-left: 0;
  }
  .pg_statistics.pg_achievement tbody .bb0 {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement tbody .bt1 {
    border-top: 1px solid var(--tblBorderColor);
  }
  .pg_statistics.pg_achievement tbody th {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement tbody .category--top,
  .pg_statistics.pg_achievement tbody .category--lower,
  .pg_statistics.pg_achievement tbody .category--lower--last {
    border-top: 1px solid var(--tblBorderColor);
  }
  .pg_statistics.pg_achievement tbody .category--top,
  .pg_statistics.pg_achievement tbody .category--lower {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement {
    /* 列固定 */
  }
  .pg_statistics.pg_achievement th.fixed:nth-child(2), .pg_statistics.pg_achievement th.fixed.--fx2,
  .pg_statistics.pg_achievement td.fixed:nth-child(2),
  .pg_statistics.pg_achievement td.fixed.--fx2 {
    left: 20px;
  }
  .pg_statistics.pg_achievement th.fixed:nth-child(3), .pg_statistics.pg_achievement th.fixed.--fx3,
  .pg_statistics.pg_achievement td.fixed:nth-child(3),
  .pg_statistics.pg_achievement td.fixed.--fx3 {
    left: 40px;
  }
  .pg_statistics.pg_achievement th.fixed:nth-child(4), .pg_statistics.pg_achievement th.fixed.--fx4,
  .pg_statistics.pg_achievement td.fixed:nth-child(4),
  .pg_statistics.pg_achievement td.fixed.--fx4 {
    left: 60px;
  }
  .pg_statistics.pg_achievement th.fixed:nth-child(5), .pg_statistics.pg_achievement th.fixed.--fx5,
  .pg_statistics.pg_achievement td.fixed:nth-child(5),
  .pg_statistics.pg_achievement td.fixed.--fx5 {
    left: 80px;
  }
  .pg_statistics.pg_achievement th.fixed.--fx100,
  .pg_statistics.pg_achievement td.fixed.--fx100 {
    left: 100px;
  }
  .pg_statistics.pg_achievement .fixed-th--narrow th.fixed:nth-child(2), .pg_statistics.pg_achievement .fixed-th--narrow th.fixed.--fx2,
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed:nth-child(2),
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed.--fx2 {
    left: 10px;
  }
  .pg_statistics.pg_achievement .fixed-th--narrow th.fixed:nth-child(3), .pg_statistics.pg_achievement .fixed-th--narrow th.fixed.--fx3,
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed:nth-child(3),
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed.--fx3 {
    left: 20px;
  }
  .pg_statistics.pg_achievement .fixed-th--narrow th.fixed:nth-child(4), .pg_statistics.pg_achievement .fixed-th--narrow th.fixed.--fx4,
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed:nth-child(4),
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed.--fx4 {
    left: 30px;
  }
  .pg_statistics.pg_achievement .fixed-th--narrow th.fixed:nth-child(5), .pg_statistics.pg_achievement .fixed-th--narrow th.fixed.--fx5,
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed:nth-child(5),
  .pg_statistics.pg_achievement .fixed-th--narrow td.fixed.--fx5 {
    left: 40px;
  }
  .pg_statistics.pg_achievement {
    /* 指定されたクラスを持つセルのみを固定 */
  }
  .pg_statistics.pg_achievement table .fixed {
    position: sticky;
    left: 0;
    z-index: 10;
    /* 通常のセルより前面に表示 */
    padding-inline: 0.4em !important;
    /*box-shadow: 4px 0 10px -2px rgba(0,0,0,0.15);  よりはっきりした影で最前面を強調 */
  }
  .pg_statistics.pg_achievement {
    /* ヘッダーかつ固定セルの場合はさらに前面に */
  }
  .pg_statistics.pg_achievement table thead .fixed {
    z-index: 11;
  }
  .pg_statistics.pg_achievement table tbody .fixed {
    text-align: left;
  }
  .pg_statistics.pg_achievement .th-w100 .col_head {
    min-width: 100px !important;
    width: 100px !important;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--1 {
    width: 106%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--2 {
    width: 53%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--3 {
    width: 35.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--4 {
    width: 26.5%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--5 {
    width: 21.2%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--6 {
    width: 17.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--7 {
    width: 15.1428571429%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--8 {
    width: 13.25%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--9 {
    width: 11.7777777778%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--10 {
    width: 10.6%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--11 {
    width: 9.6363636364%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--12 {
    width: 8.8333333333%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--13 {
    width: 8.1538461538%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--14 {
    width: 7.5714285714%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--15 {
    width: 7.0666666667%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--16 {
    width: 6.625%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--17 {
    width: 6.2352941176%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--18 {
    width: 5.8888888889%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--19 {
    width: 5.5789473684%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--20 {
    width: 5.3%;
  }
  .pg_statistics.pg_achievement .th-w100 .col_even--21 {
    width: 5.0476190476%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_head {
    min-width: 130px !important;
    width: 130px !important;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--1 {
    width: 103%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--2 {
    width: 51.5%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--3 {
    width: 34.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--4 {
    width: 25.75%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--5 {
    width: 20.6%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--6 {
    width: 17.1666666667%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--7 {
    width: 14.7142857143%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--8 {
    width: 12.875%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--9 {
    width: 11.4444444444%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--10 {
    width: 10.3%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--11 {
    width: 9.3636363636%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--12 {
    width: 8.5833333333%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--13 {
    width: 7.9230769231%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--14 {
    width: 7.3571428571%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--15 {
    width: 6.8666666667%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--16 {
    width: 6.4375%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--17 {
    width: 6.0588235294%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--18 {
    width: 5.7222222222%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--19 {
    width: 5.4210526316%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--20 {
    width: 5.15%;
  }
  .pg_statistics.pg_achievement .th-w130 .col_even--21 {
    width: 4.9047619048%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_head {
    min-width: 140px !important;
    width: 140px !important;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--1 {
    width: 102%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--2 {
    width: 51%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--3 {
    width: 34%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--4 {
    width: 25.5%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--5 {
    width: 20.4%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--6 {
    width: 17%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--7 {
    width: 14.5714285714%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--8 {
    width: 12.75%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--9 {
    width: 11.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--10 {
    width: 10.2%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--11 {
    width: 9.2727272727%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--12 {
    width: 8.5%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--13 {
    width: 7.8461538462%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--14 {
    width: 7.2857142857%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--15 {
    width: 6.8%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--16 {
    width: 6.375%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--17 {
    width: 6%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--18 {
    width: 5.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--19 {
    width: 5.3684210526%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--20 {
    width: 5.1%;
  }
  .pg_statistics.pg_achievement .th-w140 .col_even--21 {
    width: 4.8571428571%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_head {
    min-width: 150px !important;
    width: 150px !important;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--1 {
    width: 101%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--2 {
    width: 50.5%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--3 {
    width: 33.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--4 {
    width: 25.25%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--5 {
    width: 20.2%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--6 {
    width: 16.8333333333%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--7 {
    width: 14.4285714286%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--8 {
    width: 12.625%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--9 {
    width: 11.2222222222%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--10 {
    width: 10.1%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--11 {
    width: 9.1818181818%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--12 {
    width: 8.4166666667%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--13 {
    width: 7.7692307692%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--14 {
    width: 7.2142857143%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--15 {
    width: 6.7333333333%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--16 {
    width: 6.3125%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--17 {
    width: 5.9411764706%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--18 {
    width: 5.6111111111%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--19 {
    width: 5.3157894737%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--20 {
    width: 5.05%;
  }
  .pg_statistics.pg_achievement .th-w150 .col_even--21 {
    width: 4.8095238095%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_head {
    min-width: 180px !important;
    width: 180px !important;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--1 {
    width: 98%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--2 {
    width: 49%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--3 {
    width: 32.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--4 {
    width: 24.5%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--5 {
    width: 19.6%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--6 {
    width: 16.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--7 {
    width: 14%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--8 {
    width: 12.25%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--9 {
    width: 10.8888888889%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--10 {
    width: 9.8%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--11 {
    width: 8.9090909091%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--12 {
    width: 8.1666666667%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--13 {
    width: 7.5384615385%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--14 {
    width: 7%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--15 {
    width: 6.5333333333%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--16 {
    width: 6.125%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--17 {
    width: 5.7647058824%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--18 {
    width: 5.4444444444%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--19 {
    width: 5.1578947368%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--20 {
    width: 4.9%;
  }
  .pg_statistics.pg_achievement .th-w180 .col_even--21 {
    width: 4.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_head {
    min-width: 200px !important;
    width: 200px !important;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--1 {
    width: 96%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--2 {
    width: 48%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--3 {
    width: 32%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--4 {
    width: 24%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--5 {
    width: 19.2%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--6 {
    width: 16%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--7 {
    width: 13.7142857143%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--8 {
    width: 12%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--9 {
    width: 10.6666666667%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--10 {
    width: 9.6%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--11 {
    width: 8.7272727273%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--12 {
    width: 8%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--13 {
    width: 7.3846153846%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--14 {
    width: 6.8571428571%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--15 {
    width: 6.4%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--16 {
    width: 6%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--17 {
    width: 5.6470588235%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--18 {
    width: 5.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--19 {
    width: 5.0526315789%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--20 {
    width: 4.8%;
  }
  .pg_statistics.pg_achievement .th-w200 .col_even--21 {
    width: 4.5714285714%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_head {
    min-width: 250px !important;
    width: 250px !important;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--1 {
    width: 91%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--2 {
    width: 45.5%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--3 {
    width: 30.3333333333%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--4 {
    width: 22.75%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--5 {
    width: 18.2%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--6 {
    width: 15.1666666667%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--7 {
    width: 13%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--8 {
    width: 11.375%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--9 {
    width: 10.1111111111%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--10 {
    width: 9.1%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--11 {
    width: 8.2727272727%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--12 {
    width: 7.5833333333%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--13 {
    width: 7%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--14 {
    width: 6.5%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--15 {
    width: 6.0666666667%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--16 {
    width: 5.6875%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--17 {
    width: 5.3529411765%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--18 {
    width: 5.0555555556%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--19 {
    width: 4.7894736842%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--20 {
    width: 4.55%;
  }
  .pg_statistics.pg_achievement .th-w250 .col_even--21 {
    width: 4.3333333333%;
  }
  @media (max-width: 767px) {
    .pg_statistics.pg_achievement .sp-th-w100 .col_head {
      min-width: 100px !important;
      width: 100px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--1 {
      width: 106%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--2 {
      width: 53%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--3 {
      width: 35.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--4 {
      width: 26.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--5 {
      width: 21.2%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--6 {
      width: 17.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--7 {
      width: 15.1428571429%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--8 {
      width: 13.25%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--9 {
      width: 11.7777777778%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--10 {
      width: 10.6%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--11 {
      width: 9.6363636364%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--12 {
      width: 8.8333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--13 {
      width: 8.1538461538%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--14 {
      width: 7.5714285714%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--15 {
      width: 7.0666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--16 {
      width: 6.625%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--17 {
      width: 6.2352941176%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--18 {
      width: 5.8888888889%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--19 {
      width: 5.5789473684%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--20 {
      width: 5.3%;
    }
    .pg_statistics.pg_achievement .sp-th-w100 .col_even--21 {
      width: 5.0476190476%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_head {
      min-width: 130px !important;
      width: 130px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--1 {
      width: 103%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--2 {
      width: 51.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--3 {
      width: 34.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--4 {
      width: 25.75%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--5 {
      width: 20.6%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--6 {
      width: 17.1666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--7 {
      width: 14.7142857143%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--8 {
      width: 12.875%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--9 {
      width: 11.4444444444%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--10 {
      width: 10.3%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--11 {
      width: 9.3636363636%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--12 {
      width: 8.5833333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--13 {
      width: 7.9230769231%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--14 {
      width: 7.3571428571%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--15 {
      width: 6.8666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--16 {
      width: 6.4375%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--17 {
      width: 6.0588235294%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--18 {
      width: 5.7222222222%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--19 {
      width: 5.4210526316%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--20 {
      width: 5.15%;
    }
    .pg_statistics.pg_achievement .sp-th-w130 .col_even--21 {
      width: 4.9047619048%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_head {
      min-width: 140px !important;
      width: 140px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--1 {
      width: 102%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--2 {
      width: 51%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--3 {
      width: 34%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--4 {
      width: 25.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--5 {
      width: 20.4%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--6 {
      width: 17%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--7 {
      width: 14.5714285714%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--8 {
      width: 12.75%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--9 {
      width: 11.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--10 {
      width: 10.2%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--11 {
      width: 9.2727272727%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--12 {
      width: 8.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--13 {
      width: 7.8461538462%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--14 {
      width: 7.2857142857%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--15 {
      width: 6.8%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--16 {
      width: 6.375%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--17 {
      width: 6%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--18 {
      width: 5.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--19 {
      width: 5.3684210526%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--20 {
      width: 5.1%;
    }
    .pg_statistics.pg_achievement .sp-th-w140 .col_even--21 {
      width: 4.8571428571%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_head {
      min-width: 150px !important;
      width: 150px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--1 {
      width: 101%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--2 {
      width: 50.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--3 {
      width: 33.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--4 {
      width: 25.25%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--5 {
      width: 20.2%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--6 {
      width: 16.8333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--7 {
      width: 14.4285714286%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--8 {
      width: 12.625%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--9 {
      width: 11.2222222222%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--10 {
      width: 10.1%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--11 {
      width: 9.1818181818%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--12 {
      width: 8.4166666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--13 {
      width: 7.7692307692%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--14 {
      width: 7.2142857143%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--15 {
      width: 6.7333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--16 {
      width: 6.3125%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--17 {
      width: 5.9411764706%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--18 {
      width: 5.6111111111%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--19 {
      width: 5.3157894737%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--20 {
      width: 5.05%;
    }
    .pg_statistics.pg_achievement .sp-th-w150 .col_even--21 {
      width: 4.8095238095%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_head {
      min-width: 180px !important;
      width: 180px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--1 {
      width: 98%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--2 {
      width: 49%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--3 {
      width: 32.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--4 {
      width: 24.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--5 {
      width: 19.6%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--6 {
      width: 16.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--7 {
      width: 14%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--8 {
      width: 12.25%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--9 {
      width: 10.8888888889%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--10 {
      width: 9.8%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--11 {
      width: 8.9090909091%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--12 {
      width: 8.1666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--13 {
      width: 7.5384615385%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--14 {
      width: 7%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--15 {
      width: 6.5333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--16 {
      width: 6.125%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--17 {
      width: 5.7647058824%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--18 {
      width: 5.4444444444%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--19 {
      width: 5.1578947368%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--20 {
      width: 4.9%;
    }
    .pg_statistics.pg_achievement .sp-th-w180 .col_even--21 {
      width: 4.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_head {
      min-width: 200px !important;
      width: 200px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--1 {
      width: 96%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--2 {
      width: 48%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--3 {
      width: 32%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--4 {
      width: 24%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--5 {
      width: 19.2%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--6 {
      width: 16%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--7 {
      width: 13.7142857143%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--8 {
      width: 12%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--9 {
      width: 10.6666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--10 {
      width: 9.6%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--11 {
      width: 8.7272727273%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--12 {
      width: 8%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--13 {
      width: 7.3846153846%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--14 {
      width: 6.8571428571%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--15 {
      width: 6.4%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--16 {
      width: 6%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--17 {
      width: 5.6470588235%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--18 {
      width: 5.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--19 {
      width: 5.0526315789%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--20 {
      width: 4.8%;
    }
    .pg_statistics.pg_achievement .sp-th-w200 .col_even--21 {
      width: 4.5714285714%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_head {
      min-width: 250px !important;
      width: 250px !important;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--1 {
      width: 91%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--2 {
      width: 45.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--3 {
      width: 30.3333333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--4 {
      width: 22.75%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--5 {
      width: 18.2%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--6 {
      width: 15.1666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--7 {
      width: 13%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--8 {
      width: 11.375%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--9 {
      width: 10.1111111111%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--10 {
      width: 9.1%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--11 {
      width: 8.2727272727%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--12 {
      width: 7.5833333333%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--13 {
      width: 7%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--14 {
      width: 6.5%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--15 {
      width: 6.0666666667%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--16 {
      width: 5.6875%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--17 {
      width: 5.3529411765%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--18 {
      width: 5.0555555556%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--19 {
      width: 4.7894736842%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--20 {
      width: 4.55%;
    }
    .pg_statistics.pg_achievement .sp-th-w250 .col_even--21 {
      width: 4.3333333333%;
    }
  }
  .pg_statistics.pg_achievement .--fx-150 {
    left: 150px !important;
  }
  @media (max-width: 600px) {
    .pg_statistics.pg_achievement .col_head {
      min-width: 100px !important;
    }
  }
  .pg_statistics.pg_achievement .merged-table tbody .tr--bb0 > td:not(.bg--light),
  .pg_statistics.pg_achievement .merged-table tbody tr:nth-child(odd) td:not(.bg--light) {
    border-bottom: 0;
  }
  @media (max-width: 600px) {
    .pg_statistics.pg_achievement #merged-table table {
      font-size: 80% !important;
    }
  }
  .pg_statistics.pg_achievement #merged-table tbody .tr--bb0 > td:not(.bg--light),
  .pg_statistics.pg_achievement #merged-table tbody tr:nth-child(odd) td:not(.bg--light) {
    border-bottom: 0;
  }
  .pg_statistics.pg_achievement #merged-table tbody .tr--bb1 > td:not(.bg--light),
  .pg_statistics.pg_achievement #merged-table tbody tr:nth-child(odd).tr--bb1 td:not(.bg--light) {
    border-bottom: 1px solid var(--tblBorderColor);
  }
  .pg_statistics.pg_achievement {
    /* table以外 */
  }
  .pg_statistics.pg_achievement .note__wrapper {
    font-size: 0.9em;
  }
  .pg_statistics.pg_achievement .note__wrapper .article + .article {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid rgba(0, 85, 162, 0.15);
  }
  .pg_statistics.pg_achievement .note__head:not(:first-of-type) {
    margin-top: 2em;
  }
  .pg_statistics .btn_dataQuotes {
    display: inline-block;
    padding: 0;
    color: #0055A2;
    font-weight: 500;
    text-decoration: none;
  }
  .pg_statistics .btn_dataQuotes:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 2em;
    height: 2em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    margin-left: 0.65em;
  }
  .pg_statistics .dataQuotes__modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.7);
    display: grid;
    place-items: center;
    visibility: hidden;
    pointer-events: none;
  }
  .pg_statistics .dataQuotes__modal.open {
    visibility: visible;
    pointer-events: visible;
  }
  .pg_statistics .dataQuotes__modal-window {
    position: relative;
    background: #fff;
    border-radius: 0.8em;
    width: min(90%, 500px);
    max-height: 90%;
    overflow: auto;
    scrollbar-width: none;
  }
  .pg_statistics .dataQuotes__modal-window::-webkit-scrollbar {
    display: none;
  }
  .pg_statistics .dataQuotes__modal-content {
    padding: 2.5em;
  }
  .pg_statistics .dataQuotes__modal h2 {
    margin: 0 0 0.5em;
    font-size: 2.2rem;
    color: var(--blue);
  }
  .pg_statistics .dataQuotes__modal h3 {
    margin: 1.5em 0 0.5em;
    font-size: 1.7rem;
    -moz-text-align-last: left;
         text-align-last: left;
    color: var(--blue);
  }
  .pg_statistics .dataQuotes__modal p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .pg_statistics .dataQuotes__modal .dataQuotes__list {
    margin: 0.75em 0 0;
  }
  .pg_statistics .dataQuotes__modal .dataQuotes__list-item {
    position: relative;
    padding-left: 1em;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .pg_statistics .dataQuotes__modal .dataQuotes__list-item + li {
    margin-top: 0.3em;
  }
  .pg_statistics .dataQuotes__modal .dataQuotes__list-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.3em;
    height: 0.3em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  .pg_statistics .dataQuotes__close {
    position: absolute;
    right: 1em;
    top: 1em;
  }
  .pg_statistics .dataQuotes__close-btn {
    display: block;
    position: relative;
    overflow: hidden;
    width: 2em;
    height: 2em;
    background: #e6e6e6;
    border-radius: 50%;
    line-height: 10;
    will-change: transform;
    transform: rotate(-135deg);
    transition: transform 0.3s ease-out;
    cursor: pointer;
  }
  .pg_statistics .dataQuotes__close-btn:hover {
    transform: rotate(-45deg);
  }
  .pg_statistics .dataQuotes__close-btn:before,
  .pg_statistics .dataQuotes__close-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 2px;
    height: 16px;
    background: #757575;
    transform: translate(-50%, -50%);
  }
  .pg_statistics .dataQuotes__close-btn:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .pg_taxation .taxation__list {
    --col-minWidth: 400px;
  }
  @media (min-width: 768px) {
    .pg_taxation .taxation__list {
      --gap: 2em;
    }
  }
  .pg_business .business__logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 71%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-2.5%);
    opacity: 0.2;
  }
  .pg_business .business__logo-img {
    display: block;
    width: max(150px, 28%);
    height: auto;
  }
  .pg_business .business__logo:after {
    content: "";
    display: block;
    width: 5%;
    height: 100%;
  }
  @media (max-width: 767px) {
    .pg_business .business__logo {
      width: 100%;
      transform: translateY(-3%);
    }
    .pg_business .business__logo:after {
      width: auto;
      aspect-ratio: 1/1.15;
    }
  }
  @media (max-width: 575px) {
    .pg_business .business__logo {
      height: 73%;
      justify-content: center;
    }
    .pg_business .business__logo:after {
      display: none;
    }
    .pg_business .business__logo-img {
      width: 55%;
    }
  }
  #agenda .index__wrapper {
    background-image: url(../img/business/business_agenda.jpg);
  }
  #solution .index__wrapper {
    background-image: url(../img/business/business_solution.jpg);
  }
  #stat .index__wrapper {
    background-image: url(../img/business/business_stat.jpg);
  }
  #creation .index__wrapper {
    background-image: url(../img/business/business_creation.jpg);
  }
  #creation .index__wrapper {
    background-position-x: right;
  }
  @media (max-width: 575px) {
    #creation .index__wrapper {
      background-color: #0e5739;
      background-image: none;
      z-index: 1;
    }
    #creation .index__wrapper:before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: min(100%, 80vw);
      background-image: url(../img/business/business_creation.jpg);
      background-size: 270% auto;
      background-position: right 0;
      z-index: -1;
    }
  }
  .pg_business .policy__box,
  .pg_business .subject__box {
    margin: 3em auto min(6%, 5em);
  }
  .pg_business .policy__box:last-child,
  .pg_business .subject__box:last-child {
    margin-bottom: 0;
  }
  .pg_business .policy__box .img-box__img,
  .pg_business .subject__box .img-box__img {
    border-radius: 4px;
    overflow: hidden;
  }
  .pg_business .policy__title,
  .pg_business .subject__title {
    margin: 0 0 1em;
    line-height: 1.3;
    font-weight: bold;
    font-size: clamp(2rem, 0.7195325543rem + 1.6694490818vw, 3rem);
    color: #0055A2;
  }
  .pg_business .subject__wrapper {
    --grid-gap: 3em;
    --grid-col-minw: calc(50% - var(--grid-gap));
  }
  .pg_business .subject__wrapper .subject__box {
    margin: 0;
    padding: min(7%, 5.5em);
    background: #F6F9FC;
  }
  @media (max-width: 767px) {
    .pg_business .subject__wrapper {
      margin-top: 3em;
      --grid-gap: 2em;
      --grid-col-minw: 100%;
    }
  }
  .public_standard__news-list {
    margin: 1em auto 0;
  }
  .public_standard__news-list-item {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5em 1em;
    padding: 1em 0;
    border-bottom: 1px solid #DEDEDE;
  }
  .public_standard__news-list-item > a {
    color: #000000;
    text-decoration: none;
  }
  @media (min-width: 768px) {
    .public_standard__news-list-item {
      display: flex;
      gap: 1em;
      padding: 1.5em 0;
    }
  }
  @media (max-width: 767px) {
    .public_standard__news-list-item > a {
      display: block;
      grid-column: span 3;
    }
  }
  .public_standard__news-list-cat {
    --_color: var(--color, var(--blue));
    font-size: 0.9em;
    padding-inline: 0.5em;
    min-width: 4.35em;
    height: 100%;
    color: #fff;
    text-align: center;
    border-radius: 0.25em;
    background: var(--_color);
  }
  .public_standard__news-list-cat.--amend {
    --color: var(--aqua);
  }
  .public_standard__news-list-id {
    color: #0055A2;
    flex-shrink: 0;
  }
  .public_standard__search__title {
    margin: 0 0 1.2em;
    display: flex;
    align-items: center;
    gap: 0.9em;
    font-size: 1.2em;
  }
  .public_standard__search__title:before {
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    background: var(--blue--ex-dark);
  }
  .public_standard__search-wrapper {
    gap: 1em;
    display: flex;
  }
  @media (max-width: 575px) {
    .public_standard__search-wrapper {
      flex-direction: column;
    }
  }
  .public_standard__search-area {
    flex: 1;
    display: flex;
    border: 1px solid #CCE2EB;
    border-radius: 0.3em;
    overflow: hidden;
  }
  .public_standard__search-label {
    box-sizing: border-box;
    display: grid;
    place-items: center;
    padding: 0 0.5em;
    font-size: 0.85em;
    flex: 0 0 5.5em;
    background: #E8EEF5;
    border-right: 1px solid #CCE2EB;
    color: #666;
    line-height: 1.4;
    text-align: center;
  }
  .public_standard__search-input {
    border: 0;
    min-width: 0;
    flex: 1;
  }
  .public_standard__search-btn {
    width: 2.5em;
  }
  .public_standard__search-btn-item {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    font-size: 1.15em;
    line-height: 100;
    background: var(--blue);
    color: #fff;
    text-align: center;
    border: 0;
  }
  .public_standard__search-btn-item:before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1em;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease-out;
  }
  .public_standard__spec {
    min-width: 8em;
  }
  .public_standard__spec-wrapper {
    gap: 1em;
  }
  .public_standard__btn-wrapper {
    justify-content: space-between;
    gap: 1em;
  }
  .public_standard__btn {
    display: grid;
    align-items: center;
    min-width: 0;
    width: 17em;
    min-height: 3.75em;
    flex: 1;
    padding: 0.5em 1.25em 0.5em 2.4em;
  }
  .public_standard__btn:before {
    display: none;
  }
  .public_standard__btn .public_standard__ico {
    display: block;
    position: absolute;
    top: 50%;
    left: 1em;
    border: 0;
    width: 1.1em;
    height: 1.1em;
    line-height: 1;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    transform: translateY(-50%);
  }
  .public_standard__btn .public_standard__ico svg path {
    transition: fill 0.3s ease-out;
  }
  .public_standard__btn:hover .public_standard__ico svg path {
    fill: #fff;
  }
  .side__nav-list.--others .side__nav-list-link {
    display: block;
    position: relative;
    padding-left: 1.8em;
  }
  .side__nav-list.--others .public_standard__ico {
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transform: translateY(-50%);
  }
  .public_standard__results .section__title {
    font-size: clamp(2rem, 0.7195325543rem + 1.6694490818vw, 3rem);
    margin-bottom: 0.75em;
  }
  .public_standard__results .section__title .label-dep {
    position: relative;
    top: -0.1em;
    display: inline-block;
    border: 1px solid var(--blue--dark);
    color: inherit;
    padding: 0.2em 0.5em;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.65em;
    margin: 0 0.75em 0 0;
    vertical-align: middle;
  }
  .public_standard__icon-guide {
    margin: -0.5em 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5em 1.5em;
    font-size: 0.9em;
  }
  .public_standard__guide-link .btn-standard {
    display: block;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.35em 1.5em 0.35em 1em;
    font-size: 1.2rem;
    min-width: initial;
    background: var(--blue--ex-light);
    color: #000000;
    border-radius: 99999px;
    text-align: center;
  }
  .public_standard__guide-link .btn-standard:before {
    content: "";
    display: block;
    position: absolute;
    right: 0.8em;
    top: 50%;
    width: 0.4em;
    height: 0.4em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
  }
  @media (max-width: 420px) {
    .public_standard__guide-link {
      flex: 1;
    }
    .public_standard__guide-link .btn-standard {
      width: 8em;
      font-size: 1.1rem;
      line-height: 1.2;
      align-self: flex-start;
    }
  }
  .public_standard__icon {
    display: inline-block;
    text-align: center;
    color: #fff;
    margin-right: 0.25em;
    width: 1.6em;
    height: 1.6em;
    font-size: 0.8em;
    line-height: 1.6em;
    border-radius: 2px;
    text-align: center;
  }
  .public_standard__icon.--ja {
    background: #3aafdb;
  }
  .public_standard__icon.--en {
    background: #f66f33;
  }
  .public_standard__icon.--ja-en {
    background: #54c1a2;
  }
  .public_standard__results-table th, .public_standard__results-table td {
    padding: 7px;
    font-size: 0.9em;
    line-height: 1.5;
    text-align: center;
  }
  .public_standard__results-table th {
    font-size: 0.8em !important;
  }
  .public_standard__results-table tbody td:nth-child(2) {
    text-align: left;
  }
  .public_standard__results-table .search__results__buy {
    display: inline-block;
    margin-inline: auto;
    border: 2px solid var(--aqua);
    min-width: 3em;
    line-height: 1;
    border-radius: 2px;
    text-align: center;
  }
  .public_standard__results-table .search__results__buy:hover {
    text-decoration: none !important;
  }
  .public_standard__results-table .search__results__buy button {
    display: block;
    padding: 0.25em 0.35em;
    width: 100%;
    color: var(--aqua);
    background: none;
    font-weight: bold;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-align: center;
  }
  @media print, screen and (max-width: 575px) {
    .public_standard__results-table thead {
      display: none;
    }
    .public_standard__results-table td {
      text-align: right;
      border-top: 1px solid var(--borderColor--light);
    }
    .public_standard__results-table td:before {
      content: attr(data-label);
      float: left;
      font-weight: 500;
      color: var(--blue--ex-dark);
      margin-right: 10px;
    }
    .public_standard__results-table td:first-child {
      background: var(--blue);
      color: #fff;
      font-weight: bold;
      text-align: center;
    }
    .public_standard__results-table td:nth-child(2) {
      position: relative;
      padding-left: 3.5em;
    }
    .public_standard__results-table td:nth-child(2):before {
      position: absolute;
      left: 5px;
    }
    .public_standard__results-table td:last-child {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .public_standard__results-table td:last-child .search__results__buy {
      margin: 0;
    }
  }
  /* -------------------------
    committee page styles
  -------------------------*/
  .pg_committee .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_committee .news__list-item:first-child .news__list-link {
    padding-top: 0 !important;
  }
  .pg_committee .news__list-meta {
    display: flex;
    gap: 1em;
    flex: 0 0 min(22%, 12em);
    line-height: 1;
    align-items: center;
  }
  .pg_committee .news__list-date {
    display: block;
    color: #333333;
    font-weight: 500;
    font-size: 0.8333333333em;
    white-space: nowrap;
  }
  .pg_committee .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: var(--_cat, #eee);
    text-align: center;
    border-radius: 0.33em;
  }
  .pg_committee .news__list-cat--ps {
    --_cat: #0580a2;
  }
  .pg_committee .news__list-cat--is {
    --_cat: #1e79ad;
  }
  .pg_committee .news__list-cat--avc {
    --_cat: #d22fa2;
  }
  .pg_committee .news__list-cat--j {
    --_cat: #bf4975;
  }
  .pg_committee .news__list-cat--ecb {
    --_cat: #5967b9;
  }
  .pg_committee .news__list-cat--device {
    --_cat: #4039d6;
  }
  .pg_committee .news__list-cat--mobility {
    --_cat: #bd22cf;
  }
  .pg_committee .news__list-cat--healthcare {
    --_cat: #ee0019;
  }
  .pg_committee .news__list-cat--smarthome {
    --_cat: #9915ff;
  }
  .pg_committee .news__list-cat--design {
    --_cat: #bf5000;
  }
  .pg_committee .news__list-cat--iad {
    --_cat: #6d7d00;
  }
  .pg_committee .news__list-cat--lip {
    --_cat: #1a8300;
  }
  .pg_committee .news__list-cat--tech {
    --_cat: #008570;
  }
  .pg_committee .news__list-cat--eps {
    --_cat: #2d6dc4;
  }
  .pg_committee .news__list-cat--tss {
    --_cat: #9f6600;
  }
  .pg_committee .news__list-cat--anzen {
    --_cat: #990cb2;
  }
  .pg_committee .news__list-cat--jp {
    --_cat: #bf4e4e;
  }
  .pg_committee .news__list-cat--kansai {
    --_cat: #03893d;
  }
  .pg_committee .news__list-cat--keizaiteam {
    --_cat: #E1B778;
  }
  @media (max-width: 767px) {
    .pg_committee .news__list-cat {
      padding: 0.4em;
      min-width: 70px;
    }
  }
  .pg_committee .news__list-link {
    color: #333333;
    text-decoration: none;
    padding-right: 2.5em;
    width: 100%;
  }
  .pg_committee .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_committee .news__list-link[target=_blank]:before {
    background-image: url(../img/common/icon_link_blank.svg);
  }
  .pg_committee .news__list-link:hover {
    color: var(--blue);
  }
  @media print, screen and (max-width: 767px) {
    .pg_committee .news__list-link {
      padding-right: clamp(2em, 7vw, 6em);
    }
    .pg_committee .news__list-link:before {
      width: max(13px, 3vw);
      height: max(13px, 3vw);
    }
  }
  @media print, screen and (min-width: 768px) {
    .pg_committee .news__list-wrap {
      flex: 1;
    }
    .pg_committee .news__list-item {
      flex-direction: row;
      align-items: flex-start;
    }
  }
  .pg_committee .committee__list {
    --grid-col-minw: 240px;
  }
  @media (max-width: 767px) {
    .pg_committee .committee__list {
      --grid-col-minw: 150px;
      --grid-gap: 1em;
      font-size: 0.925em;
    }
  }
  .pg_committee .committee__list-item {
    --_color: var(--color, var(--gray));
    border: 1px solid #B9B9B9;
  }
  .pg_committee .committee__list-item.cat--ps {
    --_color: #0580a2;
  }
  .pg_committee .committee__list-item.cat--is {
    --_color: #1e79ad;
  }
  .pg_committee .committee__list-item.cat--avc {
    --_color: #d22fa2;
  }
  .pg_committee .committee__list-item.cat--j {
    --_color: #bf4975;
  }
  .pg_committee .committee__list-item.cat--ecb {
    --_color: #5967b9;
  }
  .pg_committee .committee__list-item.cat--device {
    --_color: #4039d6;
  }
  .pg_committee .committee__list-item.cat--mobility {
    --_color: #bd22cf;
  }
  .pg_committee .committee__list-item.cat--healthcare {
    --_color: #ee0019;
  }
  .pg_committee .committee__list-item.cat--smarthome {
    --_color: #9915ff;
  }
  .pg_committee .committee__list-item.cat--design {
    --_color: #bf5000;
  }
  .pg_committee .committee__list-item.cat--iad {
    --_color: #6d7d00;
  }
  .pg_committee .committee__list-item.cat--lip {
    --_color: #1a8300;
  }
  .pg_committee .committee__list-item.cat--tech {
    --_color: #008570;
  }
  .pg_committee .committee__list-item.cat--eps {
    --_color: #2d6dc4;
  }
  .pg_committee .committee__list-item.cat--tss {
    --_color: #9f6600;
  }
  .pg_committee .committee__list-item.cat--anzen {
    --_color: #990cb2;
  }
  .pg_committee .committee__list-item.cat--jp {
    --_color: #bf4e4e;
  }
  .pg_committee .committee__list-item.cat--kansai {
    --_color: #03893d;
  }
  .pg_committee .committee__list-item.cat--keizaiteam {
    --_color: #E1B778;
  }
  .pg_committee .committee__list-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 0.5em;
    min-height: 4.5em;
    line-height: 1.3;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
  }
  .pg_committee .committee__list-link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--_color);
    transition: transform 0.35s ease-out;
    transform: scaleX(15%);
    transform-origin: 0 0;
  }
  .pg_committee .committee__list-link:hover {
    opacity: 1;
  }
  .pg_committee .committee__list-link:hover:before {
    transform: scaleX(1);
  }
  .member__nav-item {
    text-align: center;
  }
  .member__nav {
    gap: 1px;
  }
  .member__nav-link {
    position: relative;
    display: block;
    padding: 0.7em;
    background: #e8f2f7;
    text-decoration: none;
    color: #0055A2;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.3;
    z-index: 1;
  }
  .member__nav-link:before {
    content: "";
    display: block;
    position: absolute;
    background: #0055A2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform-origin: 0 center;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
    z-index: -1;
  }
  .member__nav-link .sub {
    display: block;
    margin: 0.5em 0 0;
    font-size: max(1.1rem, 0.7em);
    font-weight: 500;
  }
  .member__nav-link:hover, .--current .member__nav-link {
    opacity: 1;
    color: #fff;
  }
  .member__nav-link:hover:before, .--current .member__nav-link:before {
    transform: scaleX(1);
  }
  .member__list-wrapper {
    margin: 1.5em 0 0;
  }
  .member__list-index {
    background: #f6f6f6;
    padding: 0.75em min(1.5%, 1.5em);
    justify-content: space-around !important;
    gap: 0;
  }
  .member__list-index > li {
    flex: 1;
    text-align: center;
    border-right: 1px solid #A4A4A4;
  }
  .member__list-index > li:last-child {
    border: 0;
  }
  .member__list-index a {
    display: block;
    width: 100%;
    padding-inline: min(2%, 2em);
    color: #000000;
  }
  .member__list-box {
    padding-block: 1.5em;
  }
  .member__list-title {
    margin: 0 0 0.5em;
    padding: 0 0.5em;
    font-weight: bold;
    font-size: 1.35em;
    border-bottom: 1px solid #0055A2;
  }
  @media (min-width: 576px) {
    .member__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2em;
    }
  }
  .member__list > li {
    border-bottom: 1px solid #d3d3d3;
  }
  .member__list > li > a,
  .member__list > li > span {
    display: block;
    position: relative;
    padding-left: 1.5em;
    padding-block: 0.75em;
  }
  .member__list > li > a:before,
  .member__list > li > span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0.5em;
    top: 1.6em;
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid #0055A2;
    border-right: 1px solid #0055A2;
    transform: rotate(45deg);
  }
  .member__list > li > a:hover {
    opacity: 1;
    background: #e8f2f7;
  }
  /* -------------------------
    contact page styles
  -------------------------*/
  .pg_contact .contact__menu {
    width: min(100%, 720px);
    margin: 3em auto;
  }
  .pg_contact .contact__menu-list {
    --grid-gap: 1.5em;
    --grid-col-minw: calc(50% - var(--grid-gap) / 2);
  }
  .pg_contact .contact__menu-list-item a {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0.7em;
    background: #fff;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
    padding: 0.5em 1.6em 0.5em 1em;
    min-height: 5.6em;
    font-weight: bold;
    font-size: 1em;
    line-height: 1.3;
    text-decoration: none;
    border-radius: 0.3em;
  }
  .pg_contact .contact__menu-list-item a:before {
    content: "";
    display: block;
    flex: 0 0 1.8em;
    height: 1.8em;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
  }
  .pg_contact .contact__menu-list-item a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    flex: 0 0 auto;
    border-right: 2px solid var(--blue);
    border-top: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
  }
  .pg_contact .contact__menu-list-item a:hover {
    opacity: 1;
    background: var(--blue);
    color: #fff;
  }
  .pg_contact .contact__menu-list-item a:hover:after {
    border-color: #fff;
  }
  @media (max-width: 767px) {
    .pg_contact .contact__menu-list {
      --grid-col-minw: 100%;
    }
  }
  .pg_contact .contact__menu-list .book a:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23014290%22%3E%3Cpath%20d%3D%22M249.23-120q-37.18%200-63.2-25.58Q160-171.15%20160-207.69v-543.08q0-37.18%2026.03-63.2Q212.05-840%20249.23-840h415.39v584.62H249.23q-20.08%200-34.65%2013.67Q200-228.04%20200-207.83t14.58%2034.02Q229.15-160%20249.23-160H760v-600h40v640H249.23Zm86.15-175.38h289.24V-800H335.38v504.62Zm-40%200V-800h-46.15q-20.92%200-35.08%2014.58Q200-770.85%20200-750.77v471.62q10.77-6.85%2022.95-11.54%2012.18-4.69%2026.28-4.69h46.15ZM200-800v520.85V-800Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .book a:hover:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M249.23-120q-37.18%200-63.2-25.58Q160-171.15%20160-207.69v-543.08q0-37.18%2026.03-63.2Q212.05-840%20249.23-840h415.39v584.62H249.23q-20.08%200-34.65%2013.67Q200-228.04%20200-207.83t14.58%2034.02Q229.15-160%20249.23-160H760v-600h40v640H249.23Zm86.15-175.38h289.24V-800H335.38v504.62Zm-40%200V-800h-46.15q-20.92%200-35.08%2014.58Q200-770.85%20200-750.77v471.62q10.77-6.85%2022.95-11.54%2012.18-4.69%2026.28-4.69h46.15ZM200-800v520.85V-800Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .dictionary a:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23014290%22%3E%3Cpath%20d%3D%22M175.38-396.38h31.16l22.23-61.39h114.77L366-396.38h31.69l-92.38-245.7H267l-91.62%20245.7Zm64.85-90.7%2044.92-122.38h2l44.93%20122.38h-91.85Zm315.15-89.23v-37.23q32.24-16.31%2069.04-24.46%2036.81-8.15%2075.58-8.15%2022.15%200%2042.54%202.84%2020.38%202.85%2042.08%208.08v36.31q-20.93-6.7-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%208.73-36.93%208.73-68.93%2025.73Zm0%20218.46v-38.77q30.7-16.3%2068.66-24.46%2037.96-8.15%2075.96-8.15%2022.15%200%2042.54%202.85%2020.38%202.84%2042.08%208.07V-382q-20.93-6.69-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%209.39-36.93%209.38-68.93%2026.61Zm0-108.46v-38.77q32.24-16.3%2069.04-24.46%2036.81-8.15%2075.58-8.15%2022.15%200%2042.54%202.84%2020.38%202.85%2042.08%208.08v36.31q-20.93-6.69-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%209.5-36.93%209.5-68.93%2026.5ZM260-318.46q52.38%200%20101.88%2012.04%2049.5%2012.04%2098.12%2039.19v-392.46q-43.31-30.93-95.46-46.39-52.16-15.46-104.54-15.46-36%200-63.04%204.31t-60.04%2016q-9.23%203.08-13.07%208.85-3.85%205.76-3.85%2012.69v360.61q0%2010.77%207.69%2015.77t16.93%201.16q21.92-7.39%2050.65-11.85%2028.73-4.46%2064.73-4.46Zm240%2051.23q48.62-27.15%2098.12-39.19%2049.5-12.04%20101.88-12.04%2036%200%2064.73%204.46%2028.73%204.46%2050.65%2011.85%209.24%203.84%2016.93-1.16%207.69-5%207.69-15.77v-360.61q0-6.93-3.85-12.31-3.84-5.38-13.07-9.23-33-11.69-60.04-16-27.04-4.31-63.04-4.31-52.38%200-104.54%2015.46-52.15%2015.46-95.46%2046.39v392.46Zm-20%2058q-48.77-33.39-104.77-51.31-56-17.92-115.23-17.92-31.23%200-61.35%205.23Q168.54-268%20140-256.46q-21.77%208.69-40.88-5.23Q80-275.61%2080-300.15v-386.62q0-14.85%207.81-27.54T109.69-732q35.23-15.54%2073.31-22.54%2038.08-7%2077-7%2058.77%200%20114.65%2016.92%2055.89%2016.93%20105.35%2049.24%2049.46-32.31%20105.35-49.24%2055.88-16.92%20114.65-16.92%2038.92%200%2077%207T850.31-732q14.07%205%2021.88%2017.69%207.81%2012.69%207.81%2027.54v386.62q0%2024.54-20.65%2037.69-20.66%2013.15-43.97%204.46-27.76-10.77-56.73-15.62-28.96-4.84-58.65-4.84-59.23%200-115.23%2017.92-56%2017.92-104.77%2051.31ZM290-494.38Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .dictionary a:hover:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M175.38-396.38h31.16l22.23-61.39h114.77L366-396.38h31.69l-92.38-245.7H267l-91.62%20245.7Zm64.85-90.7%2044.92-122.38h2l44.93%20122.38h-91.85Zm315.15-89.23v-37.23q32.24-16.31%2069.04-24.46%2036.81-8.15%2075.58-8.15%2022.15%200%2042.54%202.84%2020.38%202.85%2042.08%208.08v36.31q-20.93-6.7-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%208.73-36.93%208.73-68.93%2025.73Zm0%20218.46v-38.77q30.7-16.3%2068.66-24.46%2037.96-8.15%2075.96-8.15%2022.15%200%2042.54%202.85%2020.38%202.84%2042.08%208.07V-382q-20.93-6.69-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%209.39-36.93%209.38-68.93%2026.61Zm0-108.46v-38.77q32.24-16.3%2069.04-24.46%2036.81-8.15%2075.58-8.15%2022.15%200%2042.54%202.84%2020.38%202.85%2042.08%208.08v36.31q-20.93-6.69-40.81-9.27-19.89-2.58-43.81-2.58-38.77%200-75.69%209.5-36.93%209.5-68.93%2026.5ZM260-318.46q52.38%200%20101.88%2012.04%2049.5%2012.04%2098.12%2039.19v-392.46q-43.31-30.93-95.46-46.39-52.16-15.46-104.54-15.46-36%200-63.04%204.31t-60.04%2016q-9.23%203.08-13.07%208.85-3.85%205.76-3.85%2012.69v360.61q0%2010.77%207.69%2015.77t16.93%201.16q21.92-7.39%2050.65-11.85%2028.73-4.46%2064.73-4.46Zm240%2051.23q48.62-27.15%2098.12-39.19%2049.5-12.04%20101.88-12.04%2036%200%2064.73%204.46%2028.73%204.46%2050.65%2011.85%209.24%203.84%2016.93-1.16%207.69-5%207.69-15.77v-360.61q0-6.93-3.85-12.31-3.84-5.38-13.07-9.23-33-11.69-60.04-16-27.04-4.31-63.04-4.31-52.38%200-104.54%2015.46-52.15%2015.46-95.46%2046.39v392.46Zm-20%2058q-48.77-33.39-104.77-51.31-56-17.92-115.23-17.92-31.23%200-61.35%205.23Q168.54-268%20140-256.46q-21.77%208.69-40.88-5.23Q80-275.61%2080-300.15v-386.62q0-14.85%207.81-27.54T109.69-732q35.23-15.54%2073.31-22.54%2038.08-7%2077-7%2058.77%200%20114.65%2016.92%2055.89%2016.93%20105.35%2049.24%2049.46-32.31%20105.35-49.24%2055.88-16.92%20114.65-16.92%2038.92%200%2077%207T850.31-732q14.07%205%2021.88%2017.69%207.81%2012.69%207.81%2027.54v386.62q0%2024.54-20.65%2037.69-20.66%2013.15-43.97%204.46-27.76-10.77-56.73-15.62-28.96-4.84-58.65-4.84-59.23%200-115.23%2017.92-56%2017.92-104.77%2051.31ZM290-494.38Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .certificate a:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23014290%22%3E%3Cpath%20d%3D%22M684.54-600%20600-684.54l27.54-28.54%2057%2057%20141-142%2028.54%2028.54L684.54-600ZM240-180v-555.38q0-27.62%2018.5-46.12Q277-800%20304.62-800H520v40H304.62q-9.24%200-16.93%207.69-7.69%207.69-7.69%2016.93V-242l200-86%20200%2086v-278h40v340L480-283.08%20240-180Zm40-580h240-240Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .certificate a:hover:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M684.54-600%20600-684.54l27.54-28.54%2057%2057%20141-142%2028.54%2028.54L684.54-600ZM240-180v-555.38q0-27.62%2018.5-46.12Q277-800%20304.62-800H520v40H304.62q-9.24%200-16.93%207.69-7.69%207.69-7.69%2016.93V-242l200-86%20200%2086v-278h40v340L480-283.08%20240-180Zm40-580h240-240Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .metal a:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23014290%22%3E%3Cpath%20d%3D%22M480-151.54%20103.85-603.08%20212.31-820h535.38l108.46%20216.92L480-151.54ZM352.69-620h254.62l-80-160h-94.62l-80%20160ZM460-237.62V-580H175.69L460-237.62Zm40%200L784.31-580H500v342.38ZM651.69-620h150.62l-80-160H571.69l80%20160Zm-494%200h150.62l80-160H237.69l-80%20160Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .contact__menu-list .metal a:hover:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M480-151.54%20103.85-603.08%20212.31-820h535.38l108.46%20216.92L480-151.54ZM352.69-620h254.62l-80-160h-94.62l-80%20160ZM460-237.62V-580H175.69L460-237.62Zm40%200L784.31-580H500v342.38ZM651.69-620h150.62l-80-160H571.69l80%20160Zm-494%200h150.62l80-160H237.69l-80%20160Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .pg_contact .agreement {
    margin-top: 2em;
    font-size: 0.875em;
    text-align: center;
  }
  .pg_contact .btn-confirm {
    margin-top: 1em;
  }
  .pg_contact .btn-confirm.disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  .pg_contact .attention__box {
    --boxColor: #e83820;
    margin: 3em auto;
    border: 2px solid var(--boxColor);
    background: #fff;
    font-size: 0.9em;
  }
  .pg_contact .attention__box-inner {
    padding: clamp(1em, 4%, 2.5em) clamp(1.25em, 6%, 3em);
  }
  .pg_contact .attention__box__title {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    padding: 0.65em;
    background-color: var(--boxColor);
    color: #fff;
    text-align: center;
  }
  .pg_contact .attention__box__title--m {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 1em;
    color: var(--boxColor);
  }
  .pg_contact .attention__box .label--required {
    display: inline-block;
    padding: 0 0.4em;
    border: 1px solid var(--boxColor);
    color: var(--boxColor);
    background: #fff;
    border-radius: 2px;
    text-align: center;
    font-size: max(0.6em, 1.2rem);
  }
  .pg_contact .attention__box .box01 {
    margin: 2.5em 0 0;
    padding: clamp(1.5em, 3%, 2em);
    background: #fff4f4;
  }
  .pg_contact .attention__box__title--s {
    color: var(--boxColor);
    font-size: 1.15em;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 1em;
  }
  .pg_letter {
    --padd: 1.5em;
  }
  .pg_letter .page-title__vol {
    font-size: max(0.35em, 1.3rem);
  }
  .pg_letter .page-title__vol .label-vol {
    background: var(--blue);
    color: #fff;
    padding-inline: 0.5em;
    font-family: "Poppins";
    line-height: 1.4;
    display: inline-block;
  }
  .pg_letter .page-title__vol .date {
    color: var(--blue);
    color: var(--fontColor);
    font-size: max(0.9em, 1.3rem);
    margin-left: 0.35em;
    letter-spacing: 0.01em;
    font-weight: normal;
  }
  @media (min-width: 768px) {
    .pg_letter .letter__detail-img {
      flex: 0 0 33%;
    }
    .pg_letter .letter__detail-txt {
      flex: 1;
    }
  }
  .pg_letter .letter__detail-info:not(:first-child) {
    padding-top: min(3%, 2em);
    margin-top: min(3%, 2em);
    border-top: 1px solid var(--borderColor);
  }
  .pg_letter .letter__detail__toc-heading {
    position: relative;
    margin: 1.25em 0 0.65em;
    padding-left: 0.75em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--borderColor--light);
    line-height: 1.4;
    font-size: clamp(1.6rem, 1.2158597663rem + 0.5008347245vw, 1.9rem);
  }
  .pg_letter .letter__detail__toc-heading:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 0.15em;
    height: 1em;
    background: var(--blue);
  }
  .pg_letter .letter__detail__toc-heading:first-child {
    margin-top: 0;
  }
  .pg_letter .letter__detail__toc > li {
    display: grid;
    grid-template-columns: 2em minmax(0, max-content);
    gap: 0;
    margin: 0 0 0.5em;
    padding-left: 0.8em;
    line-height: 1.5;
  }
  .pg_letter .letter__detail__toc > li .idx {
    font-family: "Poppins", sans-serif;
  }
  .pg_letter .letter__detail__toc > li a {
    color: #000000;
    display: block;
  }
  .pg_letter .letter__detail__toc > li .pdf--after:after {
    margin: 0 0 0 0.5em;
  }
  .pg_letter .letter__detail__toc dt, .pg_letter .letter__detail__toc dd {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
  }
  .pg_letter .letter__detail__toc dd {
    padding-left: 1em;
  }
  .pg_letter .letter__detail__toc + dl {
    margin-top: 1em;
  }
  .pg_letter .letter__detail-wrapper {
    margin-top: 1em;
  }
  @media (max-width: 767px) {
    .pg_letter .letter__detail-wrapper {
      margin-top: 0.5em;
      gap: 2em;
    }
    .pg_letter .letter__detail-title {
      margin-top: 0;
    }
  }
  .pg_letter .letter__backnumber__list {
    margin: clamp(1.5em, 3.5%, 3em) auto;
    --grid-gap: clamp(1.25em, 1.5vw, 4em);
    --grid-col-minw: 240px;
  }
  .pg_letter .letter__backnumber__list-link {
    color: #000000;
    text-decoration: none;
  }
  .pg_letter .letter__backnumber__list-link:hover {
    color: var(--blue);
    opacity: 1;
  }
  .pg_letter .letter__backnumber__list-link:hover img {
    opacity: 0.7;
  }
  .pg_letter .letter__backnumber__list img {
    margin-inline: auto;
    width: min(240px, 100%);
    height: auto;
    transition: 0.3s ease-out;
  }
  .pg_letter .letter__backnumber__list-txt {
    margin: 0.85em 0;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 767px) {
    .pg_letter .letter__backnumber__list {
      --grid-col-minw: 130px;
    }
  }
  .pg_shipment .shipment__news-list {
    margin: 1em auto 0;
  }
  .pg_shipment .shipment__news-list-item {
    padding: 1em;
  }
  .pg_shipment .shipment__news-list-item:nth-child(odd) {
    background: rgba(232, 242, 247, 0.8);
  }
  @media (min-width: 768px) {
    .pg_shipment .shipment__news-list-item {
      display: flex;
      gap: 1em;
    }
  }
  .pg_shipment .shipment__news-list-item > a:hover {
    opacity: 1;
  }
  .pg_shipment .shipment__news-list .date {
    font-size: 0.9em;
    flex: 0 0 7em;
  }
  .pg_shipment .shipment__menu-list {
    --grid-col-minw: 280px;
    --grid-gap: 0;
  }
  .pg_shipment .shipment__menu-list-link {
    background: #F9F9F9;
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em min(10%, 2.4em);
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 0.9em;
    color: #000000;
    text-decoration: none;
    line-height: 1.5;
    min-height: 7em;
    position: relative;
    overflow: hidden;
    transform: translate(0, 0, 0);
    z-index: 1;
  }
  .pg_shipment .shipment__menu-list-link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.36);
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease-out;
    opacity: 0;
    z-index: -1;
  }
  .shipment__menu-list-item:nth-child(1) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_01.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(2) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_02.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(3) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_03.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(4) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_04.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(5) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_05.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(6) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_06.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(7) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_07.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .shipment__menu-list-item:nth-child(8) .shipment__menu-list-link:before {
    background: url(../img/stat/stat_index_08.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .pg_shipment .shipment__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_shipment .shipment__menu-list-link:hover {
    opacity: 1;
    color: #fff;
    background: #000;
  }
  .pg_shipment .shipment__menu-list-link:hover:before {
    opacity: 0.65;
  }
  .pg_shipment .shipment__menu-list-link:hover:after {
    background-image: url(../img/common/icon_arrow-circle-white.svg);
  }
  .pg_shipment .shipment__menu-list-txt {
    position: relative;
    z-index: 1;
  }
  .pg_shipment .shipment__menu-list-txt-en {
    font-size: 0.8461538462em;
    color: #0055A2;
    margin: 0 0 0.6em;
  }
  .pg_shipment .shipment__related-list {
    gap: 1px;
  }
  .pg_shipment .shipment__related-list-item {
    background: #0055A2;
    color: #fff;
  }
  .pg_shipment .shipment__related-list-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    aspect-ratio: 2/1;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
  }
  .pg_shipment .shipment__related-list-label {
    position: relative;
    display: block;
    margin: 1.25em auto 0;
    padding: 1em;
    width: 10em;
    font-size: 0.85em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  .pg_shipment .shipment__related-list-label:before, .pg_shipment .shipment__related-list-label:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    width: 33%;
    height: 50%;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform-origin: 0 0;
    transition: all 0.3s ease-out;
  }
  .pg_shipment .shipment__related-list-label:after {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    border: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform-origin: right bottom;
  }
  .shipment__related-list-link:hover {
    opacity: 1;
    background: #002672;
  }
  .shipment__related-list-link:hover .shipment__related-list-label:before, .shipment__related-list-link:hover .shipment__related-list-label:after {
    width: 100%;
    height: 100%;
  }
  .pg_shipment .shipment__books-bn__item {
    padding-block: 0.5em;
    border-bottom: 1px dotted #B9B9B9;
  }
  .pg_shipment .box .note, .pg_shipment .attention-box .note {
    font-size: small;
  }
  .pg_shipment .shipment__index-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
  }
  .pg_shipment .shipment__index-title-cat {
    padding: 0.35em 0.8em;
    display: inline-block;
    background: #0055A2;
    color: #fff;
    font-size: 1.1rem;
  }
  .pg_shipment .shipment__index-list {
    --grid-col-minw: 180px;
    --grid-gap: 1.5em 1em;
  }
  @media (max-width: 767px) {
    .pg_shipment .shipment__index-list {
      --grid-col-minw: 158px;
    }
  }
  .pg_shipment .shipment__index-list-shipment_item {
    text-align: center;
    overflow: hidden;
    line-height: 1.3;
    border: 1px solid #0055A2;
    border-radius: 0.45em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  }
  .pg_shipment .shipment__index-list-shipment_body {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .pg_shipment .shipment__index-list-shipment_body .mon {
    font-size: 1.4em;
  }
  .pg_shipment .shipment__index-list-body {
    padding: 1em 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }
  .pg_shipment .shipment__index-list-shipment_link {
    position: relative;
    display: block;
    padding: 0.3em 0.5em 0.5em;
    color: #0055A2;
    background: white;
    font-weight: normal;
    text-decoration: none;
    line-height: 4.2em;
  }
  .pg_shipment .shipment__index-list-shipment_link:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: url(../img/common/icon_arrow-circle-light-right.svg) no-repeat 0 0;
    background-size: contain;
    transform: translateX(-50%);
  }
  .pg_shipment .shipment__index-list-shipment_link:hover {
    color: white;
    opacity: 1;
    background-color: #0055A2;
  }
  .pg_shipment .shipment__index-list-shipment_link:hover:before {
    background: url(../img/common/icon_arrow-circle-light-right-hover.svg) no-repeat 0 0;
  }
  .pg_shipment .shipment__index-list-shipment_link.__ex {
    line-height: 1.77;
  }
  .pg_shipment .shipment__index-list-shipment_link .year {
    font-size: x-large;
    font-weight: bold;
  }
  .shipment__archive .shipment__index-title-cat {
    background: #507495;
  }
  .pg_shipment .shipment__archive-list {
    --grid-col-minw: 4.8em;
    --grid-gap: .8em .4em;
    font-size: 0.9em;
  }
  .pg_shipment .shipment__archive-list-link {
    display: block;
    padding: 0.15em 0.65em;
    width: 100%;
    border: 1px solid #0055A2;
    border-radius: 99999px;
    color: #0055A2;
    letter-spacing: normal;
    text-decoration: none;
    text-align: center;
  }
  .pg_shipment .shipment__archive-list-link:hover {
    opacity: 1;
    background: rgba(232, 242, 247, 0.8);
  }
  .pg_shipment .shipment__archive-list-item.--current a {
    background: #0055A2;
    color: #fff;
  }
  .pg_shipment .btn_dataQuotes {
    display: inline-block;
    padding: 0;
    color: #0055A2;
    font-weight: 500;
    text-decoration: none;
  }
  .pg_shipment .btn_dataQuotes:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 2em;
    height: 2em;
    background: url(../img/common/icon_arrow-circle-right-fill.svg) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    margin-left: 0.65em;
  }
  .pg_shipment .dataQuotes__modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.7);
    display: grid;
    place-items: center;
    visibility: hidden;
    pointer-events: none;
  }
  .pg_shipment .dataQuotes__modal.open {
    visibility: visible;
    pointer-events: visible;
  }
  .pg_shipment .dataQuotes__modal-window {
    position: relative;
    background: #fff;
    border-radius: 0.8em;
    width: min(90%, 500px);
    max-height: 90%;
    overflow: auto;
    scrollbar-width: none;
  }
  .pg_shipment .dataQuotes__modal-window::-webkit-scrollbar {
    display: none;
  }
  .pg_shipment .dataQuotes__modal-content {
    padding: 2.5em;
  }
  .pg_shipment .dataQuotes__modal h2 {
    margin: 0 0 0.5em;
    font-size: 2.2rem;
    color: var(--blue);
  }
  .pg_shipment .dataQuotes__modal h3 {
    margin: 1.5em 0 0.5em;
    font-size: 1.7rem;
    -moz-text-align-last: left;
         text-align-last: left;
    color: var(--blue);
  }
  .pg_shipment .dataQuotes__modal p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .pg_shipment .dataQuotes__modal .dataQuotes__list {
    margin: 0.75em 0 0;
  }
  .pg_shipment .dataQuotes__modal .dataQuotes__list-item {
    position: relative;
    padding-left: 1em;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .pg_shipment .dataQuotes__modal .dataQuotes__list-item + li {
    margin-top: 0.3em;
  }
  .pg_shipment .dataQuotes__modal .dataQuotes__list-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.3em;
    height: 0.3em;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  .pg_shipment .dataQuotes__close {
    position: absolute;
    right: 1em;
    top: 1em;
  }
  .pg_shipment .dataQuotes__close-btn {
    display: block;
    position: relative;
    overflow: hidden;
    width: 2em;
    height: 2em;
    background: #e6e6e6;
    border-radius: 50%;
    line-height: 10;
    will-change: transform;
    transform: rotate(-135deg);
    transition: transform 0.3s ease-out;
    cursor: pointer;
  }
  .pg_shipment .dataQuotes__close-btn:hover {
    transform: rotate(-45deg);
  }
  .pg_shipment .dataQuotes__close-btn:before,
  .pg_shipment .dataQuotes__close-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 2px;
    height: 16px;
    background: #757575;
    transform: translate(-50%, -50%);
  }
  .pg_shipment .dataQuotes__close-btn:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .publication__slider {
    margin: 3em auto 0;
    padding-inline: 2.5em;
  }
  .publication__slider .splide__arrow {
    top: 27% !important;
    background: none !important;
  }
  .publication__slider .splide__arrow svg {
    width: 2em !important;
    height: 2em !important;
  }
  .publication__slider .splide__arrow--prev {
    left: 0 !important;
  }
  .publication__slider .splide__arrow--next {
    right: 0 !important;
  }
  .publication__list-item > a {
    color: #000000;
    text-decoration: none;
  }
  .publication__list-img img {
    display: block;
    margin: 0 auto;
    border: 1px solid #d3d3d3;
    aspect-ratio: 213/285;
    aspect-ratio: 492/695;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .publication__list-img img.--fill {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .publication__list-txt {
    margin-top: 1.5em;
  }
  .publication__list-title {
    font-weight: bold;
  }
  .publication__list-toc {
    font-size: 0.85em;
    margin-top: 1em;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .publication__list-toc-item--idx {
    text-indent: -2em;
    padding-left: 2em;
  }
  .publication__list-price {
    margin: 0.75em 0 0;
  }
  .publication__list-price dt {
    padding-left: 0.8em;
    position: relative;
    white-space: nowrap;
  }
  .publication__list-price 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);
  }
  .publication__list-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);
  }
  .publication__list-cat.--book {
    --color: var(--aqua);
  }
  .publication__list-cat.--ebook {
    --color: var(--green);
  }
  .publication__list-cat.--dl {
    --color: var(--blue);
  }
  @media (max-width: 767px) {
    .publication__list-img img {
      width: min(100%, 240px);
    }
  }
  .publication__search__title {
    margin: 0 0 1.2em;
    display: flex;
    align-items: center;
    gap: 0.9em;
    font-size: 1.2em;
  }
  .publication__search__title:before {
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    background: var(--blue--ex-dark);
  }
  .publication__search-wrapper {
    gap: 1em;
    display: flex;
  }
  @media (max-width: 575px) {
    .publication__search-wrapper {
      flex-direction: column;
    }
  }
  .publication__search-area {
    flex: 1;
    display: flex;
    border: 1px solid #CCE2EB;
    border-radius: 0.3em;
    overflow: hidden;
  }
  .publication__search-input {
    border: 0;
    min-width: 0;
    flex: 1;
  }
  .publication__search-btn {
    width: max(10%, 3em);
  }
  .publication__search-btn-item {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    font-size: 1.15em;
    line-height: 100;
    background: var(--blue);
    color: #fff;
    text-align: center;
    border: 0;
  }
  .publication__search-btn-item:before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1em;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease-out;
  }
  .pg_publication .btn-wrap .btn-cart {
    position: relative;
    padding: 1em !important;
    font-size: 0.9em !important;
    min-width: 0 !important;
    max-width: 15em !important;
  }
  .pg_publication .btn-wrap .btn-cart .ico {
    display: inline-block;
    position: absolute !important;
    left: 1.5em;
    top: calc(50% + 2px) !important;
    transform: translateY(-50%);
  }
  .pg_publication .btn-wrap .btn-cart:hover {
    color: #0055A2;
  }
  .pg_publication .btn-wrap .btn-cart:hover .ico svg path {
    fill: #0055A2;
  }
  .pg_publication .container {
    position: relative;
  }
  .pg_publication .btn-wrap.--small {
    --padd: var(--_padd, min(5.7833089312vw, 79px));
    position: absolute;
    top: 0.25em;
    right: var(--padd);
    width: -moz-fit-content;
    width: fit-content;
  }
  .pg_publication .btn-wrap.--small .btn-cart {
    font-size: min(3vw, 1.1rem) !important;
    padding-left: 2em !important;
    width: 13em;
  }
  @media (max-width: 991px) {
    .pg_publication .btn-wrap.--small {
      --_padd: calc(4.5408678103vw);
      top: -0.5em;
    }
  }
  @media (max-width: 767px) {
    .pg_publication .btn-wrap.--small {
      --_padd: max(6%, 1.35em);
    }
  }
  .publication__contact {
    min-width: 8em;
  }
  .publication__contact-wrapper {
    gap: 1.5em;
  }
  @media (max-width: 767px) {
    .publication__contact + .publication__contact {
      margin-top: 1.5em;
    }
  }
  .publication__btn-wrapper {
    justify-content: space-between;
    gap: 1em;
  }
  .publication__btn {
    display: grid;
    align-items: center;
    min-width: 0;
    width: 17em;
    min-height: 3.75em;
    flex: 1;
    padding: 0.5em 1.25em 0.5em 2.4em;
  }
  .publication__btn:before {
    display: none;
  }
  .publication__btn .publication__ico {
    display: block;
    position: absolute;
    top: 50%;
    left: 1em;
    border: 0;
    width: 1.1em;
    height: 1.1em;
    line-height: 1;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    transform: translateY(-50%);
  }
  .publication__btn .publication__ico svg path {
    transition: fill 0.3s ease-out;
  }
  .publication__btn:hover .publication__ico svg path {
    fill: #fff;
  }
  @media (max-width: 767px) {
    .publication__btn-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .publication__btn-wrapper .publication__btn {
      min-width: 0;
      margin: 0;
      width: 100%;
    }
  }
  .side__nav-list.--others .side__nav-list-link {
    display: block;
    position: relative;
    padding-left: 1.8em;
  }
  .side__nav-list.--others .publication__ico {
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transform: translateY(-50%);
  }
  @media (min-width: 768px) {
    .publication__detail-img {
      flex: 0 0 33%;
    }
    .publication__detail-txt {
      flex: 1;
    }
  }
  .publication__detail-title {
    margin-top: 0.5em;
    line-height: 1.4;
    font-size: clamp(2rem, 0.7195325543rem + 1.6694490818vw, 3rem);
  }
  .publication__detail-info {
    padding-top: min(3%, 2em);
    margin-top: min(3%, 2em);
    border-top: 1px solid var(--borderColor);
  }
  .publication__detail__toc-heading {
    font-weight: 500;
  }
  .publication__detail__toc dt, .publication__detail__toc dd {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
  }
  .publication__detail__toc dd {
    padding-left: 1em;
  }
  .publication__detail__toc + dl {
    margin-top: 1em;
  }
  .publication__detail-wrapper {
    margin-top: 1em;
  }
  @media (max-width: 767px) {
    .publication__detail-wrapper {
      gap: 2em;
    }
    .publication__detail-title {
      margin-top: 0;
    }
  }
  .publication__list.grid--auto-fill {
    margin-block: min(3%, 2.8em);
    --grid-gap: 4.7em min(6%, 4.7em);
    --grid-col-minw: 210px;
  }
  .publication__list.grid--auto-fill .publication__list-img img {
    width: min(210px, 100%);
  }
  .order__list {
    margin: 3em auto 0;
  }
  .order__list-thead, .order__list-tbody {
    --gap: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 100px 80px 130px 110px;
    gap: 0 var(--gap);
  }
  .order__list-thead {
    background: var(--blue--ex-light);
    border-block: 1px solid var(--borderColor);
    align-items: center;
    line-height: 1.3;
    font-size: 0.85em;
  }
  .order__list-tbody {
    padding-block: 1em;
  }
  .order__list-th, .order__list-td {
    padding-block: 1em;
  }
  .order__list-th {
    text-align: center;
  }
  .order__list-tbody {
    line-height: 1.4;
  }
  .order__list-tbody .col__item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    line-height: 1.7;
  }
  .order__list-tbody .col__price,
  .order__list-tbody .col__total {
    text-align: right;
  }
  .order__list-tbody .col__num,
  .order__list-tbody .col_btn {
    text-align: center;
  }
  .order__list-tbody .order__list-item__img {
    width: 100%;
  }
  .order__list-tbody .order__list-item__img img {
    display: block;
    margin: 0 auto;
    width: min(120px, 100%);
  }
  .order__list-tbody .order__list-item__title {
    font-weight: bold;
  }
  .order__list-tbody .order__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);
  }
  .order__list-tbody .order__list-item__cat.--book {
    --color: var(--aqua);
  }
  .order__list-tbody .order__list-item__cat.--ebook {
    --color: var(--green);
  }
  .order__list-tbody .order__list-item__cat.--dl {
    --color: var(--blue);
  }
  .order__list-tbody .order__list-item__toc {
    margin-top: 0.7em;
    font-size: 0.9em;
  }
  @media (min-width: 768px) {
    .order__list-tbody .order__list-item__img {
      max-width: 120px;
      flex: 0 0 33%;
    }
    .order__list-tbody .order__list-item__summary {
      flex: 1;
    }
  }
  @media (max-width: 991px) {
    .order__list-tbody {
      font-size: 0.9em;
    }
  }
  @media (max-width: 767px) {
    .order__list-thead {
      padding: 0 0.5em;
      gap: 0;
      grid-template-columns: repeat(5, max-content);
    }
    .order__list-thead > * {
      padding-inline: 0.8em;
      font-size: 0.85em;
      position: relative;
    }
    .order__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%);
    }
    .order__list-thead > *:last-child:before, .order__list-thead > *:nth-last-of-type(2):before {
      display: none;
    }
    .order__list-tbody {
      font-size: 1em;
      --gap: 1.25rem;
      grid-template-columns: repeat(3, 22%) 1fr;
    }
    .order__list-tbody .col__item {
      grid-column: span 5;
    }
    .order__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;
    }
    .order__list-td.col__item:before, .order__list-td.col__btn:before {
      display: none;
    }
  }
  @media (max-width: 575px) {
    .order__list-tbody {
      --gap: 1em;
      grid-template-columns: repeat(3, calc((100% - 2em) / 3));
    }
    .order__list-tbody .col__item,
    .order__list-tbody .col__btn {
      grid-column: span 3;
    }
    .order__list-tbody .col__btn .btn-submit {
      float: right;
    }
  }
  .order__list-tbody + .order__list-tbody {
    border-top: 1px solid var(--borderColor);
  }
  .order__list .btn-submit {
    display: block;
    margin: 0 auto;
    padding: 0.5em 1em;
    font-size: 1.05em;
    font-weight: bold;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 4px;
  }
  .pg_pickup {
    --padd: 1.5em;
  }
  .pg_pickup .pickup__page-title {
    margin: 0;
    padding: 1em 0.5em 0.8em;
    font-size: clamp(2.2rem, -0.1048414023rem + 3.0050083472vw, 4rem);
    text-align: center;
    line-height: 1.3;
    color: #fff;
    background: #007db7;
  }
  .pg_pickup .pickup__page-title__en {
    display: block;
    margin-top: 0.75em;
    font-size: max(1.1rem, 0.45em);
    font-weight: 500;
    color: #fff;
  }
  .pg_pickup .pickup__page-title + .directory {
    margin-block: 0.75em;
  }
  .pg_pickup .pickup__dep {
    display: inline-block;
    position: relative;
    top: -0.025em;
    background: var(--blue);
    color: #fff;
    padding: 0.15em 0.75em;
    margin: 0 0 0 0.7em;
    font-size: max(1.1rem, 0.55em);
    width: -moz-fit-content;
    width: fit-content;
    vertical-align: middle;
  }
  .pg_pickup .section__pickup__title {
    font-size: clamp(1.9rem, -0.5328881469rem + 3.1719532554vw, 3.8rem);
    margin: 0.7em 0 1em;
    padding: 0.38em 0.5em;
    border-radius: 0.3em;
    color: #fff;
    background-color: #014290;
    line-height: 1.3;
    text-align: center;
  }
  .pg_pickup .section__pickup__title:first-child {
    margin-top: 0;
  }
  .pg_pickup .section__pickup__title--m {
    display: grid;
    grid-template-columns: minmax(1em, 1fr) auto minmax(1em, 1fr);
    gap: 0.5em;
    align-items: center;
    margin: 1.75em 0 1em;
    font-size: clamp(1.8rem, -0.2487479132rem + 2.6711185309vw, 3.4rem);
    color: #3aafdb;
    line-height: 1.3;
    text-align: center;
  }
  .pg_pickup .section__pickup__title--m:before, .pg_pickup .section__pickup__title--m:after {
    content: "";
    display: block;
    height: 1px;
    background: #3aafdb;
  }
  .pg_pickup .pickup__lead-text {
    background-color: #eee;
    padding: clamp(2em, 3%, 3em) clamp(2em, 4.5%, 4.5em);
    margin: 2em 0;
    color: #195674;
    font-weight: bold;
  }
  .pg_pickup .pickup__text {
    height: auto;
    overflow: hidden;
  }
  .pg_pickup .pickup__img-box {
    text-align: center;
    margin-top: 1.5em;
  }
  .pg_pickup .pickup__img-box.d-flex {
    margin: 3em auto;
    width: -moz-fit-content;
    width: fit-content;
    gap: min(5%, 5em);
  }
  .pg_pickup .pickup__img-box:first-child {
    margin-top: 0;
  }
  .pg_pickup .pickup__img-box figure {
    display: block;
  }
  .pg_pickup .pickup__img-box figure img {
    display: block;
    margin-inline: auto;
  }
  .pg_pickup .pickup__img-box .cap {
    text-align: center;
    margin-top: 1em;
    font-size: 0.85em;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .pg_pickup .pickup__img-box.img-right, .pg_pickup .pickup__img-box.img-left {
      display: inline;
    }
  }
  @media (max-width: 767px) {
    .pg_pickup .pickup__img-box {
      margin-block: 2em !important;
    }
    .pg_pickup .pickup__img-box:first-child {
      margin-top: 0 !important;
    }
    .pg_pickup .pickup__img-box figure + figure {
      margin-top: 2em;
    }
  }
  .pg_pickup .pickup__box {
    background: #eee;
    margin: 2.5em auto 0;
    padding: clamp(18px, 2.5%, 2.5em);
  }
  .pg_pickup .pickup__box-title {
    margin: 0 0 0.7em;
    padding: 0.25em 0.8em;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    background: #3aafdb;
    text-align: center;
    border-radius: 99999px;
  }
  .pg_pickup .topics {
    position: relative;
    margin-top: clamp(2em, 4.5%, 4em);
    padding-top: clamp(2em, 4.5%, 4em);
    background: url(../img/pickup/bg_pickup.jpg) repeat-x 0 0;
    background-size: contain;
  }
  .pg_pickup .topics:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .pg_pickup .topics__ttl img {
    width: 100%;
    height: auto;
  }
  .pg_pickup .topics__ttl .catch {
    position: relative;
    font-size: clamp(0.5rem, 1.05vw, 1em);
    color: #2f4974;
    line-height: 1;
    -moz-text-align-last: justify;
         text-align-last: justify;
    margin-top: 0.8em;
    padding-top: 0.8em;
  }
  .pg_pickup .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_pickup .topics__slider {
    gap: 10px;
    padding-bottom: 45px;
  }
  .pg_pickup .topics__slider-box {
    background: #fff;
  }
  .pg_pickup .topics__slider-box img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 716/390;
  }
  .pg_pickup .topics__slider-txt {
    padding: 1.35em 0.75em 1em;
  }
  .pg_pickup .topics__slider-txt-item {
    font-size: clamp(1.7rem, 1.3158597663rem + 0.5008347245vw, 2rem);
    font-weight: bold;
    line-height: 1.3;
  }
  .pg_pickup .topics__slider-date {
    margin: 1em 0 0;
    font-size: clamp(1.2rem, 0.8158597663rem + 0.5008347245vw, 1.5rem);
    line-height: 1;
  }
  .pg_pickup .topics .splide__arrows.splide__arrows--ltr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 30px;
  }
  .pg_pickup .topics .splide__arrow {
    width: 32px !important;
    height: 32px !important;
    color: var(--blue) !important;
    opacity: 1 !important;
    overflow: hidden;
    background: none !important;
  }
  .pg_pickup .topics .splide__arrow > svg {
    display: none;
  }
  .pg_pickup .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_pickup .topics .splide__arrow--prev {
    left: 0 !important;
  }
  .pg_pickup .topics .splide__arrow--next {
    right: 0 !important;
  }
  .pg_pickup .topics .splide__arrow--next:before {
    background: url(../img/common/icon_slider-arrow-next.svg) no-repeat 0 0;
    background-size: contain;
  }
  .pg_pickup .topics .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_pickup .topics .splide__pagination__page {
    background: var(--blue--light) !important;
    width: 9px !important;
    height: 9px !important;
  }
  .pg_pickup .topics .splide__pagination__page.is-active {
    background: var(--blue) !important;
    transform: none !important;
  }
  .pg_pickup .topics .btn-more {
    --_btn-color: var(--btn-color, var(--blue));
    display: grid;
    place-items: center;
    position: relative;
    margin: min(12%, 4em) auto 0;
    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_pickup .topics .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_pickup .topics .btn-more.--jp {
    font-family: "Noto Sans JP", sans-serif;
  }
  @media print, screen and (min-width: 768px) {
    .pg_pickup .topics .btn-more.--right {
      float: right;
    }
  }
  @media print, screen and (max-width: 767px) {
    .pg_pickup .topics .btn-more {
      margin: 1.5em auto;
      min-height: 45px;
      width: min(100%, 180px);
    }
  }
  @media print, screen and (min-width: 768px) {
    .pg_pickup .topics__wrapper {
      padding-inline: 0;
      max-width: initial;
      overflow: hidden;
      gap: 0;
    }
    .pg_pickup .topics__txt-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1 0 25%;
      min-width: 200px;
    }
    .pg_pickup .topics__txt-wrapper > * {
      width: -moz-fit-content;
      width: fit-content;
      margin-inline: auto;
      width: 68%;
      min-width: initial;
    }
    .pg_pickup .topics__txt-wrapper img {
      margin-inline: auto;
    }
    .pg_pickup .topics__slider-wrapper {
      max-width: 80%;
    }
    .pg_pickup .topics__slider-inner {
      margin-right: -15%;
    }
  }
  @media print, screen and (max-width: 767px) {
    .pg_pickup .topics {
      background-size: cover;
    }
    .pg_pickup .topics:before {
      background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    }
    .pg_pickup .topics__ttl {
      width: 180px;
      margin: 0 auto;
    }
    .pg_pickup .topics__ttl .catch {
      font-size: 1.1rem;
    }
  }
  .pg_pickup .pickup__search-wrapper {
    padding: var(--padd);
    background: var(--blue--ex-light);
    border-radius: 0.3em;
  }
  .pg_pickup .pickup__search-title {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1em;
    border-radius: 0.3em;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
  }
  .pg_pickup .pickup__search-title:before {
    content: "\f1de";
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--blue);
  }
  .pg_pickup .pickup__search-title:after {
    content: "+";
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--blue);
  }
  .pg_pickup .pickup__search-wrapper.open .pickup__search-title:after {
    content: "\f068";
  }
  .pg_pickup .pickup__search-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: var(--padd) 0;
    gap: 0.5em;
  }
  .pg_pickup .pickup__search-list-item {
    padding: 0.5em 1em 0.5em 0.5em;
    border: 1px solid var(--blue--light);
    background: #fff;
    color: var(--blue--dark);
    border-radius: 0.3em;
    font-size: 0.9em;
    line-height: 1.3;
  }
  .pg_pickup .pickup__search-list-item label {
    display: block;
    cursor: pointer;
  }
  .pg_pickup .pickup__search-list-item:has(:checked) {
    background: var(--blue);
    color: #fff;
  }
  .pg_pickup .pickup__search__btn-wrap {
    display: flex;
    gap: 1em;
  }
  .pg_pickup .pickup__search__btn-wrap .btn, .pg_pickup .pickup__search__btn-wrap .btn--right {
    margin: 0;
    padding: 1em;
    font-size: 0.85em;
    width: auto;
    min-width: 12em;
  }
  .pg_pickup .pickup__search__btn-wrap .btn:before, .pg_pickup .pickup__search__btn-wrap .btn--right:before {
    display: none;
  }
  .pg_pickup .pickup__search__btn-wrap .btn:after, .pg_pickup .pickup__search__btn-wrap .btn--right:after {
    display: block;
    position: absolute;
    left: 1.25em;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    width: 0.9em;
    height: 0.9em;
    line-height: 0.9em;
    font-weight: bold;
  }
  .pg_pickup .pickup__search__btn-wrap .btn-search:after {
    content: "\f002";
  }
  .pg_pickup .pickup__search__btn-wrap .btn-clear:after {
    content: "\f00d";
  }
  .pg_pickup .pickup__search__btn-wrap .btn-clear {
    --color: #727272;
    background: var(--color);
    border-color: var(--color);
    color: #fff;
  }
  .pg_pickup .pickup__search__btn-wrap .btn-clear:hover {
    --color: #333;
    background: transparent;
    color: var(--color);
  }
  @media (max-width: 575px) {
    .pg_pickup .pickup__search-wrapper {
      --padd: 1em;
    }
    .pg_pickup .pickup__search-list-item {
      font-size: 0.85em;
    }
    .pg_pickup .pickup__search__btn-wrap {
      margin: 0.5em auto;
    }
  }
  .pg_pickup .pickup__list {
    --grid-gap: 2em;
    --grid-col-minw: calc(50% - var(--grid-gap));
    --grid-col-minw: 280px;
    margin-top: 2em;
  }
  .pg_pickup .pickup__list-item {
    margin: 0;
  }
  @media (max-width: 767px) {
    .pg_pickup .pickup__list-item {
      --grid-gap: 2em;
      --grid-col-minw: 100%;
    }
  }
  .pg_pickup .pickup__list-txt {
    padding: 1em 0;
    font-size: 1.025em;
    line-height: 1.4;
  }
  .pg_pickup .pickup__list-meta {
    margin: 0.8em 0 0;
  }
  .pg_pickup .pickup__list-meta .date {
    font-size: max(1rem, 0.8em);
  }
  .pg_pickup .section__topics {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-block: min(6%, 6em);
  }
  .pg_pickup .section__topics .section__title {
    margin-bottom: 1.5em;
    text-align: center;
    color: #fff;
  }
  .pg_pickup .section__topics .pickup__list-txt {
    color: #fff;
  }
  .pg_pickup {
    /* ======================================================
    list page styles
    ====================================================== */
    /* -------------------------
    title
    ------------------------- */
  }
  .pg_pickup .main-ttl01 {
    text-align: center;
  }
  .pg_pickup .main-ttl01 span {
    display: block;
  }
  .pg_pickup .main-ttl01 .main-ttl-ja {
    font-size: 14px;
  }
  .pg_pickup .main-ttl01 .main-ttl-ja.font-large {
    font-size: 18px;
  }
  .pg_pickup .main-ttl01 .main-ttl-en {
    font-size: 32px;
    color: #007db7;
    font-weight: 700;
  }
  .pg_pickup .main-ttl01 .main-ttl-en.font-large {
    font-size: 48px;
  }
  .pg_pickup {
    /* -------------------------
    information
    ------------------------- */
  }
  .pg_pickup .top-information {
    border: 1px solid #bebebe;
    margin: 25px auto 0;
    padding: 5px 10px;
  }
  .pg_pickup .top-information p {
    padding-left: 25px;
    font-size: 15px;
    background: url(../img/top/icon03.gif) 0 3px no-repeat;
  }
  .pg_pickup {
    /* -------------------------
    pickup
    ------------------------- */
  }
  .pg_pickup .top-pickup {
    padding-top: 25px;
  }
  .pg_pickup {
    /* -------------------------
    menu
    ------------------------- */
  }
  .pg_pickup #tp-menu {
    margin: 0 0 2.5em;
  }
  @media (min-width: 992px) {
    .pg_pickup #tp-menu {
      margin-top: 30px;
      font-size: 18px;
    }
  }
  .pg_pickup .tp-menu__row {
    display: grid;
    grid-template-columns: auto 1fr;
    line-height: 1;
  }
  .pg_pickup .tp-menu__row + .tp-menu__row {
    margin-top: 1.5em;
  }
  .pg_pickup .tp-menu__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75em 1.5em;
  }
  .pg_pickup #tp-menu a {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--blue);
  }
  .pg_pickup #tp-menu a:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    right: -0.75em;
    top: 50%;
    width: 1px;
    height: 1.2em;
    background: #aaa;
    transform: translateY(-50%) rotate(25deg);
  }
  .pg_pickup #tp-menu a:first-of-type {
    padding-left: 0;
  }
  .pg_pickup #tp-menu a:last-of-type {
    padding-right: 0;
    background: none;
  }
  .pg_pickup #tp-menu a span {
    position: relative;
  }
  .pg_pickup #tp-menu a span::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    display: none;
    width: 100%;
    height: 2px;
    border-top: 2px dotted #109cd0;
    box-sizing: border-box;
  }
  .pg_pickup #tp-menu a:hover span::after,
  .pg_pickup #tp-menu a.on span::after {
    display: block;
  }
  .pg_pickup {
    /* -------------------------
    content
    ------------------------- */
  }
  .pg_pickup #tp-content {
    width: auto;
    margin: 0 auto 3em;
  }
  .pg_pickup #tp-content ul,
  .pg_pickup #tp-content #tp-slider {
    display: flex;
    flex-wrap: wrap;
  }
  .pg_pickup {
    /* item */
  }
  .pg_pickup #tp-content ul li,
  .pg_pickup #tp-content .slider-contents {
    position: relative;
    width: 25%;
    padding: 5px;
    text-align: center;
    opacity: 1;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in, width 0.2s ease-in, height 0.2s ease-in;
  }
  .pg_pickup #tp-content ul li::before,
  .pg_pickup #tp-content .slider-contents::before {
    content: "";
    display: block;
    height: 0;
    padding-top: 131.13%;
    box-sizing: border-box;
  }
  .pg_pickup {
    /* hide */
  }
  .pg_pickup #tp-content ul li.hide,
  .pg_pickup #tp-content .slider-contents.hide {
    width: 0;
    height: 0;
    opacity: 0;
    transform: scale(0);
  }
  .pg_pickup {
    /* link */
  }
  .pg_pickup #tp-content ul li a,
  .pg_pickup #tp-content .slider-contents a {
    position: absolute;
    inset: 5px;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    overflow: hidden;
    color: #333;
    border: 1px solid #ccc;
    background: #fff;
    transition: opacity 0.2s ease-in;
  }
  .pg_pickup #tp-content ul li a:hover,
  .pg_pickup #tp-content .slider-contents a:hover {
    opacity: 0.7;
  }
  .pg_pickup {
    /* image */
  }
  .pg_pickup #tp-content ul li img,
  .pg_pickup #tp-content .slider-contents img {
    width: 100%;
    max-width: 100%;
    height: calc(100% - 8.462em);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
  .pg_pickup #tp-content ul li:nth-child(odd) img,
  .pg_pickup #tp-content .slider-contents:nth-child(odd) img {
    order: 2;
    border-top: 1px solid #ccc;
  }
  .pg_pickup #tp-content ul li:nth-child(even) img,
  .pg_pickup #tp-content .slider-contents:nth-child(even) img {
    order: 1;
    border-bottom: 1px solid #ccc;
  }
  .pg_pickup {
    /* text */
  }
  .pg_pickup #tp-content ul li p,
  .pg_pickup #tp-content .slider-contents p {
    position: relative;
    display: block;
    width: 100%;
    height: 8.462em;
    padding: 5%;
    font-weight: 700;
    line-height: 1.4;
  }
  .pg_pickup #tp-content ul li p::before,
  .pg_pickup #tp-content .slider-contents p::before {
    content: "";
    display: block;
    height: 0;
    padding-top: 40.3%;
  }
  .pg_pickup #tp-content ul li p::after,
  .pg_pickup #tp-content .slider-contents p::after {
    content: "";
    position: absolute;
    left: 0;
    width: 283px;
    height: 16px;
    margin: 0;
    border: 0;
    background-repeat: no-repeat;
    background-position: center;
  }
  .pg_pickup #tp-content ul li p span,
  .pg_pickup #tp-content .slider-contents p span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 1.31vw;
    text-align: center;
  }
  .pg_pickup {
    /* odd */
  }
  .pg_pickup #tp-content ul li:nth-child(odd) p,
  .pg_pickup #tp-content .slider-contents:nth-child(odd) p {
    order: 1;
    padding-bottom: 5px;
  }
  .pg_pickup #tp-content ul li:nth-child(odd) p::after,
  .pg_pickup #tp-content .slider-contents:nth-child(odd) p::after {
    bottom: auto;
  }
  .pg_pickup {
    /* even */
  }
  .pg_pickup #tp-content ul li:nth-child(even) p,
  .pg_pickup #tp-content .slider-contents:nth-child(even) p {
    order: 2;
    padding-top: 5px;
  }
  .pg_pickup #tp-content ul li:nth-child(even) p::after,
  .pg_pickup #tp-content .slider-contents:nth-child(even) p::after {
    top: auto;
  }
  .pg_pickup {
    /* icon */
  }
  .pg_pickup #tp-content ul li .icon,
  .pg_pickup #tp-content .slider-contents .icon {
    position: absolute;
    left: 0;
    z-index: 999;
    width: 25.835%;
    height: auto;
    border: none !important;
  }
  .pg_pickup #tp-content ul li:nth-child(odd) .icon,
  .pg_pickup #tp-content .slider-contents:nth-child(odd) .icon {
    top: 0;
  }
  .pg_pickup #tp-content ul li:nth-child(even) .icon,
  .pg_pickup #tp-content .slider-contents:nth-child(even) .icon {
    top: auto;
  }
  .pg_pickup #tp-content ul li:nth-child(even) p .icon,
  .pg_pickup #tp-content .slider-contents:nth-child(even) p .icon {
    top: -1px;
  }
  .pg_pickup {
    /* ======================================================
    responsive
    ====================================================== */
  }
  @media (max-width: 991px) {
    .pg_pickup #tp-content {
      padding: 0;
    }
    .pg_pickup #tp-content ul li,
    .pg_pickup #tp-content .slider-contents {
      width: 33.33%;
      max-width: initial;
    }
    .pg_pickup #tp-content ul li p span,
    .pg_pickup #tp-content .slider-contents p span {
      font-size: 12.5px;
    }
  }
  @media (max-width: 767px) {
    .pg_pickup #tp-content ul li, .pg_pickup #tp-content .slider-contents {
      max-width: initial;
      width: 50%;
    }
  }
  .topics__search__title {
    margin: 0 0 1.2em;
    display: flex;
    align-items: center;
    gap: 0.9em;
    font-size: 1.2em;
  }
  .topics__search__title:before {
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    background: var(--blue--ex-dark);
  }
  .topics__search-wrapper {
    gap: 1.25em;
    display: flex;
    flex-direction: column;
  }
  .topics__search-btn-wrap {
    margin: 1.5em auto 0;
  }
  .topics__search-btn-wrap .btn, .topics__search-btn-wrap .btn--right {
    max-width: 200px;
    width: 100%;
    min-width: 12em;
    letter-spacing: 0.5em;
    padding-inline: 1.75em 1.5em;
  }
  @media (min-width: 768px) {
    .topics__search-btn-wrap {
      margin: 0;
      width: 2.5em;
    }
  }
  .topics__search-filter {
    gap: 0.5em 1.5em;
    display: flex;
    flex-wrap: wrap;
  }
  .topics__search-filter label {
    letter-spacing: normal;
    font-size: 0.95em;
  }
  @media (max-width: 767px) {
    .topics__search-box {
      margin-bottom: 0.75em;
    }
  }
  .topics__news-list-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5em 1em;
    padding: 1em 0;
    border-bottom: 1px solid #DEDEDE;
  }
  .topics__news-list-item > a {
    color: #000000;
    text-decoration: none;
  }
  .topics__news-list-date {
    color: #444;
    font-size: 0.95em;
  }
  @media (min-width: 768px) {
    .topics__news-list-item {
      display: flex;
      gap: 1em;
      padding: 1.5em 0;
    }
    .topics__news-list-date {
      flex: 0 0 7.5em;
    }
  }
  @media (max-width: 767px) {
    .topics__news-list-item > a {
      display: block;
      grid-column: span 3;
    }
  }
  .topics__news-list-cat {
    --_color: var(--color, var(--blue));
    font-size: max(1.1rem, 0.75em);
    margin-top: 0.325em;
    padding-inline: 0.5em;
    min-width: 5em;
    height: 100%;
    color: #fff;
    text-align: center;
    border-radius: 0.25em;
    background: var(--_color);
  }
  .--info {
    --color: var(--aqua);
  }
  .--stat {
    --color: var(--blue);
  }
  .--release {
    --color: var(--green);
  }
  @media (max-width: 767px) {
    .topics__news-list-cat {
      margin-top: 0;
      height: auto;
      align-self: center;
    }
  }
  .pg_keiei .keiei__tbl .fa-regular {
    font-size: 1.5em;
  }
  .pg_keiei .keiei__tbl .fa-file-word {
    color: #0055A2;
  }
  .pg_keiei .keiei__tbl .fa-file-excel {
    color: #15874e;
  }
  .pg_ai-policy {
    --padd: 1.5em;
  }
  .pg_ai-policy .structure .d-flex {
    gap: 1em;
  }
  @media (min-width: 768px) {
    .pg_ai-policy .structure__box {
      padding: 0.8em;
    }
  }
  .pg_ai-policy .structure .section__title {
    margin: 0 0 1em;
    font-size: clamp(1.5rem, 2.5vw, 1.2em);
  }
  .pg_ai-policy .structure .section__title--m {
    margin: 1.5em 0 1em;
    font-size: clamp(1.4rem, 2.25vw, 1em);
  }
  .pg_ai-policy .structure ol > li, .pg_ai-policy .structure__box > p {
    font-size: 0.9em;
  }
  .pg_ai-policy .section__principles .box, .pg_ai-policy .section__principles .attention-box {
    padding: clamp(1.5em, 4%, 3.25em);
  }
  .pg_ai-policy .section__principles .article + .article {
    border-top: 1px solid var(--borderColor);
    padding-top: clamp(1.25em, 3.2%, 3em);
  }
  .pg_ai-policy .section__principles .section__title {
    margin-top: 0.5em;
    font-size: clamp(2.1rem, 2vw, 1.85em);
  }
  .pg_ai-policy .section__principles .frame-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
  }
  .pg_ai-policy .section__principles .btn-print {
    font-size: 1.2em;
    line-height: 1;
  }
  .pg_ai-policy .section__supplements .anchr a {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5em 3em 0.5em 1em;
    background: #ecf5ff;
    text-decoration: none !important;
    color: inherit !important;
    transition: opacity 0.3s ease-out;
  }
  .pg_ai-policy .section__supplements .anchr a:hover {
    opacity: 0.7;
  }
  .pg_ai-policy .section__supplements .anchr a:after {
    position: absolute;
    top: 50%;
    right: 1.2em;
    width: 0.38em;
    height: 0.38em;
    border-top: 2px solid var(--blue);
    border-left: 2px solid var(--blue);
    content: "";
    display: block;
    color: var(--blue);
    transition: all 0.3s ease-out;
    transform: rotate(45deg) translateY(-50%);
  }
  .pg_ai-policy .section__supplements .section__title--xs {
    margin: 1.75em 0 0.65em;
    font-size: 1.1em;
    line-height: 1.3;
  }
  .pg_ai-policy .section__supplements .head {
    margin-top: 2em;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.2em 0.5em;
    background: #f3f3f3;
    font-weight: bold;
  }
}
@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;
    }
  }
}/*# sourceMappingURL=styles.css.map */