/* ==========================================================================
  Base / Configration
========================================================================== */
html {
  box-sizing: border-box;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
  text-indent: -0.05em;
}

a,
button,
input[type=button],
input[type=reset],
*[role=button] {
  cursor: pointer;
  display: inline-block;
}
a[aria-disabled=true], a:disabled,
button[aria-disabled=true],
button:disabled,
input[type=button][aria-disabled=true],
input[type=button]:disabled,
input[type=reset][aria-disabled=true],
input[type=reset]:disabled,
*[role=button][aria-disabled=true],
*[role=button]:disabled {
  cursor: not-allowed;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

fieldset,
legend {
  display: contents;
}

strong {
  font-weight: 700;
}

em {
  font-style: normal;
}

i {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
}

:is(.ly_header, footer:has(.ly_footer), nav) {
  line-height: 1;
}
:is(.ly_header, footer:has(.ly_footer), nav) a {
  white-space: nowrap;
}

.wp-block-post-content p a {
  word-break: break-all;
}

/* ==========================================================================
  Layout / Wrapper
========================================================================== */
.ly_wrapper {
  background: var(--wp--preset--color--primary-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 100dvh;
  width: 100%;
}

/* ==========================================================================
  Layout / Header
========================================================================== */
.ly_header {
  background: var(--wp--preset--color--custom-white);
  left: 0;
  position: sticky;
  top: 0;
  z-index: 555;
}
@media screen and (max-width: 768px) {
  .ly_header {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  }
}
.ly_header_inner {
  gap: 0 var(--wp--preset--spacing--40);
  margin: 0 auto;
  max-width: calc(var(--wp--style--global--wide-size) - var(--wp--preset--spacing--20) * 2);
  padding-left: var(--wp--preset--spacing--20);
  padding-right: var(--wp--preset--spacing--20);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ly_header_inner {
    padding-left: var(--wp--preset--spacing--20);
    padding-right: var(--wp--preset--spacing--20);
  }
}
.ly_header_inner__column {
  align-items: center;
  display: flex;
  gap: var(--wp--preset--spacing--20);
  justify-content: space-between;
  padding-bottom: var(--wp--preset--spacing--20);
  padding-top: var(--wp--preset--spacing--20);
}
@media screen and (min-width: 768.1px) {
  .ly_header_inner__column {
    padding-top: calc(var(--wp--preset--spacing--20) + var(--wp--preset--spacing--10));
  }
}
.ly_header_toggle {
  position: relative;
  z-index: 888;
}
.ly_header_order1 {
  order: 1;
}
.ly_header_order2 {
  order: 2;
}
.ly_header_order3 {
  order: 3;
}
.ly_header_secondary__pc {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.ly_header_secondary__sp {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 666;
}
@media screen and (max-width: 768px) {
  .ly_header_order2 {
    flex: 1;
  }
}

/* ==========================================================================
  Layout / Footer
========================================================================== */
.ly_footer {
  background: var(--wp--preset--color--white);
  padding-bottom: var(--wp--preset--spacing--30);
  padding-top: var(--wp--preset--spacing--30);
  box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.1);
}
.ly_footer_inner {
  gap: 0 var(--wp--preset--spacing--40);
  margin: 0 auto;
  max-width: calc(var(--wp--style--global--wide-size) - var(--wp--preset--spacing--20) * 2);
  padding-left: var(--wp--preset--spacing--20);
  padding-right: var(--wp--preset--spacing--20);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ly_footer_inner {
    max-width: var(--wp--style--global--wide-size);
    padding-left: 0;
    padding-right: 0;
  }
}
.ly_footer_primary .ly_footer_inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--20);
}
@media screen and (max-width: 768px) {
  .ly_footer_primary .ly_footer_inner {
    flex-direction: column-reverse;
  }
}
.ly_footer_secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ly_footer_pagetop {
  bottom: var(--wp--preset--spacing--20);
  opacity: 0;
  position: fixed;
  right: var(--wp--preset--spacing--20);
  transition: all 0.5s;
  z-index: -1;
}
.ly_footer_pagetop.is_active {
  opacity: 1;
  z-index: 555;
}

/* ==========================================================================
  Layout / Container
========================================================================== */
.ly_container {
  gap: 0 var(--wp--preset--spacing--40);
  margin: 0 auto;
  max-width: calc(var(--wp--style--global--wide-size) - var(--wp--preset--spacing--20) * 2);
  padding-left: var(--wp--preset--spacing--20);
  padding-right: var(--wp--preset--spacing--20);
  width: 100%;
}
.ly_container_primary {
  flex-basis: 100%;
  margin: 0 auto;
  max-width: var(--wp--style--global--content-size);
}
@media screen and (max-width: 768px) {
  .ly_container_primary {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.ly_container_primary__full {
  max-width: 100%;
}
.ly_container_secondary {
  flex-basis: 300px;
}
@media screen and (max-width: 768px) {
  .ly_container_secondary {
    display: none;
  }
}
.ly_container_inner {
  padding-bottom: var(--wp--preset--spacing--60);
  padding-top: var(--wp--preset--spacing--60);
}
@media screen and (max-width: 768px) {
  .ly_container_inner {
    padding-bottom: var(--wp--preset--spacing--40);
    padding-top: var(--wp--preset--spacing--40);
  }
}
.ly_container__full {
  max-width: var(--wp--style--global--wide-size);
  padding-left: 0;
  padding-right: 0;
}
.ly_container__column {
  display: flex;
  justify-content: space-between;
}
.ly_container__column .ly_container_primary {
  margin-left: 0;
  margin-right: 0;
}

.ly_contQueries {
  container-type: inline-size;
}

/* ==========================================================================
  Layout / Column
========================================================================== */
.ly_column {
  display: grid;
  gap: var(--wp--preset--spacing--40);
}

@container (min-width: 480.1px) {
  .ly_contQueries .ly_column__col3, .ly_contQueries .ly_column__col4 {
    grid-template-columns: 1fr 1fr;
  }
}
@container (min-width: 768.1px) {
  .ly_contQueries .ly_column__col2 {
    grid-template-columns: 1fr 1fr;
  }
  .ly_contQueries .ly_column__col3, .ly_contQueries .ly_column__col4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@container (min-width: 960.1px) {
  .ly_contQueries .ly_column__col2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ly_contQueries .ly_column__col4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* ==========================================================================
  Module / Block / Header
========================================================================== */
.bl_headerToggle {
  align-items: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: calc(var(--wp--preset--spacing--10) * 0.5);
}
.bl_headerToggle_icon::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-image: url("../assets/icons/google/menu.svg");
  filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
}
.bl_headerToggle_text {
  font-size: var(--wp--preset--font-size--xx-small);
  white-space: nowrap;
}
.bl_headerToggle[aria-expanded=true] {
  background: var(--wp--preset--color--secondary-light);
}
.bl_headerToggle[aria-expanded=true] .bl_headerToggle_icon::before {
  background-image: url("../assets/icons/google/close.svg");
}

.bl_headerNav {
  background: var(--wp--preset--color--custom-white);
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--medium);
}
.bl_headerNav_list {
  display: flex;
  justify-content: space-between;
}
.bl_headerNav_list > li {
  position: relative;
  text-align: center;
}
.bl_headerNav_list > li ul.is_active {
  transform: scaleY(1);
}
.bl_headerNav_list > li > a {
  display: block;
  font-weight: 700;
  padding: var(--wp--preset--spacing--30);
  transition: all 0.5s;
}
.bl_headerNav_list > li > a:hover, .bl_headerNav_list > li > a:focus-visible {
  background: var(--wp--preset--color--secondary);
}
@media screen and (min-width: 768.1px) {
  .bl_headerNav_list > li {
    flex: 1;
  }
}
.bl_headerNav_list ul {
  background: var(--wp--preset--color--primary-light);
  color: var(--wp--preset--color--custom-black);
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.5s;
  width: 100%;
}
.bl_headerNav_list ul li {
  text-align: left;
}
.bl_headerNav_list ul li a {
  display: block;
  font-weight: 700;
  padding: var(--wp--preset--spacing--20);
}
.bl_headerNav_list ul li a:hover, .bl_headerNav_list ul li a:focus-visible {
  background: var(--wp--preset--color--primary);
}

/* ==========================================================================
  Module / Block / Footer
========================================================================== */
.bl_footer_copyright {
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--x-small);
  margin-top: var(--wp--preset--spacing--30);
  text-align: center;
}

.bl_footerNav {
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--medium);
}
@media screen and (max-width: 480px) {
  .bl_footerNav {
    margin-top: -1em;
  }
  .bl_footerNav li a,
  .bl_footerNav li button {
    border-bottom: 1px solid var(--wp--preset--color--gray-80);
    cursor: pointer;
    display: flex;
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 700;
    justify-content: space-between;
    padding: var(--wp--preset--spacing--30);
    padding: var(--wp--preset--spacing--40);
    text-decoration: none;
    width: 100%;
  }
  .bl_footerNav li a::after,
  .bl_footerNav li button::after {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1em;
    width: 1em;
    filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
  }
  .bl_footerNav li a::after {
    background-image: url("../assets/icons/google/chevron_right.svg");
  }
  .bl_footerNav li button::after {
    background-image: url("../assets/icons/google/expand_more.svg");
  }
  .bl_footerNav li button.is_active::after {
    background-image: url("../assets/icons/google/expand_less.svg");
  }
}
@media screen and (min-width: 480.1px) {
  .bl_footerNav {
    display: flex;
    font-weight: 700;
    gap: 0 var(--wp--preset--spacing--30);
    justify-content: center;
  }
  .bl_footerNav > li:not(:last-child) {
    padding-right: var(--wp--preset--spacing--30);
    position: relative;
  }
  .bl_footerNav > li:not(:last-child)::after {
    background: currentcolor;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
  .bl_footerNav a {
    padding: var(--wp--preset--spacing--10) 0;
    border-bottom: 1px solid transparent;
  }
}
@media screen and (min-width: 480.1px) and (any-hover: hover) {
  .bl_footerNav a:hover:hover {
    border-color: currentcolor;
  }
}

/* ==========================================================================
  Module / Block / Side
========================================================================== */
.bl_side_body {
  margin: var(--wp--preset--spacing--40) 0;
}
.bl_side_title {
  border-bottom: 2px solid currentcolor;
  color: var(--wp--preset--color--primary-dark);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
  margin-bottom: var(--wp--preset--spacing--20);
}

.bl_sideMenu {
  margin-top: -var(--wp--preset--spacing--20);
}
.bl_sideMenu li {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
}
.bl_sideMenu li a {
  display: block;
  font-weight: 700;
  padding: var(--wp--preset--spacing--20);
}
@media (any-hover: hover) {
  .bl_sideMenu li a:hover {
    color: var(--wp--preset--color--primary);
  }
}

/* ==========================================================================
  Module / Block / Drawer
========================================================================== */
.bl_drawer_bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;
}
.bl_drawer_body {
  background: var(--wp--preset--color--primary-light);
  height: 100vh;
  overflow-y: auto;
  padding-top: 96px;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .bl_drawer_body {
    width: 100%;
  }
}

.bl_drawerNav,
.bl_drawerMenu {
  font-family: var(--wp--preset--font-family--noto-serif-jp);
}
.bl_drawerNav li a,
.bl_drawerNav li button,
.bl_drawerMenu li a,
.bl_drawerMenu li button {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  cursor: pointer;
  display: flex;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  justify-content: space-between;
  padding: var(--wp--preset--spacing--30);
  padding: var(--wp--preset--spacing--40);
  text-decoration: none;
  width: 100%;
}
.bl_drawerNav li a::after,
.bl_drawerNav li button::after,
.bl_drawerMenu li a::after,
.bl_drawerMenu li button::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
}
.bl_drawerNav li a::after,
.bl_drawerMenu li a::after {
  background-image: url("../assets/icons/google/chevron_right.svg");
}
.bl_drawerNav li button::after,
.bl_drawerMenu li button::after {
  background-image: url("../assets/icons/google/expand_more.svg");
}
.bl_drawerNav li button.is_active::after,
.bl_drawerMenu li button.is_active::after {
  background-image: url("../assets/icons/google/expand_less.svg");
}

/* ==========================================================================
  Module / Block / Brand
========================================================================== */
.bl_brand_logo {
  font-size: clamp(2rem, 4.027vw, 3rem);
}
.bl_brand_caption {
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--x-small);
  margin-bottom: var(--wp--preset--spacing--20);
}
@media screen and (max-width: 768px) {
  .bl_brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .bl_brand_logo {
    padding-left: calc(var(--wp--preset--spacing--10) * 0.5);
  }
  .bl_brand_logo img {
    width: 85%;
  }
}

/* ==========================================================================
  Module / Block / List
========================================================================== */
.bl_arrowList {
  line-height: 1.5;
  line-height: 1.5;
}
.bl_arrowList > li {
  padding-left: 1em;
  position: relative;
}
.bl_arrowList > li::before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.3em;
  position: absolute;
  top: 0.6em;
  width: 0.4em;
}
.bl_arrowList > li::before {
  border-radius: 0;
  border-right: 2px solid currentcolor;
  border-top: 2px solid currentcolor;
  left: 0;
  top: 0;
  transform: rotate(45deg);
}

.bl_bulletList {
  line-height: 1.5;
}
.bl_bulletList > li {
  padding-left: 1em;
  position: relative;
}
.bl_bulletList > li::before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.3em;
  position: absolute;
  top: 0.6em;
  width: 0.4em;
}
.bl_bulletList > li::before {
  background: var(--wp--preset--color--primary);
}
.bl_bulletList > li:first-child {
  margin-top: 0;
}
.bl_bulletList ul {
  line-height: 1.5;
}
.bl_bulletList ul > li {
  padding-left: 1em;
  position: relative;
}
.bl_bulletList ul > li::before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.3em;
  position: absolute;
  top: 0.6em;
  width: 0.4em;
}
.bl_bulletList ul > li::before {
  border: 1px solid var(--wp--preset--color--primary);
  top: 0.525em;
}

.bl_orderList {
  counter-reset: bl_orderList;
}
.bl_orderList > li {
  padding-left: 1em;
  position: relative;
}
.bl_orderList > li::before {
  content: counter(bl_orderList) ".";
  counter-increment: bl_orderList;
  left: 0;
  position: absolute;
  top: 0;
}
.bl_orderList > li:first-child {
  margin-top: 0;
}

/* ==========================================================================
    Module / Block / Table
========================================================================== */
.bl_horizTable table {
  border: 1px solid var(--wp--preset--color--gray-80);
  width: 100%;
}
.bl_horizTable th, .bl_horizTable td {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  border-right: 1px solid var(--wp--preset--color--gray-80);
  line-height: 1.5;
  padding: var(--wp--preset--spacing--20);
}
.bl_horizTable th {
  background: var(--wp--preset--color--primary-light);
  font-weight: 700;
  vertical-align: middle;
}
.bl_horizTable td:last-child {
  border-right-width: 0;
}
.bl_horizTable tr:last-child th, .bl_horizTable tr:last-child td {
  border-bottom-width: 0;
}
.bl_horizTable__borderLess table {
  border-width: 1px 0;
}
.bl_horizTable__borderLess th, .bl_horizTable__borderLess td {
  border-right-width: 0;
}
.bl_horizTable__borderLess th {
  background: transparent;
}
@media screen and (max-width: 768px) {
  .bl_horizTable__borderLess td:last-child {
    border-right-width: 0;
  }
}

.bl_vertTable table {
  border: 1px solid var(--wp--preset--color--gray-80);
  width: 100%;
}
.bl_vertTable th, .bl_vertTable td {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  border-right: 1px solid var(--wp--preset--color--gray-80);
  line-height: 1.5;
  padding: var(--wp--preset--spacing--20);
}
.bl_vertTable th:last-child, .bl_vertTable td:last-child {
  border-right-width: 0;
}
.bl_vertTable th {
  background: var(--wp--preset--color--primary-light);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.bl_vertTable tr:last-child td {
  border-bottom-width: 0;
}

.bl_clossTable table {
  border: 1px solid var(--wp--preset--color--gray-80);
  width: 100%;
}
.bl_clossTable th, .bl_clossTable td {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  border-right: 1px solid var(--wp--preset--color--gray-80);
  line-height: 1.5;
  padding: var(--wp--preset--spacing--20);
}
.bl_clossTable th {
  background: var(--wp--preset--color--primary-light);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.bl_clossTable th:last-child, .bl_clossTable td:last-child {
  border-right-width: 0;
}
.bl_clossTable tr:last-child th, .bl_clossTable tr:last-child td {
  border-bottom-width: 0;
}

@media screen and (max-width: 768px) {
  .bl_responsiveTable {
    max-height: 50vh;
    overflow: auto;
    position: relative;
  }
  .bl_responsiveTable table {
    border: 0;
    border-collapse: separate;
  }
  .bl_responsiveTable th, .bl_responsiveTable td {
    white-space: nowrap;
  }
  .bl_responsiveTable .is_stickyLeft, .bl_responsiveTable .is_stickyTop {
    position: sticky;
    z-index: 10;
  }
  .bl_responsiveTable .is_stickyLeft {
    border-left: 1px solid var(--wp--preset--color--gray-80);
    left: 0;
  }
  .bl_responsiveTable .is_stickyTop {
    border-top: 1px solid var(--wp--preset--color--gray-80);
    top: 0;
  }
  .bl_responsiveTable .is_stickyTop.is_stickyLeft {
    z-index: 20;
  }
}

/* ==========================================================================
  Module / Block / Figure
========================================================================== */
.bl_figure {
  display: table;
}
.bl_figure img {
  max-height: 480px;
  max-width: 480px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bl_figure_caption {
  caption-side: bottom;
  display: table-caption;
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.5;
  margin-top: var(--wp--preset--spacing--10);
}
.bl_figure_captionspan {
  display: block;
}
.bl_figure.is_left, .bl_figure.is_right {
  margin-bottom: var(--wp--preset--spacing--20);
  width: 240px;
}
@media screen and (max-width: 480px) {
  .bl_figure.is_left, .bl_figure.is_right {
    width: 160px;
  }
}
.bl_figure.is_left {
  float: left;
  margin-right: var(--wp--preset--spacing--20);
}
.bl_figure.is_right {
  float: right;
  margin-left: var(--wp--preset--spacing--20);
}

/* ==========================================================================
  Module / Block / Dialog
========================================================================== */
/* ==========================================================================
  Module / Block / Modal
========================================================================== */
.bl_modal_container {
  background: var(--wp--preset--color--custom-white);
  padding: var(--wp--preset--spacing--20);
}
.bl_modal_header {
  align-items: flex-start;
  display: flex;
  gap: 0 var(--wp--preset--spacing--20);
  justify-content: space-between;
  margin-bottom: var(--wp--preset--spacing--20);
}
.bl_modal_title {
  color: var(--wp--preset--color--primary-dark);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
}
.bl_modal_close {
  background: var(--wp--preset--color--gray-40);
  margin-left: auto;
  margin-right: 0;
}
.bl_modal_icon.el_icon {
  height: var(--wp--preset--spacing--30);
  width: var(--wp--preset--spacing--30);
}
.bl_modal_icon.el_icon::before {
  font-size: var(--wp--preset--spacing--30);
}

.bl_dialog_container {
  background: var(--wp--preset--color--custom-white);
  padding: var(--wp--preset--spacing--20);
}
.bl_dialog_header {
  align-items: flex-start;
  display: flex;
  gap: 0 var(--wp--preset--spacing--20);
  justify-content: space-between;
  margin-bottom: var(--wp--preset--spacing--20);
}
.bl_dialog_title {
  color: var(--wp--preset--color--primary-dark);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
}
.bl_dialog_close {
  background: var(--wp--preset--color--gray-40);
  margin-left: auto;
  margin-right: 0;
}
.bl_dialog_icon.el_icon {
  height: var(--wp--preset--spacing--30);
  width: var(--wp--preset--spacing--30);
}
.bl_dialog_icon.el_icon::before {
  font-size: var(--wp--preset--spacing--30);
}
.bl_dialog[open] {
  animation: open 1s ease;
}
.bl_dialog::backdrop {
  background: rgba(var(--wp--preset--color--custom-black), 0.7);
}
.bl_dialog:has(figure) figure img {
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================================
  Module / Block / Breadcrumb
========================================================================== */
.bl_breadcrumb_list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--wp--preset--font-size--small);
  gap: var(--wp--preset--spacing--10);
  margin: var(--wp--preset--spacing--40) 0;
}
.bl_breadcrumb_list li {
  align-items: center;
  display: flex;
}
.bl_breadcrumb_list li:not(:first-child)::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  background-image: url("../assets/icons/google/chevron_right.svg");
  margin-right: var(--wp--preset--spacing--10);
}
.bl_breadcrumb_list a {
  border-bottom: 1px solid transparent;
}
@media (any-hover: hover) {
  .bl_breadcrumb_list a:hover:hover {
    border-color: currentcolor;
  }
}

/* ==========================================================================
  Module / Block / Pagination
========================================================================== */
.bl_pagination {
  padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--20);
}
.bl_pagination_title {
  margin-bottom: var(--wp--preset--spacing--20);
  text-align: center;
}
.bl_pagination_body {
  align-items: center;
  display: flex;
  gap: 0 var(--wp--preset--spacing--10);
  justify-content: center;
}
.bl_pagination .page-numbers, .bl_pagination_item {
  align-items: center;
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray-80);
  display: inline-flex;
  justify-content: center;
  line-height: var(--wp--preset--spacing--40);
  min-width: calc(var(--wp--preset--spacing--40) + 2px);
}
.bl_pagination .page-numbers .el_icon, .bl_pagination_item .el_icon {
  filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
  height: var(--wp--preset--spacing--40);
}
.bl_pagination .page-numbers:hover, .bl_pagination_item:hover, .bl_pagination .page-numbers:focus-visible, .bl_pagination_item:focus-visible {
  background: var(--wp--preset--color--primary-dark) !important;
  color: var(--wp--preset--color--white) !important;
}
.bl_pagination .page-numbers:hover .el_icon, .bl_pagination_item:hover .el_icon, .bl_pagination .page-numbers:focus-visible .el_icon, .bl_pagination_item:focus-visible .el_icon {
  filter: invert(89%) sepia(86%) saturate(0%) hue-rotate(257deg) brightness(105%) contrast(101%);
}
.bl_pagination .page-numbers.current, .bl_pagination .page-numbers:hover, .bl_pagination .page-numbers:focus-visible, .bl_pagination_item.is_dots, .bl_pagination_item.is_current {
  background: var(--wp--preset--color--primary-dark);
  color: var(--wp--preset--color--white);
}
.bl_pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
}
.bl_pagination .page-numbers.prev, .bl_pagination_item.is_prev, .bl_pagination .page-numbers.next, .bl_pagination_item.is_next {
  background: var(--wp--preset--color--primary);
  line-height: 1;
  margin: 0 var(--wp--preset--spacing--20);
}
.bl_pagination_text {
  display: inline-block;
  line-height: var(--wp--preset--spacing--40);
  padding: 0 0.5em;
}

/* ==========================================================================
  Module / Block / Post Navigation
========================================================================== */
.bl_postNav {
  border-top: 1px solid var(--wp--preset--color--gray-80);
  margin: var(--wp--preset--spacing--50) 0;
  padding: var(--wp--preset--spacing--40) 0;
}
.bl_postNav_links {
  align-items: center;
  display: flex;
  gap: 0 var(--wp--preset--spacing--10);
  justify-content: space-between;
  margin: 0 auto;
}
.bl_postNav_item a {
  align-items: center;
  border-bottom: 1px solid transparent;
  display: flex;
  font-weight: 700;
  gap: 0 var(--wp--preset--spacing--10);
}
.bl_postNav_item a:hover, .bl_postNav_item a:focus-visible {
  border-color: currentcolor;
}
.bl_postNav_item .el_icon {
  height: 1em;
  width: 1em;
  filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
  vertical-align: middle;
}

/* ==========================================================================
  Module / Block / Post List
========================================================================== */
.bl_vertPosts_item {
  font-size: var(--wp--preset--font-size--medium);
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  display: flex;
  flex-direction: column;
  gap: 0 var(--wp--preset--spacing--10);
  padding-top: var(--wp--preset--spacing--10);
}
.bl_vertPosts_item:first-child {
  border-top: 1px solid var(--wp--preset--color--gray-80);
}
.bl_vertPosts_term {
  flex-shrink: 0;
}
.bl_vertPosts_definition {
  flex: 1;
}
.bl_vertPosts_link {
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  padding: var(--wp--preset--spacing--10) 0;
  text-decoration: none;
  position: relative;
}
.bl_vertPosts_link::after {
  background: transparent;
  content: "";
  display: inline-block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 100%;
  transform: translateY(-0.8em);
  width: 100%;
}
.bl_vertPosts_link:hover::after, .bl_vertPosts_link:focus-visible::after {
  background: currentcolor;
}
@media screen and (min-width: 768.1px) {
  .bl_vertPosts__inline .bl_vertPosts_item {
    align-items: center;
    flex-direction: row;
    padding-top: 0;
  }
  .bl_vertPosts__inline .bl_vertPosts_link {
    padding-bottom: var(--wp--preset--spacing--20);
    padding-top: var(--wp--preset--spacing--20);
  }
}

/* ==========================================================================
  Module / Block / Banner
========================================================================== */
.bl_horizBtnList {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--40);
  justify-content: center;
  margin-top: var(--wp--preset--spacing--60);
}
@media screen and (max-width: 480px) {
  .bl_horizBtnList {
    flex-direction: column;
  }
}

.bl_vertBtnList {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
  justify-content: center;
  margin: var(--wp--preset--spacing--40) auto;
}

/* ==========================================================================
  Module / Block / Card
========================================================================== */
/* ==========================================================================
  Module / Element / Heading
========================================================================== */
.el_lv1_heading {
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--xx-large);
  margin-bottom: var(--wp--preset--spacing--60);
  text-align: center;
}

.el_lv2_heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--x-large);
  margin-bottom: var(--wp--preset--spacing--40);
}

.el_lv3_heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--large);
  margin-bottom: var(--wp--preset--spacing--20);
}

.el_lv4_heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--medium);
  margin-bottom: var(--wp--preset--spacing--20);
}

.el_lv5_heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--small);
  margin-bottom: var(--wp--preset--spacing--20);
}

.el_lv6_heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--small);
  margin-bottom: var(--wp--preset--spacing--20);
}

.el_heading__bg {
  background: var(--wp--preset--color--primary-dark);
  padding: var(--wp--preset--spacing--10);
}
.el_heading__underline {
  padding-bottom: 0.5em;
  position: relative;
  text-align: center;
}
.el_heading__underline::after {
  background: var(--wp--preset--color--primary);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 5em;
}
.el_heading__stripe {
  background: repeating-linear-gradient(-45deg, var(--wp--preset--color--primary-light), var(--wp--preset--color--primary-light) 3px, var(--wp--preset--color--white) 0, var(--wp--preset--color--white) 5px);
  padding: var(--wp--preset--spacing--10);
}
.el_heading__circle {
  padding-left: 0.5em;
  position: relative;
  z-index: 1;
}
.el_heading__circle::before {
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.5em;
  z-index: -1;
}
.el_heading__bdt {
  border-top: 2px solid var(--wp--preset--color--primary);
  padding-top: var(--wp--preset--spacing--10);
}
.el_heading__bdb {
  border-bottom: 2px solid var(--wp--preset--color--primary);
  padding-bottom: var(--wp--preset--spacing--10);
}
.el_heading__bdl {
  border-left: 5px solid var(--wp--preset--color--primary);
  padding-left: var(--wp--preset--spacing--10);
}
.el_heading__white {
  color: var(--wp--preset--color--white);
}
.el_heading__color {
  color: var(--wp--preset--color--primary-dark);
}
.el_heading__left {
  text-align: left;
}
.el_heading__center {
  text-align: center;
}
.el_heading__right {
  text-align: right;
}

/* ==========================================================================
  Module / Element / Button
========================================================================== */
.el_button {
  cursor: pointer;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  line-height: 1.5;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  background: var(--wp--preset--color--primary);
  border: 2px solid transparent;
  border-radius: 3em;
  min-width: 200px;
  padding: var(--wp--preset--spacing--20);
}
@media screen and (max-width: 480px) {
  .el_button {
    width: 100%;
  }
}
.el_button:hover, .el_button:focus-visible {
  background: var(--wp--preset--color--white);
  border-color: currentcolor;
  color: var(--wp--preset--color--primary-dark);
}
.el_button[aria-disabled=true], .el_button:disabled {
  background: var(--wp--preset--color--gray-40) !important;
  border-color: transparent;
  color: var(--wp--preset--color--gray-80) !important;
  filter: none;
}
.el_button[aria-disabled=true]::before, .el_button[aria-disabled=true]::after, .el_button:disabled::before, .el_button:disabled::after {
  color: currentcolor;
}
@media screen and (max-width: 768px) {
  .el_button {
    padding-bottom: var(--wp--preset--spacing--30);
    padding-top: var(--wp--preset--spacing--30);
  }
}
.el_button__large {
  min-width: 300px;
}
.el_button__small {
  min-width: auto;
  padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
}
.el_button__rev {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray-80);
  color: var(--wp--preset--color--custom-black);
}
.el_button__rev:hover, .el_button__rev:focus-visible {
  background: var(--wp--preset--color--primary-dark);
  border-color: transparent;
  color: var(--wp--preset--color--white);
}
.el_button__second {
  background: var(--wp--preset--color--secondary-dark);
  color: var(--wp--preset--color--white);
}
.el_button__second:hover, .el_button__second:focus-visible {
  color: var(--wp--preset--color--secondary-dark);
}
.el_button__cancel {
  background: var(--wp--preset--color--secondary);
}
.el_button__cancel:hover, .el_button__cancel:focus-visible {
  color: var(--wp--preset--color--custom-black);
}
.el_button__arrowLeft, .el_button__arrowRight {
  position: relative;
}
.el_button__arrowLeft::after, .el_button__arrowRight::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1.25em;
  width: 1.25em;
  filter: invert(89%) sepia(86%) saturate(0%) hue-rotate(257deg) brightness(105%) contrast(101%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.el_button__arrowLeft::after {
  background-image: url("../assets/icons/google/chevron_left.svg");
  left: var(--wp--preset--spacing--20);
}
.el_button__arrowRight::after {
  background-image: url("../assets/icons/google/chevron_right.svg");
  right: var(--wp--preset--spacing--20);
}

.el_beforeIconButton, .el_afterIconButton {
  border: 1px solid var(--wp--preset--color--gray-80);
  display: inline-flex;
  padding: var(--wp--preset--spacing--10);
  transition: all 0.5s;
}
.el_beforeIconButton::before, .el_beforeIconButton::after, .el_afterIconButton::before, .el_afterIconButton::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  color: var(--wp--preset--color--primary-dark);
}
.el_beforeIconButton:hover, .el_beforeIconButton:focus-visible, .el_afterIconButton:hover, .el_afterIconButton:focus-visible {
  background: var(--wp--preset--color--primary-dark);
  border-color: transparent;
  color: var(--wp--preset--color--white);
}
.el_beforeIconButton:hover::before, .el_beforeIconButton:hover::after, .el_beforeIconButton:focus-visible::before, .el_beforeIconButton:focus-visible::after, .el_afterIconButton:hover::before, .el_afterIconButton:hover::after, .el_afterIconButton:focus-visible::before, .el_afterIconButton:focus-visible::after {
  color: currentcolor;
}
.el_beforeIconButton[aria-disabled=true], .el_beforeIconButton:disabled, .el_afterIconButton[aria-disabled=true], .el_afterIconButton:disabled {
  background: var(--wp--preset--color--gray-40) !important;
  border-color: transparent;
  color: var(--wp--preset--color--gray-80) !important;
  filter: none;
}
.el_beforeIconButton[aria-disabled=true]::before, .el_beforeIconButton[aria-disabled=true]::after, .el_beforeIconButton:disabled::before, .el_beforeIconButton:disabled::after, .el_afterIconButton[aria-disabled=true]::before, .el_afterIconButton[aria-disabled=true]::after, .el_afterIconButton:disabled::before, .el_afterIconButton:disabled::after {
  color: currentcolor;
}

.el_beforeIconButton::before {
  margin-right: 0.25em;
}
.el_beforeIconButton__chevronLeft::before {
  background-image: url("../assets/icons/google/arrow_back.svg");
}
.el_beforeIconButton__search::before {
  background-image: url("../assets/icons/google/search.svg");
}

.el_afterIconButton::after {
  margin-left: 0.25em;
}
.el_afterIconButton__chevronRight::after {
  background-image: url("../assets/icons/google/arrow_forward.svg");
}
.el_afterIconButton__download::after {
  background-image: url("../assets/icons/google/download.svg");
}

/* ==========================================================================
  Module / Element / Button
========================================================================== */
.el_icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
}
.el_icon__chevronLeft {
  background-image: url("../assets/icons/google/chevron_left.svg");
  height: 1em;
  width: 1em;
}
.el_icon__chevronRight {
  background-image: url("../assets/icons/google/chevron_right.svg");
  height: 1em;
  width: 1em;
}
.el_icon__arrowLeft {
  background-image: url("../assets/icons/google/arrow_back.svg");
  height: 1em;
  width: 1em;
}
.el_icon__arrowRight {
  background-image: url("../assets/icons/google/arrow_forward.svg");
  height: 1em;
  width: 1em;
}

.el_beforeIcon,
.el_afterIcon {
  align-items: center;
  display: inline-flex;
  position: relative;
}
.el_beforeIcon[aria-disabled=true], .el_beforeIcon:disabled,
.el_afterIcon[aria-disabled=true],
.el_afterIcon:disabled {
  background: var(--wp--preset--color--gray-40) !important;
  border-color: transparent;
  color: var(--wp--preset--color--gray-80) !important;
  filter: none;
}
.el_beforeIcon[aria-disabled=true]::before, .el_beforeIcon[aria-disabled=true]::after, .el_beforeIcon:disabled::before, .el_beforeIcon:disabled::after,
.el_afterIcon[aria-disabled=true]::before,
.el_afterIcon[aria-disabled=true]::after,
.el_afterIcon:disabled::before,
.el_afterIcon:disabled::after {
  color: currentcolor;
}

.el_beforeIcon::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1.25em;
  width: 1.25em;
  color: var(--wp--preset--color--primary-dark);
  margin-right: 0.25em;
}
@media (any-hover: hover) {
  .el_beforeIcon:hover:hover::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: calc(100% - 1.25em);
    right: 0;
  }
}
.el_beforeIcon__chevronLeft::before {
  background-image: url("../assets/icons/google/chevron_left.svg");
}
@media (any-hover: hover) {
  .el_beforeIcon__chevronLeft:hover:hover::after {
    width: calc(100% - 0.75em);
  }
}
.el_beforeIcon__pdf::before {
  background-image: url("../assets/icons/google/picture_as_pdf.svg");
}

.el_afterIcon::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1.25em;
  width: 1.25em;
  color: var(--wp--preset--color--primary-dark);
  margin-left: 0.25em;
}
.el_afterIcon:hover::before, .el_afterIcon:focus-visible::before {
  background: currentcolor;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: calc(100% - 1.25em);
  left: 0;
}
.el_afterIcon__chevronRight::after {
  background-image: url("../assets/icons/google/chevron_right.svg");
}
.el_afterIcon__chevronRight:hover::before, .el_afterIcon__chevronRight:focus-visible::before {
  width: calc(100% - 0.75em);
}
.el_afterIcon__download::after {
  background-image: url("../assets/icons/google/download.svg");
}

.el_snsIcon {
  align-items: center;
  display: flex;
  justify-content: center;
}
.el_snsIcon::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
}
.el_snsIcon__twitter::before {
  background-image: url("../assets/icons/fontawesome/x-twitter.svg");
}
.el_snsIcon__instagram::before {
  background-image: url("../assets/icons/fontawesome/instagram.svg");
}
.el_snsIcon__facebook::before {
  background-image: url("../assets/icons/fontawesome/facebook.svg");
}

/* ==========================================================================
  Module / Element / Text
========================================================================== */
.el_text__small {
  font-size: 0.85em;
}
.el_text__left {
  text-align: left;
}
.el_text__center {
  text-align: center;
}
.el_text__right {
  text-align: right;
}
.el_text__hilight {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--secondary);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.2em;
}
.el_text__attention {
  font-weight: 700;
}
.el_text__warning {
  color: var(--wp--preset--color--warning);
  font-weight: 700;
}

/* ==========================================================================
  Module / Element / Label
========================================================================== */
.el_label {
  background: var(--wp--preset--color--primary-dark);
  border: 2px solid transparent;
  color: var(--wp--preset--color--white);
  display: inline-block;
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 700;
  line-height: 1;
  margin: 0 var(--wp--preset--spacing--10);
  padding: 0.3em 0.6em;
  vertical-align: baseline;
}
.el_label__new {
  background: var(--wp--preset--color--warning);
}
.el_label__attention {
  background: var(--wp--preset--color--warning);
}
.el_label__required {
  background: var(--wp--preset--color--warning);
}
.el_label__category {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--custom-black);
}

.el_roundedLabel {
  background: var(--wp--preset--color--primary);
  border: 2px solid transparent;
  border-radius: 9999px;
  color: var(--wp--preset--color--white);
  display: inline-block;
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 700;
  padding: 0.3em 0.6em;
}

a.el_label:hover {
  background: var(--wp--preset--color--custom-white);
  border-color: currentcolor;
  color: var(--wp--preset--color--primary-dark);
}

/* ==========================================================================
  Module / Element / Radio
========================================================================== */
label:has(.el_radio) {
  align-items: flex-start;
  cursor: pointer;
  display: inline-flex;
  line-height: 1.5;
  padding-left: 1.3em;
}

.el_radio {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.el_radio:checked + span::before {
  background: var(--wp--preset--color--primary-dark);
  border-color: var(--wp--preset--color--primary-dark);
  color: var(--wp--preset--color--white);
}
.el_radio:checked + span::after {
  transform: translateY(-50%) scale(0.4);
}
.el_radio:disabled + span {
  opacity: 0.5;
}
.el_radio:disabled + span::before {
  background: var(--wp--preset--color--gray-40);
}
.el_radio:disabled + span::after {
  content: none;
}
.el_radio + span {
  margin-bottom: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}
.el_radio + span::before {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray-80);
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 1em;
  left: -1.3em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}
.el_radio + span::after {
  background: var(--wp--preset--color--white);
  border-radius: 50%;
  content: "";
  display: block;
  height: 1em;
  left: -1.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 1em;
}

/* ==========================================================================
  Module / Element / Checkbox
========================================================================== */
label:has(.el_checkbox) {
  align-items: flex-start;
  cursor: pointer;
  display: inline-flex;
  line-height: 1.5;
  padding-left: 1.3em;
}

.el_checkbox {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.el_checkbox:checked + span::before {
  background: var(--wp--preset--color--primary-dark);
  border-color: var(--wp--preset--color--primary-dark);
  color: var(--wp--preset--color--white);
}
.el_checkbox:checked + span::after {
  transform: translateY(-50%) scale(0.9);
}
.el_checkbox:disabled + span {
  opacity: 0.5;
}
.el_checkbox:disabled + span::before {
  background: var(--wp--preset--color--gray-40);
}
.el_checkbox:disabled + span::after {
  content: none;
}
.el_checkbox + span {
  margin-bottom: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}
.el_checkbox + span::before {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray-80);
  border-radius: 4px;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 1em;
  left: -1.3em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}
.el_checkbox + span::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  background-image: url("../assets/icons/google/check.svg");
  display: block;
  filter: invert(89%) sepia(86%) saturate(0%) hue-rotate(257deg) brightness(105%) contrast(101%);
  font-size: 1em;
  height: 1em;
  left: -1.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 1em;
}

/* ==========================================================================
  Module / Element / PageTop
========================================================================== */
.el_pagetop {
  align-items: center;
  background: var(--wp--preset--color--secondary);
  border-radius: 50%;
  display: flex;
  height: 3.5rem;
  justify-content: center;
  transition: all 0.5s;
  width: 3.5rem;
}
.el_pagetop .el_pagetop_icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-image: url("../assets/icons/google/arrow_upward.svg");
  filter: invert(4%) sepia(40%) saturate(22%) hue-rotate(344deg) brightness(99%) contrast(77%);
}
.el_pagetop:hover, .el_pagetop:focus-visible {
  background: var(--wp--preset--color--secondary-dark);
}
.el_pagetop:hover .el_pagetop_icon, .el_pagetop:focus-visible .el_pagetop_icon {
  filter: invert(89%) sepia(86%) saturate(0%) hue-rotate(257deg) brightness(105%) contrast(101%);
}

.bl_card {
  background: var(--wp--preset--color--custom-white);
  border: 6px solid var(--wp--preset--color--primary);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--10);
  height: 100%;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.bl_card_link {
  color: var(--wp--preset--color--custom-black) !important;
  display: block;
  font-weight: 400 !important;
  height: 100%;
  text-decoration: none;
}
@media (any-hover: hover) {
  .bl_card_link figure {
    overflow: hidden;
  }
  .bl_card_link img {
    transition: all 0.5s;
  }
  .bl_card_link:hover img {
    transform: scale(1.1);
  }
}
.bl_card_link:hover .bl_card, .bl_card_link:focus-visible .bl_card {
  border-color: var(--wp--preset--color--secondary);
}
.bl_card_link:hover .bl_tag__item, .bl_card_link:focus-visible .bl_tag__item {
  background-color: var(--wp--preset--color--secondary);
}
.bl_card_link .bl_tag__list {
  padding: 0 var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
}
.bl_card_body {
  flex: 1;
  padding: var(--wp--preset--spacing--20);
}
.bl_card_title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
  -webkit-line-clamp: 1;
  margin: 0 0 var(--wp--preset--spacing--10);
  overflow: hidden;
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--large);
  margin-bottom: var(--wp--preset--spacing--20);
}
.bl_card_image {
  margin: 0;
  order: -1;
  text-align: center;
}
.bl_card_image img {
  aspect-ratio: 8/5;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.bl_card_text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-height: 1.5;
  overflow: hidden;
}
.bl_card_label {
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .bl_card__mdHoriz {
    align-items: flex-start;
    flex-direction: row;
  }
  .bl_card__mdHoriz .bl_card_image {
    flex-basis: 80px;
    flex-shrink: 0;
  }
}

.bl_horizCard {
  background: var(--wp--preset--color--custom-white);
  border: 2px solid var(--wp--preset--color--primary);
  display: flex;
  gap: var(--wp--preset--spacing--10);
  padding: var(--wp--preset--spacing--10);
}
.bl_horizCard_link {
  display: block;
  text-decoration: none;
  transition: all 0.5s;
}
.bl_horizCard_link:hover .bl_horizCard, .bl_horizCard_link:focus-visible .bl_horizCard {
  border-color: var(--wp--preset--color--secondary);
}
.bl_horizCard_title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  -webkit-line-clamp: 1;
  margin: 0 0 var(--wp--preset--spacing--10);
  overflow: hidden;
}
.bl_horizCard_image {
  flex-basis: 120px;
  flex-shrink: 0;
  margin: 0 !important;
  order: -1;
}
.bl_horizCard_image img {
  aspect-ratio: 8/5;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.bl_horizCard_text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: var(--wp--preset--font-size--small);
  -webkit-line-clamp: 2;
  line-height: 1.5;
  overflow: hidden;
}
.bl_horizCard__imgSquare .bl_horizCard_image {
  flex-basis: 80px;
}
.bl_horizCard__imgSquare .bl_horizCard_image img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .bl_horizCard_image {
    flex-basis: 80px;
  }
}

/* ==========================================================================
  Module / Block / Banner
========================================================================== */
.bl_banner {
  display: flex;
  gap: var(--wp--preset--spacing--10);
}
.bl_banner a, .bl_banner img {
  display: block;
}
@media (any-hover: hover) {
  .bl_banner a img {
    opacity: 1;
    transition: all 0.5s;
  }
  .bl_banner a:hover img {
    opacity: 0.7;
  }
}
.bl_banner__side {
  flex-direction: column;
}

/* ==========================================================================
  Module / Block / Media
========================================================================== */
.bl_media {
  display: flex;
  gap: var(--wp--preset--spacing--20);
  margin-bottom: var(--wp--preset--spacing--40);
}
@media screen and (max-width: 480px) {
  .bl_media {
    flex-direction: column;
  }
  .bl_media_image {
    order: -1;
  }
}
@media screen and (min-width: 480.1px) {
  .bl_media_body {
    flex: 1;
  }
  .bl_media_image {
    flex-basis: clamp(180px, 30%, 300px);
  }
}
.bl_media__rev .bl_media_image {
  order: -1;
}

.bl_halfMedia {
  display: flex;
  gap: var(--wp--preset--spacing--20);
  margin-bottom: var(--wp--preset--spacing--40);
}
@media screen and (max-width: 480px) {
  .bl_halfMedia {
    flex-direction: column;
  }
  .bl_halfMedia_image {
    order: -1;
  }
}
@media screen and (min-width: 480.1px) {
  .bl_halfMedia_body, .bl_halfMedia_image {
    flex-basis: 50%;
  }
}
.bl_halfMedia__rev .bl_halfMedia_image {
  order: -1;
}

/* ==========================================================================
  Module / Block / Tab
========================================================================== */
.bl_tab_list {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
.bl_tab_item {
  border: 1px solid var(--wp--preset--color--gray-80);
  border-bottom-width: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--10);
}
.bl_tab_item:hover, .bl_tab_item:focus-visible {
  background: var(--wp--preset--color--primary-light);
}
.bl_tab_item[aria-selected=true] {
  background: var(--wp--preset--color--primary-dark);
  color: var(--wp--preset--color--white);
}
.bl_tab_panel {
  border: 1px solid var(--wp--preset--color--gray-80);
  padding: var(--wp--preset--spacing--20);
}

/* ==========================================================================
  Module / Block / FAQ
========================================================================== */
.bl_faq_item {
  border-bottom: 1px solid var(--wp--preset--color--gray-80);
  margin-bottom: var(--wp--preset--spacing--10);
}
.bl_faq_q, .bl_faq_a {
  align-items: flex-start;
  display: flex;
  gap: var(--wp--preset--spacing--10);
  justify-content: space-between;
}
.bl_faq_q_icon, .bl_faq_a_icon {
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  color: var(--wp--preset--color--white);
  flex-shrink: 0;
  line-height: 2em;
  text-align: center;
  width: 2em;
}
.bl_faq_q {
  padding: var(--wp--preset--spacing--10) 0;
  width: 100%;
}
.bl_faq_q_text {
  flex: 1;
  line-height: 1.5;
  padding: 0.25em 0 0.5em;
}
.bl_faq_a {
  padding: var(--wp--preset--spacing--10) 0;
}
.bl_faq_a_icon {
  background: var(--wp--preset--color--secondary);
}
.bl_faq_a_body {
  flex: 1;
}
.bl_faq .is_details > summary {
  cursor: pointer;
  position: relative;
}
.bl_faq .is_details > summary:has(.is_details_icon) {
  padding-right: 1em;
}
.bl_faq .is_details_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bl_faq .is_details_icon::after {
  background-image: url("../assets/icons/google/expand_more.svg");
}
.bl_faq .is_details[open] .is_details_icon::after {
  background-image: url("../assets/icons/google/expand_less.svg");
}
.bl_faq .js_accordion_trigger {
  position: relative;
}
.bl_faq .js_accordion_trigger:has(.js_accordion_icon) {
  padding-right: 1em;
}
.bl_faq .js_accordion_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bl_faq .js_accordion_icon::after {
  background-image: url("../assets/icons/google/expand_more.svg");
}
.bl_faq .js_accordion[open] .js_accordion_icon::after {
  background-image: url("../assets/icons/google/expand_less.svg");
}
.bl_faq .is_details.bl_faq_item {
  margin-bottom: 0;
}
.bl_faq .is_details .bl_faq_a {
  border-top: 1px solid var(--wp--preset--color--gray-80);
}

/* ==========================================================================
  Module / Block / Form
========================================================================== */
.bl_form {
  border-top: 1px solid rgba(var(--wp--preset--color--primary-dark), 0.4);
  margin-top: var(--wp--preset--spacing--40);
}
.bl_form_item {
  border-bottom: 1px solid rgba(var(--wp--preset--color--primary-dark), 0.4);
  gap: var(--wp--preset--spacing--20);
  padding: var(--wp--preset--spacing--20) 0;
  position: relative;
}
.bl_form_item dt,
.bl_form_item dd {
  line-height: 1.5;
}
.bl_form_term {
  cursor: default !important;
  font-weight: 700;
}
.bl_form_group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--20);
}
.bl_form_input, .bl_form_textarea {
  background: var(--wp--preset--color--custom-white);
  border: 1px solid var(--wp--preset--color--gray-80);
  border-radius: 4px;
  padding: var(--wp--preset--spacing--10);
  width: 100%;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.16);
}
.bl_form_textarea {
  line-height: 1.5;
}
.bl_form_select {
  display: inline-block;
  position: relative;
}
.bl_form_select::after {
  border-color: var(--wp--preset--color--primary-dark) transparent transparent;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  display: inline-block;
  height: 0.4em;
  pointer-events: none;
  position: absolute;
  right: var(--wp--preset--spacing--10);
  top: 1.25em;
  width: 0.4em;
}
.bl_form_select select {
  background: var(--wp--preset--color--custom-white);
  border: 1px solid var(--wp--preset--color--gray-80);
  border-radius: 4px;
  cursor: pointer;
  padding: var(--wp--preset--spacing--10);
  padding-right: calc(var(--wp--preset--spacing--10) + 1em);
  text-overflow: ellipsis;
}
.bl_form_select option:disabled {
  background: var(--wp--preset--color--gray-40);
}
.bl_form_list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--20);
  line-height: 1;
}
.bl_form_list li {
  margin-top: 0 !important;
  padding-left: 0 !important;
}
.bl_form_list li::before {
  display: none !important;
}
.bl_form_submit {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
  margin-top: var(--wp--preset--spacing--40);
}
.bl_form_link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .bl_form_link:hover {
    text-decoration: none;
  }
}
@container (max-width: 768px) {
  .bl_form_item {
    display: flex;
    flex-direction: column;
  }
}
@container (min-width: 768.1px) {
  .bl_form_item {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .bl_form_item:not(.bl_form_item__multiple) {
    align-items: center;
  }
}
.bl_form_item__name .bl_form_label {
  flex-basis: 2em;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}
@container (min-width: 480.1px) {
  .bl_form_item__name .bl_form_input {
    max-width: calc((100% - 2em - var(--wp--preset--spacing--20) * 5.5) / 2);
  }
}
.bl_form_item__zip .bl_form_input {
  width: 8em;
}
.bl_form_item__zip .bl_form_input {
  width: 8em;
}
.bl_form_item__email .bl_form_group {
  align-items: flex-start;
  flex-direction: column;
}
.bl_form_item__tel .bl_form_input {
  width: 12em;
}

/* ==========================================================================
  Module / Block / Search
========================================================================== */
.bl_search {
  align-items: center;
  background: var(--wp--preset--color--primary-light);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--20);
  justify-content: space-between;
  padding: var(--wp--preset--spacing--40);
}
.bl_search_label {
  color: var(--wp--preset--color--primary-dark);
}
.bl_search_body {
  align-items: center;
  display: flex;
  flex: 1;
  gap: var(--wp--preset--spacing--20);
  justify-content: center;
}
.bl_search_word {
  background: var(--wp--preset--color--custom-white);
  border: 1px solid var(--wp--preset--color--gray-80);
  border-radius: 4px;
  flex: 1;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.8;
  padding: var(--wp--preset--spacing--10);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.16);
}
.bl_search_button {
  letter-spacing: 0.25em;
  min-width: auto;
  padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
  text-indent: 0.25em;
  white-space: nowrap;
}
.bl_search_button:hover, .bl_search_button:focus-visible {
  background: var(--wp--preset--color--white);
  border-color: currentcolor;
  color: var(--wp--preset--color--primary-dark);
}
@media screen and (max-width: 480px) {
  .bl_search {
    padding: var(--wp--preset--spacing--20);
  }
  .bl_search, .bl_search_body {
    flex-direction: column;
  }
  .bl_search_body, .bl_search_word {
    width: 100%;
  }
  .bl_search_button {
    margin-top: var(--wp--preset--spacing--20);
    max-width: 168px;
    padding: var(--wp--preset--spacing--30);
  }
}

/* ==========================================================================
  Module / Block / Hero
========================================================================== */
.bl_hero {
  position: relative;
  line-height: 1;
}
.bl_hero_body {
  left: 50%;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  height: 70%;
}
.bl_hero_text {
  display: block;
  aspect-ratio: 754/643;
  height: 100%;
}
.bl_hero_text img {
  -o-object-fit: contain;
     object-fit: contain;
}
.bl_hero a {
  display: block;
}
.bl_hero img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
.bl_hero .swiper {
  width: 100%;
}
.bl_hero .swiper .swiper-button-next,
.bl_hero .swiper .swiper-button-prev {
  color: var(--wp--preset--color--white);
}
.bl_hero .swiper .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
.bl_hero .swiper .swiper-pagination-bullet-active {
  background: var(--wp--preset--color--white);
}
.bl_hero .swiper .swiper-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_hero .swiper-button-next,
  .bl_hero .swiper-button-prev {
    display: none;
  }
}

/* ==========================================================================
  Module / Block / SNS
========================================================================== */
.bl_sns {
  display: flex;
  gap: var(--wp--preset--spacing--20);
}
.bl_sns_icon {
  background: var(--wp--preset--color--secondary);
  border-radius: 50%;
  height: 3.5rem;
  transition: all 0.5s;
  width: 3.5rem;
}
.bl_sns a:hover .bl_sns_icon, .bl_sns a:focus-visible .bl_sns_icon {
  background: var(--wp--preset--color--secondary-dark);
  color: var(--wp--preset--color--white);
}
.bl_sns a:hover .bl_sns_icon::before, .bl_sns a:focus-visible .bl_sns_icon::before {
  filter: invert(89%) sepia(86%) saturate(0%) hue-rotate(257deg) brightness(105%) contrast(101%);
}
@media screen and (max-width: 768px) {
  .bl_sns {
    justify-content: center;
    margin: var(--wp--preset--spacing--40) auto;
  }
}

/* ==========================================================================
  Module / Block / Tag
========================================================================== */
.bl_tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--10);
}
.bl_tag__item {
  color: var(--wp--preset--color--custom-black);
  white-space: nowrap;
}
.bl_tag__item:is(a):hover, .bl_tag__item:is(a):focus-visible {
  background: var(--wp--preset--color--white);
  border-color: currentcolor;
  color: var(--wp--preset--color--primary-dark);
}

/* ==========================================================================
  Helper /  Mediaquery
========================================================================== */
.lg_only {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .lg_only {
    display: none !important;
  }
}

.md_only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .md_only {
    display: block !important;
  }
}

/* ==========================================================================
  Helper /  Mediaquery
========================================================================== */
.clearfix {
  display: block;
}
.clearfix::before, .clearfix::after {
  clear: both;
  content: "";
  display: block;
}

/* ==========================================================================
  Helper /  Accessibility
========================================================================== */
.visually_hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ==========================================================================
  Helper /  Spacing
========================================================================== */
.hp_mt1 {
  margin-top: calc(1 * var(--wp--preset--spacing--10));
}

.hp_mt2 {
  margin-top: calc(2 * var(--wp--preset--spacing--10));
}

.hp_mt3 {
  margin-top: calc(3 * var(--wp--preset--spacing--10));
}

.hp_mt4 {
  margin-top: calc(4 * var(--wp--preset--spacing--10));
}

.hp_mt5 {
  margin-top: calc(5 * var(--wp--preset--spacing--10));
}

.hp_mt6 {
  margin-top: calc(6 * var(--wp--preset--spacing--10));
}

.hp_mt7 {
  margin-top: calc(7 * var(--wp--preset--spacing--10));
}

.hp_mt8 {
  margin-top: calc(8 * var(--wp--preset--spacing--10));
}

.hp_mt9 {
  margin-top: calc(9 * var(--wp--preset--spacing--10));
}

.hp_mb1 {
  margin-bottom: calc(1 * var(--wp--preset--spacing--10));
}

.hp_mb2 {
  margin-bottom: calc(2 * var(--wp--preset--spacing--10));
}

.hp_mb3 {
  margin-bottom: calc(3 * var(--wp--preset--spacing--10));
}

.hp_mb4 {
  margin-bottom: calc(4 * var(--wp--preset--spacing--10));
}

.hp_mb5 {
  margin-bottom: calc(5 * var(--wp--preset--spacing--10));
}

.hp_mb6 {
  margin-bottom: calc(6 * var(--wp--preset--spacing--10));
}

.hp_mb7 {
  margin-bottom: calc(7 * var(--wp--preset--spacing--10));
}

.hp_mb8 {
  margin-bottom: calc(8 * var(--wp--preset--spacing--10));
}

.hp_mb9 {
  margin-bottom: calc(9 * var(--wp--preset--spacing--10));
}

.hp_ml1 {
  margin-left: calc(1 * var(--wp--preset--spacing--10));
}

.hp_ml2 {
  margin-left: calc(2 * var(--wp--preset--spacing--10));
}

.hp_ml3 {
  margin-left: calc(3 * var(--wp--preset--spacing--10));
}

.hp_ml4 {
  margin-left: calc(4 * var(--wp--preset--spacing--10));
}

.hp_ml5 {
  margin-left: calc(5 * var(--wp--preset--spacing--10));
}

.hp_ml6 {
  margin-left: calc(6 * var(--wp--preset--spacing--10));
}

.hp_ml7 {
  margin-left: calc(7 * var(--wp--preset--spacing--10));
}

.hp_ml8 {
  margin-left: calc(8 * var(--wp--preset--spacing--10));
}

.hp_ml9 {
  margin-left: calc(9 * var(--wp--preset--spacing--10));
}

.hp_mr1 {
  margin-right: calc(1 * var(--wp--preset--spacing--10));
}

.hp_mr2 {
  margin-right: calc(2 * var(--wp--preset--spacing--10));
}

.hp_mr3 {
  margin-right: calc(3 * var(--wp--preset--spacing--10));
}

.hp_mr4 {
  margin-right: calc(4 * var(--wp--preset--spacing--10));
}

.hp_mr5 {
  margin-right: calc(5 * var(--wp--preset--spacing--10));
}

.hp_mr6 {
  margin-right: calc(6 * var(--wp--preset--spacing--10));
}

.hp_mr7 {
  margin-right: calc(7 * var(--wp--preset--spacing--10));
}

.hp_mr8 {
  margin-right: calc(8 * var(--wp--preset--spacing--10));
}

.hp_mr9 {
  margin-right: calc(9 * var(--wp--preset--spacing--10));
}

.hp_mt10 {
  margin-top: 10px;
}

.hp_mt20 {
  margin-top: 20px;
}

.hp_mt30 {
  margin-top: 30px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_mt50 {
  margin-top: 50px;
}

.hp_mt60 {
  margin-top: 60px;
}

.hp_mt70 {
  margin-top: 70px;
}

.hp_mt80 {
  margin-top: 80px;
}

.hp_mt90 {
  margin-top: 90px;
}

.hp_mt100 {
  margin-top: 100px;
}

.hp_mb10 {
  margin-bottom: 10px;
}

.hp_mb20 {
  margin-bottom: 20px;
}

.hp_mb30 {
  margin-bottom: 30px;
}

.hp_mb40 {
  margin-bottom: 40px;
}

.hp_mb50 {
  margin-bottom: 50px;
}

.hp_mb60 {
  margin-bottom: 60px;
}

.hp_mb70 {
  margin-bottom: 70px;
}

.hp_mb80 {
  margin-bottom: 80px;
}

.hp_mb90 {
  margin-bottom: 90px;
}

.hp_mb100 {
  margin-bottom: 100px;
}

.hp_ml10 {
  margin-left: 10px;
}

.hp_ml20 {
  margin-left: 20px;
}

.hp_ml30 {
  margin-left: 30px;
}

.hp_ml40 {
  margin-left: 40px;
}

.hp_ml50 {
  margin-left: 50px;
}

.hp_ml60 {
  margin-left: 60px;
}

.hp_ml70 {
  margin-left: 70px;
}

.hp_ml80 {
  margin-left: 80px;
}

.hp_ml90 {
  margin-left: 90px;
}

.hp_ml100 {
  margin-left: 100px;
}

.hp_mr10 {
  margin-right: 10px;
}

.hp_mr20 {
  margin-right: 20px;
}

.hp_mr30 {
  margin-right: 30px;
}

.hp_mr40 {
  margin-right: 40px;
}

.hp_mr50 {
  margin-right: 50px;
}

.hp_mr60 {
  margin-right: 60px;
}

.hp_mr70 {
  margin-right: 70px;
}

.hp_mr80 {
  margin-right: 80px;
}

.hp_mr90 {
  margin-right: 90px;
}

.hp_mr100 {
  margin-right: 100px;
}

.hp_pt1 {
  padding-top: calc(1 * var(--wp--preset--spacing--10));
}

.hp_pt2 {
  padding-top: calc(2 * var(--wp--preset--spacing--10));
}

.hp_pt3 {
  padding-top: calc(3 * var(--wp--preset--spacing--10));
}

.hp_pt4 {
  padding-top: calc(4 * var(--wp--preset--spacing--10));
}

.hp_pt5 {
  padding-top: calc(5 * var(--wp--preset--spacing--10));
}

.hp_pt6 {
  padding-top: calc(6 * var(--wp--preset--spacing--10));
}

.hp_pt7 {
  padding-top: calc(7 * var(--wp--preset--spacing--10));
}

.hp_pt8 {
  padding-top: calc(8 * var(--wp--preset--spacing--10));
}

.hp_pt9 {
  padding-top: calc(9 * var(--wp--preset--spacing--10));
}

.hp_pt1 {
  padding-bottom: calc(1 * var(--wp--preset--spacing--10));
}

.hp_pt2 {
  padding-bottom: calc(2 * var(--wp--preset--spacing--10));
}

.hp_pt3 {
  padding-bottom: calc(3 * var(--wp--preset--spacing--10));
}

.hp_pt4 {
  padding-bottom: calc(4 * var(--wp--preset--spacing--10));
}

.hp_pt5 {
  padding-bottom: calc(5 * var(--wp--preset--spacing--10));
}

.hp_pt6 {
  padding-bottom: calc(6 * var(--wp--preset--spacing--10));
}

.hp_pt7 {
  padding-bottom: calc(7 * var(--wp--preset--spacing--10));
}

.hp_pt8 {
  padding-bottom: calc(8 * var(--wp--preset--spacing--10));
}

.hp_pt9 {
  padding-bottom: calc(9 * var(--wp--preset--spacing--10));
}

.hp_pl1 {
  padding-left: calc(1 * var(--wp--preset--spacing--10));
}

.hp_pl2 {
  padding-left: calc(2 * var(--wp--preset--spacing--10));
}

.hp_pl3 {
  padding-left: calc(3 * var(--wp--preset--spacing--10));
}

.hp_pl4 {
  padding-left: calc(4 * var(--wp--preset--spacing--10));
}

.hp_pl5 {
  padding-left: calc(5 * var(--wp--preset--spacing--10));
}

.hp_pl6 {
  padding-left: calc(6 * var(--wp--preset--spacing--10));
}

.hp_pl7 {
  padding-left: calc(7 * var(--wp--preset--spacing--10));
}

.hp_pl8 {
  padding-left: calc(8 * var(--wp--preset--spacing--10));
}

.hp_pl9 {
  padding-left: calc(9 * var(--wp--preset--spacing--10));
}

.hp_pr1 {
  padding-right: calc(1 * var(--wp--preset--spacing--10));
}

.hp_pr2 {
  padding-right: calc(2 * var(--wp--preset--spacing--10));
}

.hp_pr3 {
  padding-right: calc(3 * var(--wp--preset--spacing--10));
}

.hp_pr4 {
  padding-right: calc(4 * var(--wp--preset--spacing--10));
}

.hp_pr5 {
  padding-right: calc(5 * var(--wp--preset--spacing--10));
}

.hp_pr6 {
  padding-right: calc(6 * var(--wp--preset--spacing--10));
}

.hp_pr7 {
  padding-right: calc(7 * var(--wp--preset--spacing--10));
}

.hp_pr8 {
  padding-right: calc(8 * var(--wp--preset--spacing--10));
}

.hp_pr9 {
  padding-right: calc(9 * var(--wp--preset--spacing--10));
}

.hp_pt10 {
  padding-top: 10px;
}

.hp_pt20 {
  padding-top: 20px;
}

.hp_pt30 {
  padding-top: 30px;
}

.hp_pt40 {
  padding-top: 40px;
}

.hp_pt50 {
  padding-top: 50px;
}

.hp_pt60 {
  padding-top: 60px;
}

.hp_pt70 {
  padding-top: 70px;
}

.hp_pt80 {
  padding-top: 80px;
}

.hp_pt90 {
  padding-top: 90px;
}

.hp_pt100 {
  padding-top: 100px;
}

.hp_pb10 {
  padding-bottom: 10px;
}

.hp_pb20 {
  padding-bottom: 20px;
}

.hp_pb30 {
  padding-bottom: 30px;
}

.hp_pb40 {
  padding-bottom: 40px;
}

.hp_pb50 {
  padding-bottom: 50px;
}

.hp_pb60 {
  padding-bottom: 60px;
}

.hp_pb70 {
  padding-bottom: 70px;
}

.hp_pb80 {
  padding-bottom: 80px;
}

.hp_pb90 {
  padding-bottom: 90px;
}

.hp_pb100 {
  padding-bottom: 100px;
}

.hp_pl10 {
  padding-left: 10px;
}

.hp_pl20 {
  padding-left: 20px;
}

.hp_pl30 {
  padding-left: 30px;
}

.hp_pl40 {
  padding-left: 40px;
}

.hp_pl50 {
  padding-left: 50px;
}

.hp_pl60 {
  padding-left: 60px;
}

.hp_pl70 {
  padding-left: 70px;
}

.hp_pl80 {
  padding-left: 80px;
}

.hp_pl90 {
  padding-left: 90px;
}

.hp_pl100 {
  padding-left: 100px;
}

.hp_pr10 {
  padding-right: 10px;
}

.hp_pr20 {
  padding-right: 20px;
}

.hp_pr30 {
  padding-right: 30px;
}

.hp_pr40 {
  padding-right: 40px;
}

.hp_pr50 {
  padding-right: 50px;
}

.hp_pr60 {
  padding-right: 60px;
}

.hp_pr70 {
  padding-right: 70px;
}

.hp_pr80 {
  padding-right: 80px;
}

.hp_pr90 {
  padding-right: 90px;
}

.hp_pr100 {
  padding-right: 100px;
}

/* ==========================================================================
  Helper / Align
========================================================================== */
.hp_tac {
  text-align: center !important;
}

.hp_tal {
  text-align: left !important;
}

.hp_tar {
  text-align: right !important;
}

.hp_centering {
  align-items: center;
  display: flex;
  justify-content: center;
}

.hp_center {
  display: flex;
  justify-content: center;
}

.hp_left {
  display: flex;
  justify-content: flex-start;
}

.hp_right {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
  Helper / Background
========================================================================== */
.hp_bg__primary {
  background: var(--wp--preset--color--primary-light);
}
.hp_bg__secondary {
  background: var(--wp--preset--color--secondary-light);
}
.hp_bg__gray {
  background: var(--wp--preset--color--gray-80);
  color: var(--wp--preset--color--white);
}
.hp_bg__lightGray {
  background: var(--wp--preset--color--gray-40);
}

/* ==========================================================================
  Helper / Border
========================================================================== */
.hp_border__primary {
  border-color: var(--wp--preset--color--primary);
}
.hp_border__secondary {
  border-color: var(--wp--preset--color--secondary);
}
.hp_border__gray {
  border-color: var(--wp--preset--color--gray-80);
}
.hp_border__lightGray {
  border-color: var(--wp--preset--color--gray-40);
}

/* ==========================================================================
  Unique / Home
========================================================================== */
.hp_bg__gray .un_home_title {
  color: var(--wp--preset--color--white);
}
.un_home_section {
  padding: var(--wp--preset--spacing--50) 0;
}
.un_home_section_header {
  margin-bottom: var(--wp--preset--spacing--50);
  text-align: center;
}
.un_home_section_header .el_heading__circle {
  display: inline-block;
}
.un_home_text {
  margin-top: 1em;
}
.un_home_section.hp_bg__secondary .bl_vertPosts_item {
  border-color: rgba(var(--wp--preset--color--secondary-dark), 0.4);
}

/* ==========================================================================
  Unique / Entry
========================================================================== */
.un_entry_header, .un_entry_footer {
  margin: var(--wp--preset--spacing--40) 0;
}
.un_entry_time {
  font-size: var(--wp--preset--font-size--small);
  text-align: right;
}
.un_entry_title {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--x-large);
  margin-bottom: var(--wp--preset--spacing--40);
  padding-left: 0.5em;
  position: relative;
  z-index: 1;
  margin: var(--wp--preset--spacing--40) 0;
}
.un_entry_title::before {
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.5em;
  z-index: -1;
}
.un_entry_section:not(:first-of-type) {
  margin: var(--wp--preset--spacing--50) 0;
}
.un_entry_tag {
  margin-top: var(--wp--preset--spacing--20);
}

/* ==========================================================================
  Unique / Entry
========================================================================== */
.un_page_title {
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--wp--preset--font-family--noto-serif-jp);
  font-size: var(--wp--preset--font-size--xx-large);
  margin-bottom: var(--wp--preset--spacing--60);
  text-align: center;
}
.un_page_section:not(:first-of-type) {
  margin: var(--wp--preset--spacing--50) 0;
}

/* ==========================================================================
  Unique / Search
========================================================================== */
.un_search_header {
  margin-bottom: var(--wp--preset--spacing--60);
}
.un_search_section:not(:first-of-type) {
  margin: var(--wp--preset--spacing--50) 0;
}
@media screen and (min-width: 768.1px) {
  .un_search_article {
    margin-bottom: var(--wp--preset--spacing--40);
  }
}
.un_search_text {
  margin-top: 1em;
}
.un_search_url {
  display: inline-block;
  font-weight: 700;
}
.un_search_link .un_search_url {
  border-bottom: 1px solid currentcolor;
}
@media (any-hover: hover) {
  .un_search_link:hover:hover .un_search_url {
    border-color: transparent;
  }
}
.un_search .bl_search {
  background: var(--wp--preset--color--secondary-light);
  border: 1px solid var(--wp--preset--color--secondary);
  padding-bottom: var(--wp--preset--spacing--40);
  padding-top: var(--wp--preset--spacing--40);
}
.un_search .el_button {
  background: var(--wp--preset--color--secondary-dark);
  color: var(--wp--preset--color--white);
}
.un_search .el_button:hover, .un_search .el_button:focus-visible {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary-dark);
}

/* ==========================================================================
  Program / Drawer
========================================================================== */
.js_drawer_bg, .js_drawer_body {
  left: -100%;
  opacity: 0;
  position: fixed;
  top: 0;
}
.js_drawer_bg {
  z-index: 666;
}
.js_drawer_body {
  transition: all 0.5s;
  z-index: 777;
}
.js_drawer[aria-hidden=false] .js_drawer_bg, .js_drawer[aria-hidden=false] .js_drawer_body {
  left: 0;
  opacity: 1;
}

/* ==========================================================================
  Program / Mobile Menu
========================================================================== */
@media screen and (max-width: 768px) {
  .js_mobileMenu_label {
    display: none;
  }
  .js_mobileMenu_trigger::after {
    background-image: url("../assets/icons/google/expand_more.svg");
  }
  .js_mobileMenu_trigger.is_active::after {
    background-image: url("../assets/icons/google/expand_less.svg");
  }
}
@media screen and (min-width: 768.1px) {
  .js_mobileMenu_trigger {
    display: none;
  }
}

/* ==========================================================================
  Program / Easy FancyBox
========================================================================== */
#fancybox-content {
  border-width: var(--wp--preset--spacing--10) !important;
}
@media screen and (min-width: 768.1px) {
  #fancybox-content {
    border-width: var(--wp--preset--spacing--20) !important;
  }
}
#fancybox-close.fancy-ico span {
  background: var(--wp--preset--color--primary);
  border: 0;
  height: 32px;
  left: 4px;
  top: 4px;
  transition: none;
  width: 32px;
}
#fancybox-close.fancy-ico span::before, #fancybox-close.fancy-ico span::after {
  background: var(--wp--preset--color--custom-black);
  left: 50%;
  top: 50%;
  width: 16px;
}
#fancybox-close.fancy-ico span::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#fancybox-close.fancy-ico span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ==========================================================================
  Program / MW WP Form
========================================================================== */
.mw_wp_form .bl_form .error {
  color: var(--wp--preset--color--warning);
  font-weight: 700;
}
@container (max-width: 768px) {
  .mw_wp_form .bl_form_item .error {
    position: absolute;
    right: var(--wp--preset--spacing--20);
    top: var(--wp--preset--spacing--20);
  }
}
@container (min-width: 768.1px) {
  .mw_wp_form .bl_form_item .error {
    left: var(--wp--preset--spacing--20);
    position: absolute;
    top: calc(var(--wp--preset--spacing--20) * 2 + 1.25em);
  }
}
.mw_wp_form.mw_wp_form_confirm .bl_form_term .el_label__required {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_item p {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_group label {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_select::after {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_list {
  display: block;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_submit {
  margin: 0;
  visibility: hidden;
}
.mw_wp_form.mw_wp_form_confirm .bl_form_submit p {
  display: none;
}

.form-recaptcha {
  font-size: var(--wp--preset--font-size--small);
  margin-top: var(--wp--preset--spacing--40);
}

.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */