@charset "UTF-8";
:root {
  --mh--breakpoint--min: 375px;
  --mh--breakpoint--sm: 640px;
  --mh--breakpoint--md: 768px;
  --mh--breakpoint--lg: 1100px;
  --mh--breakpoint--xl: 1280px;
  --mh--breakpoint--x2l: 1400px;
}
:root {
  --mh--font-family--base: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", meiryo, sans-serif;
  --mh--font-family--ibm: "IBM Plex Sans JP", sans-serif;
  --mh--font-family--en: "Inter", sans-serif;
}
html body {
  --mh--font-size--x3s: 1.2rem;
  --mh--font-size--x2s: 1.3rem;
  --mh--font-size--xs: 1.4rem;
  --mh--font-size--sm: 1.5rem;
  --mh--font-size--md: 1.6rem;
  --mh--font-size--lg: 1.7rem;
  --mh--font-size--xl: 1.8rem;
  --mh--font-size--x2l: 2rem;
  --mh--font-size--x3l: 2.1rem;
  --mh--font-size--x4l: 2.2rem;
  --mh--font-size--x5l: 2.4rem;
  --mh--font-size--x6l: 2.6rem;
  --mh--font-size--x7l: 2.7rem;
  --mh--font-size--x8l: 2.9rem;
  --mh--font-size--x9l: 3.1rem;
  --mh--font-size--x10l: 3.4rem;
  --mh--font-size--x11l: 3.6rem;
  --mh--font-size--x12l: 3.9rem;
  --mh--font-size--x13l: 4.1rem;
}
@media (width >= 768px ) {
  html body {
    --mh--font-size--x3s: 1rem;
    --mh--font-size--x2s: 1.1rem;
    --mh--font-size--xs: 1.3rem;
    --mh--font-size--sm: 1.4rem;
    --mh--font-size--md: 1.6rem;
    --mh--font-size--lg: 1.8rem;
    --mh--font-size--xl: 2rem;
    --mh--font-size--x2l: 2.3rem;
    --mh--font-size--x3l: 2.6rem;
    --mh--font-size--x4l: 2.9rem;
    --mh--font-size--x5l: 3.2rem;
    --mh--font-size--x6l: 3.6rem;
    --mh--font-size--x7l: 4.1rem;
    --mh--font-size--x8l: 4.6rem;
    --mh--font-size--x9l: 5.2rem;
    --mh--font-size--x10l: 5.8rem;
    --mh--font-size--x11l: 6.6rem;
    --mh--font-size--x12l: 7.4rem;
    --mh--font-size--x13l: 8.3rem;
  }
}
:root {
  --mh--letter-spacing--sm: 0.02em;
  --mh--letter-spacing--md: 0.05em;
}
:root {
  --mh--line-height--none: 1;
  --mh--line-height--xs: 1.2;
  --mh--line-height--sm: 1.5;
  --mh--line-height--md: 1.9;
  --mh--line-height--lg: 2;
}
:root {
  --mh--header--height: 94px;
}
@media (width >= 768px ) {
  :root {
    --mh--header--height: 130px;
  }
}
:root {
  --mh--sidebar--width: 240px;
}
:root {
  --mh--contents--width: 1100px;
  --mh--contents--wide-width: 1400px;
  --mh--contents--padding--side: 20px;
  --mh--contents--width-with-padding: calc(
  	var(--mh--contents--width) + var(--mh--contents--padding--side) * 2
  );
  --mh--contents--wide-width-with-padding: calc(
  	var(--mh--contents--wide-width) + var(--mh--contents--padding--side) * 2
  );
}
@media (width >= 768px ) {
  :root {
    --mh--contents--padding--side: 50px;
  }
}
html body {
  --mh--color--primary-700: rgb(91, 42, 140);
  --mh--color--primary-500: rgb(133, 89, 178);
  --mh--color--primary-400: rgb(199, 173, 217);
  --mh--color--primary-300: rgb(210, 193, 222);
  --mh--color--primary-200: rgb(218, 204, 232);
  --mh--color--primary-100: rgb(239, 233, 245);
  --mh--color--secondary-500: rgb(72, 115, 204);
  --mh--color--secondary-100: rgb(182, 196, 227);
  --mh--color--accent-700: rgb(0, 166, 149);
  --mh--color--accent-500: rgb(0, 196, 176);
  --mh--color--surface-500: rgb(255, 255, 236);
  --mh--color--grayscale-900: rgb(51, 51, 51);
  --mh--color--grayscale-800: rgb(89, 89, 89);
  --mh--color--grayscale-500: rgb(204, 204, 204);
  --mh--color--grayscale-300: rgb(235, 235, 235);
  --mh--color--grayscale-200: rgb(242, 242, 242);
  --mh--color--grayscale-100: rgb(255, 255, 255);
  --mh--color--error-500: rgb(255, 0, 0);
  --mh--color--category-yellow01-500: rgb(255, 183, 44);
  --mh--color--category-pink01-500: rgb(255, 155, 155);
  --mh--gradient01: linear-gradient(0deg, rgb(71, 116, 204) 0%, rgb(141, 89, 178) 100%);
  --mh--gradient01_x: linear-gradient(90deg, rgb(71, 116, 204) 0%, rgb(141, 89, 178) 100%);
  --mh--gradient02: linear-gradient(352.8deg, rgb(170, 194, 242) 0%, rgb(210, 184, 229) 100%);
}
:root {
  --mh--easing: ease;
  --mh--duration: 0.3s;
}
:root {
  --mh--space--x2s: 5px;
  --mh--space--xs: 10px;
  --mh--space--sm: 15px;
  --mh--space--md: 20px;
  --mh--space--lg: 25px;
  --mh--space--xl: 30px;
  --mh--space--x2l: 35px;
  --mh--space--x3l: 40px;
}
@media (width >= 768px ) {
  :root {
    --mh--space--x2s: 10px;
    --mh--space--xs: 20px;
    --mh--space--sm: 30px;
    --mh--space--md: 40px;
    --mh--space--lg: 50px;
    --mh--space--xl: 60px;
    --mh--space--x2l: 70px;
    --mh--space--x3l: 80px;
  }
}
:root {
  --mh--padding--x2s: 20px;
  --mh--padding--xs: 20px;
  --mh--padding--sm: 20px;
  --mh--padding--md: 30px;
  --mh--padding--lg: 30px;
  --mh--padding--xl: 30px;
  --mh--padding--x-2l: 30px;
  --mh--padding--40_80: 40px;
  --mh--padding--60_120: 60px;
  --mh--padding--70_140: 70px;
  --mh--padding--80_160: 80px;
}
@media (width >= 768px ) {
  :root {
    --mh--padding--xs: 20px;
    --mh--padding--sm: 30px;
    --mh--padding--md: 40px;
    --mh--padding--lg: 50px;
    --mh--padding--xl: 60px;
    --mh--padding--x2l: 70px;
    --mh--padding--40_80: 80px;
    --mh--padding--60_120: 120px;
    --mh--padding--70_140: 140px;
    --mh--padding--80_160: 160px;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*::before, *::after {
  box-sizing: border-box;
}
* :focus-visible {
  outline: 2px solid;
}
html {
  block-size: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizespeed;
  min-block-size: 100%;
}
img,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}
img,
svg,
video {
  max-inline-size: 100%;
  block-size: auto;
}
svg {
  fill: currentcolor;
  stroke: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-break: strict;
}
ul,
ol {
  list-style: none;
}
a[class] {
  text-decoration: none;
}
input,
select {
  appearance: none;
}
input,
button,
textarea,
select,
input[type=file]::-webkit-file-upload-button {
  font: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
}
a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"]) {
  touch-action: manipulation;
  cursor: pointer;
}
input[type=file] {
  cursor: auto;
}
button,
button[type],
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button,
input[type=file]::file-selector-button {
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
button[disabled],
button[type][disabled],
input[type=button][disabled],
input[type=submit][disabled],
input[type=reset][disabled] {
  cursor: not-allowed;
}
/* 02_base
================================================ */
html:not([class=is-no-smoothscroll]) {
  scroll-behavior: smooth;
  scroll-padding-top: var(--mh--header--height);
}
body {
  min-width: 320px;
  font-family: var(--mh--font-family--base);
  font-size: var(--mh--font-size--md);
  line-height: var(--mh--line-height--md);
  color: var(--mh--color--grayscale-900);
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
}
@media (width >= 768px ) {
  body {
    min-width: var(--mh--contents--width-with-padding);
  }
}
@media (width >= 768px ) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}
* {
  letter-spacing: var(--mh--letter-spacing--sm);
}
ins {
  text-decoration: none;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
sup {
  font-size: 0.75em;
  vertical-align: text-top;
}
sub {
  font-size: 0.75em;
  vertical-align: text-bottom;
}
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid;
}
table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
a {
  color: inherit;
}
@media (width < 768px) {
  a:hover {
    text-decoration: none;
  }
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  background: none;
  border: 1px solid;
  border-radius: 0;
}
@media (width < 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  button,
  select,
  option {
    font-size: 1.6rem;
  }
}
summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.l-wrapper {
  position: relative;
  padding-bottom: env(safe-area-inset-bottom);
}
@media (width >= 1100px ) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--mh--sidebar--width) 1fr;
    gap: 20px;
    width: var(--mh--contents--width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
/*  .c-archive01
================================================== */
.c-archive01 {
  --line: 1;
  --line-height: 1.8;
}
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 10px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  padding: 5px 0;
  margin: 0 10px 0 0;
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  padding: 5px 10px;
  margin: 0 5px 5px 0;
  color: #fff;
  background: #000;
}
.c-archive01__item-head {
  display: -webkit-box;
  max-height: calc(var(--line) * var(--line-height) * 1em);
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--line);
  line-height: var(--line-height);
  -webkit-box-orient: vertical;
}
@media (width >= 768px ) {
  .c-archive01 {
    --line: 2;
  }
}
/* .c-blockquote01
================================================== */
.c-blockquote01 {
  padding: 15px;
  border: 1px solid var(--mh--color--primary-700);
}
@media (width >= 768px ) {
  .c-blockquote01 {
    padding: 25px;
  }
}
/* c-faq01
================================================== */
.c-faq01 {
  border-bottom: 1px solid var(--mh--color--grayscale-500);
}
.c-faq01__head {
  padding: 20px 12px 20px 15px;
  display: grid;
  grid-template-columns: auto 1fr 30px;
  align-items: center;
  gap: 0 10px;
}
.c-faq01__head .c-faq01__en {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgb(218, 204, 232);
  color: var(--mh--color--primary-700);
}
.c-faq01__head.is-active {
  background: rgb(239, 233, 245);
}
.c-faq01__head.is-active .c-faq01__ico::after {
  rotate: 0deg;
}
.c-faq01__ico {
  margin-left: auto;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
}
.c-faq01__ico::before, .c-faq01__ico::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background: var(--mh--color--grayscale-800);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: all var(--mh--duration) var(--mh--easing);
}
.c-faq01__ico::after {
  rotate: 90deg;
  transform-origin: top left;
}
.c-faq01__content {
  border-top: 1px solid var(--mh--color--grayscale-500);
}
.c-faq01__content-in {
  padding: 20px 15px;
  display: flex;
  gap: 15px;
  background: var(--mh--color--primary-100);
}
.c-faq01__content .c-faq01__en {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--mh--color--primary-500);
  color: var(--mh--color--grayscale-100);
}
.c-faq01__content ul {
  padding-left: 1.5em;
}
.c-faq01__content ul li {
  list-style: disc !important;
}
@media (width >= 768px ) {
  .c-faq01__head {
    padding: 25px;
    gap: 0 15px;
  }
  .c-faq01__head .c-faq01__en {
    width: 40px;
    height: 40px;
  }
  .c-faq01__ico::before, .c-faq01__ico::after {
    width: 24px;
    height: 3px;
    left: 0;
  }
  .c-faq01__content-in {
    padding: 25px;
  }
  .c-faq01__content-in .c-faq01__en {
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-faq01__head {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-faq01__head:hover {
    background: var(--mh--color--primary-400);
  }
}
/* .c-form
================================================== */
.c-form {
  border-top: 1px solid var(--mh--color--grayscale-500);
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form textarea,
.c-form button,
.c-form select,
.c-form option {
  border: 1px solid var(--mh--color--grayscale-700);
}
.c-form input[type=text]:focus-visible,
.c-form input[type=email]:focus-visible,
.c-form input[type=tel]:focus-visible,
.c-form textarea:focus-visible,
.c-form button:focus-visible,
.c-form select:focus-visible,
.c-form option:focus-visible {
  border-color: rgb(var(--color-black01));
  box-shadow: 0 0 0 2px rgba(var(--color-black01), 0.25);
}
.c-form fieldset {
  border: none;
}
.c-form input,
.c-form textarea {
  box-sizing: border-box;
  padding: 5px 15px;
  font-size: 1.6rem;
}
.c-form input[type=file] {
  padding: 0;
}
.c-form input[type=text],
.c-form input[type=tel],
.c-form input[type=email] {
  height: 45px;
  background: var(--mh--color--grayscale-200);
  border-radius: 4px;
}
.c-form input[type=radio],
.c-form input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border-width: 0;
  clip: rect(0, 0, 0, 0);
}
.c-form textarea {
  height: 240px;
  background: var(--mh--color--grayscale-200);
  border-radius: 4px;
}
.c-form .error {
  color: #f00;
}
.c-form.is-confirm .c-form__field-description {
  display: none;
}
.c-form__set {
  box-sizing: border-box;
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--mh--color--grayscale-500);
}
.c-form__head {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  margin-bottom: 10px;
  font-size: var(--mh--font-size--lg);
  font-weight: bold;
}
.c-form__required, .c-form__optional {
  box-sizing: border-box;
  padding: 0 15px 1px;
  text-align: center;
  font-size: 1.3rem;
  border-radius: 999px;
  color: var(--mh--color--grayscale-100);
  background: var(--mh--color--primary-500);
}
.c-form__required {
  background: var(--mh--color--primary-500);
}
.c-form__optional {
  color: var(--mh--color--primary-500);
  background: rgb(var(--mh--color-grayscale-200));
  border: 1px solid var(--mh--color--grayscale-200);
}
.c-form__field-set {
  display: block;
  margin-top: 15px;
}
.c-form__field-description {
  display: grid;
  gap: 5px 0;
  margin-bottom: 2px;
  font-weight: 500;
  color: var(--mh--color--grayscale-800);
  font-size: var(--mh--font-size--xs);
}
.c-form__field-txt {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-form__postcode {
  display: flex;
  align-items: start;
}
.c-form__postcode-suffix {
  margin: 13px 10px 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-form__postcode-btn {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 105px;
  height: 50px;
  padding: 10px 15px;
  margin-left: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: var(--mh--color--primary-700);
}
.c-form__postcode > input,
.c-form__postcode > span {
  width: 40%;
}
.c-form__select-in {
  position: relative;
  display: block;
  border-radius: 4px;
}
.c-form__select-in select {
  height: 45px;
  padding: 5px 40px 5px 15px;
  font-size: 1.6rem;
  line-height: 2.2rem;
  cursor: pointer;
  background: var(--mh--color--grayscale-200);
}
.c-form__select-in:has(select)::after {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--mh--color--primary-700);
  border-bottom: 2px solid var(--mh--color--primary-700);
  transform: rotate(45deg);
}
.c-form__select-unit {
  margin-left: 2px;
  font-size: 1.6rem;
}
.c-form__select.is-date .c-form__select-year select {
  width: 80px;
}
.c-form__select.is-date .c-form__select-month select,
.c-form__select.is-date .c-form__select-day select {
  width: 66px;
}
.c-form__select label + label {
  margin-left: 9px;
}
.c-form__radio-list {
  display: grid;
  gap: 15px 19px;
}
.c-form__radio-list label {
  position: relative;
  padding-left: 37px;
  cursor: pointer;
}
.c-form__radio-list input + span::before {
  position: absolute;
  top: 14px;
  left: 0;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid var(--mh--color--grayscale-700);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-form__radio-list input + span::after {
  position: absolute;
  top: 8px;
  left: 6px;
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--mh--color--grayscale-700);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease;
}
.c-form__radio-list input:checked + span::after {
  transform: scale(1);
}
.c-form__radio-list span {
  margin: 0;
}
.c-form__checkbox-list {
  display: grid;
  gap: 15px 19px;
}
.c-form__checkbox-list label {
  position: relative;
  display: flex;
  padding-left: 37px;
  cursor: pointer;
}
.c-form__checkbox-list input + span::before {
  position: absolute;
  top: 14px;
  left: 0;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid var(--mh--color--grayscale-700);
  transform: translateY(-50%);
}
.c-form__checkbox-list input + span::after {
  position: absolute;
  top: 7px;
  left: 4px;
  display: block;
  width: 15px;
  height: 9px;
  content: "";
  border-color: var(--mh--color--grayscale-700);
  border-style: solid;
  border-width: 3px 3px 0 0;
  transform: scale(0) rotate(135deg);
  transition: all 0.3s ease;
}
.c-form__checkbox-list input:checked + span::after {
  transform: scale(1) rotate(135deg);
}
.c-form__checkbox-list span {
  margin: 0;
}
.c-form__radio-list label + span, .c-form__checkbox-list label + span {
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-form__radio-list input:focus + span::before, .c-form__checkbox-list input:focus + span::before {
  border-color: rgb(var(--color-black01));
  box-shadow: 0 0 0 2px rgba(var(--color-black01), 0.25);
}
.c-form__radio-list input:disabled + label, .c-form__checkbox-list input:disabled + label {
  opacity: 0.5;
}
.c-form__radio-list + .c-form__radio-list, .c-form__radio-list + .c-form__checkbox-list, .c-form__checkbox-list + .c-form__radio-list, .c-form__checkbox-list + .c-form__checkbox-list {
  margin-top: 50px;
}
.c-form__radio-list.is-col2, .c-form__radio-list.is-col3, .c-form__checkbox-list.is-col2, .c-form__checkbox-list.is-col3 {
  grid-template-columns: repeat(2, 1fr);
}
.c-form__privacy {
  box-sizing: border-box;
  padding: 20px;
  margin: 20px 0;
  background: #EFE9F5;
  border-radius: 8px;
}
.c-form__privacy-txt a {
  color: var(--mh--color--primary-700);
  text-decoration: underline !important;
}
.c-form__privacy-txt a .c-ico {
  color: var(--mh--color--primary-700) !important;
}
.c-form__privacy-txt a .c-ico::after {
  width: 10px;
  height: 10px;
}
.c-form__agreement {
  background: var(--mh--color--grayscale-100);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}
.c-form__agreement-required {
  display: inline-block;
  margin-bottom: 10px;
}
.c-form__agreement-txt {
  text-align: center;
}
.c-form__agreement-check label {
  position: relative;
  display: block;
  padding-left: 50px;
  font-size: var(--mh--font-size--lg);
  cursor: pointer;
}
.c-form__agreement-check span {
  margin: 0;
}
.c-form__agreement-check input + span {
  line-height: 1.5;
}
.c-form__agreement-check input + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 35px;
  margin: auto 0;
  content: "";
  border: 2px solid var(--mh--color--grayscale-500);
  border-radius: 4px;
}
.c-form__agreement-check input:checked + span::after {
  position: absolute;
  top: -5px;
  bottom: 0;
  left: 7px;
  display: block;
  width: 19px;
  height: 12px;
  content: "";
  margin: auto 0;
  border-color: var(--mh--color--primary-700);
  border-style: solid;
  border-width: 4px 4px 0 0;
  transform: rotate(135deg);
}
.c-form__agreement-check input:focus + span::before {
  border-color: rgb(var(--color-black01));
  box-shadow: 0 0 0 2px rgba(var(--color-black01), 0.25);
}
.c-form__agreement-check input:disabled + label {
  opacity: 0.5;
}
.c-form__btn {
  display: grid;
  gap: 15px;
  text-align: center;
}
.c-form__btn .is-adjust,
.c-form__btn .is-normal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 19px;
  overflow: hidden;
  background: var(--mh--color--accent-500);
  border-radius: 999px;
  color: var(--mh--color--grayscale-100);
  text-align: center;
  cursor: pointer;
}
.c-form__btn .is-adjust::before,
.c-form__btn .is-normal::before {
  display: inline-block;
  width: 26px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2219%22%20viewBox%3D%220%200%2025%2019%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M12.4911%2012.5183L0%203.31543V15.8154C0%2017.1922%201.1032%2018.3335%202.47331%2018.3335H22.5267C23.879%2018.3335%2025%2017.2104%2025%2015.8154V3.31543L12.5089%2012.5183H12.4911Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M12.4911%2010.4529L24.7509%201.43116C24.3595%200.57971%2023.5054%200%2022.5267%200H2.47334C1.4947%200%200.640605%200.57971%200.249146%201.43116L12.4911%2010.471V10.4529Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2219%22%20viewBox%3D%220%200%2025%2019%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M12.4911%2012.5183L0%203.31543V15.8154C0%2017.1922%201.1032%2018.3335%202.47331%2018.3335H22.5267C23.879%2018.3335%2025%2017.2104%2025%2015.8154V3.31543L12.5089%2012.5183H12.4911Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M12.4911%2010.4529L24.7509%201.43116C24.3595%200.57971%2023.5054%200%2022.5267%200H2.47334C1.4947%200%200.640605%200.57971%200.249146%201.43116L12.4911%2010.471V10.4529Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
.c-form__btn .is-adjust {
  background: var(--mh--color--grayscale-800);
}
.c-form__btn .is-adjust::before {
  display: inline-block;
  width: 7px;
  height: 10px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
  transform: rotate(180deg);
}
@media (width >= 768px ) {
  .c-form input[type=text],
  .c-form input[type=tel] {
    max-width: 300px;
    border-radius: 8px;
  }
  .c-form input[type=email] {
    max-width: 900px;
    border-radius: 8px;
  }
  .c-form textarea {
    border-radius: 8px;
  }
  .c-form__set {
    padding: 24px 0 30px;
  }
  .c-form__postcode-btn {
    font-size: 1.6rem;
  }
  .c-form__select {
    max-width: 300px;
    border-radius: 8px;
  }
  .c-form__select-in select {
    padding: 11px 40px 13px 10px;
  }
  .c-form__select-in::after {
    right: 12px;
  }
  .c-form__select-unit {
    margin-left: 7px;
  }
  .c-form__select.is-date .c-form__select-year select {
    width: 150px;
  }
  .c-form__select.is-date .c-form__select-month select,
  .c-form__select.is-date .c-form__select-day select {
    width: 110px;
  }
  .c-form__select label + label {
    margin-left: 18px;
  }
  .c-form__radio-list, .c-form__checkbox-list {
    gap: 15px 30px;
  }
  .c-form__radio-list.is-col3, .c-form__checkbox-list.is-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-form__privacy {
    padding: 30px;
    margin: 40px 0;
  }
  .c-form__privacy-txt {
    text-align: center;
  }
  .c-form__agreement {
    display: flex;
    width: 475px;
    margin: 20px auto 0 !important;
    align-items: center;
    gap: 30px;
  }
  .c-form__agreement-required {
    margin-bottom: 0;
  }
  .c-form__agreement-check label {
    padding-left: 44px;
  }
  .c-form__agreement-check input + span::before {
    border-radius: 8px;
  }
  .c-form__btn {
    max-width: 540px;
    margin: 0 auto;
    gap: 20px;
  }
  .c-form__btn.is-confirm {
    grid-template-columns: 1fr 1fr;
    max-width: 710px;
  }
  .c-form__btn input {
    margin: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form__btn .is-normal {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-form__btn .is-normal:hover {
    background: var(--mh--color--accent-700);
  }
  .c-form__btn .is-adjust {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-form__btn .is-adjust:hover {
    background: #888;
  }
}
/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 35px;
}
@media (width >= 768px ) {
  .c-form-area-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
  }
}
.c-form-btn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 60px;
  padding: 10px 20px;
  margin: 0 auto;
  font-weight: 500;
  text-align: left;
  appearance: none;
  border: 0;
}
.c-form-btn + .c-form-btn {
  margin-top: 20px;
}
@media (width >= 768px ) {
  .c-form-btn {
    max-width: 320px;
    height: 80px;
    margin: 0;
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form-btn:hover {
    opacity: 0.8;
  }
}
#errorMsg {
  color: #f00;
}
/* head
================================================ */
.c-single01__content h2:not([class*=c-]), .c-surface-head {
  padding: 10px !important;
  margin-top: var(--mh--space--xl);
  margin-bottom: var(--mh--space--sm);
  font-size: var(--mh--font-size--x2l);
  color: var(--mh--color--grayscale-100);
  background-color: var(--mh--color--primary-700);
}
@media (width >= 768px ) {
  .c-single01__content h2:not([class*=c-]), .c-surface-head {
    padding: 15px 20px !important;
  }
}
.c-dobble-border-head {
  position: relative;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-top: var(--mh--space--xl);
  margin-bottom: var(--mh--space--sm);
  font-size: var(--mh--font-size--x3l);
  border-bottom: 1px solid var(--mh--color--primary-700);
}
.c-dobble-border-head::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 70%;
  content: "";
  background: var(--mh--color--primary-700);
}
@media (width >= 768px ) {
  .c-dobble-border-head {
    padding-bottom: 15px;
    padding-left: 15px;
  }
}
.c-single01__content h3:not([class*=c-]), .c-line-head {
  position: relative;
  padding-left: 10px;
  margin-top: var(--mh--space--md);
  margin-bottom: var(--mh--space--sm);
  font-size: var(--mh--font-size--x2l);
}
.c-single01__content h3:not([class*=c-])::before, .c-line-head::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  content: "";
  background: var(--mh--color--primary-700);
  transform: translateY(-50%);
}
@media (width >= 768px ) {
  .c-single01__content h3:not([class*=c-]), .c-line-head {
    padding-left: 15px;
  }
}
.c-under-border-head {
  padding-bottom: 10px;
  font-size: var(--mh--font-size--xl);
  border-bottom: 1px solid var(--mh--color--primary-700);
}
@media (width >= 768px ) {
  .c-under-border-head {
    padding-bottom: 20px;
  }
}
.c-single01__content h4:not([class*=c-]), .c-simple-head {
  margin: var(--mh--space--sm) 0;
  font-size: var(--mh--font-size--lg);
  color: var(--mh--color--primary-700);
}
/* list
================================================ */
.c-single01__content ul:not([class*=c-]) {
  padding-left: 0;
  margin: var(--mh--space--md) 0;
  line-height: var(--mh--line-height--sm);
  list-style: none;
}
.c-single01__content ul:not([class*=c-]) li {
  position: relative;
  padding-left: 1em;
}
.c-single01__content ul:not([class*=c-]) li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--mh--color--primary-700);
  border-radius: 50%;
}
.c-single01__content ul:not([class*=c-]) li + li {
  margin-top: 0.8em;
}
.c-single01__content ul:not([class*=c-]) li ol:not([class*=c-]) {
  counter-reset: child-num;
}
.c-single01__content ul:not([class*=c-]) li ol:not([class*=c-]) > li {
  position: relative;
  padding-left: 2em;
  text-indent: -2em;
  counter-increment: child-num 1;
}
.c-single01__content ul:not([class*=c-]) li ol:not([class*=c-]) > li::before {
  position: static;
  margin-right: 5px;
  color: var(--mh--color--primary-700);
  content: counter(child-num, decimal-leading-zero) ".";
  background-color: transparent;
}
.c-single01__content ul:not([class*=c-]) li ol:not([class*=c-]) > li + li {
  margin-top: 0.8em;
}
.c-single01__content ol:not([class*=c-]) {
  padding-left: 0;
  margin: var(--mh--space--md) 0;
  line-height: var(--mh--line-height--sm);
  list-style: none;
  counter-reset: num01;
}
.c-single01__content ol:not([class*=c-]) > li {
  position: relative;
  padding-left: 2em;
  counter-increment: num01 1;
}
.c-single01__content ol:not([class*=c-]) > li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--mh--color--primary-700);
  content: counter(num01, decimal-leading-zero) ".";
}
.c-single01__content ol:not([class*=c-]) > li + li {
  margin-top: 0.8em;
}
.c-single01__content ol:not([class*=c-]) > li ol:not([class*=c-]) {
  counter-reset: num02;
}
.c-single01__content ol:not([class*=c-]) > li ol:not([class*=c-]) > li {
  position: relative;
  padding-left: 3.5em;
  text-indent: -3.5em;
  counter-increment: num02 1;
}
.c-single01__content ol:not([class*=c-]) > li ol:not([class*=c-]) > li::before {
  margin-right: 5px;
  color: var(--mh--color--primary-700);
  content: counter(num01, decimal-leading-zero) "-" counter(num02, decimal-leading-zero) ".";
}
.c-single01__content ol:not([class*=c-]) > li ol:not([class*=c-]) > li + li {
  margin-top: 0.8em;
}
.c-single01__content ol:not([class*=c-]) > li ul:not([class*=c-]) {
  padding-left: 0;
  margin-top: 0.8em;
  line-height: var(--mh--line-height--sm);
  list-style: none;
}
.c-single01__content ol:not([class*=c-]) > li ul:not([class*=c-]) li {
  position: relative;
  padding-left: 1em;
}
.c-single01__content ol:not([class*=c-]) > li ul:not([class*=c-]) li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--mh--color--primary-700);
  border-radius: 50%;
}
.c-single01__content ol:not([class*=c-]) > li ul:not([class*=c-]) li + li {
  margin-top: 0.8em;
}
/* .c-dobble-border-head
================================================== */
/* c-head01
================================================== */
.c-head01 {
  padding-top: 18px;
  margin-bottom: 20px;
  position: relative;
}
.c-head01::before {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background: url(../img/common/ico_leaf01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.c-head01__sub {
  text-align: center;
  line-height: var(--mh--line-height--sm);
  font-weight: 700;
  font-size: var(--mh--font-size--x4l);
  color: var(--mh--color--primary-700);
  font-family: var(--mh--font-family--ibm);
}
.c-head01__main {
  line-height: var(--mh--line-height--sm);
  font-weight: 700;
  font-size: var(--mh--font-size--x9l);
  text-align: center;
  font-family: var(--mh--font-family--ibm);
}
@media (width >= 768px ) {
  .c-head01 {
    margin-bottom: 50px;
  }
}
/* c-head02
================================================== */
.c-head02 {
  line-height: var(--mh--line-height--sm);
  font-weight: 700;
  font-size: var(--mh--font-size--x5l);
  padding-left: 18px;
  margin-bottom: var(--mh--space--sm);
  position: relative;
}
.c-head02::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 24px;
  background: url(../img/common/ico_leaf02.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  left: 0;
}
@media (width >= 768px ) {
  .c-head02 {
    padding-left: 25px;
  }
  .c-head02::before {
    width: 10px;
    height: 40px;
  }
}
/* .c-line-head
================================================== */
/* .c-simple-head
================================================== */
/* .c-surface-head
================================================== */
/* .c-under-border-head
================================================== */
/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: baseline;
}
.c-ico svg {
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw01
================================================== */
.c-ico.is-arw01 {
  margin-left: 5px;
  color: red;
}
.c-ico.is-arw01::after {
  display: inline-block;
  width: 7px;
  height: 10px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw02
================================================== */
.c-ico.is-arw02 {
  margin-left: 5px;
  color: green;
}
.c-ico.is-arw02::after {
  display: inline-block;
  width: 6px;
  height: 10px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw03
================================================== */
.c-ico.is-arw03 {
  margin-left: 5px;
}
.c-ico.is-arw03::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 24px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2024%22%3E%0A%3Cpath%20fill%3D%22%238659b2%22%20d%3D%22M.215%2010.135a.743.743%200%200%201%20.015-1.06L9.47.212a.77.77%200%200%201%201.06%200l9.24%208.863a.743.743%200%200%201%20.015%201.06.77.77%200%200%201-1.076.015l-7.948-7.624V23.25c0%20.414-.34.75-.761.75a.755.755%200%200%201-.76-.75V2.526L1.29%2010.15a.77.77%200%200%201-1.076-.015%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2024%22%3E%0A%3Cpath%20fill%3D%22%238659b2%22%20d%3D%22M.215%2010.135a.743.743%200%200%201%20.015-1.06L9.47.212a.77.77%200%200%201%201.06%200l9.24%208.863a.743.743%200%200%201%20.015%201.06.77.77%200%200%201-1.076.015l-7.948-7.624V23.25c0%20.414-.34.75-.761.75a.755.755%200%200%201-.76-.75V2.526L1.29%2010.15a.77.77%200%200%201-1.076-.015%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
  background: linear-gradient(to right, rgb(34, 193, 195) 0%, rgb(253, 187, 45) 100%);
}
/* .c-ico.is-blank01
================================================== */
.c-ico.is-blank01 {
  margin-left: 5px;
  color: red;
}
.c-ico.is-blank01::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M9.49508%200C9.77381%209.20531e-05%209.99991%200.226077%209.99991%200.504831V6.81177C9.99991%207.09052%209.77381%207.31651%209.49508%207.3166H3.27095C2.99214%207.3166%202.76612%207.09058%202.76611%206.81177V0.504831C2.76611%200.226021%202.99213%200%203.27095%200H9.49508ZM3.77578%206.30694H8.99025V1.00966H3.77578V6.30694Z%22%20fill%3D%22%235B2A8C%22%2F%3E%20%3Cpath%20d%3D%22M1.38287%202.68359C1.66168%202.68359%201.8877%202.90961%201.8877%203.18843C1.8877%203.46724%201.66168%203.69326%201.38287%203.69326H1.00967V8.99053H6.22413V8.70706C6.22413%208.42825%206.45015%208.20223%206.72896%208.20223C7.0077%208.20232%207.2338%208.42831%207.2338%208.70706V9.49537C7.23379%209.77412%207.0077%2010.0001%206.72896%2010.0002H0.504833C0.226023%2010.0002%203.38247e-06%209.77417%200%209.49537V3.18843C0%202.90961%200.226021%202.68359%200.504833%202.68359H1.38287Z%22%20fill%3D%22%235B2A8C%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M9.49508%200C9.77381%209.20531e-05%209.99991%200.226077%209.99991%200.504831V6.81177C9.99991%207.09052%209.77381%207.31651%209.49508%207.3166H3.27095C2.99214%207.3166%202.76612%207.09058%202.76611%206.81177V0.504831C2.76611%200.226021%202.99213%200%203.27095%200H9.49508ZM3.77578%206.30694H8.99025V1.00966H3.77578V6.30694Z%22%20fill%3D%22%235B2A8C%22%2F%3E%20%3Cpath%20d%3D%22M1.38287%202.68359C1.66168%202.68359%201.8877%202.90961%201.8877%203.18843C1.8877%203.46724%201.66168%203.69326%201.38287%203.69326H1.00967V8.99053H6.22413V8.70706C6.22413%208.42825%206.45015%208.20223%206.72896%208.20223C7.0077%208.20232%207.2338%208.42831%207.2338%208.70706V9.49537C7.23379%209.77412%207.0077%2010.0001%206.72896%2010.0002H0.504833C0.226023%2010.0002%203.38247e-06%209.77417%200%209.49537V3.18843C0%202.90961%200.226021%202.68359%200.504833%202.68359H1.38287Z%22%20fill%3D%22%235B2A8C%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-blank02
================================================== */
.c-ico.is-blank02 {
  margin-left: 5px;
  color: green;
}
.c-ico.is-blank02::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-blank03
================================================== */
.c-ico.is-blank03 {
  margin-left: 5px;
}
.c-ico.is-blank03::after {
  background: linear-gradient(to right, rgb(34, 193, 195) 0%, rgb(253, 187, 45) 100%);
}
/* .c-ico.is-mail01
================================================== */
.c-ico.is-mail01::after {
  display: inline-block;
  width: 26px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2219%22%20viewBox%3D%220%200%2025%2019%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M12.4911%2012.5183L0%203.31543V15.8154C0%2017.1922%201.1032%2018.3335%202.47331%2018.3335H22.5267C23.879%2018.3335%2025%2017.2104%2025%2015.8154V3.31543L12.5089%2012.5183H12.4911Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M12.4911%2010.4529L24.7509%201.43116C24.3595%200.57971%2023.5054%200%2022.5267%200H2.47334C1.4947%200%200.640605%200.57971%200.249146%201.43116L12.4911%2010.471V10.4529Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2219%22%20viewBox%3D%220%200%2025%2019%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M12.4911%2012.5183L0%203.31543V15.8154C0%2017.1922%201.1032%2018.3335%202.47331%2018.3335H22.5267C23.879%2018.3335%2025%2017.2104%2025%2015.8154V3.31543L12.5089%2012.5183H12.4911Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M12.4911%2010.4529L24.7509%201.43116C24.3595%200.57971%2023.5054%200%2022.5267%200H2.47334C1.4947%200%200.640605%200.57971%200.249146%201.43116L12.4911%2010.471V10.4529Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-map01
================================================== */
.c-ico.is-map01 {
  margin-right: 5px;
  color: violet;
}
.c-ico.is-map01::after {
  display: inline-block;
  width: 12px;
  height: 16px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.016 16.221"><path d="M6.008,0A6.026,6.026,0,0,0,0,6.041C0,10.188,4.166,14.8,5.684,16.1a.5.5,0,0,0,.647,0c1.519-1.3,5.684-5.909,5.684-10.057A6.026,6.026,0,0,0,6.008,0m0,9.864A3.633,3.633,0,1,1,9.619,6.227,3.622,3.622,0,0,1,6.008,9.86" transform="translate(0 0.004)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.016 16.221"><path d="M6.008,0A6.026,6.026,0,0,0,0,6.041C0,10.188,4.166,14.8,5.684,16.1a.5.5,0,0,0,.647,0c1.519-1.3,5.684-5.909,5.684-10.057A6.026,6.026,0,0,0,6.008,0m0,9.864A3.633,3.633,0,1,1,9.619,6.227,3.622,3.622,0,0,1,6.008,9.86" transform="translate(0 0.004)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-search01
================================================== */
.c-ico.is-search01 {
  margin-right: 5px;
  color: red;
}
.c-ico.is-search01::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-tel01
================================================== */
.c-ico.is-tel01 {
  margin-right: 5px;
  color: pink;
}
.c-ico.is-tel01::after {
  display: inline-block;
  width: 24px;
  height: 24px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.5 23.5"><path d="M18.019,23.5c-2.313,0-7.045-.741-12.147-5.844C-.641,11.143-.085,5.26.093,4.147a3.661,3.661,0,0,1,1.045-2.1L2.405.778a2.668,2.668,0,0,1,3.767,0l3.19,3.191a2.669,2.669,0,0,1,0,3.768L7.81,9.29a18.573,18.573,0,0,0,2.752,3.674A18.585,18.585,0,0,0,14.217,15.7l1.554-1.557a2.671,2.671,0,0,1,3.77,0l3.181,3.184a2.669,2.669,0,0,1,0,3.767l-1.25,1.25A3.7,3.7,0,0,1,19.5,23.378a7.471,7.471,0,0,1-1.479.122M4.29,2.148a.516.516,0,0,0-.367.149L2.658,3.564a1.554,1.554,0,0,0-.441.9c-.1.594-.725,5.777,5.174,11.675,6.21,6.213,11.472,5.18,11.692,5.133a1.6,1.6,0,0,0,.873-.441L21.2,19.581a.522.522,0,0,0,0-.731l-3.182-3.184a.526.526,0,0,0-.733,0l-2.708,2.71-.708-.393a21.871,21.871,0,0,1-4.828-3.5A21.8,21.8,0,0,1,5.532,9.632l-.393-.708L7.845,6.218a.522.522,0,0,0,0-.731L4.655,2.3a.515.515,0,0,0-.365-.148" transform="translate(0 0)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.5 23.5"><path d="M18.019,23.5c-2.313,0-7.045-.741-12.147-5.844C-.641,11.143-.085,5.26.093,4.147a3.661,3.661,0,0,1,1.045-2.1L2.405.778a2.668,2.668,0,0,1,3.767,0l3.19,3.191a2.669,2.669,0,0,1,0,3.768L7.81,9.29a18.573,18.573,0,0,0,2.752,3.674A18.585,18.585,0,0,0,14.217,15.7l1.554-1.557a2.671,2.671,0,0,1,3.77,0l3.181,3.184a2.669,2.669,0,0,1,0,3.767l-1.25,1.25A3.7,3.7,0,0,1,19.5,23.378a7.471,7.471,0,0,1-1.479.122M4.29,2.148a.516.516,0,0,0-.367.149L2.658,3.564a1.554,1.554,0,0,0-.441.9c-.1.594-.725,5.777,5.174,11.675,6.21,6.213,11.472,5.18,11.692,5.133a1.6,1.6,0,0,0,.873-.441L21.2,19.581a.522.522,0,0,0,0-.731l-3.182-3.184a.526.526,0,0,0-.733,0l-2.708,2.71-.708-.393a21.871,21.871,0,0,1-4.828-3.5A21.8,21.8,0,0,1,5.532,9.632l-.393-.708L7.845,6.218a.522.522,0,0,0,0-.731L4.655,2.3a.515.515,0,0,0-.365-.148" transform="translate(0 0)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-pdf01
================================================== */
.c-ico.is-pdf01 {
  margin-right: 5px;
  color: pink;
}
.c-ico.is-pdf01::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%3Cg%20fill%3D%22%238659b2%22%20clip-path%3D%22url(%23a)%22%3E%0A%3Cpath%20d%3D%22M23.713%206.08V24H3.988v-3.444h1.453v1.992h16.82V7.695h-6.794V1.452H5.441v7.38H3.988V0h13.646z%22%2F%3E%0A%3Cpath%20d%3D%22M5.265%2013.587q0%20.984-1.124.984H3.59v-1.945h.55c.75%200%201.125.317%201.125.96%22%2F%3E%0A%3Cpath%20d%3D%22M11.192%2013.2c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zm0%200c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zM.287%2010.004v9.394h19.057v-9.394zm5.775%205.048c-.446.387-1.055.586-1.804.586H3.59v2.144H2.184V11.55h2.203c1.57%200%202.354.656%202.354%201.98%200%20.62-.223%201.136-.68%201.522m6.207%201.863c-.609.574-1.405.867-2.412.867H7.654V11.55h2.203c2.213%200%203.314%201.008%203.314%203.034%200%20.972-.304%201.745-.902%202.32zm5.54-4.217h-2.201v1.535h2.014v1.136h-2.014v2.424h-1.406v-6.231h3.596v1.148zm-8.07%200h-.69v3.947h.69c.61%200%201.09-.187%201.43-.55.35-.363.515-.867.515-1.488%200-.597-.176-1.065-.516-1.405s-.82-.516-1.44-.516z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22a%22%3E%0A%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%3Cg%20fill%3D%22%238659b2%22%20clip-path%3D%22url(%23a)%22%3E%0A%3Cpath%20d%3D%22M23.713%206.08V24H3.988v-3.444h1.453v1.992h16.82V7.695h-6.794V1.452H5.441v7.38H3.988V0h13.646z%22%2F%3E%0A%3Cpath%20d%3D%22M5.265%2013.587q0%20.984-1.124.984H3.59v-1.945h.55c.75%200%201.125.317%201.125.96%22%2F%3E%0A%3Cpath%20d%3D%22M11.192%2013.2c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zm0%200c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zM.287%2010.004v9.394h19.057v-9.394zm5.775%205.048c-.446.387-1.055.586-1.804.586H3.59v2.144H2.184V11.55h2.203c1.57%200%202.354.656%202.354%201.98%200%20.62-.223%201.136-.68%201.522m6.207%201.863c-.609.574-1.405.867-2.412.867H7.654V11.55h2.203c2.213%200%203.314%201.008%203.314%203.034%200%20.972-.304%201.745-.902%202.32zm5.54-4.217h-2.201v1.535h2.014v1.136h-2.014v2.424h-1.406v-6.231h3.596v1.148zm-8.07%200h-.69v3.947h.69c.61%200%201.09-.187%201.43-.55.35-.363.515-.867.515-1.488%200-.597-.176-1.065-.516-1.405s-.82-.516-1.44-.516z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22a%22%3E%0A%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-target01
================================================== */
.c-ico.is-target01 {
  margin-right: 5px;
  color: pink;
}
.c-ico.is-target01::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20fill%3D%22none%22%20viewBox%3D%220%200%2022%2022%22%3E%0A%3Cpath%20fill%3D%22%235b2a8c%22%20d%3D%22M11%209.176a4.593%204.593%200%200%200%204.589-4.588A4.593%204.593%200%200%200%2011%200a4.593%204.593%200%200%200-4.588%204.588A4.593%204.593%200%200%200%2011%209.176m3.544.704a.6.6%200%200%200-.347.07%206.64%206.64%200%200%201-6.393-.001.6.6%200%200%200-.348-.07%204.96%204.96%200%200%200-4.406%204.938v6.598c0%20.323.261.585.584.585h14.732a.585.585%200%200%200%20.584-.585v-6.598a4.96%204.96%200%200%200-4.405-4.936%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20fill%3D%22none%22%20viewBox%3D%220%200%2022%2022%22%3E%0A%3Cpath%20fill%3D%22%235b2a8c%22%20d%3D%22M11%209.176a4.593%204.593%200%200%200%204.589-4.588A4.593%204.593%200%200%200%2011%200a4.593%204.593%200%200%200-4.588%204.588A4.593%204.593%200%200%200%2011%209.176m3.544.704a.6.6%200%200%200-.347.07%206.64%206.64%200%200%201-6.393-.001.6.6%200%200%200-.348-.07%204.96%204.96%200%200%200-4.406%204.938v6.598c0%20.323.261.585.584.585h14.732a.585.585%200%200%200%20.584-.585v-6.598a4.96%204.96%200%200%200-4.405-4.936%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-img01
================================================== */
.c-img01 {
  margin: var(--mh--space--md) 0;
}
/*  .c-num-list01
================================================== */
.c-num-list01 {
  counter-reset: num01 0;
}
.c-num-list01__item {
  padding-left: 2em;
  font-size: var(--mh--font-size--md);
  text-indent: -2em;
}
.c-num-list01__item::before {
  margin-right: 5px;
  color: var(--mh--color--primary-700);
  content: counter(num01, decimal-leading-zero) ".";
  counter-increment: num01 1;
}
.c-num-list01__item + .c-num-list01__item {
  margin-top: 0.8em;
}
.c-num-list01__item ul,
.c-num-list01__item ol {
  margin-top: 0.8em;
}
.c-num-list01__item ol {
  counter-reset: num02 0;
}
.c-num-list01__item ol li {
  padding-left: 3.5em;
  text-indent: -3.5em;
}
.c-num-list01__item ol li + li {
  margin-top: 0.8em;
}
.c-num-list01__item ol li::before {
  margin-right: 5px;
  color: var(--mh--color--primary-700);
  content: counter(num01, decimal-leading-zero) "-" counter(num02, decimal-leading-zero) ".";
  counter-increment: num02 1;
}
.c-num-list01__item ol .c-num-list01__item {
  padding-left: 3.5em;
  text-indent: -3.5em;
}
.c-num-list01__item ul {
  padding-left: 1.5em;
}
.c-num-list01__item ul li::before {
  position: relative;
  top: 14px;
  left: -1em;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--mh--color--primary-700);
  border-radius: 50%;
}
.c-num-list01__item ul li + .c-num-list01__item ul li {
  margin-top: 0.8em;
}
@media (width >= 768px ) {
  .c-num-list01__item ul li::before {
    top: 17px;
    width: 6px;
    height: 6px;
  }
}
/*  .c-simple-list01
================================================== */
.c-simple-list01__item {
  position: relative;
  padding-left: 15px;
  font-size: var(--mh--font-size--md);
}
.c-simple-list01__item::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--mh--color--primary-700);
  border-radius: 50%;
}
.c-simple-list01__item + .c-simple-list01__item {
  margin-top: 0.8em;
}
.c-simple-list01__item ul,
.c-simple-list01__item ol {
  margin-top: 0.8em;
}
.c-simple-list01__item ol {
  counter-reset: num 0;
}
.c-simple-list01__item ol > li {
  padding-left: 2em;
  text-indent: -2em;
}
.c-simple-list01__item ol > li::before {
  position: static;
  margin-right: 5px;
  color: var(--mh--color--primary-700);
  content: counter(num, decimal-leading-zero) ".";
  counter-increment: num 1;
  background-color: transparent;
  border-radius: 0;
}
@media (width >= 768px ) {
  .c-simple-list01__item::before {
    top: 12px;
    width: 6px;
    height: 6px;
  }
}
/* .c-pager01
=================================== */
.c-pager01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px -5px -10px;
  overflow: hidden;
  text-align: center;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a,
.c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #000;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: #000;
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  border-color: transparent;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media (width >= 1100px ) {
  .c-pager01 li a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border: 1px solid #000;
  }
}
/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  line-height: 1;
}
.c-pager02 a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 50px;
  padding: 15px;
  text-decoration: none;
  border: 1px solid;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  clear: both;
  width: 100%;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media (width >= 1100px ) {
  .c-pager02 a {
    transition: transform var(--mh--duration) var(--mh--easing);
  }
  .c-pager02 a:hover {
    color: #fff;
    background: #000;
    border-color: #000;
  }
}
/*  .c-set01.is-reverse
================================================== */
@media (width >= 768px ) {
  .c-set01.is-reverse {
    flex-direction: row;
  }
  .c-set01.is-reverse .c-set01__img {
    margin: 0 0 0 40px !important;
  }
}
/*  .c-set01
================================================== */
.c-set01__img {
  margin-top: 30px !important;
}
@media (width >= 768px ) {
  .c-set01 {
    flex-direction: row-reverse;
  }
  .c-set01__img {
    flex-basis: auto !important;
    width: 40%;
    margin: 0 40px 0 0 !important;
  }
  .c-set01__area-txt {
    flex-basis: auto !important;
    width: calc(100% - 480px);
  }
}
/* .c-single01
================================================== */
.c-single01__content {
  overflow: hidden;
}
.c-single01__content > *:first-child {
  margin-top: 0 !important;
}
.c-single01__content > *:last-child {
  margin-bottom: 0 !important;
}
.c-single01__content p {
  margin: var(--mh--space--xs) 0;
}
.c-single01__content h1:not([class*=c-]),
.c-single01__content h2:not([class*=c-]),
.c-single01__content h3:not([class*=c-]),
.c-single01__content h4:not([class*=c-]),
.c-single01__content h5:not([class*=c-]),
.c-single01__content h6:not([class*=c-]) {
  clear: both;
  margin: var(--mh--space--lg) 0 var(--mh--space--md);
  font-weight: 700;
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing);
}
.c-single01__content h5:not([class*=c-]),
.c-single01__content h6:not([class*=c-]) {
  font-size: var(--mh--font-size--md);
}
.c-single01__content ul:not([class*=c-]) ul:not([class*=c-]),
.c-single01__content ul:not([class*=c-]) ol:not([class*=c-]),
.c-single01__content ol:not([class*=c-]) ul:not([class*=c-]),
.c-single01__content ol:not([class*=c-]) ol:not([class*=c-]) {
  margin: 0.8em 0 0;
}
.c-single01__content blockquote {
  padding: 20px;
  margin: var(--mh--space--md) 0;
  border: 1px solid var(--mh--color--primary-700);
}
.c-single01__content blockquote > *:first-child {
  margin-top: 0;
}
.c-single01__content figure {
  margin: var(--mh--space--md) 0;
}
.c-single01__content *:not(.c-link01) a {
  color: var(--mh--color--primary-700);
  text-decoration: underline !important;
}
@media (hover: hover) and (pointer: fine) {
  .c-single01__content *:not(.c-link01) a:hover {
    text-decoration: none !important;
  }
}
/* .l-breadcrumb
================================================ */
.l-breadcrumb__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* .l-breadcrumb-list
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item::before {
  margin-right: 5px;
  content: ">";
}
@media (width < 768px) {
  .l-breadcrumb-list {
    flex-wrap: nowrap;
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
/* .l-relation
================================================ */
.l-relation {
  padding-bottom: var(--mh--padding--40_80);
}
.l-relation__head {
  margin: 0 !important;
}
.l-relation__list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.l-relation__item-in {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mh--color--primary-500);
  border-radius: 4px;
  padding: 18px 20px 13px;
  transition: all var(--mh--duration) var(--mh--easing);
}
.l-relation__item-txt {
  line-height: var(--mh--line-height--sm);
}
.l-relation__item-ico.c-ico.is-blank01 {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}
.l-relation__item-ico.c-ico.is-blank01::after {
  background: var(--mh--color--grayscale-100);
  width: 20px;
  height: 20px;
}
@media (width >= 768px ) {
  .l-relation__inner {
    display: grid;
    align-items: center;
    grid-template-columns: auto 73.2142857143%;
  }
  .l-relation__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-relation__item-in:hover {
    background: var(--mh--color--primary-700);
  }
}
/* .l-footer
================================================ */
.l-footer {
  position: relative;
}
.l-footer__inner {
  border-top: 1px solid var(--mh--color--grayscale-500);
  padding: 40px var(--mh--contents--padding--side) 50px;
}
/* .l-footer-set
================================================ */
.l-footer-set {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}
.l-footer-set__pdf {
  font-weight: 700;
  line-height: var(--mh--line-height--sm);
  text-decoration: underline;
}
.l-footer-set__pdf::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%3Cg%20fill%3D%22%238659b2%22%20clip-path%3D%22url(%23a)%22%3E%0A%3Cpath%20d%3D%22M23.713%206.08V24H3.988v-3.444h1.453v1.992h16.82V7.695h-6.794V1.452H5.441v7.38H3.988V0h13.646z%22%2F%3E%0A%3Cpath%20d%3D%22M5.265%2013.587q0%20.984-1.124.984H3.59v-1.945h.55c.75%200%201.125.317%201.125.96%22%2F%3E%0A%3Cpath%20d%3D%22M11.192%2013.2c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zm0%200c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zM.287%2010.004v9.394h19.057v-9.394zm5.775%205.048c-.446.387-1.055.586-1.804.586H3.59v2.144H2.184V11.55h2.203c1.57%200%202.354.656%202.354%201.98%200%20.62-.223%201.136-.68%201.522m6.207%201.863c-.609.574-1.405.867-2.412.867H7.654V11.55h2.203c2.213%200%203.314%201.008%203.314%203.034%200%20.972-.304%201.745-.902%202.32zm5.54-4.217h-2.201v1.535h2.014v1.136h-2.014v2.424h-1.406v-6.231h3.596v1.148zm-8.07%200h-.69v3.947h.69c.61%200%201.09-.187%201.43-.55.35-.363.515-.867.515-1.488%200-.597-.176-1.065-.516-1.405s-.82-.516-1.44-.516z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22a%22%3E%0A%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%3Cg%20fill%3D%22%238659b2%22%20clip-path%3D%22url(%23a)%22%3E%0A%3Cpath%20d%3D%22M23.713%206.08V24H3.988v-3.444h1.453v1.992h16.82V7.695h-6.794V1.452H5.441v7.38H3.988V0h13.646z%22%2F%3E%0A%3Cpath%20d%3D%22M5.265%2013.587q0%20.984-1.124.984H3.59v-1.945h.55c.75%200%201.125.317%201.125.96%22%2F%3E%0A%3Cpath%20d%3D%22M11.192%2013.2c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zm0%200c-.34-.339-.82-.515-1.44-.515H9.06v3.948h.691c.61%200%201.09-.188%201.43-.55.35-.364.515-.868.515-1.488%200-.598-.176-1.066-.516-1.406zM.287%2010.004v9.394h19.057v-9.394zm5.775%205.048c-.446.387-1.055.586-1.804.586H3.59v2.144H2.184V11.55h2.203c1.57%200%202.354.656%202.354%201.98%200%20.62-.223%201.136-.68%201.522m6.207%201.863c-.609.574-1.405.867-2.412.867H7.654V11.55h2.203c2.213%200%203.314%201.008%203.314%203.034%200%20.972-.304%201.745-.902%202.32zm5.54-4.217h-2.201v1.535h2.014v1.136h-2.014v2.424h-1.406v-6.231h3.596v1.148zm-8.07%200h-.69v3.947h.69c.61%200%201.09-.187%201.43-.55.35-.363.515-.867.515-1.488%200-.597-.176-1.065-.516-1.405s-.82-.516-1.44-.516z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22a%22%3E%0A%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
  margin-left: 5px;
  background: var(--mh--color--primary-500);
  position: relative;
  top: 3px;
}
.l-footer-set__txt {
  font-size: var(--mh--font-size--xs);
}
@media (width >= 768px ) {
  .l-footer-set {
    margin-top: 30px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .l-footer-set__txt + .l-footer-set__txt {
    margin-top: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-set__pdf {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .l-footer-set__pdf:hover {
    color: var(--mh--color--primary-500);
    text-decoration: none;
  }
}
/* .l-footer-cr
================================================ */
.l-footer-cr {
  margin-top: var(--mh--space--x3l);
}
@media (width >= 768px ) {
  .l-footer-cr {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 40px;
  right: var(--mh--contents--padding--side);
}
.l-footer-page-top__link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid var(--mh--color--primary-500);
  border-radius: 50%;
  position: relative;
}
.l-footer-page-top__link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 24px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2024%22%3E%0A%3Cpath%20fill%3D%22%238659b2%22%20d%3D%22M.215%2010.135a.743.743%200%200%201%20.015-1.06L9.47.212a.77.77%200%200%201%201.06%200l9.24%208.863a.743.743%200%200%201%20.015%201.06.77.77%200%200%201-1.076.015l-7.948-7.624V23.25c0%20.414-.34.75-.761.75a.755.755%200%200%201-.76-.75V2.526L1.29%2010.15a.77.77%200%200%201-1.076-.015%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2024%22%3E%0A%3Cpath%20fill%3D%22%238659b2%22%20d%3D%22M.215%2010.135a.743.743%200%200%201%20.015-1.06L9.47.212a.77.77%200%200%201%201.06%200l9.24%208.863a.743.743%200%200%201%20.015%201.06.77.77%200%200%201-1.076.015l-7.948-7.624V23.25c0%20.414-.34.75-.761.75a.755.755%200%200%201-.76-.75V2.526L1.29%2010.15a.77.77%200%200%201-1.076-.015%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
  background: var(--mh--color--primary-500);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width >= 768px ) {
  .l-footer-page-top {
    opacity: 0;
  }
  .l-footer-page-top.is-shown {
    visibility: visible;
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-page-top__link {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .l-footer-page-top__link:hover {
    background: var(--mh--color--primary-500);
  }
  .l-footer-page-top__link:hover::after {
    background: var(--mh--color--grayscale-100);
  }
}
/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: 320px;
  transition: all 0.6s;
}
.l-header.is-hide.is-scroll {
  transform: translateY(-100%);
}
.l-header.is-scroll {
  background: var(--mh--color--grayscale-100);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  height: var(--mh--header--height);
  padding-inline: var(--mh--contents--padding--side);
}
@media (width < 768px) {
  .l-header {
    background: var(--mh--color--grayscale-100);
  }
}
@media (width >= 768px ) {
  .l-header {
    min-width: var(--mh--contents--width-with-padding);
  }
}
@media (width >= 768px ) and (hover: none) {
  .l-header {
    left: 0 !important;
  }
}
@media (width >= 768px ) {
  .l-header__inner {
    height: var(--mh--header--height);
  }
}
/* .l-header-logo
================================================== */
.l-header-logo {
  display: flex;
  align-items: center;
  width: 335px;
}
.l-header-logo__link {
  display: block;
  width: 100%;
}
@media (width >= 768px ) {
  .l-header-logo {
    width: 432px;
  }
}
/* .l-header-btn
================================================== */
.l-header-btn {
  position: relative;
  z-index: 10;
}
.l-header-btn__link {
  position: relative;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.l-header-btn__ico {
  position: absolute;
  top: -20px;
  left: -23px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  aspect-ratio: 1/1;
  font-size: var(--mh--font-size--lg);
  font-weight: bold;
  color: var(--mh--color--grayscale-100);
  background: var(--mh--color--accent-500);
  border-radius: 50%;
  z-index: 1;
}
.l-header-btn__ico::before {
  position: absolute;
  content: "";
  inset: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--mh--color--grayscale-100);
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin: auto;
}
.l-header-btn__txt {
  display: block;
  padding: 12px 30px 11px 104px;
  justify-content: center;
  align-items: center;
  font-size: var(--mh--font-size--x2l);
  font-weight: bold;
  background: var(--mh--color--grayscale-100);
  border: 3px solid var(--mh--color--accent-500);
  border-radius: 4px 4px 0 0;
}
@media (width < 768px) {
  .l-header-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
  }
  .l-header-btn__ico {
    padding: 0 0 5px 19px;
  }
  .l-header-btn__txt {
    border-bottom: none;
  }
}
@media (width >= 768px ) {
  .l-header-btn {
    display: flex;
    align-items: center;
  }
  .l-header-btn__ico {
    width: 80px;
    height: 80px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .l-header-btn__txt {
    padding: 13px 28px 13px 69px;
    font-size: var(--mh--font-size--xl);
    letter-spacing: 0.04em;
    border-radius: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-btn__link {
    transition: box-shadow var(--mh--duration) var(--mh--easing);
  }
  .l-header-btn__link:hover {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  }
  .l-header-btn__link:hover .l-header-btn__txt {
    color: var(--mh--color--accent-500);
  }
  .l-header-btn__txt {
    transition: color var(--mh--duration) var(--mh--easing);
  }
}
/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  padding-top: calc(var(--mh--header--height) + 7px);
}
.l-main-img__inner {
  padding-inline: var(--mh--contents--padding--side);
}
.l-main-img__txt {
  position: relative;
  display: inline-block;
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-800);
  padding: 15px 20px 0 15px;
  margin-bottom: 16px;
  letter-spacing: var(--mh--letter-spacing--md);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%3E%20%3Crect%20width%3D%223%22%20height%3D%2230%22%20fill%3D%22%23595959%22%2F%3E%20%3Crect%20y%3D%223%22%20width%3D%223%22%20height%3D%2230%22%20transform%3D%22rotate(-90%200%203)%22%20fill%3D%22%23595959%22%2F%3E%3C%2Fsvg%3E") no-repeat top left/30px, url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2241%22%20viewBox%3D%220%200%2040%2041%22%20fill%3D%22none%22%3E%20%3Crect%20x%3D%2230%22%20y%3D%2240.9193%22%20width%3D%223%22%20height%3D%2230%22%20transform%3D%22rotate(180%2030%2040.9193)%22%20fill%3D%22%23595959%22%2F%3E%20%3Cpath%20d%3D%22M28.5%2011.5C28.5%205.14846%2033.6485%200%2040%200C40%206.35154%2034.8515%2011.5%2028.5%2011.5Z%22%20fill%3D%22%23595959%22%2F%3E%20%3Cpath%20d%3D%22M28.5%2011.5C28.5%205.14846%2023.3515%200%2017%200C17%206.35154%2022.1485%2011.5%2028.5%2011.5Z%22%20fill%3D%22%23595959%22%2F%3E%20%3Crect%20x%3D%2230%22%20y%3D%2237.9193%22%20width%3D%223%22%20height%3D%2230%22%20transform%3D%22rotate(90%2030%2037.9193)%22%20fill%3D%22%23595959%22%2F%3E%3C%2Fsvg%3E") no-repeat bottom right/41px;
}
.l-main-img__copy-small {
  display: inline-block;
  margin-bottom: 3px;
  font-size: var(--mh--font-size--x4l);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--md);
}
.l-main-img__copy-large {
  font-size: var(--mh--font-size--x12l);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--md);
  font-weight: bold;
}
.l-main-img__copy-gradation {
  display: inline-block;
  padding: 4px 20px 0;
  font-size: var(--mh--font-size--x11l);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--md);
  font-weight: bold;
  color: var(--mh--color--grayscale-100);
  background: linear-gradient(90deg, #4774CC 0%, #8D59B2 100%);
  border-radius: 18px 0 18px 0;
}
.l-main-img__btn {
  position: relative;
  display: flex;
  gap: 4px;
  margin: 20px 0 -36px;
  z-index: 1;
}
.l-main-img__btn-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 109px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(135deg, #AAC2F2 0%, #D2B8E5 100%);
}
.l-main-img__btn-item::before, .l-main-img__btn-item::after {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.l-main-img__btn-item::before {
  width: calc(100% - 12px);
  background: var(--mh--color--grayscale-100);
}
.l-main-img__btn-item::after {
  width: calc(100% - 4px);
  border: 2px solid var(--mh--color--grayscale-100);
}
.l-main-img__btn-item-in {
  position: relative;
  font-weight: bold;
  font-size: var(--mh--font-size--xl);
  line-height: var(--mh--line-height--xs);
  color: var(--mh--color--primary-700);
  z-index: 1;
}
.l-main-img__slider {
  position: relative;
}
.l-main-img__slider::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 54.6666666667%;
  aspect-ratio: 205/103;
  background: url(../img/home/bg_mv01.png) no-repeat center/100%;
  z-index: 1;
}
.l-main-img__bnr {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 315px;
  z-index: 2;
}
.l-main-img__bnr.is-hide {
  opacity: 0;
  visibility: hidden;
}
.l-main-img__bnr-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--mh--color--grayscale-100);
  border: none;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(29, 39, 89, 0.25));
  z-index: 1;
}
.l-main-img__bnr-close::before, .l-main-img__bnr-close::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 15px;
  height: 2px;
  margin: auto;
  background: var(--mh--color--grayscale-900);
  transform: rotate(45deg);
}
.l-main-img__bnr-close::after {
  transform: rotate(-45deg);
}
.l-main-img__bnr-link {
  display: block;
}
@media (width >= 768px ) {
  .l-main-img {
    position: relative;
    display: flex;
    align-items: center;
    height: 100svh;
    min-height: 650px;
  }
  .l-main-img__inner {
    margin-top: -4%;
  }
  .l-main-img__txt {
    font-size: var(--mh--font-size--xl);
    padding: 14px 40px 15px 29px;
    margin-bottom: 31px;
  }
  .l-main-img__copy-small {
    margin-bottom: 4px;
    font-size: var(--mh--font-size--x8l);
  }
  .l-main-img__copy-large {
    font-size: var(--mh--font-size--x10l);
  }
  .l-main-img__copy-gradation {
    position: relative;
    top: 0;
    padding: 9px 22px 1px;
    border-radius: 25px 0 25px 0;
    font-size: var(--mh--font-size--x9l);
  }
  .l-main-img__btn {
    gap: 15px;
    margin: 30px 0 0;
  }
  .l-main-img__btn-item {
    width: 130px;
  }
  .l-main-img__btn-item::before {
    width: calc(100% - 12px);
  }
  .l-main-img__btn-item::after {
    width: calc(100% - 4px);
  }
  .l-main-img__slider {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 71.3541666667%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 0 30px;
    overflow: hidden;
  }
  .l-main-img__slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-main-img__slider .splide__track {
    height: 100%;
  }
}
@media (width >= 1100px ) {
  .l-main-img__txt {
    font-size: var(--mh--font-size--x3l);
  }
  .l-main-img__copy-small {
    font-size: var(--mh--font-size--x10l);
  }
  .l-main-img__copy-large {
    font-size: var(--mh--font-size--x13l);
  }
  .l-main-img__copy-gradation {
    font-size: var(--mh--font-size--x11l);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-main-img__bnr-close::before, .l-main-img__bnr-close::after {
    transition: background var(--mh--duration) var(--mh--easing);
  }
  .l-main-img__bnr-close:hover::before, .l-main-img__bnr-close:hover::after {
    background: var(--mh--color--accent-500);
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  font-size: 2rem;
  text-align: center;
  background: #ccc;
}
.l-sub-img__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 30vh;
}
@media (width >= 768px ) {
  .l-sub-img {
    padding-top: var(--mh--header--height);
    font-size: 3rem;
  }
}
/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s var(--mh--easing), opacity 1s var(--mh--easing);
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}
.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: transform var(--mh--duration) var(--mh--easing), opacity var(--mh--duration) var(--mh--easing);
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: transform var(--mh--duration) var(--mh--easing), opacity var(--mh--duration) var(--mh--easing);
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime=img] {
  overflow: clip;
}
.js-c-anime-elem[data-anime=img] img {
  transition: all 0.6s var(--mh--easing);
  scale: 1.25;
  opacity: 0;
}
.js-c-anime-elem[data-anime=img].is-animated img {
  scale: 1;
  opacity: 1;
}
.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}
.js-c-switch-tab {
  cursor: pointer;
}
.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}
.js-c-toggle-trigger {
  cursor: pointer;
}
.js-c-toggle-content {
  display: none;
}
/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (width >= 768px ) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* home-intro
================================================== */
.home-intro__set {
  display: grid;
  gap: var(--mh--space--x3l);
}
.home-intro__subhead {
  line-height: var(--mh--line-height--sm);
}
.home-intro__head {
  line-height: var(--mh--line-height--sm);
  margin-top: 5px;
}
.home-intro__img img {
  width: 100%;
}
@media (width < 768px) {
  .home-intro__img {
    order: 1;
  }
}
@media (width >= 768px ) {
  .home-intro__set {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
/* home-kadai
================================================== */
.home-kadai {
  background: url(../img/home/bg_kadai01_sp.png) no-repeat top center/cover;
}
.home-kadai__container {
  display: grid;
  gap: 10px;
}
@media (width >= 768px ) {
  .home-kadai {
    background-image: url(../img/home/bg_kadai01_pc.png);
    margin-left: var(--mh--contents--padding--side);
    margin-right: var(--mh--contents--padding--side);
    border-radius: 30px;
  }
  .home-kadai__container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.home-kadai-content {
  border-radius: 15px;
  border: 6px solid var(--mh--color--primary-300);
  padding: 29px 14px;
  background: var(--mh--color--grayscale-100);
}
.home-kadai-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home-kadai-content__img {
  border-radius: 4px;
  width: 94px;
  overflow: clip;
}
.home-kadai-content__item {
  line-height: var(--mh--line-height--sm);
  padding: 15px 0 15px 35px;
  position: relative;
}
.home-kadai-content__item::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/common/ico_check01.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.home-kadai-content__item:first-of-type {
  padding-top: 0;
}
.home-kadai-content__item:last-of-type {
  padding-bottom: 0;
}
.home-kadai-content__item + .home-kadai-content__item {
  border-top: 1px solid var(--mh--color--grayscale-500);
}
@media (width >= 768px ) {
  .home-kadai-content {
    padding: 54px;
  }
  .home-kadai-content__header {
    margin-bottom: 30px;
  }
  .home-kadai-content__img {
    width: 213px;
    border-radius: 8px;
  }
  .home-kadai-content__item {
    padding: 20px 0 20px 45px;
  }
  .home-kadai-content__item:first-of-type::before {
    top: calc(50% - 10px);
  }
  .home-kadai-content__item:last-of-type::before {
    top: calc(50% + 10px);
  }
  .home-kadai-content__item::before {
    width: 30px;
    height: 30px;
  }
}
.home-kadai-content.is-blue {
  border-color: var(--mh--color--secondary-100);
}
.home-kadai-content.is-blue .home-kadai-content__item::before {
  background-image: url(../img/common/ico_check02.svg);
}
.home-kadai-box {
  background: url(../img/home/bg_kadai_box01_sp.jpg) no-repeat bottom right/cover;
  padding: 44px 20px;
  border-radius: 15px;
  margin-top: var(--mh--space--md);
  position: relative;
}
.home-kadai-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid var(--mh--color--grayscale-100);
  border-radius: 12px;
  pointer-events: none;
}
.home-kadai-box__arw {
  display: block;
  width: 33px;
  height: 31px;
  background: url(../img/common/ico_arrow02.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -35%;
}
.home-kadai-box__txt {
  text-align: center;
  line-height: var(--mh--line-height--sm);
}
@media (width >= 768px ) {
  .home-kadai-box {
    background-image: url(../img/home/bg_kadai_box01_pc.jpg);
    padding: 60px;
    border-radius: 30px;
  }
  .home-kadai-box::before {
    border-radius: 27px;
  }
  .home-kadai-box__arw {
    width: 55px;
    height: 50px;
  }
}
/* home-expert
================================================== */
.home-expert__content {
  margin-top: var(--mh--space--md);
  border-radius: 15px;
  border: 2px solid var(--mh--color--grayscale-500);
  padding: 18px;
}
.home-expert__list {
  display: grid;
  gap: 40px;
}
.home-expert__item {
  position: relative;
}
.home-expert__item + .home-expert__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--mh--color--grayscale-500);
  position: absolute;
  top: -20px;
  left: 0;
}
.home-expert__item-img {
  border-radius: 4px;
  overflow: clip;
  margin-bottom: 15px;
}
.home-expert__item-img img {
  width: 100%;
}
.home-expert__item-txt {
  margin-top: 10px;
}
@media (width >= 768px ) {
  .home-expert__txt {
    text-align: center;
  }
  .home-expert__content {
    padding: 58px;
  }
  .home-expert__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 85px;
  }
  .home-expert__item {
    display: flex;
    flex-direction: column;
  }
  .home-expert__item + .home-expert__item::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--mh--color--grayscale-500);
    position: absolute;
    top: 0;
    left: unset;
    left: -42px;
  }
  .home-expert__item-img {
    margin-bottom: 20px;
  }
  .home-expert__item-txt {
    min-height: 150px;
    padding-bottom: 20px;
  }
}
.home-expert-target {
  border-radius: 4px;
  padding: 20px;
  background: rgb(243, 243, 243);
  margin-top: 15px;
}
.home-expert-target__head-ico.c-ico.is-target01 {
  margin-left: 0;
  margin-right: 5px;
}
.home-expert-target__head-ico.c-ico.is-target01::after {
  background: var(--mh--color--primary-700);
  position: relative;
  top: 3px;
}
.home-expert-target__txt {
  margin-top: 10px;
}
@media (width >= 768px ) {
  .home-expert-target {
    margin-top: 0;
    padding: 30px;
    flex: 1;
    border-radius: 8px;
  }
}
/* home-flow
================================================== */
.home-flow__bg {
  border-radius: 15px;
  overflow: clip;
}
.home-flow__bg picture, .home-flow__bg img {
  width: 100%;
}
.home-flow__inner {
  padding-bottom: var(--mh--padding--60_120);
}
.home-flow__list {
  display: grid;
  gap: 42px;
}
.home-flow__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 4px;
  border: 2px solid var(--mh--color--grayscale-500);
  padding: 20px;
  position: relative;
  gap: 10px;
}
.home-flow__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background: url(../img/common/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: -13px;
  translate: -50% 100%;
}
.home-flow__item-head {
  line-height: var(--mh--line-height--sm);
}
.home-flow__item-en {
  display: inline-block;
  background: var(--mh--color--grayscale-100);
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  left: 10px;
  translate: 0 -50%;
}
.home-flow__item-txt {
  width: 100%;
}
@media (width < 1400px) {
  .home-flow__item-head {
    order: -1;
  }
  .home-flow__item-img {
    width: 80px;
    margin-left: auto;
  }
}
@media (768px <= width < 1400px) {
  .home-flow__item {
    align-items: center;
    padding: 20px;
  }
  .home-flow__item-head {
    font-size: 2rem !important;
  }
  .home-flow__item-txt {
    width: 100%;
    height: 100%;
  }
}
@media (width >= 768px ) {
  .home-flow__bg {
    border-radius: 30px;
    margin-left: var(--mh--contents--padding--side);
    margin-right: var(--mh--contents--padding--side);
  }
  .home-flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
  .home-flow__item {
    border-radius: 8px;
  }
  .home-flow__item:not(:last-of-type)::after {
    inset: unset;
    top: 50%;
    right: -13px;
    translate: 100% -50%;
    rotate: -90deg;
  }
  .home-flow__item-img {
    width: 100px;
  }
}
@media (width >= 1400px ) {
  .home-flow__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
  .home-flow__item {
    display: grid;
    place-content: start;
    gap: 20px;
  }
  .home-flow__item-head {
    text-align: center;
  }
  .home-flow__item-img {
    margin-inline: auto;
  }
}
/* home-msg
================================================== */
.home-msg {
  border-radius: 15px;
}
.home-msg__set {
  display: grid;
  gap: 30px;
}
.home-msg__lead-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-msg__lead {
  display: inline-block;
  width: fit-content;
  color: var(--mh--color--grayscale-100);
  border-radius: 8px 0 8px 0;
  background: var(--mh--gradient01_x);
  padding: 5px 15px 1px;
  line-height: var(--mh--line-height--sm);
}
.home-msg__name {
  text-align: right;
}
.home-msg__name > span {
  display: inline-block;
  margin-left: 15px;
}
.home-msg__img {
  border-radius: 4px;
  overflow: clip;
}
.home-msg__img img {
  width: 100%;
}
@media (width < 768px) {
  .home-msg__img {
    order: 1;
  }
}
@media (width >= 768px ) {
  .home-msg {
    margin-left: var(--mh--contents--padding--side);
    margin-right: var(--mh--contents--padding--side);
    border-radius: 30px;
  }
  .home-msg__set {
    grid-template-columns: 31.4285714286% 1fr;
    gap: 60px;
  }
  .home-msg__img {
    border-radius: 8px;
  }
  .home-msg__lead {
    border-radius: 16px 0 16px 0;
    padding: 10px 20px 5px;
  }
}
/* home-form
================================================== */
.home-form {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #AAC2F2 0%, #D2B8E5 100%);
  border-radius: 15px;
  margin: 0 0 40px;
}
.home-form::before, .home-form::after {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  height: auto;
  border-radius: 10px;
}
.home-form::before {
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: var(--mh--color--grayscale-100);
}
.home-form::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 14px;
  border: 2px solid var(--mh--color--grayscale-100);
}
.home-form__inner {
  position: relative;
  z-index: 1;
}
.home-form__lead {
  margin-bottom: 20px;
}
.home-form__content.is-input .home-form__thanks, .home-form__content.is-confirm .home-form__thanks {
  display: none;
}
.home-form__content.is-complete .home-form__input {
  display: none;
}
@media (width >= 768px ) {
  .home-form {
    padding: 120px 0;
    max-width: calc(100% - 100px);
    margin: 0 auto 80px;
    border-radius: 30px;
  }
  .home-form::before {
    border-radius: 25px;
  }
  .home-form::after {
    border-radius: 28px;
  }
  .home-form__lead {
    margin-bottom: 40px;
    text-align: center;
  }
}
@media (width >= 1100px ) {
  .home-form {
    max-width: calc(100% - 200px);
    padding-inline: 50px;
  }
}
.u-hidden {
  display: none;
}
.u-inline {
  display: inline;
}
.u-inline-block {
  display: inline-block;
}
.u-block {
  display: block;
}
.u-flex {
  display: flex;
}
.u-grid {
  display: grid;
}
@media (width < 640px) {
  .u-hidden-sm-down {
    display: none;
  }
}
@media (width < 768px) {
  .u-hidden-md-down {
    display: none;
  }
}
@media (width < 1100px) {
  .u-hidden-lg-down {
    display: none;
  }
}
@media (width < 1280px) {
  .u-hidden-xl-down {
    display: none;
  }
}
@media (width >= 640px) {
  .u-hidden-sm-up {
    display: none;
  }
}
@media (width >= 768px ) {
  .u-hidden-md-up {
    display: none;
  }
}
@media (width >= 1100px ) {
  .u-hidden-lg-up {
    display: none;
  }
}
@media (width >= 1280px ) {
  .u-hidden-xl-up {
    display: none;
  }
}
/* overflow
-------------------------------------- */
.u-overflow-auto {
  overflow: auto;
}
.u-overflow-hidden {
  overflow: hidden;
}
.u-overflow-visible {
  overflow: visible;
}
/* screen reader
-------------------------------------- */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border-width: 0;
  clip: rect(0, 0, 0, 0);
}
/* text-transform
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}
.u-capitalize {
  text-transform: capitalize;
}
/* text-align
-------------------------------------- */
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-text-center {
  text-align: center;
}
@media (width < 640px) {
  .u-text-left-sm-down {
    text-align: left;
  }
}
@media (width < 640px) {
  .u-text-right-sm-down {
    text-align: right;
  }
}
@media (width < 640px) {
  .u-text-center-sm-down {
    text-align: center;
  }
}
@media (width < 768px) {
  .u-text-left-md-down {
    text-align: left;
  }
}
@media (width < 768px) {
  .u-text-right-md-down {
    text-align: right;
  }
}
@media (width < 768px) {
  .u-text-center-md-down {
    text-align: center;
  }
}
@media (width < 1100px) {
  .u-text-left-lg-down {
    text-align: left;
  }
}
@media (width < 1100px) {
  .u-text-right-lg-down {
    text-align: right;
  }
}
@media (width < 1100px) {
  .u-text-center-lg-down {
    text-align: center;
  }
}
@media (width < 1280px) {
  .u-text-left-xl-down {
    text-align: left;
  }
}
@media (width < 1280px) {
  .u-text-right-xl-down {
    text-align: right;
  }
}
@media (width < 1280px) {
  .u-text-center-xl-down {
    text-align: center;
  }
}
@media (width >= 640px) {
  .u-text-left-sm-up {
    text-align: left;
  }
}
@media (width >= 640px) {
  .u-text-right-sm-up {
    text-align: right;
  }
}
@media (width >= 640px) {
  .u-text-center-sm-up {
    text-align: center;
  }
}
@media (width >= 768px ) {
  .u-text-left-md-up {
    text-align: left;
  }
}
@media (width >= 768px ) {
  .u-text-right-md-up {
    text-align: right;
  }
}
@media (width >= 768px ) {
  .u-text-center-md-up {
    text-align: center;
  }
}
@media (width >= 1100px ) {
  .u-text-left-lg-up {
    text-align: left;
  }
}
@media (width >= 1100px ) {
  .u-text-right-lg-up {
    text-align: right;
  }
}
@media (width >= 1100px ) {
  .u-text-center-lg-up {
    text-align: center;
  }
}
@media (width >= 1280px ) {
  .u-text-left-xl-up {
    text-align: left;
  }
}
@media (width >= 1280px ) {
  .u-text-right-xl-up {
    text-align: right;
  }
}
@media (width >= 1280px ) {
  .u-text-center-xl-up {
    text-align: center;
  }
}
/* font-size
-------------------------------------- */
.u-text-x2s {
  font-size: var(--mh--font-size--x2s);
}
.u-text-xs {
  font-size: var(--mh--font-size--xs);
}
.u-text-sm {
  font-size: var(--mh--font-size--sm);
}
.u-text-md {
  font-size: var(--mh--font-size--md);
}
.u-text-lg {
  font-size: var(--mh--font-size--lg);
}
.u-text-xl {
  font-size: var(--mh--font-size--xl);
}
.u-text-x2l {
  font-size: var(--mh--font-size--x2l);
}
.u-text-x3l {
  font-size: var(--mh--font-size--x3l);
}
.u-text-x4l {
  font-size: var(--mh--font-size--x4l);
}
.u-text-x5l {
  font-size: var(--mh--font-size--x5l);
}
.u-text-x6l {
  font-size: var(--mh--font-size--x6l);
}
.u-text-x7l {
  font-size: var(--mh--font-size--x7l);
}
.u-text-x8l {
  font-size: var(--mh--font-size--x8l);
}
.u-text-x9l {
  font-size: var(--mh--font-size--x9l);
}
.u-text-x10l {
  font-size: var(--mh--font-size--x10l);
}
.u-text-x11l {
  font-size: var(--mh--font-size--x11l);
}
.u-text-x12l {
  font-size: var(--mh--font-size--x12l);
}
.u-text-x13l {
  font-size: var(--mh--font-size--x13l);
}
/* line-height
-------------------------------------- */
.u-leading-none {
  line-height: var(--mh--line-height--none);
}
.u-leading-xs {
  line-height: var(--mh--line-height--xs);
}
.u-leading-sm {
  line-height: var(--mh--line-height--sm);
}
.u-leading-md {
  line-height: var(--mh--line-height--md);
}
.u-leading-lg {
  line-height: var(--mh--line-height--lg);
}
/* letter-spacing
-------------------------------------- */
.u-tracking-sm {
  letter-spacing: var(--mh--letter-spacing--sm);
}
.u-tracking-md {
  letter-spacing: var(--mh--letter-spacing--md);
}
/* font-weight
-------------------------------------- */
.u-font-bold {
  font-weight: 700;
}
/* font-family
-------------------------------------- */
.u-font-ibm {
  font-family: var(--mh--font-family--ibm);
  font-weight: 700;
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--md);
}
.u-font-en {
  font-family: var(--mh--font-family--en);
  font-weight: 600;
  line-height: var(--mh--line-height--xs);
  letter-spacing: var(--mh--letter-spacing--sm);
}
/* position
-------------------------------------- */
.u-relative {
  position: relative;
}
.u-absolute {
  position: absolute !important;
}
/* layout
-------------------------------------- */
.u-inner {
  padding-right: var(--mh--contents--padding--side);
  padding-left: var(--mh--contents--padding--side);
}
@media (width >= 768px ) {
  .u-inner {
    width: 100%;
    max-width: var(--mh--contents--width-with-padding);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (width >= 1100px ) {
  .u-inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.u-wide-inner {
  padding-right: var(--mh--contents--padding--side);
  padding-left: var(--mh--contents--padding--side);
}
@media (width >= 768px ) {
  .u-wide-inner {
    width: 100%;
    max-width: var(--mh--contents--wide-width-with-padding);
    margin-right: auto;
    margin-left: auto;
  }
}
.u-item-center {
  display: grid;
  place-items: center;
}
.u-clearfix {
  clear: both;
  display: block;
  height: 0;
  border: none;
}
/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a.u-alpha {
    transition: opacity var(--mh--duration) var(--mh--easing);
  }
  a.u-alpha:hover {
    opacity: 0.8;
  }
}
a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  a.u-zoom .u-zoom__img {
    transition: transform var(--mh--duration) var(--mh--easing);
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}
a.u-link-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
a[class].u-text-underline {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a[class].u-text-underline:hover {
    text-decoration: none;
  }
}
.u-media-query {
  font-family: sp;
}
@media (width >= 768px ) {
  .u-media-query {
    font-family: tb;
  }
}
@media (width >= 1100px ) {
  .u-media-query {
    font-family: pc;
  }
}
.u-text-primary-700 {
  color: var(--mh--color--primary-700);
}
.u-text-primary-500 {
  color: var(--mh--color--primary-500);
}
.u-text-primary-400 {
  color: var(--mh--color--primary-400);
}
.u-text-primary-300 {
  color: var(--mh--color--primary-300);
}
.u-text-primary-200 {
  color: var(--mh--color--primary-200);
}
.u-text-primary-100 {
  color: var(--mh--color--primary-100);
}
.u-text-secondary-500 {
  color: var(--mh--color--secondary-500);
}
.u-text-secondary-100 {
  color: var(--mh--color--secondary-100);
}
.u-text-accent-700 {
  color: var(--mh--color--accent-700);
}
.u-text-accent-500 {
  color: var(--mh--color--accent-500);
}
.u-text-surface-500 {
  color: var(--mh--color--surface-500);
}
.u-text-grayscale-900 {
  color: var(--mh--color--grayscale-900);
}
.u-text-grayscale-800 {
  color: var(--mh--color--grayscale-800);
}
.u-text-grayscale-500 {
  color: var(--mh--color--grayscale-500);
}
.u-text-grayscale-300 {
  color: var(--mh--color--grayscale-300);
}
.u-text-grayscale-200 {
  color: var(--mh--color--grayscale-200);
}
.u-text-grayscale-100 {
  color: var(--mh--color--grayscale-100);
}
.u-text-error-500 {
  color: var(--mh--color--error-500);
}
.u-text-category-yellow01-500 {
  color: var(--mh--color--category-yellow01-500);
}
.u-text-category-pink01-500 {
  color: var(--mh--color--category-pink01-500);
}
.u-bg-primary-700 {
  background-color: var(--mh--color--primary-700);
}
.u-bg-primary-500 {
  background-color: var(--mh--color--primary-500);
}
.u-bg-primary-400 {
  background-color: var(--mh--color--primary-400);
}
.u-bg-primary-300 {
  background-color: var(--mh--color--primary-300);
}
.u-bg-primary-200 {
  background-color: var(--mh--color--primary-200);
}
.u-bg-primary-100 {
  background-color: var(--mh--color--primary-100);
}
.u-bg-secondary-500 {
  background-color: var(--mh--color--secondary-500);
}
.u-bg-secondary-100 {
  background-color: var(--mh--color--secondary-100);
}
.u-bg-accent-700 {
  background-color: var(--mh--color--accent-700);
}
.u-bg-accent-500 {
  background-color: var(--mh--color--accent-500);
}
.u-bg-surface-500 {
  background-color: var(--mh--color--surface-500);
}
.u-bg-grayscale-900 {
  background-color: var(--mh--color--grayscale-900);
}
.u-bg-grayscale-800 {
  background-color: var(--mh--color--grayscale-800);
}
.u-bg-grayscale-500 {
  background-color: var(--mh--color--grayscale-500);
}
.u-bg-grayscale-300 {
  background-color: var(--mh--color--grayscale-300);
}
.u-bg-grayscale-200 {
  background-color: var(--mh--color--grayscale-200);
}
.u-bg-grayscale-100 {
  background-color: var(--mh--color--grayscale-100);
}
.u-bg-error-500 {
  background-color: var(--mh--color--error-500);
}
.u-bg-category-yellow01-500 {
  background-color: var(--mh--color--category-yellow01-500);
}
.u-bg-category-pink01-500 {
  background-color: var(--mh--color--category-pink01-500);
}
.u-p-x2s {
  padding: var(--mh--padding--x2s);
}
.u-py-x2s {
  padding-block: var(--mh--padding--x2s);
}
.u-px-x2s {
  padding-inline: var(--mh--padding--x2s);
}
.u-pt-x2s {
  padding-top: var(--mh--padding--x2s);
}
.u-pb-x2s {
  padding-bottom: var(--mh--padding--x2s);
}
.u-pl-x2s {
  padding-left: var(--mh--padding--x2s);
}
.u-pr-x2s {
  padding-right: var(--mh--padding--x2s);
}
.u-p-xs {
  padding: var(--mh--padding--xs);
}
.u-py-xs {
  padding-block: var(--mh--padding--xs);
}
.u-px-xs {
  padding-inline: var(--mh--padding--xs);
}
.u-pt-xs {
  padding-top: var(--mh--padding--xs);
}
.u-pb-xs {
  padding-bottom: var(--mh--padding--xs);
}
.u-pl-xs {
  padding-left: var(--mh--padding--xs);
}
.u-pr-xs {
  padding-right: var(--mh--padding--xs);
}
.u-p-sm {
  padding: var(--mh--padding--sm);
}
.u-py-sm {
  padding-block: var(--mh--padding--sm);
}
.u-px-sm {
  padding-inline: var(--mh--padding--sm);
}
.u-pt-sm {
  padding-top: var(--mh--padding--sm);
}
.u-pb-sm {
  padding-bottom: var(--mh--padding--sm);
}
.u-pl-sm {
  padding-left: var(--mh--padding--sm);
}
.u-pr-sm {
  padding-right: var(--mh--padding--sm);
}
.u-p-md {
  padding: var(--mh--padding--md);
}
.u-py-md {
  padding-block: var(--mh--padding--md);
}
.u-px-md {
  padding-inline: var(--mh--padding--md);
}
.u-pt-md {
  padding-top: var(--mh--padding--md);
}
.u-pb-md {
  padding-bottom: var(--mh--padding--md);
}
.u-pl-md {
  padding-left: var(--mh--padding--md);
}
.u-pr-md {
  padding-right: var(--mh--padding--md);
}
.u-p-lg {
  padding: var(--mh--padding--lg);
}
.u-py-lg {
  padding-block: var(--mh--padding--lg);
}
.u-px-lg {
  padding-inline: var(--mh--padding--lg);
}
.u-pt-lg {
  padding-top: var(--mh--padding--lg);
}
.u-pb-lg {
  padding-bottom: var(--mh--padding--lg);
}
.u-pl-lg {
  padding-left: var(--mh--padding--lg);
}
.u-pr-lg {
  padding-right: var(--mh--padding--lg);
}
.u-p-xl {
  padding: var(--mh--padding--xl);
}
.u-py-xl {
  padding-block: var(--mh--padding--xl);
}
.u-px-xl {
  padding-inline: var(--mh--padding--xl);
}
.u-pt-xl {
  padding-top: var(--mh--padding--xl);
}
.u-pb-xl {
  padding-bottom: var(--mh--padding--xl);
}
.u-pl-xl {
  padding-left: var(--mh--padding--xl);
}
.u-pr-xl {
  padding-right: var(--mh--padding--xl);
}
.u-p-x2l {
  padding: var(--mh--padding--x2l);
}
.u-py-x2l {
  padding-block: var(--mh--padding--x2l);
}
.u-px-x2l {
  padding-inline: var(--mh--padding--x2l);
}
.u-pt-x2l {
  padding-top: var(--mh--padding--x2l);
}
.u-pb-x2l {
  padding-bottom: var(--mh--padding--x2l);
}
.u-pl-x2l {
  padding-left: var(--mh--padding--x2l);
}
.u-pr-x2l {
  padding-right: var(--mh--padding--x2l);
}
.u-p-60_120 {
  padding: var(--mh--padding--60_120);
}
.u-py-60_120 {
  padding-block: var(--mh--padding--60_120);
}
.u-px-60_120 {
  padding-inline: var(--mh--padding--60_120);
}
.u-pt-60_120 {
  padding-top: var(--mh--padding--60_120);
}
.u-pb-60_120 {
  padding-bottom: var(--mh--padding--60_120);
}
.u-pl-60_120 {
  padding-left: var(--mh--padding--60_120);
}
.u-pr-60_120 {
  padding-right: var(--mh--padding--60_120);
}
.u-p-70_140 {
  padding: var(--mh--padding--70_140);
}
.u-py-70_140 {
  padding-block: var(--mh--padding--70_140);
}
.u-px-70_140 {
  padding-inline: var(--mh--padding--70_140);
}
.u-pt-70_140 {
  padding-top: var(--mh--padding--70_140);
}
.u-pb-70_140 {
  padding-bottom: var(--mh--padding--70_140);
}
.u-pl-70_140 {
  padding-left: var(--mh--padding--70_140);
}
.u-pr-70_140 {
  padding-right: var(--mh--padding--70_140);
}
.u-p-80_160 {
  padding: var(--mh--padding--80_160);
}
.u-py-80_160 {
  padding-block: var(--mh--padding--80_160);
}
.u-px-80_160 {
  padding-inline: var(--mh--padding--80_160);
}
.u-pt-80_160 {
  padding-top: var(--mh--padding--80_160);
}
.u-pb-80_160 {
  padding-bottom: var(--mh--padding--80_160);
}
.u-pl-80_160 {
  padding-left: var(--mh--padding--80_160);
}
.u-pr-80_160 {
  padding-right: var(--mh--padding--80_160);
}
.u-m-x2s {
  margin: var(--mh--space--x2s);
}
.u-my-x2s {
  margin-block: var(--mh--space--x2s);
}
.u-mx-x2s {
  margin-inline: var(--mh--space--x2s);
}
.u-mt-x2s {
  margin-top: var(--mh--space--x2s);
}
.u-mb-x2s {
  margin-bottom: var(--mh--space--x2s);
}
.u-ml-x2s {
  margin-left: var(--mh--space--x2s);
}
.u-mr-x2s {
  margin-right: var(--mh--space--x2s);
}
.u-m-xs {
  margin: var(--mh--space--xs);
}
.u-my-xs {
  margin-block: var(--mh--space--xs);
}
.u-mx-xs {
  margin-inline: var(--mh--space--xs);
}
.u-mt-xs {
  margin-top: var(--mh--space--xs);
}
.u-mb-xs {
  margin-bottom: var(--mh--space--xs);
}
.u-ml-xs {
  margin-left: var(--mh--space--xs);
}
.u-mr-xs {
  margin-right: var(--mh--space--xs);
}
.u-m-sm {
  margin: var(--mh--space--sm);
}
.u-my-sm {
  margin-block: var(--mh--space--sm);
}
.u-mx-sm {
  margin-inline: var(--mh--space--sm);
}
.u-mt-sm {
  margin-top: var(--mh--space--sm);
}
.u-mb-sm {
  margin-bottom: var(--mh--space--sm);
}
.u-ml-sm {
  margin-left: var(--mh--space--sm);
}
.u-mr-sm {
  margin-right: var(--mh--space--sm);
}
.u-m-md {
  margin: var(--mh--space--md);
}
.u-my-md {
  margin-block: var(--mh--space--md);
}
.u-mx-md {
  margin-inline: var(--mh--space--md);
}
.u-mt-md {
  margin-top: var(--mh--space--md);
}
.u-mb-md {
  margin-bottom: var(--mh--space--md);
}
.u-ml-md {
  margin-left: var(--mh--space--md);
}
.u-mr-md {
  margin-right: var(--mh--space--md);
}
.u-m-lg {
  margin: var(--mh--space--lg);
}
.u-my-lg {
  margin-block: var(--mh--space--lg);
}
.u-mx-lg {
  margin-inline: var(--mh--space--lg);
}
.u-mt-lg {
  margin-top: var(--mh--space--lg);
}
.u-mb-lg {
  margin-bottom: var(--mh--space--lg);
}
.u-ml-lg {
  margin-left: var(--mh--space--lg);
}
.u-mr-lg {
  margin-right: var(--mh--space--lg);
}
.u-m-xl {
  margin: var(--mh--space--xl);
}
.u-my-xl {
  margin-block: var(--mh--space--xl);
}
.u-mx-xl {
  margin-inline: var(--mh--space--xl);
}
.u-mt-xl {
  margin-top: var(--mh--space--xl);
}
.u-mb-xl {
  margin-bottom: var(--mh--space--xl);
}
.u-ml-xl {
  margin-left: var(--mh--space--xl);
}
.u-mr-xl {
  margin-right: var(--mh--space--xl);
}
.u-m-x2l {
  margin: var(--mh--space--x2l);
}
.u-my-x2l {
  margin-block: var(--mh--space--x2l);
}
.u-mx-x2l {
  margin-inline: var(--mh--space--x2l);
}
.u-mt-x2l {
  margin-top: var(--mh--space--x2l);
}
.u-mb-x2l {
  margin-bottom: var(--mh--space--x2l);
}
.u-ml-x2l {
  margin-left: var(--mh--space--x2l);
}
.u-mr-x2l {
  margin-right: var(--mh--space--x2l);
}
.u-m-x3l {
  margin: var(--mh--space--x3l);
}
.u-my-x3l {
  margin-block: var(--mh--space--x3l);
}
.u-mx-x3l {
  margin-inline: var(--mh--space--x3l);
}
.u-mt-x3l {
  margin-top: var(--mh--space--x3l);
}
.u-mb-x3l {
  margin-bottom: var(--mh--space--x3l);
}
.u-ml-x3l {
  margin-left: var(--mh--space--x3l);
}
.u-mr-x3l {
  margin-right: var(--mh--space--x3l);
}
.u-mx-auto {
  margin-inline: auto;
}
html body {
  --wp--style--block-gap: 0;
}
html body {
  --wp--preset--font-size--x-2-s: var(--mh--font-size--x2s);
  --wp--preset--font-size--xs: var(--mh--font-size--xs);
  --wp--preset--font-size--sm: var(--mh--font-size--sm);
  --wp--preset--font-size--md: var(--mh--font-size--md);
  --wp--preset--font-size--lg: var(--mh--font-size--lg);
  --wp--preset--font-size--xl: var(--mh--font-size--xl);
  --wp--preset--font-size--x-2-l: var(--mh--font-size--x2l);
  --wp--preset--font-size--x-3-l: var(--mh--font-size--x3l);
  --wp--preset--font-size--x-4-l: var(--mh--font-size--x4l);
  --wp--preset--font-size--x-5-l: var(--mh--font-size--x5l);
  --wp--preset--font-size--x-6-l: var(--mh--font-size--x6l);
  --wp--preset--font-size--x-7-l: var(--mh--font-size--x7l);
  --wp--preset--font-size--x-8-l: var(--mh--font-size--x8l);
  --wp--preset--font-size--x-9-l: var(--mh--font-size--x9l);
  --wp--preset--font-size--x-10-l: var(--mh--font-size--x10l);
  --wp--preset--font-size--x-11-l: var(--mh--font-size--x11l);
  --wp--preset--font-size--x-12-l: var(--mh--font-size--x12l);
  --wp--preset--font-size--x-13-l: var(--mh--font-size--x13l);
  --wp--preset--font-size--x-14-l: var(--mh--font-size--x14l);
  --wp--preset--font-size--x-15-l: var(--mh--font-size--x15l);
}
.has-lg-font-size,
.has-xl-font-size,
.has-x-2-l-font-size,
.has-x-3-l-font-size,
.has-x-4-l-font-size {
  line-height: var(--mh--line-height--sm);
}
.has-x-5-l-font-size,
.has-x-6-l-font-size,
.has-x-7-l-font-size,
.has-x-8-l-font-size,
.has-x-9-l-font-size,
.has-x-10-l-font-size,
.has-x-11-l-font-size,
.has-x-12-l-font-size,
.has-x-13-l-font-size,
.has-x-14-l-font-size,
.has-x-15-l-font-size {
  line-height: var(--mh--line-height--xs);
}
.wp-block-m-hand-custom-block-custom-group[class*=" u-grid-cols"],
.wp-block-m-hand-custom-block-custom-group[class*=" sm:u-grid-cols"],
.wp-block-m-hand-custom-block-custom-group[class*=" md:u-grid-cols"],
.wp-block-m-hand-custom-block-custom-group[class*=" lg:u-grid-cols"],
.wp-block-m-hand-custom-block-custom-group[class*=" xl:u-grid-cols"],
.wp-block-m-hand-custom-block-custom-group[class*=" u-gap"],
.wp-block-m-hand-custom-block-custom-group[class*=" sm:u-gap"],
.wp-block-m-hand-custom-block-custom-group[class*=" md:u-gap"],
.wp-block-m-hand-custom-block-custom-group[class*=" lg:u-gap"],
.wp-block-m-hand-custom-block-custom-group[class*=" xl:u-gap"],
.wp-block-group[class*=" u-gap"],
.wp-block-group[class*=" sm:u-gap"],
.wp-block-group[class*=" md:u-gap"],
.wp-block-group[class*=" lg:u-gap"],
.wp-block-group[class*=" xl:u-gap"],
.wp-block-group[class*=" u-grid-cols"],
.wp-block-group[class*=" sm:u-grid-cols"],
.wp-block-group[class*=" md:u-grid-cols"],
.wp-block-group[class*=" lg:u-grid-cols"],
.wp-block-group[class*=" xl:u-grid-cols"],
.wp-block-columns[class*=" u-grid-cols"],
.wp-block-columns[class*=" sm:u-grid-cols"],
.wp-block-columns[class*=" md:u-grid-cols"],
.wp-block-columns[class*=" lg:u-grid-cols"],
.wp-block-columns[class*=" xl:u-grid-cols"],
.wp-block-columns[class*=" u-gap"],
.wp-block-columns[class*=" sm:u-gap"],
.wp-block-columns[class*=" md:u-gap"],
.wp-block-columns[class*=" lg:u-gap"],
.wp-block-columns[class*=" xl:u-gap"] {
  display: grid;
}
html body a:not(.wp-element-button) {
  text-decoration: inherit;
}
@media (width >= 768px ) {
  .wp-block-image.alignleft {
    float: left;
    margin-right: 2em;
  }
  .wp-block-image.alignright {
    float: right;
    margin-left: 2em;
  }
  .wp-block-image.aligncenter {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}