:root {
  --color-black: #282828;
  --color-light-blue: #50a2d2;
  --color-gray-bg1: #f9f9f9;
  --color-gray-bg2: #f2f2f2;
  --color-gray-font: #7c7c7c;
  --color-gray-arrow: #bcbcbc;
  --color-gray-line: #e3e3e3;
  --color-navy: #174f98;
  --color-navy-bg1: #ecf0f5;
  --color-red: #d25050;
  --color-orange: #f9b023;
  --color-gradient: linear-gradient(
    310deg,
    #ebc06a,
    #42a2da 45.97%,
    #2562b2 97.18%
  );
  --color-gradient-en: linear-gradient(180deg, #fff, #ecf0f5);
  --font-gothic: "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Marcellus", serif;
  --font-heading: "BIZ UDPGothic", sans-serif;
  --ease-outquart: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes up2show {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes up2hide {
  0% {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes left2show {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    translate: 0 10px;
    visibility: visible;
  }
  to {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
}
@keyframes fadeInBlur {
  0% {
    filter: blur(10px);
    opacity: 0;
    visibility: visible;
  }
  to {
    filter: blur(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    translate: 0 -10px;
    visibility: visible;
  }
  to {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
  to {
    opacity: 0;
    translate: 0 10px;
    visibility: visible;
  }
}
@keyframes loop-images {
  0% {
    transform: translateZ(0);
    visibility: visible;
  }
  to {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(10%);
  }
}
@keyframes scaledown {
  0% {
    scale: 1;
  }
  to {
    scale: var(--scale-down, 0.9);
  }
} /*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}
*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  margin: 0;
  padding: 0;
}
hr {
  color: inherit;
  height: 0;
  overflow: visible;
}
details,
main {
  display: block;
}
summary {
  display: list-item;
}
small {
  font-size: 80%;
}
[hidden] {
  display: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}
pre {
  font-size: 1em;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-color: inherit;
  text-indent: 0;
}
input {
  border-radius: 0;
}
[disabled] {
  cursor: default;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: 700;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
  color: inherit;
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}
legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}
img {
  border-style: none;
}
progress {
  vertical-align: baseline;
}
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"] {
  cursor: default;
}
.m-Block {
  margin-bottom: 120px;
  padding: 0 20px;
}
.m-Block + .m-Block {
  margin-top: 120px;
}
.m-Block-inner {
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1200px);
}
.m-Block-inner-short {
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1000px);
}
.m-Block-header {
  display: grid;
  gap: 32px 40px;
  grid-template: "catch ." auto "title button" auto/1fr auto;
  width: 100%;
}
.m-Block-header__title {
  grid-area: title;
}
.m-Block-header__catch {
  grid-area: catch;
}
.m-Block-header__button {
  grid-area: button;
}
.m-Block-pageHeader {
  background: linear-gradient(
      165.74deg,
      hsla(0, 0%, 100%, 0.7) 12.55%,
      hsla(0, 0%, 100%, 0) 116.17%
    ),
    var(--color-gradient);
  margin: 0 0 96px;
  padding: 100px 20px;
}
.m-Block-pageHeader > * {
  position: relative;
}
.m-Block-pageHeader__breadcrumb {
  position: absolute;
  right: 0;
  top: 0;
}
.m-Block-pageHeader__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}
.m-Block-pageHeader__catch + .m-Block-pageHeader__title {
  margin-top: 32px;
}
.m-Block-pageHeader__nav {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 64px;
}
.m-Block-pageHeader__nav + .m-Block-pageHeader__nav_inner {
  margin-top: 40px;
}
.m-Block-pageHeader__nav a {
  border: 0;
}
.m-Block-pageHeader__text {
  font-weight: 700;
  line-height: 1.875;
  margin-top: 64px;
}
.m-Block-pageHeader .m-Block-pageHeader__nav_inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-bottom: -60px;
  margin-top: 32px;
  padding: 0;
}
.m-Block-pageHeader__image {
  aspect-ratio: 382/215;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}
.m-Block-pageHeader__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.m-Block-innerNav {
  margin-bottom: 80px;
  padding: 0 20px;
}
.m-Block-innerNav__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.m-Block-text {
  font-weight: 700;
  line-height: 1.875;
}
.m-Block-text > * + * {
  margin-top: 1.875em;
}
.m-Block-text [class*="m-Heading"] + * {
  margin-top: 1em;
}
.m-Block-text li + li {
  margin-top: 0.5em;
}
.m-Block-lined {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 20px;
  padding: 35px 40px;
}
.m-Heading {
  align-items: center;
  color: var(--text-color, var(--color-black));
  display: flex;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  gap: 8px;
}
.m-Heading:before {
  aspect-ratio: 1;
  background: var(--icon-color, var(--color-light-blue));
  border-radius: 1px;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 10px;
}
.m-Heading-01 {
  color: var(--text-color, var(--color-black));
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
.m-Heading-02 {
  color: var(--text-color, var(--color-black));
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.m-Heading-02 small {
  font-size: 13px;
}
.m-Heading-03 {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.6;
}
.m-Heading-03:before {
  background: var(--color-light-blue);
  border-radius: 2px;
  content: "";
  display: block;
  width: 4px;
}
.m-Heading-03._large {
  font-size: 26px;
  gap: 12px;
}
.m-Button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 100vw;
  display: flex;
  font-weight: 700;
  gap: 8px;
  height: auto;
  justify-content: space-between;
  min-height: 56px;
  overflow: hidden;
  padding: 16px 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Button .icon {
  flex: 0 0 auto;
  width: 14px;
}
.m-Button.m-Button_blue {
  background: var(--color-light-blue);
  border-color: var(--color-light-blue);
  color: #fff;
}
.m-Button.m-Button_blue .icon path[fill="#50A2D2"] {
  fill: #fff;
}
.m-Button.m-Button_blue .icon path[fill="#fff"] {
  fill: var(--color-light-blue);
}
.m-Button.m-Button_gray {
  background: var(--color-gray-bg2);
}
.m-Button.m-Button_gray .icon path[fill="#50A2D2"] {
  fill: var(--color-gray-font);
}
.m-Button_thin {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 100vw;
  display: flex;
  font-weight: 700;
  gap: 8px;
  height: auto;
  justify-content: space-between;
  min-height: 44px;
  overflow: hidden;
  padding: 8px 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Button_thin.current {
  background: var(--color-light-blue);
  color: #fff;
}
.m-Button-block {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 15px;
  display: block;
  padding: 42px 47px 47px;
  position: relative;
}
.m-Button-block__label {
  border-bottom: 1px solid var(--color-gray-line);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 14px 0 20px;
}
.m-Button-block__body {
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  margin-top: 8px;
}
.m-Button-block .icon {
  bottom: 32px;
  position: absolute;
  right: 32px;
  width: 25px;
}
.m-Button-block-02 {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 15px;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 42px 47px 47px;
  position: relative;
}
.m-Button-block-02 .text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.m-Button-block-02 .icon {
  width: 25px;
}
.m-Button-innerLink {
  align-items: center;
  display: flex;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Button-innerLink > * {
  flex: 0 0 auto;
}
.m-Button-innerLink .text {
  font-size: 18px;
  font-weight: 700;
}
.m-Button-innerLink .icon {
  flex: 0 0 auto;
  rotate: 90deg;
  width: 25px;
}
.m-Button-icon {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
}
.m-Button-icon .icon {
  display: flex;
  width: 25px;
}
.m-Button-circleArrow {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 100vw;
  display: flex;
  height: auto;
  justify-content: center;
  width: 54px;
}
.m-Button-circleArrow img,
.m-Button-circleArrow svg {
  width: 20px;
}
.m-Button-file {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 15px;
  display: flex;
  gap: 10px;
  padding: 24px 40px;
}
.m-Button-file .text {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
}
.m-Button-file .note {
  flex: 0 0 auto;
  width: 18px;
}
.m-Button-file .icon {
  flex: 0 0 auto;
  width: 24px;
}
.m-Tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.m-Tags > * {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 2px;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding: 4px 15px;
}
.m-NewsList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.m-NewsList__item {
  border-bottom: 1px solid var(--color-gray-line);
  padding: 0 0 16px;
}
.m-NewsList__link {
  display: grid;
  gap: 8px 16px;
  grid-template: "date tags" auto "title title" auto/auto 1fr;
}
.m-NewsList__tags {
  grid-area: tags;
}
.m-NewsList__label {
  font-size: 16px;
  font-weight: 700;
  grid-area: title;
  letter-spacing: normal;
  line-height: 1.7;
}
.m-NewsList__info {
  align-items: center;
  color: var(--color-gray-font);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  grid-area: date;
  line-height: 1.7;
}
.m-NewsList__info > :not(:first-child):before {
  content: "/";
  margin-right: 8px;
}
.m-NewsList__whithImage {
  align-items: center;
  display: flex;
  gap: 48px;
}
.m-NewsList__whithImage .m-NewsList__item {
  flex: 1 1 auto;
  width: 100%;
}
.m-NewsList__whithImage .m-NewsList__info {
  align-items: center;
  margin: 0 0 8px;
}
.m-NewsList__whithImage .m-NewsList__info > :not(:first-child):before {
  display: none;
}
.m-NewsList__whithImage .m-NewsList__tags {
  margin-bottom: 0;
}
.m-NewsList__whithImage .m-NewsList__date {
  color: var(--color-gray-font);
}
.m-NewsList__image {
  aspect-ratio: 245/160;
  border-radius: 10px;
  flex: 0 0 auto;
  height: auto;
  overflow: hidden;
  width: 245px;
}
.m-NewsList__image img,
.m-NewsList__image picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.m-Breadcrumb {
  align-items: center;
  color: var(--color-light-blue);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}
.m-Breadcrumb a {
  text-decoration: underline;
}
.m-Breadcrumb :not(:first-child) {
  align-items: center;
  display: flex;
  gap: 8px;
}
.m-Breadcrumb :not(:first-child):before {
  background: var(--color-gray-line);
  content: "";
  display: block;
  height: 14px;
  rotate: 22deg;
  transform-origin: center;
  width: 1px;
}
.m-Form ::-moz-placeholder {
  color: var(--color-gray-font);
}
.m-Form ::placeholder {
  color: var(--color-gray-font);
}
.m-Form input,
.m-Form select,
.m-Form textarea {
  color: var(--color-black);
}
.m-Form input:focus,
.m-Form select:focus,
.m-Form textarea:focus {
  background: #eef6fb;
}
.m-Form input.wpcf7-not-valid,
.m-Form select.wpcf7-not-valid,
.m-Form textarea.wpcf7-not-valid {
  background: #fbeeee;
  border-color: #e08585;
}
.m-Form__body {
  background: #fff;
  border-radius: 10px;
  padding: 80px 50px;
}
.m-Form__row {
  display: flex;
  gap: 27px;
}
.m-Form__row + .m-Form__row {
  margin-top: 24px;
}
.m-Form__label {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
  height: 60px;
  letter-spacing: normal;
  width: 260px;
}
.m-Form__label + * {
  flex: 1 1 auto;
}
.m-Form__label .require {
  background: var(--color-red);
  border-radius: 3px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  padding: 0 4px;
}
.m-Form__note {
  color: var(--color-gray-font);
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.m-Form__google-policy {
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  margin-top: 24px;
  text-align: center;
}
.m-Form__buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
}
.m-Form__back .icon {
  rotate: 180deg;
}
.m-Form .m-Form__back:hover .icon {
  translate: -6px 0;
}
.m-Form__auto-address {
  align-items: center;
  display: flex;
  gap: 24px;
}
.m-Form__auto-button {
  background: var(--color-black);
  border-radius: 2px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  padding: 4px 10px;
  pointer-events: none;
}
.m-Form .wpcf7-form-control-wrap {
  display: block;
}
.m-Form .wpcf7-not-valid-tip {
  bottom: 0;
  font-weight: 700;
  margin-top: 4px;
  position: absolute;
  white-space: nowrap;
}
.m-Form .wpcf7-not-valid {
  margin-bottom: 1.5em;
}
.m-Form .wpcf7-checkbox + .wpcf7-not-valid-tip {
  margin-top: 0;
  translate: 0 100%;
}
.m-Form .wpcf7-response-output,
[data-form-status]:not(body) {
  display: none;
}
body[data-form-status="confirm"] [data-form-status="confirm"],
body[data-form-status="input"] [data-form-status="input"],
body[data-form-status="thanks"] [data-form-status="thanks"] {
  display: initial;
}
.m-Form__body[data-form-state="confirm"] {
  padding: 80px 100px;
}
.m-Form__body[data-form-state="confirm"] .m-Form__row {
  border-bottom: 1px solid var(--color-gray-line);
  gap: 72px;
  padding-bottom: 24px;
}
.m-Form__body[data-form-state="confirm"] .m-Form__label {
  height: auto;
  justify-content: flex-end;
}
.m-Form__body[data-form-state="confirm"] .m-Form__label + * {
  flex: 0 1 auto;
  font-weight: 700;
}
.m-Form__body[data-form-state="confirm"] pre {
  line-height: 1.8;
  white-space: pre-wrap;
}
.m-Form__body[data-form-state="thanks"] {
  background: transparent;
  padding: 0 100px;
}
.m-Form__body[data-form-state="thanks"].ir_body {
  padding: 0;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__text {
  font-weight: 700;
  line-height: 1.9;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__text p + p {
  margin-top: 1.75em;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__note {
  background: #fff;
  border: 1px solid var(--color-red);
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.9;
  margin: 64px 0 0;
  padding: 32px 80px;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__label {
  align-items: center;
  display: flex;
  gap: 16px;
  line-height: 1.45;
  margin-bottom: 16px;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__label .icon {
  flex: 0 0 auto;
  width: 25px;
}
.m-Form__body[data-form-state="thanks"] .m-Form-thanks__label .text {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.m-Form-state {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 100px;
}
.m-Form-state__item {
  align-items: center;
  background: url(../img/contact/bg-state-02.webp) 0 0/100% 100% no-repeat;
  border-radius: 3px;
  color: var(--color-gray-font);
  display: flex;
  flex: 0 1 auto;
  font-weight: 700;
  gap: 8px;
  height: 80px;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 366px;
  z-index: 0;
}
.m-Form-state__item:first-child {
  background: url(../img/contact/bg-state-01.webp) 0 0/100% 100% no-repeat;
}
.m-Form-state__item:first-child.current {
  background-image: url(../img/contact/bg-state-01_on.webp);
}
.m-Form-state__item:last-child {
  background: url(../img/contact/bg-state-03.webp) 0 0/100% 100% no-repeat;
  padding-left: 30px;
  width: 334px;
}
.m-Form-state__item:last-child.current {
  background-image: url(../img/contact/bg-state-03_on.webp);
}
.m-Form-state__item.current {
  background-image: url(../img/contact/bg-state-02_on.webp);
  color: #fff;
}
.m-Form-state__item.current .number path.circle {
  fill: #fff;
}
.m-Form-state__item.current .background path,
.m-Form-state__item.current .number path.num {
  fill: var(--color-light-blue);
}
.m-Form-state__item .number {
  display: flex;
  flex: 0 0 auto;
}
.m-Form-state__item .background {
  display: flex;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.m-Form-state__item .background img,
.m-Form-state__item .background svg {
  height: 100%;
  width: 100%;
}
.m-Form-text {
  display: flex;
  width: 100%;
}
.m-Form-text > span[class*="wpcf7-form"] {
  flex: 0 0 auto;
  width: 100%;
}
.m-Form-text .m-Form-text__input {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 5px;
  color: var(--color-black);
  display: block;
  flex: 1 1 auto;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
.m-Form-number {
  display: flex;
}
.m-Form-number > span[class*="wpcf7-form"] {
  flex: 0 0 auto;
}
.m-Form-number input::-webkit-inner-spin-button,
.m-Form-number input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.m-Form-number input[type="number"] {
  -moz-appearance: textfield;
}
.m-Form-number .m-Form-number__input {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 5px;
  color: var(--color-black);
  display: block;
  flex: 1 1 auto;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  padding: 0 20px;
}
.m-Form-textarea {
  display: flex;
  width: 100%;
}
.m-Form-textarea > span[class*="wpcf7-form"] {
  flex: 0 0 auto;
  width: 100%;
}
.m-Form-textarea .m-Form-textarea__input {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 5px;
  display: block;
  flex: 1 1 auto;
  font-weight: 700;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}
.m-Form-textarea__counter {
  color: var(--colorgray-font);
  display: block;
  font-size: 12px;
  text-align: right;
}
.m-Form-keyword {
  display: flex;
  height: 60px;
  width: 100%;
}
.m-Form-keyword .m-Form-keyword__input {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 5px 0 0 5px;
  color: var(--color-black);
  display: block;
  flex: 1 1 auto;
  font-weight: 700;
  height: 100%;
  line-height: 60px;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
.m-Form-keyword .m-Form-keyword__button {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-light-blue);
  border-radius: 0 5px 5px 0;
  color: #fff;
  display: flex;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  width: 95px;
}
.m-Form-select {
  font-weight: 700;
  max-width: 100%;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Form-select .icon {
  position: absolute;
  right: 20px;
  top: 28px;
  width: 16px;
}
.m-Form-select__select {
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 5px;
  color: var(--color-black);
  height: 60px;
  line-height: 60px;
  max-width: 100%;
  padding: 0 60px 0 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Form-privacy {
  background: var(--color-gray-bg2);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin: 40px auto 0;
  padding: 32px 24px;
  width: min(874px, 100%);
}
.m-Form-privacy__checkbox {
  margin: 32px auto 0;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.m-Pagination,
.wp-pagenavi {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 24px;
  justify-content: center;
  margin: 56px 0 0;
}
.m-Pagination > *,
.wp-pagenavi > * {
  align-items: center;
  display: flex;
  line-height: 1;
}
.m-Pagination .current,
.m-Pagination .nextpostslink,
.m-Pagination .previouspostslink,
.wp-pagenavi .current,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  align-items: center;
  aspect-ratio: 1;
  border-radius: 100vw;
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  width: 56px;
}
.m-Pagination .current,
.wp-pagenavi .current {
  background: var(--color-light-blue);
  color: #fff;
}
.m-Pagination .nextpostslink,
.m-Pagination .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  background: #fff url(../img/icon-arrow.svg) 50%/20px auto no-repeat;
  border: 2px solid var(--color-gray-line);
  color: var(--color-gray-bg1);
  font-size: 0;
}
.m-Pagination .previouspostslink,
.wp-pagenavi .previouspostslink {
  rotate: 180deg;
}
.m-Pagination .extend,
.wp-pagenavi .extend {
  aspect-ratio: 1;
  background: url(../img/icon-3dot.svg) 50% / contain no-repeat;
  height: auto;
  width: 14px;
}
.m-Table {
  border: 1px solid var(--color-gray-line);
  border-collapse: separate;
  border-radius: 20px;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}
.m-Table tr:last-child td,
.m-Table tr:last-child th {
  border-bottom: 0;
}
.m-Table td,
.m-Table th {
  border-bottom: 1px solid var(--color-gray-line);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  padding: 24px;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
}
.m-Table th {
  background: var(--color-gray-bg2);
  border-right: 1px solid var(--color-gray-line);
  width: var(--th-width, 25%);
}
.m-Table td {
  background: #fff;
}
.m-Table td:not(:first-child),
.m-Table td:not(:last-child) {
  border-right: 1px solid var(--color-gray-line);
}
.m-List-alphabet {
  list-style-type: lower-alpha;
}
.m-List-square {
  list-style: none;
  padding-left: 16px;
}
.m-List-square > li {
  position: relative;
}
.m-List-square > li:before {
  aspect-ratio: 1;
  background: var(--color-light-blue);
  border-radius: 1px;
  content: "";
  height: auto;
  left: -16px;
  position: absolute;
  top: 8px;
  width: 6px;
}
.m-List-disc {
  letter-spacing: 0.03em;
  line-height: 1.7;
  list-style-type: none;
  padding-left: 0;
}
.m-List-disc li {
  padding-left: 1em;
  position: relative;
}
.m-List-disc li:before {
  aspect-ratio: 1;
  background: var(--color-light-blue);
  border-radius: 1px;
  content: "";
  left: 0;
  position: absolute;
  top: 0.85em;
  transform: translateY(-50%);
  width: 0.375em;
}
.m-List-disc a {
  color: var(--color-light-blue);
  text-decoration: underline;
}
.m-List-disc a:hover {
  text-decoration: none;
}
.m-List-check {
  letter-spacing: 0;
  line-height: 1.7;
  list-style-type: none;
  padding-left: 0;
}
.m-List-check li {
  padding-left: 1em;
  position: relative;
}
.m-List-check li:before {
  aspect-ratio: 14/10;
  background: url(../img/icon-check.svg) no-repeat 50% / contain;
  content: "";
  left: -0.2em;
  position: absolute;
  top: 0.8em;
  transform: translateY(-50%);
  width: 0.875em;
}
.m-List-check a {
  color: var(--color-light-blue);
  text-decoration: underline;
}
.m-List-check a:hover {
  text-decoration: none;
}
.m-PromiseBanner .m-PromiseBanner__link {
  --text-color: #fff;
  background: var(--color-gradient);
  color: #fff;
  overflow: hidden;
  padding: 100px 110px;
  position: relative;
  z-index: 0;
}
.m-PromiseBanner .m-PromiseBanner__link:before {
  aspect-ratio: 648/362;
  background: url(../img/home/bg-company.png) 0 0 / contain no-repeat;
  content: "";
  display: block;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -5px;
  width: 648px;
}
.m-PromiseBanner .m-PromiseBanner__label {
  border-bottom: 0;
  font-size: 37px;
  padding: 0;
}
.m-PromiseBanner .m-PromiseBanner__text {
  font-size: 18px;
}
.m-DataBanner .m-DataBanner__link {
  --text-color: #fff;
  background: url(../img/bg-data_banner.webp) 0 0 / cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 95px 110px;
  position: relative;
  z-index: 0;
}
.m-DataBanner .m-DataBanner__label {
  border-bottom: min(4px, 0.5012531328vw) solid #fff;
  font-size: 47px;
  font-weight: 700;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.m-DataBanner .m-DataBanner__en {
  display: flex;
  filter: drop-shadow(-4px -2px 54px rgba(107, 190, 245, 0.5));
  margin-bottom: 10px;
  width: 118px;
}
.js-form .js-form-hide {
  height: 0;
  overflow: hidden;
  padding: 0;
  visibility: hidden;
}
.js-form .js-form-button-invaild {
  opacity: 0.5;
  pointer-events: none;
}
.Header {
  background: #fff;
  left: 0;
  padding: 0 20px;
  position: sticky;
  top: 0;
  transform: translateZ(0);
  width: 100%;
  z-index: 999;
}
.Header__inner {
  align-items: center;
  display: flex;
  height: 100px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 32px 0 20px;
  width: min(100%, 1200px);
}
.Header__logo {
  display: flex;
  gap: 14px;
}
.Header__logo .brand {
  height: auto;
  width: 110px;
}
.Header__jpx {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 5px;
  padding: 3px 11px 3px 5px;
}
.Header__jpx .logo {
  display: block;
  flex: 0 0 auto;
  width: 23px;
}
.Header__jpx .text {
  color: var(--color-gray-font);
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 8px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.Header__nav {
  flex: 0 1 auto;
  margin-left: auto;
}
.Header__hamburger {
  aspect-ratio: 1;
  display: none;
  height: auto;
  width: 35px;
}
.Nav__top {
  display: flex;
  font-family: var(--font-heading);
  font-size: 14px;
  gap: 24px;
  justify-content: flex-end;
}
.Nav__top > a .icon {
  display: none;
}
.Nav__lang {
  align-items: center;
  display: flex;
}
.Nav__lang .icon {
  margin-right: 5px;
  width: 19px;
}
.Nav__lang .button {
  align-items: center;
  display: flex;
  height: 19px;
  justify-content: center;
  width: 27px;
}
.Nav__lang .button.current {
  background: var(--color-light-blue);
  border-radius: 100vw;
}
.Nav__lang .button.current path,
.Nav__lang .button.current svg {
  fill: #fff;
}
.Nav__lang .button > * {
  flex: 0 0 auto;
  width: 18px;
}
.Nav__lang .button path,
.Nav__lang .button svg {
  fill: var(--color-black);
}
.Nav__main {
  display: flex;
  gap: 24px;
  margin-top: 15px;
}
.Nav__main > a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}
.Nav__main > a .icon {
  display: none;
}
.Nav-child {
  background: #fff;
  left: 0;
  padding: 48px 20px 60px;
  position: absolute;
  top: 100%;
  width: 100%;
}
.Nav-child__inner {
  align-items: flex-start;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin: 0 auto;
  width: min(100%, 1200px);
}
.Nav-child__index {
  flex: 0 0 auto;
  padding: 15px 0;
  width: 270px;
}
.Nav-child__index a {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
}
.Nav-child__index a .text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
}
.Nav-child__index a .icon {
  flex: 0 0 auto;
  width: 25px;
}
.Nav-child__list {
  display: grid;
  flex: 0 1 auto;
  gap: 0 48px;
  grid-template-columns: repeat(3, 1fr);
  width: 816px;
}
.Nav-child__list a {
  align-items: center;
  border-top: 1px solid var(--color-gray-line);
  display: flex;
  gap: 5px;
  justify-content: space-between;
  padding: 25px 2px;
}
.Nav-child__list a .text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.Nav-child__list a .icon {
  flex: 0 0 auto;
  width: 20px;
}
.Nav-contentBottom .Nav-child {
  background: #fff;
  padding: 120px 20px;
  position: static;
}
.js-nav-child {
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.js-nav-active.js-nav-parent {
  color: var(--color-light-blue);
}
.js-nav-active.js-nav-parent .icon:before {
  opacity: 0;
}
.js-nav-active.js-nav-parent .icon:after {
  rotate: 0deg;
}
.js-nav-active + .js-nav-child {
  pointer-events: auto;
  visibility: visible;
  z-index: 100;
}
.js-nav-area {
  transition: opacity 0.6s ease;
}
.js-nav-area.js-header-hidden {
  opacity: 0;
  pointer-events: none;
}
.js-header-logo-pos-hide:not(.js-header-hidden) .js-nav-area {
  box-shadow: 0 15px 74px 16px rgba(54, 112, 147, 0.15);
}
.Footer {
  overflow: hidden;
  width: 100%;
}
.Footer__top {
  background: url(../img/img-map.png) 50% / auto 87% no-repeat,
    linear-gradient(101.64deg, #2663b3 15.02%, #42a2da 52.44%, #eac06c 100.61%);
  padding: 160px 20px;
}
.Footer__bottom {
  background: var(--color-navy);
  padding: 0 20px;
}
.Footer__bottom .Footer__inner {
  align-items: center;
  height: 70px;
}
.Footer__inner {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  width: min(100%, 1200px);
}
.Footer__copyright {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.Footer__list {
  display: flex;
  gap: 14px;
}
.Footer__list a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.Footer__list a:not(:last-child) {
  display: inline-flex;
  gap: 12px;
}
.Footer__list a:not(:last-child):after {
  content: "|";
}
.Footer-info {
  flex: 0 0 auto;
  width: 354px;
}
.Footer-info__block {
  background: hsla(0, 0%, 100%, 0.08);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  margin: 0 0 16px;
  padding: 14px 16px;
  width: 100%;
}
.Footer-info__logo {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 6px;
  margin-top: 40px;
  padding: 8px 5px 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.Footer-info__logo .brand {
  height: auto;
  width: 82px;
}
.Footer-info__jpx {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 5px;
  padding: 3px 11px 3px 5px;
}
.Footer-info__jpx .logo {
  display: block;
  flex: 0 0 auto;
  width: 22px;
}
.Footer-info__jpx .text {
  color: var(--color-gray-font);
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 6px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.Footer-nav {
  display: flex;
  flex: 0 1 auto;
  gap: 48px;
  justify-content: space-between;
  width: 100%;
}
.Footer-nav > * {
  flex: 0 1 auto;
  width: 100%;
}
.Footer-nav__block {
  display: block;
  list-style: none;
  padding: 0;
  width: 100%;
}
.Footer-nav__block .label {
  margin-bottom: 16px;
}
.Footer-nav__block .list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.Footer-nav__block + .Footer-nav__block {
  border-top: 1px solid #fff;
  margin-top: 40px;
  padding-top: 40px;
}
.Footer-nav__first {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.7;
}
.Footer-nav__first .icon {
  flex: 0 0 auto;
  width: 16px;
}
.Footer-nav__second {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 4px;
  line-height: 1.7;
}
.Footer-nav__second:before {
  aspect-ratio: 1;
  background: var(--color-orange);
  border-radius: 1px;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 6px;
}
.block {
  display: block !important;
}
.flex {
  display: flex !important;
}
.none {
  display: none !important;
}
.Nav-contentBottom .navbottom\:none {
  display: none;
}
.Nav-contentBottom .navbottom\:block {
  display: block;
}
.mt-0 {
  margin-top: 0 !important;
}
.Hover-text-underline {
  color: var(--color-light-blue);
  text-decoration: underline;
}
.Hover-text-underline:hover {
  opacity: 1;
  text-decoration: none;
}
.u-Color_blue {
  color: var(--color-light-blue);
}
.u-Color_red {
  color: var(--color-red);
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
body {
  line-height: 1.4;
  position: relative;
  -webkit-font-smoothing: antialiased;
  background: var(--color-navy-bg1);
  color: var(--color-black);
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
img,
svg {
  height: auto;
  image-rendering: optimize-contrast;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
svg {
  overflow: visible;
  width: 100%;
}
sup {
  font-size: 10px;
}
summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
:where(a, button, input[type="submit"]) {
  color: var(--color-black);
  text-decoration: none;
}
picture {
  display: block;
}
iframe {
  border: 0;
}
ol,
ul {
  padding-left: 2em;
}
em {
  font-style: normal;
}
a {
  word-break: break-all;
}
.en {
  font-family: var(--font-en);
}
.grecaptcha-badge {
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .m-Block-inner-image {
    display: grid;
    gap: 0 42px;
    grid-template-areas: "breadcrumb breadcrumb" "title image" "text image";
    grid-template-columns: 1fr 382px;
    grid-template-rows: max-content max-content 1fr;
  }
  .m-Block-inner-image:has(.m-Block-pageHeader__catch) {
    grid-template-areas: "breadcrumb breadcrumb" "catch image" "title image" "text image";
  }
  .m-Block-inner-image .m-Block-pageHeader__breadcrumb {
    grid-area: breadcrumb;
    justify-content: end;
    margin-bottom: 15px;
    position: static;
  }
  .m-Block-inner-image .m-Block-pageHeader__catch {
    grid-area: catch;
  }
  .m-Block-inner-image .m-Block-pageHeader__title {
    grid-area: title;
  }
  .m-Block-inner-image .m-Block-pageHeader__text {
    grid-area: text;
    margin-top: 32px;
  }
  .m-Block-inner-image .m-Block-pageHeader__image {
    grid-area: image;
  }
  a[href^="tel:"] {
    color: inherit !important;
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) {
  .js-nav-bg {
    background: #fff;
    height: 0;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
  }
  .js-nav-child {
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .js-nav-active + .js-nav-child {
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.6s ease;
  }
  .js-nav-active + .js-nav-child:before {
    top: 0;
  }
  .js-nav-active .js-nav-bg:after,
  .js-nav-active + .js-nav-child:before {
    background: #fff;
    box-shadow: 0 15px 74px 16px rgba(54, 112, 147, 0.2);
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
  }
  .js-nav-active .js-nav-bg:after {
    bottom: 0;
    z-index: -1;
  }
  .Footer-info__block .small {
    font-size: 11px;
    font-weight: 500;
  }
}
@media screen and (max-width: 1599px) {
  .xl\:block {
    display: block !important;
  }
  .xl\:flex {
    display: flex !important;
  }
  .xl\:none {
    display: none !important;
  }
  .xl\:text-left {
    text-align: left;
  }
  .xl\:text-right {
    text-align: right;
  }
  .xl\:text-center {
    text-align: center;
  }
}
@media screen and (max-width: 1439px) {
  .lg\:block {
    display: block !important;
  }
  .lg\:flex {
    display: flex !important;
  }
  .lg\:none {
    display: none !important;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-right {
    text-align: right;
  }
  .lg\:text-center {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .Header__nav {
    background: #fff;
    height: calc(100dvh - 100px);
    left: 0;
    overflow-y: scroll;
    padding: 0 20px;
    position: absolute;
    top: 100px;
    width: 100%;
  }
  .Header__hamburger {
    display: block;
  }
  .Header__hamburger .button {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
  }
  .Header__hamburger .button .bar,
  .Header__hamburger .button:after,
  .Header__hamburger .button:before {
    background: var(--color-black);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
  }
  .Header__hamburger .button:before {
    translate: 0 -7px;
  }
  .Header__hamburger .button:after {
    translate: 0 7px;
  }
  .Nav {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 30px;
  }
  .Nav__top {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .Nav__top > a {
    border-top: 1px solid var(--color-gray-line);
    display: flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    padding-top: 16px;
  }
  .Nav__top > a .icon {
    display: block;
    flex: 0 0 auto;
    width: 15px;
  }
  .Nav__lang {
    border-top: 1px solid var(--color-gray-line);
    flex: 0 0 auto;
    justify-content: center;
    padding-top: 16px;
    width: 100%;
  }
  .Nav__main {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .Nav__main > a {
    display: flex;
    gap: 8px;
  }
  .Nav__main > a:not(:first-child) {
    border-top: 1px solid var(--color-gray-line);
    padding-top: 16px;
  }
  .Nav__main > a .icon {
    display: block;
    flex: 0 0 auto;
    width: 15px;
  }
  .Header__nav .Nav-child {
    padding: 0;
    top: 0;
  }
  .Header__nav .Nav-child a:before {
    background: var(--color-gray-line);
    content: "";
    display: block;
    flex: 0 0 auto;
    height: 1px;
    width: 10px;
  }
  .Header__nav .Nav-child__inner {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }
  .Header__nav .Nav-child__index {
    padding: 0;
    width: 100%;
  }
  .Header__nav .Nav-child__index a {
    gap: 8px;
  }
  .Header__nav .Nav-child__index a .text {
    font-size: 15px;
  }
  .Header__nav .Nav-child__index a .icon {
    width: 15px;
  }
  .Header__nav .Nav-child__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
  }
  .Header__nav .Nav-child__list a {
    border-top: 0;
    gap: 8px;
    justify-content: flex-start;
    padding: 0;
  }
  .Header__nav .Nav-child__list a .text {
    font-size: 15px;
  }
  .Header__nav .Nav-child__list a .icon {
    width: 15px;
  }
  .Nav-contentBottom .Nav-child__inner {
    flex-direction: column;
  }
  .Nav-contentBottom .Nav-child__list {
    width: 100%;
  }
  .js-nav-parent .icon {
    aspect-ratio: 1;
    display: block;
    height: auto;
    position: relative;
    width: 16px;
  }
  .js-nav-parent .icon:after,
  .js-nav-parent .icon:before {
    background: var(--color-light-blue);
    border-radius: 100vw;
    content: "";
    height: 2px;
    left: 0;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    transition: rotate 0.3s ease, opacity 0.3s ease;
    width: 100%;
  }
  .js-nav-parent .icon:after {
    rotate: 90deg;
  }
  .js-nav-active + .js-nav-child {
    position: relative;
  }
  .js-nav-child {
    visibility: hidden;
  }
  .js-nav-sp-btn .bar {
    transition: opacity 0.3s ease;
    transition-delay: 0.3s;
  }
  .js-nav-sp-btn:after,
  .js-nav-sp-btn:before {
    transition: translate 0.3s ease, rotate 0.3s ease;
    transition-delay: 0.3s, 0s;
  }
  .js-nav-active + .js-nav-child,
  .js-nav-closing + .js-nav-child {
    visibility: visible;
  }
  html.js-nav-active,
  html.js-nav-active body {
    height: 100%;
    overflow: hidden;
  }
  html.js-nav-active .js-nav-sp {
    animation: fadeIn 0.6s ease forwards;
    pointer-events: auto;
    visibility: visible;
  }
  html.js-nav-active .js-nav-sp-btn:after,
  html.js-nav-active .js-nav-sp-btn:before {
    background: var(--color-light-blue);
    transition-delay: 0s, 0.3s;
    translate: 0 0;
  }
  html.js-nav-active .js-nav-sp-btn .bar {
    opacity: 0;
    transition-delay: 0s;
  }
  html.js-nav-active .js-nav-sp-btn:before {
    rotate: 45deg;
  }
  html.js-nav-active .js-nav-sp-btn:after {
    rotate: -45deg;
  }
  html.js-nav-closing .js-nav-sp {
    animation: fadeOut 0.6s ease forwards;
  }
  .md\:block {
    display: block !important;
  }
  .md\:flex {
    display: flex !important;
  }
  .md\:none {
    display: none !important;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-center {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .js-nav-sp {
    pointer-events: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .m-Block {
    margin-bottom: 14.5833vw;
    padding: 0 6.5104vw;
  }
  .m-Block + .m-Block {
    margin-top: 14.5833vw;
  }
  .m-Block-header {
    gap: 4.1666vw 0;
    grid-template: "catch catch" auto "title title" auto ". ." auto ". button" auto/1fr auto;
  }
  .m-Block-pageHeader {
    margin: 0 0 10.4166vw;
    padding: 13.0208vw 6.5104vw 14.5833vw;
  }
  .m-Block-pageHeader__breadcrumb {
    top: -10.9375vw;
  }
  .m-Block-pageHeader__title {
    font-size: 3.9062vw;
  }
  .m-Block-pageHeader__catch + .m-Block-pageHeader__title {
    margin-top: 4.1666vw;
  }
  .m-Block-pageHeader__nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.0833vw;
    margin-top: 8.3333vw;
  }
  .m-Block-pageHeader__nav a {
    min-height: 1px;
  }
  .m-Block-pageHeader__text {
    font-size: 3.3854vw;
    line-height: 1.6923076923;
    margin-top: 4.1666vw;
  }
  .m-Block-pageHeader .m-Block-pageHeader__nav_inner {
    align-items: flex-start;
    gap: 3.125vw 4.1666vw;
    margin-bottom: -7.8125vw;
    margin-top: 4.1666vw;
  }
  .m-Block-pageHeader__image {
    border-radius: 2.6041vw;
  }
  .m-Block-inner-image .m-Block-pageHeader__image {
    margin-top: 8.3333vw;
  }
  .m-Block-innerNav {
    margin-bottom: 10.4166vw;
    padding: 0 6.5104vw;
  }
  .m-Block-innerNav__list {
    font-size: 3.9062vw;
    gap: 2.0833vw;
  }
  .m-Heading {
    font-size: 4.1666vw;
    gap: 3.125vw;
  }
  .m-Heading:before {
    width: 1.8229vw;
  }
  .m-Heading-01 {
    font-size: 6.1197vw;
  }
  .m-Heading-02 {
    font-size: 3.3854vw;
  }
  .m-Heading-02 small {
    font-size: 2.6041vw;
  }
  .m-Heading-03 {
    font-size: 3.9062vw;
  }
  .m-Heading-03._large {
    font-size: 4.1666vw;
  }
  .m-Button {
    gap: 2.0833vw;
    min-height: 16.276vw;
    padding: 2.6041vw 4.1666vw 2.6041vw 5.4687vw;
  }
  .m-Button .icon {
    width: 3.2552vw;
  }
  .m-Button_thin {
    gap: 2.0833vw;
    min-height: 16.276vw;
    padding: 2.6041vw 4.1666vw 2.6041vw 5.4687vw;
  }
  .m-Button-block {
    border-radius: 1.9531vw;
    padding: 7.0312vw 4.5572vw;
  }
  .m-Button-block__label {
    font-size: 3.3854vw;
    padding: 0 0 1.8229vw;
  }
  .m-Button-block__body {
    font-size: 2.9947vw;
    margin-top: 1.8229vw;
  }
  .m-Button-block .icon {
    bottom: 4.1666vw;
    right: 4.1666vw;
    width: 3.2552vw;
  }
  .m-Button-block-02 {
    border-radius: 1.9531vw;
    gap: 1.5625vw;
    padding: 7.0312vw 4.5572vw;
  }
  .m-Button-block-02 .text {
    font-size: 3.3854vw;
  }
  .m-Button-block-02 .icon {
    width: 3.2552vw;
  }
  .m-Button-innerLink {
    gap: 2.0833vw;
  }
  .m-Button-innerLink .text {
    font-size: 3.9062vw;
  }
  .m-Button-innerLink .icon {
    width: 3.2552vw;
  }
  .m-Button-icon .icon {
    width: 3.2552vw;
  }
  .m-Button-circleArrow {
    width: 14.3229vw;
  }
  .m-Button-circleArrow img,
  .m-Button-circleArrow svg {
    width: 5.2083vw;
  }
  .m-Button-file {
    border-radius: 1.9531vw;
    gap: 2.0833vw;
    padding: 3.125vw 4.5572vw;
  }
  .m-Button-file .text {
    font-size: 3.9062vw;
    gap: 2.0833vw;
    line-height: 1.7;
  }
  .m-Button-file .note {
    width: 5.2083vw;
  }
  .m-Button-file .icon {
    width: 3.9062vw;
  }
  .m-Tags {
    gap: 2.6041vw;
  }
  .m-Tags > * {
    border-radius: 0.5208vw;
    font-size: 2.9947vw;
    padding: 0.3906vw 1.8229vw;
  }
  .m-NewsList {
    gap: 5.2083vw;
  }
  .m-NewsList__item {
    padding-bottom: 3.125vw;
  }
  .m-NewsList__link {
    gap: 2.3437vw 2.6041vw;
  }
  .m-NewsList__label {
    font-size: 3.9062vw;
  }
  .m-NewsList__info {
    font-size: 2.9947vw;
    gap: 1.0416vw;
  }
  .m-NewsList__info > :not(:first-child):before {
    margin-right: 1.0416vw;
  }
  .m-NewsList__whithImage {
    align-items: flex-start;
    border-bottom: 1px solid var(--color-gray-line);
    gap: 0 4.1666vw;
    padding-bottom: 3.125vw;
  }
  .m-NewsList__whithImage .m-NewsList__item {
    border-bottom: 0;
  }
  .m-NewsList__whithImage .m-NewsList__date {
    font-size: 2.9947vw;
    font-weight: 700;
    margin-top: 2.0833vw;
  }
  .m-NewsList__whithImage .m-NewsList__label {
    font-size: 3.3854vw;
    margin-top: 1.8229vw;
  }
  .m-NewsList__image {
    grid-area: image;
    width: 30.2083vw;
  }
  .m-Breadcrumb {
    font-size: 2.6041vw;
    gap: 1.5625vw;
  }
  .m-Breadcrumb :not(:first-child) {
    gap: 1.5625vw;
  }
  .m-Breadcrumb :not(:first-child):before {
    height: 2.6041vw;
  }
  .m-Form input,
  .m-Form select,
  .m-Form textarea {
    font-size: 17px;
  }
  .m-Form__body {
    border-radius: 0.5208vw;
    margin: 0 -6.5105vw;
    padding: 12.5vw 6.5104vw;
  }
  .m-Form__row {
    flex-direction: column;
    gap: 0.5208vw;
  }
  .m-Form__row + .m-Form__row {
    margin-top: 5.2083vw;
  }
  .m-Form__label {
    font-size: 3.9062vw;
    gap: 1.0416vw;
    height: auto;
    width: 100%;
  }
  .m-Form__label .require {
    font-size: 2.6041vw;
    padding: 0 0.5208vw;
  }
  .m-Form__note {
    font-size: 2.9947vw;
  }
  .m-Form__google-policy {
    font-size: 3.3854vw;
    margin: 6.25vw -3.9063vw 0;
  }
  .m-Form__buttons {
    gap: 5.2083vw;
    margin-top: 5.2083vw;
  }
  .m-Form__auto-address {
    gap: 3.125vw;
  }
  .m-Form__auto-button {
    align-items: center;
    border-radius: 0.651vw;
    display: flex;
    font-size: 3.3854vw;
    height: 11.7187vw;
    text-align: center;
  }
  .m-Form__body[data-form-state="confirm"] {
    padding: 10.4166vw 6.5104vw;
  }
  .m-Form__body[data-form-state="confirm"] .m-Form__row {
    gap: 0;
    padding-bottom: 5.2083vw;
  }
  .m-Form__body[data-form-state="confirm"] .m-Form__label {
    font-size: 3.9062vw;
    justify-content: flex-start;
    line-height: 2;
  }
  .m-Form__body[data-form-state="confirm"] .m-Form__label + * {
    font-size: 3.9062vw;
    line-height: 2;
  }
  .m-Form__body[data-form-state="thanks"] {
    padding: 0 6.5104vw;
  }
  .m-Form__body[data-form-state="thanks"].ir_body {
    padding: 0 6.5104vw;
  }
  .m-Form__body[data-form-state="thanks"] .m-Form-thanks__text {
    font-size: 3.9062vw;
    line-height: 2;
  }
  .m-Form__body[data-form-state="thanks"] .m-Form-thanks__note {
    border-radius: 2.6041vw;
    font-size: 3.9062vw;
    line-height: 2;
    margin-top: 10.4166vw;
    padding: 4.1666vw 5.2083vw;
  }
  .m-Form__body[data-form-state="thanks"] .m-Form-thanks__label {
    gap: 2.0833vw;
    margin-bottom: 2.0833vw;
  }
  .m-Form__body[data-form-state="thanks"] .m-Form-thanks__label .icon {
    width: 3.9062vw;
  }
  .m-Form__body[data-form-state="thanks"] .m-Form-thanks__label .text {
    font-size: 5.4687vw;
  }
  .m-Form-state {
    margin: 0 0 10.4166vw;
  }
  .m-Form-state__item {
    height: 18.2291vw;
    width: 29.9479vw;
  }
  .m-Form-state__item:last-child {
    padding-left: 2.6041vw;
    width: 26.0416vw;
  }
  .m-Form-text .m-Form-text__input {
    height: 11.7187vw;
    line-height: 11.7187vw;
    padding: 0 3.9062vw;
  }
  .m-Form-number .m-Form-number__input {
    height: 11.7187vw;
    line-height: 11.7187vw;
    padding: 0 3.9062vw;
  }
  .m-Form-textarea .m-Form-textarea__input {
    padding: 3.9062vw;
  }
  .m-Form-keyword {
    height: 11.7187vw;
  }
  .m-Form-keyword .m-Form-keyword__input {
    line-height: 11.7187vw;
    padding: 0 3.9062vw;
  }
  .m-Form-keyword .m-Form-keyword__button {
    width: 13.0208vw;
  }
  .m-Form-select .icon {
    right: 2.6041vw;
    top: 5.2083vw;
    width: 4.1666vw;
  }
  .m-Form-select__select {
    height: 11.7187vw;
    line-height: 11.7187vw;
    padding: 0 7.8125vw 0 5.2083vw;
  }
  .m-Form-privacy {
    font-size: 3.3854vw;
    margin-top: 6.25vw;
    padding: 4.1666vw 3.125vw;
    width: 100%;
  }
  .m-Form-privacy__checkbox {
    font-size: 3.9062vw;
    margin-top: 3.9062vw;
  }
  .m-Pagination,
  .wp-pagenavi {
    gap: 3.125vw;
    margin-top: 10.4166vw;
  }
  .m-Pagination .current,
  .m-Pagination .nextpostslink,
  .m-Pagination .previouspostslink,
  .wp-pagenavi .current,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    width: 14.3229vw;
  }
  .m-Pagination .current,
  .wp-pagenavi .current {
    width: 10.4166vw;
  }
  .m-Pagination .nextpostslink,
  .m-Pagination .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    background-size: 5.2083vw auto;
  }
  .m-Pagination .extend,
  .wp-pagenavi .extend {
    width: 3.6458vw;
  }
  .m-Table {
    border-radius: 2.6041vw;
  }
  .m-Table td,
  .m-Table th {
    font-size: 3.3854vw;
    padding: 3.125vw;
  }
  .m-Table_spbreak table,
  .m-Table_spbreak tbody,
  .m-Table_spbreak td,
  .m-Table_spbreak th,
  .m-Table_spbreak thead,
  .m-Table_spbreak tr {
    display: block;
    width: 100%;
  }
  .m-List-square {
    padding-left: 2.0833vw;
  }
  .m-List-square > li:before {
    left: -2.0834vw;
    top: 2.0833vw;
    width: 1.0416vw;
  }
  .m-PromiseBanner .m-PromiseBanner__link {
    padding: 10.677vw 6.5104vw;
  }
  .m-PromiseBanner .m-PromiseBanner__link:before {
    right: -11.9792vw;
    top: -0.6511vw;
    width: 84.375vw;
  }
  .m-PromiseBanner .m-PromiseBanner__label {
    font-size: 4.1666vw;
  }
  .m-PromiseBanner .m-PromiseBanner__text {
    font-size: 2.9947vw;
  }
  .m-DataBanner .m-DataBanner__link {
    padding: 10.677vw 6.5104vw;
  }
  .m-DataBanner .m-DataBanner__label {
    font-size: 6.25vw;
  }
  .m-DataBanner .m-DataBanner__en {
    width: 16.1458vw;
  }
  .js-form .js-form-hide {
    padding: 0;
  }
  .Header {
    padding: 0;
  }
  .Header__inner {
    height: 15.625vw;
    padding: 0 6.5104vw;
  }
  .Header__logo {
    gap: 2.8645vw;
  }
  .Header__logo .brand {
    width: 21.0937vw;
  }
  .Header__jpx {
    gap: 1.0416vw;
    padding: 0.5208vw 1.5625vw 0.5208vw 1.1718vw;
  }
  .Header__jpx .logo {
    width: 4.9479vw;
  }
  .Header__jpx .text {
    font-size: 2.0833vw;
  }
  .Header__nav {
    height: calc(100dvh - 15.625vw);
    padding: 0 6.5104vw;
    top: 15.625vw;
  }
  .Nav {
    padding-bottom: 5.2083vw;
  }
  .Nav__top > a {
    font-size: 3.9062vw;
    padding-top: 5.2083vw;
  }
  .Nav__top > a .icon {
    width: 3.2552vw;
  }
  .Nav__lang {
    padding-top: 5.2083vw;
  }
  .Nav__lang .icon {
    margin-right: 1.0416vw;
    width: 3.9062vw;
  }
  .Nav__lang .button {
    height: 4.1666vw;
    width: 5.7291vw;
  }
  .Nav__lang .button > * {
    width: 3.5156vw;
  }
  .Nav__main {
    gap: 5.2083vw;
  }
  .Nav__main > a {
    font-size: 3.9062vw;
    gap: 2.0833vw;
  }
  .Nav__main > a:not(:first-child) {
    padding-top: 5.2083vw;
  }
  .Nav__main > a .icon {
    width: 3.2552vw;
  }
  .Header__nav .Nav-child a:before {
    width: 2.6041vw;
  }
  .Header__nav .Nav-child__index a {
    gap: 2.0833vw;
  }
  .Header__nav .Nav-child__index a .text {
    font-size: 3.9062vw;
  }
  .Header__nav .Nav-child__index a .icon {
    width: 3.2552vw;
  }
  .Header__nav .Nav-child__list {
    gap: 5.2083vw;
    margin-top: 5.2083vw;
  }
  .Header__nav .Nav-child__list a {
    gap: 2.0833vw;
  }
  .Header__nav .Nav-child__list a .text {
    font-size: 3.9062vw;
  }
  .Header__nav .Nav-child__list a .icon {
    width: 3.2552vw;
  }
  .Nav-contentBottom .Nav-child {
    padding: 13.0208vw 6.5104vw;
  }
  .Nav-contentBottom .Nav-child__inner {
    gap: 5.2083vw;
  }
  .Nav-contentBottom .Nav-child__list {
    gap: 0 8.3333vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .Nav-contentBottom .Nav-child__list a {
    gap: 1.8229vw;
    padding: 5.2083vw 0;
  }
  .Nav-contentBottom .Nav-child__list a .text {
    font-size: 3.9062vw;
    line-height: 1.4;
  }
  .Nav-contentBottom .Nav-child__list a .icon {
    width: 3.2552vw;
  }
  .Nav-contentBottom .Nav-child__index {
    padding: 0;
    width: 100%;
  }
  .Nav-contentBottom .Nav-child__index a {
    gap: 1.9531vw;
  }
  .Nav-contentBottom .Nav-child__index a .text {
    font-size: 5.2083vw;
  }
  .Nav-contentBottom .Nav-child__index a .icon {
    width: 3.2552vw;
  }
  .js-nav-parent .icon {
    width: 3.125vw;
  }
  .Footer__top {
    padding: 15.625vw 6.5104vw 7.2916vw;
  }
  .Footer__bottom {
    padding: 3.3854vw 6.5104vw 2.3437vw;
  }
  .Footer__bottom .Footer__inner {
    height: auto;
  }
  .Footer__inner {
    flex-direction: column-reverse;
    gap: 0;
    justify-content: flex-start;
  }
  .Footer__copyright {
    font-size: 2.6041vw;
    margin-top: 3.3854vw;
  }
  .Footer__list {
    flex-wrap: wrap;
    gap: 0 1.8229vw;
    justify-content: center;
  }
  .Footer__list a {
    font-size: 2.6041vw;
    line-height: 1.6;
  }
  .Footer-info {
    margin-top: 6.25vw;
    width: 100%;
  }
  .Footer-info__block {
    font-size: 2.6041vw;
    line-height: 1.6;
    margin-bottom: 2.0833vw;
    padding: 1.8229vw 6.5104vw;
  }
  .Footer-info__logo {
    gap: 3.3854vw;
    margin: 6.25vw 0 0 auto;
    padding: 2.3437vw 3.2552vw;
  }
  .Footer-info__logo .brand {
    width: 18.4895vw;
  }
  .Footer-info__jpx {
    gap: 1.0416vw;
    padding: 0.3906vw 0;
  }
  .Footer-info__jpx .logo {
    width: 3.9062vw;
  }
  .Footer-info__jpx .text {
    font-size: 1.4322vw;
  }
  .Footer-nav {
    border-bottom: 1px solid #fff;
    flex-direction: column;
    padding-bottom: 6.25vw;
  }
  .Footer-nav__side + .Footer-nav__side {
    border-top: 1px solid #fff;
    padding-top: 5.2083vw;
  }
  .Footer-nav__block .label {
    margin-bottom: 4.1666vw;
  }
  .Footer-nav__block .list {
    gap: 3.125vw 4.1666vw;
  }
  .Footer-nav__block + .Footer-nav__block {
    margin-top: 5.2083vw;
    padding-top: 5.2083vw;
  }
  .Footer-nav__first {
    font-size: 4.1666vw;
    gap: 2.0833vw;
  }
  .Footer-nav__first .icon {
    width: 4.6875vw;
  }
  .Footer-nav__second {
    font-size: 3.6458vw;
    gap: 1.0416vw;
    line-height: 1.4;
  }
  .Footer-nav__second:before {
    width: 1.8229vw;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:flex {
    display: flex !important;
  }
  .sm\:none {
    display: none !important;
  }
  .Nav-contentBottom .navbottom\:sm\:none {
    display: none !important;
  }
  .Nav-contentBottom .navbottom\:sm\:block {
    display: block !important;
  }
  .sm\:mt-0 {
    margin-top: 0 !important;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:text-right {
    text-align: right;
  }
  .sm\:text-center {
    text-align: center;
  }
  body {
    font-size: 3.6458vw;
  }
}
@media screen and (max-width: 479px) {
  .xs\:block {
    display: block !important;
  }
  .xs\:flex {
    display: flex !important;
  }
  .xs\:none {
    display: none !important;
  }
  .xs\:text-left {
    text-align: left;
  }
  .xs\:text-right {
    text-align: right;
  }
  .xs\:text-center {
    text-align: center;
  }
}
@media (hover: hover) {
  .m-Button {
    transition: background-color 0.3s var(--ease-outquart),
      color 0.3s var(--ease-outquart);
  }
  .m-Button .icon {
    transition: translate 0.3s var(--ease-outquart);
  }
  .m-Button .icon path {
    transition: fill 0.3s var(--ease-outquart);
  }
  .m-Button:hover {
    background: var(--color-light-blue);
    color: #fff;
    opacity: 1;
  }
  .m-Button:hover .icon {
    translate: 6px 0;
  }
  .m-Button:hover .icon path[fill="#50A2D2"] {
    fill: #fff;
  }
  .m-Button:hover .icon path[fill="#fff"] {
    fill: var(--color-light-blue);
  }
  .m-Button.m-Button_blue:hover {
    background: #fff;
    border-block-end-color: var(--color-light-blue);
    color: var(--color-light-blue);
  }
  .m-Button.m-Button_blue:hover .icon path[fill="#50A2D2"] {
    fill: #50a2d2;
  }
  .m-Button.m-Button_blue:hover .icon path[fill="#fff"] {
    fill: #fff;
  }
  .m-Button-block .icon {
    transition: translate 0.3s var(--ease-outquart);
  }
  .m-Button-block:hover {
    opacity: 1;
  }
  .m-Button-block:hover .icon {
    translate: 6px 0;
  }
  .m-Button-block-02 .icon {
    transition: translate 0.3s var(--ease-outquart);
  }
  .m-Button-block-02:hover {
    opacity: 1;
  }
  .m-Button-block-02:hover .icon {
    translate: 6px 0;
  }
  .m-Button-circleArrow {
    transition: background-color 0.3s ease;
  }
  .m-Button-circleArrow path,
  .m-Button-circleArrow svg {
    transition: fill 0.3s ease;
  }
  .m-Button-circleArrow:hover {
    background: rgba(80, 162, 210, 0.6);
    border-color: rgba(80, 162, 210, 0.6);
    opacity: 1;
  }
  .m-Button-circleArrow:hover path,
  .m-Button-circleArrow:hover svg {
    fill: #fff;
  }
  .m-Button-file {
    transition: background-color 0.3s var(--ease-outquart),
      color 0.3s var(--ease-outquart);
  }
  .m-Button-file .icon path,
  .m-Button-file .note path {
    transition: fill 0.3s var(--ease-outquart);
  }
  .m-Button-file:hover {
    background: var(--color-light-blue);
    color: #fff;
    opacity: 1;
  }
  .m-Button-file:hover .icon [fill="#50A2D2"],
  .m-Button-file:hover .note path {
    fill: #fff;
  }
  .m-Button-file:hover .icon [fill="#F9F9F9"] {
    fill: #50a2d2;
  }
  .m-Breadcrumb a:hover {
    opacity: 1;
    text-decoration: none;
  }
  .Hover-opacity {
    text-decoration: none;
    transition: opacity 0.3s ease;
    will-change: opacity;
  }
  .Hover-opacity:hover {
    opacity: 0.6;
  }
  .Hover-underline {
    text-decoration: underline;
  }
  .Hover-underline:hover {
    text-decoration: none;
  }
  .Hover-blue {
    transition: color 0.3s ease;
  }
  .Hover-blue:hover {
    color: var(--color-light-blue);
    opacity: 1;
  }
  .Hover-icon .icon {
    transition: translate 0.3s var(--ease-outquart);
  }
  .Hover-icon:hover {
    opacity: 1;
  }
  .Hover-icon:hover .icon {
    translate: 6px 0;
  }
  .Hover-imageFocus .imageFocus {
    scale: 1.1;
    transition: scale 0.8s var(--ease-outquart);
  }
  .Hover-imageFocus:hover {
    opacity: 1;
  }
  .Hover-imageFocus:hover .imageFocus {
    scale: 1;
  }
  .Hover-shrink {
    display: block;
  }
  .Hover-shrink > * {
    transform-origin: center;
    transition: scale 0.8s var(--ease-outquart);
  }
  .Hover-shrink .icon {
    transition: none;
  }
  .Hover-shrink:hover {
    opacity: 1;
  }
  .Hover-shrink:hover > * {
    scale: 0.92;
  }
  .Hover-shrink:hover .icon {
    translate: 0 0;
  }
  :where(a, button, input[type="submit"]) {
    transition: opacity 0.3s ease;
  }
  :where(a, button, input[type="submit"]):hover {
    opacity: 0.6;
  }
}

/*# sourceMappingURL=style.css.map */
