@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: 1440px;
  --mh--breakpoint--x3l: 1820px;
}
:root {
  --mh--font-family--base:
  	"Noto Sans JP", "ヒラギノ角ゴ ProN W3", meiryo, sans-serif;
  --mh--font-family--mincho: "Zen Old Mincho", serif;
  --mh--font-family--en: "EB Garamond", serif;
}
html body {
  --mh--font-size--x2s: 1rem;
  --mh--font-size--xs: 1.3rem;
  --mh--font-size--sm: 1.4rem;
  --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--x16l: 5.1rem;
}
@media (width >= 768px ) {
  html body {
    --mh--font-size--x2s: 1.1rem;
    --mh--font-size--xs: 1.4rem;
    --mh--font-size--sm: 1.5rem;
    --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--x13l: 8.3rem;
    --mh--font-size--x16l: 11.8rem;
  }
}
:root {
  --mh--letter-spacing--none: 0;
  --mh--letter-spacing--sm: 0.04em;
  --mh--letter-spacing--md: 0.06em;
  --mh--letter-spacing--lg: 0.08em;
}
:root {
  --mh--line-height--none: 1;
  --mh--line-height--xs: 1.1;
  --mh--line-height--sm: 1.5;
  --mh--line-height--md: 1.8;
  --mh--line-height--lg: 2;
}
:root {
  --mh--header--height: 54px;
}
@media (width >= 768px ) {
  :root {
    --mh--header--height: 118px;
  }
}
:root {
  --mh--sidebar--width: 240px;
}
:root {
  --mh--contents--width: 1180px;
  --mh--contents--wide-width: 1400px;
  --mh--contents--padding--side: 15px;
  --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(33 40 54);
  --mh--color--primary-800: rgb(0 37 70);
  --mh--color--primary-900: rgb(0 32 61);
  --mh--color--secondary-500: rgb(85 176 121);
  --mh--color--accent-500: rgb(178 150 73);
  --mh--color--accent-700: rgb(130 105 38);
  --mh--color--surface-300: rgb(249 248 246);
  --mh--color--surface-400: rgb(242 239 233);
  --mh--color--surface-500: rgb(234 227 217);
  --mh--color--grayscale-100: rgb(255 255 255);
  --mh--color--grayscale-500: rgb(190 199 206);
  --mh--color--grayscale-700: rgb(0 0 0);
  --mh--color--grayscale-800: rgb(79 97 114);
  --mh--color--grayscale-900: rgb(18 36 53);
  --mh--gradient01: linear-gradient(90deg, #a98c3f 0%, #69582a 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-2-l: 30px;
}
@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;
  }
}
* {
  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;
  background: var(--mh--color--surface-300);
  font-family: var(--mh--font-family--base);
  font-size: var(--mh--font-size--md);
  font-weight: 500;
  line-height: var(--mh--line-height--lg);
  color: var(--mh--color--grayscale-900);
  -webkit-text-size-adjust: 100%;
}
@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--md);
}
ins {
  background-color: #ff9;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
sup {
  font-size: 0.75em;
  vertical-align: text-top;
}
sub {
  font-size: 0.75em;
  vertical-align: text-bottom;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 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%;
  border: 1px solid;
  border-radius: 0;
  background: none;
  font-family: inherit;
}
@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 {
  padding-bottom: env(safe-area-inset-bottom);
  position: relative;
}
@media (width >= 1100px ) {
  .l-container.is-col2 {
    display: grid;
    width: var(--mh--contents--width);
    margin: 0 auto;
    grid-template-columns: var(--mh--sidebar--width) 1fr;
    gap: 20px;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
  }
}
/*  .c-archive01
================================================== */
.c-archive01 {
  --line: 2;
  --line-height: var(--mh--line-height--lg);
}
.c-archive01__item {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: var(--mh--color--grayscale-500);
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 20px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
  font-size: var(--mh--font-size--xl);
}
.c-archive01__item-cat {
  display: flex;
  margin: 0 -5px -5px 0;
  flex-wrap: wrap;
  align-items: flex-start;
}
.c-archive01__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 3px 16px;
  border-radius: 100px;
  background: var(--mh--color--surface-500);
  font-size: var(--mh--font-size--xs);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-800);
}
.c-archive01__item-head {
  display: -webkit-box;
  max-height: calc(var(--line) * var(--line-height) * 1em);
  margin-top: 10px;
  overflow: hidden;
  line-height: var(--line-height);
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--line);
  -webkit-box-orient: vertical;
}
@media (width >= 768px ) {
  .c-archive01 {
    --line: 2;
  }
  .c-archive01__item {
    border-width: 0 0 1px;
  }
  .c-archive01__item + .c-archive01__item .c-archive01__item-in {
    padding-top: 40px;
  }
  .c-archive01__item-in {
    padding: 0 0 40px;
  }
  .c-archive01__item-date {
    margin: 0 30px 0 0;
  }
  .c-archive01__item-head {
    margin-top: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in:hover {
    color: var(--mh--color--accent-700);
  }
  .c-archive01__item-in:hover .c-archive01__item-head::before {
    width: 100%;
    right: auto;
    left: 0;
  }
  .c-archive01__item-head {
    position: relative;
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .c-archive01__item-head::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: -0.2em;
    right: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background-image: linear-gradient(180deg, transparent 0%, transparent 95%, var(--mh--color--accent-700) 100%);
    background-size: 100% 2em;
  }
}
/* .c-blockquote01
================================================== */
.c-blockquote01 {
  padding: 15px;
  border: 1px solid var(--mh--color--primary-700);
}
@media (width >= 768px ) {
  .c-blockquote01 {
    padding: 25px;
  }
}
/* .c-btn01
================================================== */
.c-btn01__link {
  display: grid;
  min-height: 57px;
  padding: 15px;
  border: 1px solid var(--mh--color--grayscale-500);
  border-radius: 4px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: transparent;
  color: var(--mh--color--grayscale-100);
}
.c-btn01__txt {
  font-size: var(--mh--font-size--xl);
  line-height: var(--mh--line-height--sm);
  white-space: nowrap;
}
.c-btn01__ico::after {
  display: inline-block;
  width: 10px;
  height: 8px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></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-btn01__ico.is-blank::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></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);
}
@media (width >= 768px ) {
  .c-btn01__link {
    width: fit-content;
    min-height: 70px;
    padding: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-btn01__link:hover {
    border-color: var(--mh--color--accent-500);
    background: var(--mh--color--accent-500);
  }
}
/* .c-btn01.is-text-black
================================================== */
.c-btn01.is-text-black .c-btn01__link {
  color: var(--mh--color--grayscale-900);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01.is-text-black .c-btn01__link {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-btn01.is-text-black .c-btn01__link:hover {
    color: var(--mh--color--grayscale-100);
  }
}
/*  .c-cta01
================================================== */
.c-cta01 {
  padding: 20px;
  border-radius: 4px;
  background: var(--mh--color--grayscale-100);
}
.c-cta01__head {
  display: flex;
  padding-right: 0.5em;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: var(--mh--font-size--x2l);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--lg);
  text-align: center;
}
.c-cta01__head-ico::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></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-cta01__area-btn {
  max-width: 360px;
  margin-top: 20px;
  margin-inline: auto;
}
.c-cta01__email-link {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 16px 20px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  align-items: center;
  grid-template-columns: auto 1fr;
  color: var(--mh--color--grayscale-100);
}
.c-cta01__email-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--gradient01);
}
.c-cta01__email-ico {
  position: relative;
  z-index: 1;
}
.c-cta01__email-ico::after {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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-cta01__email-txt {
  position: relative;
  z-index: 1;
  font-size: var(--mh--font-size--xl);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--lg);
  text-align: center;
}
.c-cta01__tel {
  margin-top: 10px;
}
.c-cta01__tel-link {
  display: grid;
  min-height: 80px;
  padding: 13px 20px;
  border: 1px solid var(--mh--color--grayscale-800);
  border-radius: 4px;
  align-items: center;
  grid-template-columns: auto 1fr;
  background: var(--mh--color--surface-400);
}
.c-cta01__tel-ico {
  position: relative;
  z-index: 1;
}
.c-cta01__tel-ico::after {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></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-cta01__tel-txt {
  text-align: center;
}
.c-cta01__tel-num {
  display: block;
  font-size: var(--mh--font-size--x9l);
}
.c-cta01__tel-time {
  display: block;
  margin-top: 2px;
  font-size: var(--mh--font-size--sm);
  line-height: var(--mh--line-height--sm);
}
@media (width >= 768px ) {
  .c-cta01:not(.is-nav) {
    padding: 60px 40px;
  }
  .c-cta01:not(.is-nav) .c-cta01__container {
    display: flex;
    width: clamp(1100px, 100%, 1200px);
    margin-inline: auto;
    justify-content: space-between;
  }
  .c-cta01:not(.is-nav) .c-cta01__head {
    padding-right: 0;
    gap: 20px;
  }
  .c-cta01:not(.is-nav) .c-cta01__head-ico {
    display: grid;
  }
  .c-cta01:not(.is-nav) .c-cta01__head-ico::after {
    display: inline-block;
    width: 27px;
    height: 27px;
    color: currentColor;
    content: "";
    background-color: currentcolor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></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-cta01:not(.is-nav) .c-cta01__area-btn {
    display: grid;
    max-width: none;
    margin-top: 0;
    margin-inline: 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .c-cta01:not(.is-nav) .c-cta01__email-link {
    min-height: 103px;
    padding: 0 53px;
    gap: 10px;
  }
  .c-cta01:not(.is-nav) .c-cta01__email-ico::after {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: currentColor;
    content: "";
    background-color: currentcolor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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-cta01:not(.is-nav) .c-cta01__email-txt {
    position: relative;
    z-index: 1;
    font-size: var(--mh--font-size--x2l);
    line-height: var(--mh--line-height--sm);
    letter-spacing: var(--mh--letter-spacing--lg);
    text-align: center;
  }
  .c-cta01:not(.is-nav) .c-cta01__tel {
    margin-top: 0;
  }
  .c-cta01:not(.is-nav) .c-cta01__tel-link {
    min-height: 103px;
    padding: 0 53px;
    gap: 12px;
    pointer-events: none;
  }
  .c-cta01:not(.is-nav) .c-cta01__tel-ico {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: currentColor;
    content: "";
    background-color: currentcolor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></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-cta01:not(.is-nav) .c-cta01__tel-num {
    display: block;
    font-size: var(--mh--font-size--x7l);
  }
  .c-cta01:not(.is-nav) .c-cta01__tel-time {
    font-size: var(--mh--font-size--xs);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-cta01__email-link {
    background: var(--mh--color--accent-500);
  }
  .c-cta01__email-link::before {
    transition: opacity var(--mh--duration) var(--mh--easing);
  }
  .c-cta01__email-link:hover::before {
    opacity: 0;
  }
}
/*  .c-cta01.is-header
================================================== */
.c-cta01.is-header {
  padding: 0;
  background: none;
}
.c-cta01.is-header .c-cta01__container {
  margin-inline: 0;
}
.c-cta01.is-header .c-cta01__head {
  display: none;
}
.c-cta01.is-header .c-cta01__area-btn {
  display: flex;
  max-width: none;
  margin-inline: 0;
  flex-direction: row-reverse;
  gap: 30px;
}
.c-cta01.is-header .c-cta01__email-link {
  min-height: 57px;
  padding: 0 20px;
}
.c-cta01.is-header .c-cta01__email-ico::after {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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-cta01.is-header .c-cta01__email-txt {
  font-size: var(--mh--font-size--lg);
  letter-spacing: var(--mh--letter-spacing--sm);
}
.c-cta01.is-header .c-cta01__tel-link {
  min-height: 58px;
  padding: 0;
  border: none;
  gap: 10px;
  background: none;
}
.c-cta01.is-header .c-cta01__tel-ico {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></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-cta01.is-header .c-cta01__tel-num {
  display: block;
  font-size: var(--mh--font-size--x5l);
}
.c-cta01.is-header .c-cta01__tel-time {
  margin-top: 6px;
  font-size: 1.3rem;
}
@media (768px <= width < 1100px) {
  .c-cta01.is-header .c-cta01__area-btn {
    gap: 10px;
  }
  .c-cta01.is-header .c-cta01__email-link {
    padding: 0 10px;
  }
  .c-cta01.is-header .c-cta01__email-txt {
    font-size: var(--mh--font-size--md);
  }
  .c-cta01.is-header .c-cta01__tel-link {
    gap: 5px;
  }
  .c-cta01.is-header .c-cta01__tel-num {
    font-size: var(--mh--font-size--x4l);
  }
  .c-cta01.is-header .c-cta01__tel-time {
    font-size: 1.2rem;
  }
}
/*  .c-cta01.is-nav
================================================== */
@media (width >= 768px ) {
  .c-cta01.is-nav .c-cta01__head {
    font-size: var(--mh--font-size--xl);
  }
  .c-cta01.is-nav .c-cta01__email-txt {
    font-size: var(--mh--font-size--lg);
  }
  .c-cta01.is-nav .c-cta01__tel-num {
    font-size: var(--mh--font-size--x5l);
  }
  .c-cta01.is-nav .c-cta01__tel-time {
    font-size: var(--mh--font-size--xs);
  }
}
/*  .c-cv01
================================================== */
.c-cv01 {
  margin-bottom: -105px;
  position: relative;
  z-index: 2;
}
.c-cv01::before {
  content: "";
  width: 100%;
  height: calc(100% - 105px);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--color--primary-900);
}
.c-cv01__inner {
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.c-cv01__container {
  padding-bottom: 50px;
}
.c-cv01__head {
  font-size: var(--mh--font-size--x3l);
  color: var(--mh--color--accent-500);
}
.c-cv01__lead {
  margin-top: 15px;
  margin-right: -0.5em;
  font-size: var(--mh--font-size--x3l);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-100);
}
.c-cv01__lead-first {
  margin-left: -0.5em;
}
.c-cv01__lead-span {
  display: inline-block;
  letter-spacing: -0.4em;
}
.c-cv01__txt {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
  color: var(--mh--color--grayscale-500);
}
.c-cv01__txt::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--mh--gradient01);
}
.c-cv01__info {
  margin-top: 30px;
}
.c-cv01__point {
  padding: 20px 13px;
  background: var(--mh--color--primary-800);
}
.c-cv01__point-set {
  display: flex;
  max-width: 360px;
  margin-inline: auto;
  justify-content: center;
  gap: 15px;
}
.c-cv01__access {
  margin-top: 5px;
  padding: 16px;
  background: var(--mh--color--primary-800);
}
.c-cv01__access-txt {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: var(--mh--font-size--sm);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-500);
}
.c-cv01__access-minutes {
  font-size: var(--mh--font-size--xs);
  translate: 0 0.05em;
}
.c-cv01__access-num {
  display: inline-block;
  margin: -0.3em 0.05em 0;
  font-size: var(--mh--font-size--x6l);
}
@media (width >= 768px ) {
  .c-cv01 {
    margin-bottom: -113px;
  }
  .c-cv01::before {
    height: calc(100% - 113px);
  }
  .c-cv01__inner {
    padding-top: 94px;
    padding-bottom: 0;
  }
  .c-cv01__container {
    display: flex;
    padding-bottom: 110px;
    justify-content: space-between;
    gap: 0 80px;
  }
  .c-cv01__area-txt {
    width: 600px;
  }
  .c-cv01__lead {
    margin-top: 20px;
    font-size: var(--mh--font-size--x6l);
  }
  .c-cv01__txt {
    margin-top: 20px;
    padding-top: 25px;
  }
  .c-cv01__txt::before {
    height: 2px;
  }
  .c-cv01__info {
    max-width: 700px;
    margin-top: 46px;
    flex: 1;
  }
  .c-cv01__point {
    padding: 40px 13px;
  }
  .c-cv01__point-set {
    max-width: 558px;
    gap: 40px;
  }
  .c-cv01__access {
    margin-top: 10px;
    padding: 29px;
  }
  .c-cv01__access-txt {
    gap: 28px;
    font-size: var(--mh--font-size--lg);
  }
  .c-cv01__access-minutes {
    font-size: var(--mh--font-size--md);
  }
  .c-cv01__access-num {
    margin: -0.6em 0.12em 0;
    font-size: var(--mh--font-size--x7l);
  }
}
@media (768px <= width < 1440px) {
  .c-cv01 {
    margin-bottom: -93px;
  }
  .c-cv01::before {
    height: calc(100% - 93px);
  }
  .c-cv01__inner {
    padding-top: 94px;
  }
  .c-cv01__container {
    padding-bottom: 100px;
    gap: 0 80px;
  }
  .c-cv01__area-txt {
    width: 510px;
  }
  .c-cv01__lead {
    font-size: var(--mh--font-size--x4l);
  }
  .c-cv01__txt {
    margin-top: 40px;
    padding-top: 25px;
  }
  .c-cv01__point {
    padding: 40px 16px;
  }
  .c-cv01__point-set {
    max-width: 558px;
    gap: 20px;
  }
}
/* .c-form
================================================== */
.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: 10px;
  font-size: 1.6rem;
}
.c-form input[type=file] {
  padding: 0;
}
.c-form input[type=text],
.c-form input[type=email] {
  height: 50px;
}
.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: 200px;
}
.c-form__set {
  box-sizing: border-box;
  padding: 50px 10px 30px;
}
.c-form__set:not(:first-child) {
  border-top: 1px solid var(--mh--color--grayscale-700);
}
.c-form__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-form__required, .c-form__optional {
  box-sizing: border-box;
  padding: 2px 10px 3px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: var(--mh--color--primary-700);
}
.c-form__required {
  background: var(--mh--color--primary-700);
}
.c-form__optional {
  color: var(--mh--color--primary-700);
  background: rgb(var(--mh--color-grayscale-700));
  border: 1px solid var(--mh--color--grayscale-700);
}
.c-form__field-set {
  display: block;
  margin-top: 15px;
}
.c-form__field-description {
  display: grid;
  gap: 5px 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.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: inline-block;
}
.c-form__select-in select {
  padding: 13px 21px 13px 10px;
  font-size: 1.6rem;
  line-height: 2.2rem;
  cursor: pointer;
}
.c-form__select-in::after {
  position: absolute;
  top: 19px;
  right: 8px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--mh--color--grayscale-700);
  border-bottom: 2px solid var(--mh--color--grayscale-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;
  height: 300px;
  padding: 30px 35px;
  margin-bottom: 20px;
  overflow-y: scroll;
  border: 1px solid var(--mh--color--grayscale-700);
}
.c-form__privacy-head {
  margin-bottom: 10px;
  font-weight: bold;
}
.c-form__agreement {
  margin-bottom: 20px;
}
.c-form__agreement-txt {
  text-align: center;
}
.c-form__agreement-check {
  text-align: center;
}
.c-form__agreement-check label {
  position: relative;
  padding-left: 35px;
  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: 13px;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid var(--mh--color--grayscale-700);
  transform: translateY(-50%);
}
.c-form__agreement-check input:checked + span::after {
  position: absolute;
  top: 6px;
  left: 4px;
  display: block;
  width: 15px;
  height: 9px;
  content: "";
  border-color: var(--mh--color--grayscale-700);
  border-style: solid;
  border-width: 2px 2px 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 {
  text-align: center;
}
.c-form__btn input {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 16px 20px;
  font-family: var(--fontfamily_base);
  color: #fff;
  appearance: none;
  outline: none;
  background-color: var(--mh--color--grayscale-700);
  border: none;
  border: 1px solid var(--mh--color--grayscale-700);
}
.c-form__btn input:focus-visible,
.c-form__btn :focus {
  border-color: rgb(var(--color-black01));
  box-shadow: 0 0 0 2px rgba(var(--color-black01), 0.25);
}
.c-form__btn input + input {
  margin-left: 20px;
}
.c-form__btn span {
  width: 0;
  margin: 0;
}
@media (width >= 768px ) {
  .c-form__head {
    display: inline-block;
  }
  .c-form__field-description {
    margin-bottom: 20px;
  }
  .c-form__postcode-btn {
    font-size: 1.6rem;
  }
  .c-form__select-in select {
    padding: 13px 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__optional, .c-form__required {
    padding: 4px 17px 5px;
    margin-left: 20px;
  }
  .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 {
    height: 200px;
    padding: 40px;
  }
  .c-form__agreement {
    margin-bottom: 40px;
  }
  .c-form__btn input {
    width: 320px;
    margin: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form__btn input {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .c-form__btn input:hover {
    color: var(--mh--color--primary-700);
    background: var(--mh--color--grayscale-100);
  }
}
/* .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;
  }
}
/* .c-head01
================================================== */
.c-head01__en {
  font-size: var(--mh--font-size--x16l);
}
.c-head01__ja {
  margin-top: 10px;
  font-size: var(--mh--font-size--x2l);
  line-height: var(--mh--line-height--sm);
}
@media (width >= 768px ) {
  .c-head01__ja {
    margin-top: 20px;
  }
}
/* .c-head01.is-pc-small
================================================== */
@media (width >= 768px ) {
  .c-head01.is-pc-small {
    display: flex;
    align-items: flex-end;
    gap: 30px;
  }
  .c-head01.is-pc-small .c-head01__en {
    font-size: var(--mh--font-size--x13l);
  }
}
/* .c-head02
================================================== */
.c-head02 {
  font-size: var(--mh--font-size--x7l);
  padding-top: 20px;
  position: relative;
  line-height: var(--mh--line-height--sm);
}
.c-head02::before {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--color--grayscale-900);
}
@media (width >= 768px ) {
  .c-head02 {
    padding-top: 40px;
  }
  .c-head02::before {
    width: 60px;
  }
}
/* .c-ico
================================================== */
.c-ico {
  display: grid inline;
  line-height: 1;
  vertical-align: baseline;
}
.c-ico svg {
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw01
================================================== */
.c-ico.is-arw01::after {
  display: inline-block;
  width: 11px;
  height: 6px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></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::after {
  display: inline-block;
  width: 10px;
  height: 8px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></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::after {
  display: inline-block;
  width: 22px;
  height: 25px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></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-email01
================================================== */
.c-ico.is-email01::after {
  display: inline-block;
  width: 25px;
  height: 20px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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-calendar01
================================================== */
.c-ico.is-calendar01::after {
  display: inline-block;
  width: 27px;
  height: 27px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2998 3.44449H10.4131" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M3.73512 3.44449H3.18193C1.83898 3.44449 0.75 4.53347 0.75 5.87642V23.6661C0.75 25.009 1.83898 26.098 3.18193 26.098H23.5302C24.8731 26.098 25.9621 25.009 25.9621 23.6661V5.87642C25.9621 4.53347 24.8731 3.44449 23.5302 3.44449H22.9888" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M8.30042 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.77454 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.4318 0.75V5.89777" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M20.9575 5.89777V0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M0.75 8.9491H25.9628" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 13.274H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 13.2741H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M19.019 13.2741H21.4127" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 17.4602H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1163 17.4602H14.5956" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M5.21436 21.6464H7.69361" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12.1162 21.6464H14.5955" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 17.4601H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M18.9758 21.6464H21.4551" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></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-blank01
================================================== */
.c-ico.is-blank01::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></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::after {
  display: inline-block;
  width: 18px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 19H2V13.98H4V17H16V2H4V4.02H2V0H18V19Z" fill="black"/><path d="M0 6.01465H2.33659C2.75809 6.01465 3.12462 6.1 3.43616 6.27923C3.74771 6.44993 3.98595 6.69744 4.15089 7.00469C4.31582 7.31195 4.39829 7.67894 4.39829 8.08862C4.39829 8.49829 4.31582 8.86529 4.14172 9.17254C3.96762 9.4798 3.72938 9.71877 3.40867 9.88947C3.09713 10.0602 2.72144 10.1455 2.28161 10.1455H0.852169V9.01038H2.04337C2.25412 9.01038 2.41906 8.97624 2.56567 8.89943C2.70312 8.82261 2.81307 8.7202 2.88638 8.58364C2.95968 8.44708 2.99633 8.28492 2.99633 8.10569C2.99633 7.92645 2.95968 7.76429 2.88638 7.62774C2.81307 7.49118 2.71228 7.38876 2.56567 7.31195C2.42822 7.23513 2.25412 7.20099 2.05254 7.20099H1.37447V12.0146H0V6.01465Z" fill="black"/><path d="M7.43128 11.989H5.33293V6.01465H7.42211C7.99939 6.01465 8.4942 6.13414 8.9157 6.37311C9.3372 6.61209 9.65791 6.95348 9.87782 7.39729C10.0977 7.84111 10.2169 8.3788 10.2169 8.99331C10.2169 9.60782 10.1069 10.1541 9.87782 10.5979C9.64875 11.0417 9.32804 11.3916 8.9157 11.622C8.4942 11.861 7.99939 11.9805 7.42211 11.9805L7.43128 11.989ZM6.70739 10.76H7.3763C7.69701 10.76 7.96274 10.7003 8.18265 10.5893C8.40257 10.4784 8.5675 10.2906 8.68662 10.0346C8.79658 9.77852 8.86072 9.43712 8.86072 9.00185C8.86072 8.56657 8.80574 8.22517 8.68662 7.97766C8.57666 7.72162 8.40257 7.53385 8.18265 7.4229C7.96274 7.31195 7.68784 7.2522 7.35797 7.2522H6.70739V10.7686V10.76Z" fill="black"/><path d="M11.1332 11.989V6.01465H15V7.18392H12.4985V8.41294H14.7526V9.59075H12.4985V11.989H11.1332Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 19H2V13.98H4V17H16V2H4V4.02H2V0H18V19Z" fill="black"/><path d="M0 6.01465H2.33659C2.75809 6.01465 3.12462 6.1 3.43616 6.27923C3.74771 6.44993 3.98595 6.69744 4.15089 7.00469C4.31582 7.31195 4.39829 7.67894 4.39829 8.08862C4.39829 8.49829 4.31582 8.86529 4.14172 9.17254C3.96762 9.4798 3.72938 9.71877 3.40867 9.88947C3.09713 10.0602 2.72144 10.1455 2.28161 10.1455H0.852169V9.01038H2.04337C2.25412 9.01038 2.41906 8.97624 2.56567 8.89943C2.70312 8.82261 2.81307 8.7202 2.88638 8.58364C2.95968 8.44708 2.99633 8.28492 2.99633 8.10569C2.99633 7.92645 2.95968 7.76429 2.88638 7.62774C2.81307 7.49118 2.71228 7.38876 2.56567 7.31195C2.42822 7.23513 2.25412 7.20099 2.05254 7.20099H1.37447V12.0146H0V6.01465Z" fill="black"/><path d="M7.43128 11.989H5.33293V6.01465H7.42211C7.99939 6.01465 8.4942 6.13414 8.9157 6.37311C9.3372 6.61209 9.65791 6.95348 9.87782 7.39729C10.0977 7.84111 10.2169 8.3788 10.2169 8.99331C10.2169 9.60782 10.1069 10.1541 9.87782 10.5979C9.64875 11.0417 9.32804 11.3916 8.9157 11.622C8.4942 11.861 7.99939 11.9805 7.42211 11.9805L7.43128 11.989ZM6.70739 10.76H7.3763C7.69701 10.76 7.96274 10.7003 8.18265 10.5893C8.40257 10.4784 8.5675 10.2906 8.68662 10.0346C8.79658 9.77852 8.86072 9.43712 8.86072 9.00185C8.86072 8.56657 8.80574 8.22517 8.68662 7.97766C8.57666 7.72162 8.40257 7.53385 8.18265 7.4229C7.96274 7.31195 7.68784 7.2522 7.35797 7.2522H6.70739V10.7686V10.76Z" fill="black"/><path d="M11.1332 11.989V6.01465H15V7.18392H12.4985V8.41294H14.7526V9.59075H12.4985V11.989H11.1332Z" fill="black"/></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-train01
================================================== */
.c-ico.is-train01::after {
  display: inline-block;
  width: 24px;
  height: 34px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.5948 26.8994H3.31187C1.87316 26.8994 0.700195 25.7265 0.700195 24.2878V14.3359C0.700195 11.0644 1.03926 7.79296 1.71737 4.58564L1.74487 4.46651C2.20306 2.2672 4.13661 0.700195 6.38174 0.700195H17.5249C19.77 0.700195 21.7036 2.2672 22.1618 4.46651L22.1893 4.58564C22.8674 7.79296 23.2064 11.0553 23.2064 14.3359V24.2878C23.2064 25.7265 22.0335 26.8994 20.5948 26.8994Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.8525 6.50098C16.4619 6.50098 20.2007 10.2398 20.2007 14.8492V17.021H3.49512V14.8492C3.49512 10.2398 7.23394 6.50098 11.8433 6.50098H11.8525Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.81287 23.5637C6.68843 23.5637 7.39821 22.854 7.39821 21.9784C7.39821 21.1028 6.68843 20.3931 5.81287 20.3931C4.93732 20.3931 4.22754 21.1028 4.22754 21.9784C4.22754 22.854 4.93732 23.5637 5.81287 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.4691 23.5637C19.3447 23.5637 20.0545 22.854 20.0545 21.9784C20.0545 21.1028 19.3447 20.3931 18.4691 20.3931C17.5936 20.3931 16.8838 21.1028 16.8838 21.9784C16.8838 22.854 17.5936 23.5637 18.4691 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.5742 32.7001L17.8457 26.8994" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.06054 26.8994L1.33203 32.7001" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.6416 29.9878H20.338" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.56445 3.57764H15.6561" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.5948 26.8994H3.31187C1.87316 26.8994 0.700195 25.7265 0.700195 24.2878V14.3359C0.700195 11.0644 1.03926 7.79296 1.71737 4.58564L1.74487 4.46651C2.20306 2.2672 4.13661 0.700195 6.38174 0.700195H17.5249C19.77 0.700195 21.7036 2.2672 22.1618 4.46651L22.1893 4.58564C22.8674 7.79296 23.2064 11.0553 23.2064 14.3359V24.2878C23.2064 25.7265 22.0335 26.8994 20.5948 26.8994Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.8525 6.50098C16.4619 6.50098 20.2007 10.2398 20.2007 14.8492V17.021H3.49512V14.8492C3.49512 10.2398 7.23394 6.50098 11.8433 6.50098H11.8525Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.81287 23.5637C6.68843 23.5637 7.39821 22.854 7.39821 21.9784C7.39821 21.1028 6.68843 20.3931 5.81287 20.3931C4.93732 20.3931 4.22754 21.1028 4.22754 21.9784C4.22754 22.854 4.93732 23.5637 5.81287 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.4691 23.5637C19.3447 23.5637 20.0545 22.854 20.0545 21.9784C20.0545 21.1028 19.3447 20.3931 18.4691 20.3931C17.5936 20.3931 16.8838 21.1028 16.8838 21.9784C16.8838 22.854 17.5936 23.5637 18.4691 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.5742 32.7001L17.8457 26.8994" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.06054 26.8994L1.33203 32.7001" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.6416 29.9878H20.338" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.56445 3.57764H15.6561" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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-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);
  }
}
/* head
================================================ */
.c-single01__content h2:not([class*=c-]) {
  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-]) {
    padding: 15px 20px !important;
  }
}
.c-single01__content h3:not([class*=c-]) {
  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 {
  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-]) {
    padding-left: 15px;
  }
}
.c-single01__content h4:not([class*=c-]) {
  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-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-footer
================================================ */
.l-footer {
  overflow: hidden;
  position: relative;
  background: var(--mh--color--surface-500);
}
.l-footer__inner {
  padding-top: 165px;
  position: relative;
  z-index: 1;
}
.l-footer__logo-link {
  width: 300px;
}
.l-footer__address {
  margin-top: 20px;
  font-size: var(--mh--font-size--sm);
  font-style: normal;
}
.l-footer__map {
  display: flex;
  align-items: center;
}
.l-footer__map-txt {
  font-size: var(--mh--font-size--sm);
  text-decoration: underline;
}
.l-footer__map-ico {
  margin-left: 10px;
}
.l-footer__map-ico::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.59763 8.40237C6.45957 8.2643 6.39053 8.08679 6.39053 7.88955C6.39053 7.69231 6.46943 7.51479 6.60749 7.37673L12.5049 1.47929L8.62919 1.51874C8.44181 1.51874 8.25444 1.4497 8.12623 1.31164C7.99803 1.17357 7.91913 0.996055 7.91913 0.798817C7.91913 0.404339 8.25444 0.0690335 8.64892 0.0690335L14.2801 0.00986193C14.4675 0.00986193 14.645 0.0788955 14.783 0.216963C14.9211 0.35503 14.9901 0.532544 14.9901 0.729783L14.931 6.35108C14.931 6.74556 14.5957 7.08087 14.2012 7.08087C14.0138 7.08087 13.8363 7.01183 13.6982 6.87377C13.5602 6.7357 13.4911 6.55819 13.4911 6.36095L13.5306 2.48521L7.62327 8.38264C7.47535 8.53057 7.28797 8.59961 7.10059 8.59961C6.91321 8.59961 6.7357 8.53057 6.59763 8.39251V8.40237ZM14.3195 10.2564C13.9546 10.2564 13.6489 10.5523 13.6489 10.927V13.6785H1.33136V1.34122H4.08284C4.44773 1.34122 4.75345 1.04536 4.75345 0.670611C4.75345 0.295858 4.45759 0 4.08284 0H0.670611C0.30572 0 0 0.295858 0 0.670611V14.3294C0 14.6943 0.295858 15 0.670611 15H14.3294C14.6943 15 15 14.7041 15 14.3294V10.9172C15 10.5523 14.7041 10.2465 14.3294 10.2465L14.3195 10.2564Z" fill="black"/></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);
}
.l-footer__tel {
  font-size: var(--mh--font-size--sm);
}
.l-footer__nav {
  margin-top: 40px;
}
.l-footer__nav-list + .l-footer__nav-list {
  margin-top: 20px;
}
.l-footer__nav-item + .l-footer__nav-item {
  margin-top: 20px;
}
.l-footer__nav-item:has(.l-footer__nav-ico) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer__nav-txt {
  display: block;
  line-height: var(--mh--line-height--sm);
}
.l-footer__nav-child {
  margin-top: 10px;
}
.l-footer__nav-child-item {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 6px;
}
.l-footer__nav-child-item::before {
  content: "";
  width: 6px;
  height: 1px;
  background: var(--mh--color--grayscale-800);
}
.l-footer__nav-child-item + .l-footer__nav-child-item {
  margin-top: 10px;
}
.l-footer__nav-child .l-footer__nav-child-link {
  font-size: var(--mh--font-size--xs);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-800);
}
.l-footer__nav-ico::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 19H2V13.98H4V17H16V2H4V4.02H2V0H18V19Z" fill="black"/><path d="M0 6.01465H2.33659C2.75809 6.01465 3.12462 6.1 3.43616 6.27923C3.74771 6.44993 3.98595 6.69744 4.15089 7.00469C4.31582 7.31195 4.39829 7.67894 4.39829 8.08862C4.39829 8.49829 4.31582 8.86529 4.14172 9.17254C3.96762 9.4798 3.72938 9.71877 3.40867 9.88947C3.09713 10.0602 2.72144 10.1455 2.28161 10.1455H0.852169V9.01038H2.04337C2.25412 9.01038 2.41906 8.97624 2.56567 8.89943C2.70312 8.82261 2.81307 8.7202 2.88638 8.58364C2.95968 8.44708 2.99633 8.28492 2.99633 8.10569C2.99633 7.92645 2.95968 7.76429 2.88638 7.62774C2.81307 7.49118 2.71228 7.38876 2.56567 7.31195C2.42822 7.23513 2.25412 7.20099 2.05254 7.20099H1.37447V12.0146H0V6.01465Z" fill="black"/><path d="M7.43128 11.989H5.33293V6.01465H7.42211C7.99939 6.01465 8.4942 6.13414 8.9157 6.37311C9.3372 6.61209 9.65791 6.95348 9.87782 7.39729C10.0977 7.84111 10.2169 8.3788 10.2169 8.99331C10.2169 9.60782 10.1069 10.1541 9.87782 10.5979C9.64875 11.0417 9.32804 11.3916 8.9157 11.622C8.4942 11.861 7.99939 11.9805 7.42211 11.9805L7.43128 11.989ZM6.70739 10.76H7.3763C7.69701 10.76 7.96274 10.7003 8.18265 10.5893C8.40257 10.4784 8.5675 10.2906 8.68662 10.0346C8.79658 9.77852 8.86072 9.43712 8.86072 9.00185C8.86072 8.56657 8.80574 8.22517 8.68662 7.97766C8.57666 7.72162 8.40257 7.53385 8.18265 7.4229C7.96274 7.31195 7.68784 7.2522 7.35797 7.2522H6.70739V10.7686V10.76Z" fill="black"/><path d="M11.1332 11.989V6.01465H15V7.18392H12.4985V8.41294H14.7526V9.59075H12.4985V11.989H11.1332Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 19H2V13.98H4V17H16V2H4V4.02H2V0H18V19Z" fill="black"/><path d="M0 6.01465H2.33659C2.75809 6.01465 3.12462 6.1 3.43616 6.27923C3.74771 6.44993 3.98595 6.69744 4.15089 7.00469C4.31582 7.31195 4.39829 7.67894 4.39829 8.08862C4.39829 8.49829 4.31582 8.86529 4.14172 9.17254C3.96762 9.4798 3.72938 9.71877 3.40867 9.88947C3.09713 10.0602 2.72144 10.1455 2.28161 10.1455H0.852169V9.01038H2.04337C2.25412 9.01038 2.41906 8.97624 2.56567 8.89943C2.70312 8.82261 2.81307 8.7202 2.88638 8.58364C2.95968 8.44708 2.99633 8.28492 2.99633 8.10569C2.99633 7.92645 2.95968 7.76429 2.88638 7.62774C2.81307 7.49118 2.71228 7.38876 2.56567 7.31195C2.42822 7.23513 2.25412 7.20099 2.05254 7.20099H1.37447V12.0146H0V6.01465Z" fill="black"/><path d="M7.43128 11.989H5.33293V6.01465H7.42211C7.99939 6.01465 8.4942 6.13414 8.9157 6.37311C9.3372 6.61209 9.65791 6.95348 9.87782 7.39729C10.0977 7.84111 10.2169 8.3788 10.2169 8.99331C10.2169 9.60782 10.1069 10.1541 9.87782 10.5979C9.64875 11.0417 9.32804 11.3916 8.9157 11.622C8.4942 11.861 7.99939 11.9805 7.42211 11.9805L7.43128 11.989ZM6.70739 10.76H7.3763C7.69701 10.76 7.96274 10.7003 8.18265 10.5893C8.40257 10.4784 8.5675 10.2906 8.68662 10.0346C8.79658 9.77852 8.86072 9.43712 8.86072 9.00185C8.86072 8.56657 8.80574 8.22517 8.68662 7.97766C8.57666 7.72162 8.40257 7.53385 8.18265 7.4229C7.96274 7.31195 7.68784 7.2522 7.35797 7.2522H6.70739V10.7686V10.76Z" fill="black"/><path d="M11.1332 11.989V6.01465H15V7.18392H12.4985V8.41294H14.7526V9.59075H12.4985V11.989H11.1332Z" fill="black"/></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);
}
.l-footer__cr {
  margin-top: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--mh--color--grayscale-500);
  text-align: center;
}
.l-footer__cr-small {
  display: block;
  font-size: var(--mh--font-size--xs);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-800);
}
.l-footer__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  object-position: center;
}
@media (width < 768px) {
  .l-footer .l-footer__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (width >= 768px ) {
  .l-footer__inner {
    padding-top: 233px;
  }
  .l-footer__container {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__logo-link {
    width: 450px;
  }
  .l-footer__address {
    margin-top: 40px;
    font-size: var(--mh--font-size--xs);
  }
  .l-footer__map-txt {
    font-size: var(--mh--font-size--xs);
  }
  .l-footer__tel {
    font-size: var(--mh--font-size--xs);
  }
  .l-footer__nav {
    display: flex;
    margin-top: 0;
    justify-content: flex-end;
  }
  .l-footer__nav-list {
    width: 233px;
  }
  .l-footer__nav-list + .l-footer__nav-list {
    margin-top: 0;
  }
  .l-footer__nav-item + .l-footer__nav-item {
    margin-top: 30px;
  }
  .l-footer__nav-child {
    margin-top: 20px;
  }
  .l-footer__cr {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: left;
  }
}
@media (768px <= width < 1440px) {
  .l-footer__nav-list {
    width: 196px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__map-link {
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-footer__map-link:hover {
    color: var(--mh--color--accent-700);
  }
  .l-footer__nav-link:hover .l-footer__nav-txt {
    color: var(--mh--color--accent-700);
  }
  .l-footer__nav-link:hover .l-footer__nav-txt::after {
    width: 100%;
    right: auto;
    left: 0;
  }
  .l-footer__nav-txt {
    width: fit-content;
    position: relative;
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-footer__nav-txt::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--accent-700);
  }
  .l-footer__nav-child-link {
    width: fit-content;
    position: relative;
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-footer__nav-child-link::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--accent-700);
  }
  .l-footer__nav-child-link:hover {
    color: var(--mh--color--accent-700);
  }
  .l-footer__nav-child-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
/* .l-footer-cta
================================================ */
.l-footer-cta {
  width: 100%;
  padding: 0 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
  transition: transform var(--mh--duration) var(--mh--easing);
}
.l-footer-cta.is-show {
  transform: translateY(0);
}
.l-footer-cta__container {
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--mh--color--grayscale-100);
}
.l-footer-cta__email-link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 53px;
  padding: 15px 6px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto 1fr;
  gap: 5px;
  color: var(--mh--color--grayscale-100);
}
.l-footer-cta__email-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--gradient01);
}
.l-footer-cta__email-ico {
  position: relative;
  z-index: 1;
}
.l-footer-cta__email-ico::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 25 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.75 0.75H0.75V18.9078H23.75V0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 0.862112L12.1912 11.6447L23.75 0.75" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.4869 11.6448L23.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.01314 11.6448L0.75 18.9079" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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);
}
.l-footer-cta__email-txt {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--lg);
  text-align: center;
}
.l-footer-cta__tel-link {
  display: flex;
  min-height: 53px;
  padding: 6px;
  border: 1px solid var(--mh--color--grayscale-800);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto 1fr;
  gap: 5px;
  background: var(--mh--color--surface-400);
}
.l-footer-cta__tel-ico {
  position: relative;
  z-index: 1;
}
.l-footer-cta__tel-ico::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95439 0.75C2.97772 0.75 1.24234 2.1353 0.940597 4.06417L0.934865 4.10054C0.255823 8.63965 1.46121 13.1798 4.32799 16.8833C7.19633 20.5889 11.3831 23.0121 16.1166 23.7068C18.3388 24.025 20.4124 22.55 20.736 20.4183L20.7375 20.408C20.822 19.8327 20.4707 19.2594 19.9016 19.0453L14.5277 17.0186C14.29 16.9289 14.0191 17.0073 13.869 17.2097L13.1201 18.2164C12.7245 18.7481 11.9882 18.8993 11.4076 18.5678C8.09893 16.6774 5.66939 13.5323 4.74333 9.93786C4.57657 9.29131 4.9497 8.61762 5.59279 8.40501L6.80339 8.00438C7.04989 7.92292 7.20727 7.68777 7.18642 7.43315L6.74241 1.98212C6.69447 1.39398 6.25098 0.911892 5.66418 0.809941C5.63396 0.804818 5.60373 0.799695 5.57403 0.795596C5.36609 0.764857 5.15868 0.75 4.95439 0.75Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10"/></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);
}
.l-footer-cta__tel-txt {
  text-align: center;
}
.l-footer-cta__tel-num {
  display: block;
  font-size: var(--mh--font-size--x3l);
}
.l-footer-cta__tel-time {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: var(--mh--line-height--sm);
}
/* .l-header
================================================ */
.l-header {
  width: 100%;
  min-width: 320px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform var(--mh--duration) var(--mh--easing);
}
.l-header.is-scroll {
  transform: translateY(-100%);
}
.l-header.is-show {
  transform: translateY(0);
}
.l-header:has(.l-nav.is-open) {
  transform: translateY(0);
}
.l-header__inner {
  display: flex;
  height: var(--mh--header--height);
  padding: 5px 5px 5px 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--mh--duration) var(--mh--easing);
}
@media (width < 768px) {
  .l-header.is-show .l-header__inner {
    background-color: var(--mh--color--surface-300);
  }
}
@media (width >= 768px ) {
  .l-header__inner {
    padding: 30px 30px 30px 60px;
  }
}
@media (width >= 1820px ) {
  .l-header__cta {
    margin-left: 132px;
  }
}
@media (768px <= width < 1820px) {
  .l-header__cta {
    margin-left: 0;
    position: absolute;
    top: 30px;
    right: 30px;
  }
}
@media (768px <= width < 1100px) {
  .l-header__inner {
    padding: 30px 10px 30px 20px;
  }
  .l-header__cta {
    right: 100px;
  }
}
/* .l-header-logo
================================================== */
.l-header-logo {
  width: 210px;
  position: relative;
  z-index: 3;
}
@media (width >= 768px ) {
  .l-header-logo {
    width: 290px;
  }
}
@media (width >= 1440px ) {
  .l-header-logo {
    width: 370px;
  }
}
@media (768px <= width < 1100px) {
  .l-header-logo {
    width: 210px;
  }
}
/* .l-nav-btn
================================================== */
.l-nav-btn {
  width: 60px;
  height: 44px;
  border: 1px solid var(--mh--color--grayscale-800);
  border-radius: 4px;
  position: relative;
  z-index: 3;
  background: var(--mh--color--primary-900);
  cursor: pointer;
  color: var(--mh--color--grayscale-100);
}
.l-nav-btn__line {
  content: "";
  visibility: hidden;
  opacity: 0;
  width: 26px;
  height: 1px;
  border-bottom: 1px solid var(--mh--color--grayscale-100);
  position: absolute;
  top: 20px;
  left: 16px;
  transition: opacity var(--mh--duration) var(--mh--easing), visibility var(--mh--duration) var(--mh--easing);
  transition: transform var(--mh--duration) var(--mh--easing);
}
.l-nav-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}
.l-nav-btn__line:nth-child(2) {
  transform: rotate(45deg);
}
.l-nav-btn.is-open {
  border: 1px solid var(--mh--color--grayscale-800);
  background: var(--mh--color--primary-900);
  color: var(--mh--color--grayscale-100);
}
.l-nav-btn.is-open .l-nav-btn__txt {
  visibility: hidden;
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line {
  visibility: visible;
  opacity: 1;
}
.l-nav-btn__txt {
  display: flex;
  width: 100%;
  inset: 0;
  position: absolute;
  align-items: center;
  justify-content: center;
  transition: opacity var(--mh--duration) var(--mh--easing), visibility var(--mh--duration) var(--mh--easing);
  font-size: var(--mh--font-size--xs);
  line-height: var(--mh--line-height--sm);
  text-align: center;
}
@media (width >= 768px ) {
  .l-nav-btn {
    width: 80px;
    height: 58px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--mh--color--surface-400);
    backdrop-filter: blur(20px);
    color: var(--mh--color--primary-900);
  }
  .l-nav-btn__line {
    width: 26px;
    top: 28px;
    left: 28px;
  }
}
/* .l-nav
================================================ */
.l-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (width < 1820px) {
  .l-nav {
    visibility: hidden;
    opacity: 0;
    min-width: 320px;
    height: 100vh;
    padding: 98px var(--mh--contents--padding--side) calc(50px + env(safe-area-inset-bottom));
    overflow: auto;
    overscroll-behavior-y: none;
    transition: opacity var(--mh--duration) var(--mh--easing), visibility var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--primary-900);
    -webkit-overflow-scrolling: touch;
  }
  .l-nav__cta {
    margin-top: 40px;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (width >= 1820px ) {
  .l-nav {
    display: flex;
    width: fit-content;
    position: static;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
/* .l-nav-list
================================================== */
@media (width < 1820px) {
  .l-nav-list {
    padding: 0 10px;
  }
  .l-nav-list__item {
    border-bottom: 1px solid var(--mh--color--grayscale-800);
  }
  .l-nav-list__item-link {
    display: block;
    padding: 0;
    padding: 16px 0;
    border: 0;
    position: relative;
    text-align: left;
    color: var(--mh--color--grayscale-100);
  }
  .l-nav-list__item-link.is-active .l-nav-list__item-ico {
    scale: 1 -1;
  }
  .l-nav-list__item-txt {
    line-height: var(--mh--line-height--sm);
  }
  .l-nav-list__item-ico {
    position: absolute;
    top: 50%;
    right: -5px;
    translate: -50%;
    transition: scale var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item-ico::after {
    display: inline-block;
    width: 11px;
    height: 6px;
    color: currentColor;
    content: "";
    background-color: currentcolor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></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);
  }
  .l-nav-list__child {
    padding-bottom: 16px;
  }
  .l-nav-list__child-wrap {
    display: none;
    box-sizing: border-box;
    transition: transform var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__child-item {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 6px;
  }
  .l-nav-list__child-item::before {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--mh--color--grayscale-500);
  }
  .l-nav-list__child-item + .l-nav-list__child-item {
    margin-top: 10px;
  }
  .l-nav-list__child-item-link {
    font-size: var(--mh--font-size--xs);
    line-height: var(--mh--line-height--sm);
    color: var(--mh--color--grayscale-500);
  }
}
@media (width >= 1820px ) {
  .l-nav-list {
    display: flex;
    padding: 0 15px;
    border-radius: 4px;
    align-items: center;
    background: rgba(242, 239, 233, 0.7);
    backdrop-filter: blur(20px);
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item-link {
    display: block;
    padding: 16px 15px;
    border: 0;
    position: relative;
    color: var(--mh--color--grayscale-900);
  }
  .l-nav-list__item-link:has(.l-nav-list__item-ico) {
    padding-right: 35px;
  }
  .l-nav-list__item-link.is-active .l-nav-list__item-ico {
    scale: 1 -1;
  }
  .l-nav-list__item-txt {
    line-height: var(--mh--line-height--sm);
  }
  .l-nav-list__item-ico {
    position: absolute;
    top: 50%;
    right: 10px;
    translate: -50%;
    transition: scale var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item-ico::after {
    display: inline-block;
    width: 11px;
    height: 6px;
    color: currentColor;
    content: "";
    background-color: currentcolor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7815 0.210102C11.0729 0.490129 11.0727 0.944324 10.7815 1.22446L6.02805 5.78999C5.73641 6.07 5.26359 6.07 4.97195 5.78999L0.218517 1.22446C-0.0727482 0.944323 -0.0729285 0.490128 0.218517 0.210102C0.510183 -0.0700346 0.983926 -0.0700345 1.27559 0.210102L5.5 4.26846L9.72441 0.210102C10.0161 -0.0700342 10.4898 -0.0700341 10.7815 0.210102Z" fill="black"/></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);
  }
  .l-nav-list__child-wrap {
    display: flex;
    box-sizing: border-box;
    width: fit-content;
    width: max-content;
    height: auto;
    padding: 20px 40px;
    border-radius: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    translate: -50%;
    transition: visibility 0s linear, all 0.3s ease;
    background: var(--mh--color--surface-400);
  }
  .l-nav-list__child-wrap:not(.is-active) {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
  }
  .l-nav-list__child-item {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 6px;
  }
  .l-nav-list__child-item::before {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--mh--color--grayscale-900);
  }
  .l-nav-list__child-item + .l-nav-list__child-item {
    margin-top: 14px;
  }
  .l-nav-list__child-item-link {
    font-size: var(--mh--font-size--xs);
    line-height: var(--mh--line-height--sm);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-list__item-link {
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item-link:hover::before {
    opacity: 0;
  }
  .l-nav-list__item-link:hover .l-nav-list__item-txt {
    color: var(--mh--color--accent-700);
  }
  .l-nav-list__item-link:hover .l-nav-list__item-txt::after {
    width: 100%;
    right: auto;
    left: 0;
  }
  .l-nav-list__item-txt {
    position: relative;
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item-txt::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--accent-700);
  }
  .l-nav-list__child-item-link {
    width: fit-content;
    position: relative;
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__child-item-link::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--accent-700);
  }
  .l-nav-list__child-item-link:hover {
    color: var(--mh--color--accent-700);
  }
  .l-nav-list__child-item-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 10;
}
/* .l-main-img HOME
================================================ */
.l-main-img {
  margin-bottom: -105px;
  padding-top: calc(var(--mh--header--height) + 30px);
  position: relative;
  z-index: 2;
}
.l-main-img::before {
  content: "";
  width: 100%;
  height: calc(100% - 105px);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--color--primary-900);
}
.l-main-img__container {
  padding: 0 25px;
  position: relative;
  z-index: 1;
}
.l-main-img__copy-en {
  color: var(--mh--color--accent-500);
}
.l-main-img__copy-lead {
  margin-top: 10px;
  font-size: var(--mh--font-size--x6l);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-100);
}
.l-main-img__copy-span {
  letter-spacing: -0.4em;
}
.l-main-img__copy-txt {
  margin-top: 10px;
  padding-top: 15px;
  position: relative;
  font-size: var(--mh--font-size--sm);
  color: var(--mh--color--grayscale-500);
}
.l-main-img__copy-txt::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--gradient01);
}
.l-main-img__area-img {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--mh--color--surface-500);
}
.l-main-img__img {
  max-width: 201px;
  margin-inline: auto;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.l-main-img__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  object-position: center;
}
.l-main-img__info {
  margin-top: 20px;
}
.l-main-img__point {
  padding: 15px 18px;
  background: var(--mh--color--primary-800);
}
.l-main-img__point-set {
  display: flex;
  max-width: 360px;
  margin-inline: auto;
  justify-content: center;
  gap: 15px;
}
.l-main-img__access {
  margin-top: 5px;
  padding: 15px 15px 10px;
  background: var(--mh--color--primary-800);
}
.l-main-img__access-txt {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-500);
}
.l-main-img__access-minutes {
  display: inline-block;
  translate: 0 -0.1em;
}
.l-main-img__access-num {
  display: inline-block;
  margin: -0.3em 0.05em 0;
  font-size: var(--mh--font-size--x6l);
}
.l-main-img__cta {
  margin-top: 30px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
@media (width >= 768px ) {
  .l-main-img {
    margin-bottom: 0;
    padding-top: 0;
  }
  .l-main-img::before {
    height: 100%;
  }
  .l-main-img__container {
    display: grid;
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
  .l-main-img__copy {
    padding: clamp(67px, 67px + 37 * (100vw - 1280px) / 640, 104px) clamp(66px, 66px + 34 * (100vw - 1280px) / 640, 100px + (100vw - 1920px) * 0.05208) 0;
    align-self: end;
    grid-area: 1/1/2/2;
  }
  .l-main-img__copy-en {
    font-size: clamp(1.7rem, 1.40625vw + -0.1rem, 2.6rem);
  }
  .l-main-img__copy-lead {
    margin-top: clamp(6px, 6px + 4 * (100vw - 1280px) / 640, 10px);
    margin-right: -0.5em;
    font-size: clamp(4.2rem, 3.28125vw + 0rem, 6.3rem);
  }
  .l-main-img__copy-txt {
    margin-top: 20px;
    padding-top: 25px;
    position: relative;
    color: var(--mh--color--grayscale-500);
  }
  .l-main-img__copy-txt::before {
    height: 2px;
  }
  .l-main-img__copy-txt {
    font-size: clamp(1.6rem, 1.09375vw + 0.2rem, 2.3rem);
  }
  .l-main-img__area-img {
    margin-top: 0;
    padding: calc(var(--mh--header--height) + clamp(36px, 36px + 78 * (100vw - 1280px) / 640, 114px)) 0 clamp(145px, 145px + 73 * (100vw - 1280px) / 640, 218px);
    border-radius: 0;
    grid-area: 1/2/3/3;
  }
  .l-main-img__img {
    max-width: clamp(400px, 400px + 200 * (100vw - 1280px) / 640, 600px);
    border-radius: 0;
  }
  .l-main-img__info {
    margin-top: clamp(53px, 53px + 27 * (100vw - 1280px) / 640, 80px);
    padding: 0 clamp(66px, 66px + 34 * (100vw - 1280px) / 640, 100px + (100vw - 1920px) * 0.05208);
  }
  .l-main-img__point {
    padding: clamp(20px, 20px + 10 * (100vw - 1280px) / 640, 30px) clamp(50px, 50px + 25 * (100vw - 1280px) / 640, 75px);
  }
  .l-main-img__point-set {
    max-width: 607px;
    gap: 40px;
  }
  .l-main-img__access {
    margin-top: clamp(6px, 6px + 4 * (100vw - 1280px) / 640, 10px);
    padding: clamp(18px, 18px + 9 * (100vw - 1280px) / 640, 27px) 15px;
  }
  .l-main-img__access-txt {
    gap: 28px;
    font-size: clamp(1.4rem, 0.9375vw + 0.2rem, 2rem);
  }
  .l-main-img__access-minutes {
    translate: 0;
    font-size: clamp(1.1rem, 0.78125vw + 0.1rem, 1.6rem);
  }
  .l-main-img__access-num {
    margin: -0.3em 0.2em 0;
    font-size: var(--mh--font-size--x6l);
    font-size: clamp(2.7rem, 2.1875vw + -0.1rem, 4.1rem);
  }
  .l-main-img__cta {
    width: 100%;
    max-width: calc(var(--mh--contents--wide-width-with-padding));
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 0 50px;
    position: absolute;
    bottom: -111px;
    left: 50%;
    translate: -50% 0;
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  background: #ccc;
  font-size: 2rem;
  text-align: center;
}
.l-sub-img__inner {
  display: flex;
  height: 30vh;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@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 var(--mh--duration) var(--mh--easing), opacity var(--mh--duration) 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-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 {
  overflow: hidden;
  position: relative;
}
.home-intro__inner {
  padding-top: 175px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
.home-intro__head {
  font-size: var(--mh--font-size--x6l);
  line-height: var(--mh--line-height--sm);
}
.home-intro__head-first {
  margin-left: -0.5em;
}
.home-intro__head-span {
  display: inline-block;
  letter-spacing: -0.4em;
}
.home-intro__txt {
  margin-top: 27px;
  font-size: var(--mh--font-size--lg);
}
.home-intro__bg {
  height: calc(var(--vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-intro__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  object-position: center;
}
@media (width >= 768px ) {
  .home-intro__inner {
    padding-top: 251px;
    padding-bottom: 140px;
  }
  .home-intro__container {
    max-width: 900px;
    margin-inline: auto;
  }
  .home-intro__txt {
    margin-top: 54px;
  }
  .home-intro__bg img {
    translate: -50% calc(-50% + 80px);
  }
}
/*  .home-reason
================================================== */
.home-reason {
  position: relative;
}
.home-reason::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mh--color--primary-900);
}
.home-reason__inner {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
.home-reason__sec {
  margin-top: 40px;
}
.home-reason__img {
  border-radius: 4px;
  overflow: hidden;
}
.home-reason__area-txt {
  margin-top: 30px;
}
.home-reason__sec-head {
  font-size: var(--mh--font-size--x3l);
  color: var(--mh--color--accent-500);
}
.home-reason__lead {
  margin-top: 10px;
  font-size: var(--mh--font-size--x5l);
  line-height: var(--mh--line-height--sm);
  color: var(--mh--color--grayscale-100);
}
.home-reason__lead-span {
  color: var(--mh--color--accent-500);
}
.home-reason__txt {
  margin-top: 15px;
  font-size: var(--mh--font-size--lg);
  color: var(--mh--color--grayscale-500);
}
.home-reason__btn {
  margin-top: 30px;
}
@media (width >= 768px ) {
  .home-reason::before {
    content: "";
    width: calc(100% - 60px);
    height: 100%;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 30px;
    background: var(--mh--color--primary-900);
  }
  .home-reason__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .home-reason__head {
    margin-left: -160px;
    transition: margin-left var(--mh--duration) var(--mh--easing);
  }
  .home-reason__sec {
    display: grid;
    margin-top: 80px;
    grid-template-columns: 1fr 1fr;
  }
  .home-reason__img {
    padding-right: 80px;
    border-right: 1px solid var(--mh--color--grayscale-800);
  }
  .home-reason__area-txt {
    margin-top: 40px;
    padding-left: 80px;
  }
  .home-reason__lead {
    margin-top: 20px;
  }
  .home-reason__txt {
    margin-top: 30px;
  }
  .home-reason__btn {
    margin-top: 40px;
  }
}
@media (768px <= width < 1820px) {
  .home-reason__head {
    margin-left: 0;
  }
  .home-reason::before {
    width: 100%;
    left: 0;
  }
}
/*  .home-service
================================================== */
.home-service__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-service__txt {
  margin-top: 40px;
}
.home-service__container {
  margin-top: 20px;
}
.home-service__card + .home-service__card {
  margin-top: 10px;
}
.home-service__card-link {
  display: block;
  padding: 20px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--mh--color--grayscale-100);
}
.home-service__card-img {
  border-radius: 4px;
  overflow: hidden;
}
.home-service__card-area-txt {
  margin-top: 10px;
}
.home-service__card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.home-service__card-circle {
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid;
  border-radius: 50%;
  place-items: center;
  translate: 0 7px;
}
.home-service__card-ico::after {
  display: inline-block;
  width: 10px;
  height: 8px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51579 0.159084C5.73275 -0.0530274 6.08515 -0.0530274 6.30211 0.159084L9.83728 3.61598C10.0542 3.82809 10.0542 4.17191 9.83728 4.38402L6.30211 7.84092C6.08515 8.05303 5.73275 8.05303 5.51579 7.84092C5.29883 7.6288 5.29883 7.28428 5.51579 7.07217L8.10333 4.54315L0.555557 4.54315C0.248731 4.54315 -3.75915e-07 4.29997 -3.49691e-07 4C-3.23467e-07 3.70003 0.248731 3.45685 0.555558 3.45685L8.10333 3.45685L5.51579 0.927833C5.29883 0.715722 5.29883 0.371196 5.51579 0.159084Z" fill="black"/></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);
}
.home-service__card-head {
  font-size: var(--mh--font-size--x4l);
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--lg);
}
.home-service__card-head-txt {
  position: relative;
}
.home-service__card-head-txt::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--mh--color--grayscale-900);
}
.home-service__card-head-small {
  font-size: var(--mh--font-size--xl);
}
.home-service__card-head-txt {
  display: block;
  width: fit-content;
}
.home-service__card-txt {
  margin-top: 10px;
  color: var(--mh--color--grayscale-800);
}
.home-service__area-btn {
  margin-top: 30px;
}
.home-service__btn + .home-service__btn {
  margin-top: 10px;
}
@media (width >= 768px ) {
  .home-service__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .home-service__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .home-service__head {
    margin-left: -160px;
    transition: margin-left var(--mh--duration) var(--mh--easing);
  }
  .home-service__txt {
    margin-top: 40px;
    margin-right: -160px;
    align-self: end;
    transition: margin-right var(--mh--duration) var(--mh--easing);
  }
  .home-service__container {
    display: grid;
    margin-top: 80px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .home-service__card + .home-service__card {
    margin-top: 0;
  }
  .home-service__card-link {
    display: grid;
    padding: 40px;
    grid-template-columns: 230px 1fr;
    gap: 40px;
  }
  .home-service__card-area-txt {
    margin-top: 0;
    align-self: end;
  }
  .home-service__card-circle {
    translate: 0 15px;
  }
  .home-service__card-head-txt {
    position: relative;
  }
  .home-service__card-head-txt::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--mh--color--grayscale-900);
  }
  .home-service__card-txt {
    margin-top: 20px;
  }
  .home-service__area-btn {
    display: flex;
    margin-top: 40px;
    gap: 20px;
  }
  .home-service__btn + .home-service__btn {
    margin-top: 0;
  }
}
@media (768px <= width < 1820px) {
  .home-service__head {
    margin-left: 0;
  }
  .home-service__txt {
    margin-right: 0;
  }
}
@media (768px <= width < 1440px) {
  .home-service__card .home-service__card-circle {
    translate: 0 10px;
  }
  .home-service__card-head {
    font-size: var(--mh--font-size--x2l);
  }
  .home-service__card-head-small {
    font-size: var(--mh--font-size--sm);
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-service__card-link {
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .home-service__card-link:hover {
    color: var(--mh--color--accent-700);
  }
  .home-service__card-link:hover .home-service__card-img img {
    scale: 1.1;
  }
  .home-service__card-link:hover .home-service__card-head-txt::after {
    width: 100%;
    right: auto;
    left: 0;
  }
  .home-service__card-img img {
    transition: scale var(--mh--duration) var(--mh--easing);
  }
  .home-service__card-head-txt::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: width var(--mh--duration) var(--mh--easing);
    background: var(--mh--color--accent-700);
  }
}
/*  .home-about
================================================== */
.home-about__wrap {
  background: var(--mh--color--surface-400);
}
.home-about__inner {
  padding-top: 70px;
}
.home-about__cantainer {
  margin-top: 40px;
}
.home-about__area-img {
  padding: 66px 30px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.home-about__img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-about__bg {
  height: calc(var(--vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-about__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  object-position: center;
}
.home-about__area-txt {
  margin-top: 20px;
}
.home-about__txt {
  font-size: var(--mh--font-size--lg);
}
.home-about__txt + .home-about__txt {
  margin-top: 12px;
}
.home-about__area-btn {
  margin-top: 30px;
}
.home-about__btn + .home-about__btn {
  margin-top: 10px;
}
@media (width >= 768px ) {
  .home-about__wrap {
    position: relative;
  }
  .home-about__inner {
    padding-top: 140px;
    padding-bottom: 197px;
  }
  .home-about__head {
    margin-left: -160px;
    transition: margin-left var(--mh--duration) var(--mh--easing);
  }
  .home-about__cantainer {
    margin-top: 80px;
  }
  .home-about__area-img {
    width: 50%;
    height: calc(var(--vh) * 100);
    padding: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-about__area-img.is-fixed {
    position: fixed;
  }
  .home-about__img {
    width: 62.5%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: max-width var(--mh--duration) var(--mh--easing);
  }
  .home-about__area-txt {
    width: 50%;
    margin-top: 0;
    padding-right: 100px;
  }
  .home-about__txt + .home-about__txt {
    margin-top: 20px;
  }
  .home-about__area-btn {
    display: flex;
    margin-top: 40px;
    gap: 20px;
  }
  .home-about__btn + .home-about__btn {
    margin-top: 0;
  }
}
@media (768px <= width < 1820px) {
  .home-about__head {
    margin-left: 0;
  }
}
/*  .home-access
================================================== */
.home-access__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.home-access__cantainer {
  margin-top: 30px;
}
.home-access__area-map {
  padding: 67px 30px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-access__map {
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 285/211;
}
.home-access__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  object-position: center;
}
.home-access__area-txt {
  margin-top: 20px;
}
.home-access__name {
  font-size: var(--mh--font-size--x3l);
  line-height: var(--mh--line-height--sm);
}
.home-access__address {
  margin-top: 10px;
  font-style: normal;
}
.home-access__route {
  display: grid;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--mh--color--grayscale-500);
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.home-access__route-ico {
  line-height: 1;
}
.home-access__route-ico::after {
  display: inline-block;
  width: 34px;
  height: 34px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.5948 26.8994H3.31187C1.87316 26.8994 0.700195 25.7265 0.700195 24.2878V14.3359C0.700195 11.0644 1.03926 7.79296 1.71737 4.58564L1.74487 4.46651C2.20306 2.2672 4.13661 0.700195 6.38174 0.700195H17.5249C19.77 0.700195 21.7036 2.2672 22.1618 4.46651L22.1893 4.58564C22.8674 7.79296 23.2064 11.0553 23.2064 14.3359V24.2878C23.2064 25.7265 22.0335 26.8994 20.5948 26.8994Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.8525 6.50098C16.4619 6.50098 20.2007 10.2398 20.2007 14.8492V17.021H3.49512V14.8492C3.49512 10.2398 7.23394 6.50098 11.8433 6.50098H11.8525Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.81287 23.5637C6.68843 23.5637 7.39821 22.854 7.39821 21.9784C7.39821 21.1028 6.68843 20.3931 5.81287 20.3931C4.93732 20.3931 4.22754 21.1028 4.22754 21.9784C4.22754 22.854 4.93732 23.5637 5.81287 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.4691 23.5637C19.3447 23.5637 20.0545 22.854 20.0545 21.9784C20.0545 21.1028 19.3447 20.3931 18.4691 20.3931C17.5936 20.3931 16.8838 21.1028 16.8838 21.9784C16.8838 22.854 17.5936 23.5637 18.4691 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.5742 32.7001L17.8457 26.8994" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.06054 26.8994L1.33203 32.7001" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.6416 29.9878H20.338" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.56445 3.57764H15.6561" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.5948 26.8994H3.31187C1.87316 26.8994 0.700195 25.7265 0.700195 24.2878V14.3359C0.700195 11.0644 1.03926 7.79296 1.71737 4.58564L1.74487 4.46651C2.20306 2.2672 4.13661 0.700195 6.38174 0.700195H17.5249C19.77 0.700195 21.7036 2.2672 22.1618 4.46651L22.1893 4.58564C22.8674 7.79296 23.2064 11.0553 23.2064 14.3359V24.2878C23.2064 25.7265 22.0335 26.8994 20.5948 26.8994Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.8525 6.50098C16.4619 6.50098 20.2007 10.2398 20.2007 14.8492V17.021H3.49512V14.8492C3.49512 10.2398 7.23394 6.50098 11.8433 6.50098H11.8525Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.81287 23.5637C6.68843 23.5637 7.39821 22.854 7.39821 21.9784C7.39821 21.1028 6.68843 20.3931 5.81287 20.3931C4.93732 20.3931 4.22754 21.1028 4.22754 21.9784C4.22754 22.854 4.93732 23.5637 5.81287 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.4691 23.5637C19.3447 23.5637 20.0545 22.854 20.0545 21.9784C20.0545 21.1028 19.3447 20.3931 18.4691 20.3931C17.5936 20.3931 16.8838 21.1028 16.8838 21.9784C16.8838 22.854 17.5936 23.5637 18.4691 23.5637Z" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.5742 32.7001L17.8457 26.8994" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.06054 26.8994L1.33203 32.7001" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.6416 29.9878H20.338" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.56445 3.57764H15.6561" stroke="black" stroke-width="1.4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></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);
}
.home-access__route-txt {
  font-size: var(--mh--font-size--xl);
  line-height: var(--mh--line-height--sm);
}
.home-access__way {
  margin-top: 10px;
}
.home-access__note {
  display: grid;
  margin-top: 10px;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: var(--mh--font-size--sm);
  color: var(--mh--color--grayscale-800);
}
.home-access__note::before {
  content: "※";
}
.home-access__btn {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--mh--color--grayscale-500);
}
@media (width >= 768px ) {
  .home-access__inner {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .home-access__cantainer {
    margin-top: 60px;
  }
  .home-access__area-map {
    width: 50%;
    height: calc(var(--vh) * 100);
    padding: 0;
    border-radius: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: opacity var(--mh--duration) var(--mh--easing);
  }
  .home-access__area-map.is-fixed {
    position: fixed;
    top: 0;
    bottom: auto;
  }
  .home-access__area-map.is-show {
    opacity: 1;
  }
  .home-access__map {
    width: 62.5%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: max-width var(--mh--duration) var(--mh--easing);
    aspect-ratio: 600/445;
  }
  .home-access__area-txt {
    width: 50%;
    margin-top: 0;
    padding-right: 100px;
  }
  .home-access__address {
    margin-top: 20px;
  }
  .home-access__route {
    margin-top: 40px;
    padding-top: 40px;
  }
  .home-access__way {
    margin-top: 20px;
  }
  .home-access__note {
    margin-top: 20px;
  }
  .home-access__btn {
    margin-top: 40px;
    padding-top: 40px;
  }
  .home-access__img {
    width: 266px;
    margin-top: 100px;
    margin-left: -160px;
    transition: margin-left var(--mh--duration) var(--mh--easing);
  }
}
@media (768px <= width < 1820px) {
  .home-access__img {
    margin-left: 0;
  }
}
/*  .home-topics
================================================== */
.home-topics__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-topics__cat {
  margin-top: 40px;
}
.home-topics__cat-link {
  display: block;
  padding: 3px 16px;
  border-radius: 100px;
  background: var(--mh--color--surface-500);
  white-space: nowrap;
}
.home-topics__cat-txt {
  font-size: var(--mh--font-size--lg);
  line-height: var(--mh--line-height--sm);
}
.home-topics__archive {
  margin-top: 30px;
}
.home-topics__btn {
  margin-top: 30px;
}
@media (width < 768px) {
  .home-topics__cat {
    position: relative;
  }
  .home-topics__cat::before {
    content: "";
    display: block;
    width: 70px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(249, 248, 246, 0) 0%, #f9f8f6 72.88%);
    pointer-events: none;
  }
  .home-topics__cat-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0 10px;
    -webkit-overflow-scrolling: touch;
  }
  .home-topics__cat-list::-webkit-scrollbar {
    display: none;
    height: 0;
  }
  .home-topics__cat-item:last-of-type {
    position: relative;
  }
  .home-topics__cat-item:last-of-type::after {
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -10px;
  }
}
@media (width >= 768px ) {
  .home-topics__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .home-topics__head {
    margin-left: -160px;
    transition: margin-left var(--mh--duration) var(--mh--easing);
  }
  .home-topics__container {
    display: grid;
    margin-top: 60px;
    grid-template-rows: auto 1fr;
    grid-template-columns: 207px 1fr;
    gap: 0 213px;
  }
  .home-topics__cat {
    margin-top: 0;
    grid-area: 1/1/2/2;
  }
  .home-topics__cat-item + .home-topics__cat-item {
    margin-top: 10px;
  }
  .home-topics__cat-link {
    width: fit-content;
  }
  .home-topics__archive {
    margin-top: 0;
    grid-area: 1/2/3/3;
  }
  .home-topics__btn {
    margin-top: 60px;
    grid-area: 2/1/3/2;
  }
}
@media (768px <= width < 1440px) {
  .home-topics__container {
    gap: 0 123px;
  }
}
@media (768px <= width < 1820px) {
  .home-topics__head {
    margin-left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-topics__cat-link {
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .home-topics__cat-link:hover {
    background: var(--mh--color--accent-500);
    color: var(--mh--color--grayscale-100);
  }
}
.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 < 1440px) {
  .u-hidden-x2l-down {
    display: none;
  }
}
@media (width < 1820px) {
  .u-hidden-x3l-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;
  }
}
@media (width >= 1440px ) {
  .u-hidden-x2l-up {
    display: none;
  }
}
@media (width >= 1820px ) {
  .u-hidden-x3l-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);
}
.u-text-x14l {
  font-size: var(--mh--font-size--x14l);
}
.u-text-x15l {
  font-size: var(--mh--font-size--x15l);
}
.u-text-md {
  line-height: var(--mh--line-height--md);
  letter-spacing: var(--mh--letter-spacing--md);
}
.u-text-x2s,
.u-text-xs,
.u-text-sm,
.u-text-lg,
.u-text-xl,
.u-text-x2l,
.u-text-x3l,
.u-text-x4l,
.u-text-x5l,
.u-text-x6l,
.u-text-x7l,
.u-text-x8l,
.u-text-x9l,
.u-text-x10l,
.u-text-x11l,
.u-text-x12l,
.u-text-x13l,
.u-text-x14l,
.u-text-x15l {
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--md);
}
/* 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-en {
  font-family: var(--mh--font-family--en);
  font-weight: 400;
  line-height: var(--mh--line-height--none);
  letter-spacing: var(--mh--letter-spacing--none);
}
.u-font-mincho {
  font-family: var(--mh--font-family--mincho);
  font-weight: 600;
}
/* 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--wide-width-with-padding);
    margin-right: auto;
    margin-left: auto;
  }
}
.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.7;
  }
}
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-accent-500 {
  color: var(--mh--color--accent-500);
}
.u-text-accent-700 {
  color: var(--mh--color--accent-700);
}
.u-text-grayscale-100 {
  color: var(--mh--color--grayscale-100);
}
.u-text-grayscale-500 {
  color: var(--mh--color--grayscale-500);
}
.u-text-grayscale-600 {
  color: var(--mh--color--grayscale-600);
}
.u-text-grayscale-700 {
  color: var(--mh--color--grayscale-700);
}
.u-text-grayscale-800 {
  color: var(--mh--color--grayscale-800);
}
.u-text-grayscale-900 {
  color: var(--mh--color--grayscale-900);
}
.u-text-primary-500 {
  color: var(--mh--color--primary-500);
}
.u-text-primary-700 {
  color: var(--mh--color--primary-700);
}
.u-text-primary-800 {
  color: var(--mh--color--primary-800);
}
.u-text-primary-900 {
  color: var(--mh--color--primary-900);
}
.u-text-surface-100 {
  color: var(--mh--color--surface-100);
}
.u-text-surface-300 {
  color: var(--mh--color--surface-300);
}
.u-text-surface-400 {
  color: var(--mh--color--surface-400);
}
.u-text-surface-500 {
  color: var(--mh--color--surface-500);
}
.u-text-surface-600 {
  color: var(--mh--color--surface-600);
}
.u-bg-accent-500 {
  background-color: var(--mh--color--accent-500);
}
.u-bg-accent-700 {
  background-color: var(--mh--color--accent-700);
}
.u-bg-grayscale-100 {
  background-color: var(--mh--color--grayscale-100);
}
.u-bg-grayscale-500 {
  background-color: var(--mh--color--grayscale-500);
}
.u-bg-grayscale-600 {
  background-color: var(--mh--color--grayscale-600);
}
.u-bg-grayscale-700 {
  background-color: var(--mh--color--grayscale-700);
}
.u-bg-grayscale-800 {
  background-color: var(--mh--color--grayscale-800);
}
.u-bg-grayscale-900 {
  background-color: var(--mh--color--grayscale-900);
}
.u-bg-primary-500 {
  background-color: var(--mh--color--primary-500);
}
.u-bg-primary-700 {
  background-color: var(--mh--color--primary-700);
}
.u-bg-primary-800 {
  background-color: var(--mh--color--primary-800);
}
.u-bg-primary-900 {
  background-color: var(--mh--color--primary-900);
}
.u-bg-surface-100 {
  background-color: var(--mh--color--surface-100);
}
.u-bg-surface-300 {
  background-color: var(--mh--color--surface-300);
}
.u-bg-surface-400 {
  background-color: var(--mh--color--surface-400);
}
.u-bg-surface-500 {
  background-color: var(--mh--color--surface-500);
}
.u-bg-surface-600 {
  background-color: var(--mh--color--surface-600);
}
.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-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;
  }
}