@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/**
 * Add the correct font size in all browsers.
 */

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */

/*
 * Add the correct display in Safari.
 */

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:root {
  --font-family: Noto Sans JP, sans-serif;
  --font-family-en: Work Sans, sans-serif;
  --line-height-heading: 1.5;
  --line-height: 1.6;
  --line-height-wide: 2;
  --color-text: #222222;
  --color-main: #120d6b;
  --color-text-note: #747474;
  --color-bg: #eee;
  --color-link: #2e9ec9;
  --color-hover: #4b6ca2;
  --color-line: #707070;
  --color-white: #fff;
  --color-gray: #777777;
  --color-green: #90ae21;
  --color-border: #cccccc;
  --color-black: #000;
  --color-copy: #dda8c2;
  --color-primary: #0ea5e9;
  --color-primary-dark: #0284c7;
  --color-text-dark: #1a1a1a;
  --color-text-sub: #666;
  --color-text-light: #555;
  --color-text-muted: #999;
  --color-bg-gray: #F2F2F2;
  --container-max: 1100px;
  --container-padding: 20px;
  --header-max-width: 1200px;
  --w-md: 720px;
  --w-lg: 800px;
  --w-xl: 1200px;
  --w-xxl: 1440px;
  --radius: 8px;
  --radius-sp: 4px;
  --opacity: 0.7;
  --transition-duration: 0.3s;
  --transition-function: ease;
}

h1,
h2,
h3,
p,
ul,
button {
  padding: 0;
  margin: 0;
}


img,
iframe,
embed,
video,
button {
  border: 0;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: Noto Sans JP, sans-serif;
  font-family: var(--font-family);
  line-height: 1.6;
  line-height: var(--line-height);
  color: #222222;
  color: var(--color-text);
  word-break: normal;
  word-wrap: anywhere;
  line-break: strict;
}

html,
body {
  height: 100%;
}

li {
  list-style: none;
}

label {
  cursor: pointer;
}

input::-ms-clear {
  visibility: hidden;
}

button {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input,
button,
select,
textarea {
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease;
  transition: all var(--transition-duration) var(--transition-function);
}

h1,
h2,
h3 {
  font-size: 1em;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  background-color: transparent;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.l-article-body {
  margin-top: 5.5555555556vw;
}

.l-article-body__inner {
  display: flex;
}

.l-article-side {
  container-type: inline-size;
  position: -webkit-sticky;
  position: sticky;
  top: 1.25em;
  bottom: auto;
}

.l-article-main {
  flex: 1;
}
.l-article-main.-narrow {
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
}
.l-flex.--row-gap-80 {
  row-gap: 5em;
}
.l-flex.--row-gap-60 {
  row-gap: 3.75em;
}
.l-flex.--row-gap-40 {
  row-gap: 2.5em;
}
.l-flex.--row-gap-30 {
  row-gap: 1.87em;
}
.l-flex.--row-gap-20 {
  row-gap: 1.25em;
}
.l-flex.--column-gap-80 {
  -moz-column-gap: 5em;
       column-gap: 5em;
}
.l-flex.--column-gap-60 {
  -moz-column-gap: 3.75em;
       column-gap: 3.75em;
}
.l-flex.--column-gap-40 {
  -moz-column-gap: 2.5em;
       column-gap: 2.5em;
}
.l-flex.--column-gap-30 {
  -moz-column-gap: 1.87em;
       column-gap: 1.87em;
}
.l-flex.--column-gap-20 {
  -moz-column-gap: 1.25em;
       column-gap: 1.25em;
}
.l-flex.--align-center {
  align-items: center;
}
.l-flex.--content-center {
  justify-content: center;
}

.l-flex-col {
  display: flex;
  flex-direction: column;
}
.l-flex-col.--align-center {
  align-items: center;
}
.l-flex-col.--content-center {
  justify-content: center;
}

.l-flex-col-reverse {
  display: flex;
  flex-direction: column-reverse;
}
.l-flex-col-reverse.--align-center {
  align-items: center;
}
.l-flex-col-reverse.--content-center {
  justify-content: center;
}

.l-flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.l-flex-row-reverse.--align-center {
  align-items: center;
}
.l-flex-row-reverse.--content-center {
  justify-content: center;
}

.l-grid {
  display: grid;
  width: 100%;
}
.l-grid.--1col {
  grid-template-columns: repeat(1, 1fr);
}
.l-grid.--2col {
  grid-template-columns: repeat(2, 1fr);
}
.l-grid.--3col {
  grid-template-columns: repeat(3, 1fr);
}
.l-grid.--4col {
  grid-template-columns: repeat(4, 1fr);
}
.l-grid.--row-gap-80 {
  row-gap: 5em;
}
.l-grid.--row-gap-60 {
  row-gap: 3.75em;
}
.l-grid.--row-gap-40 {
  row-gap: 2.5em;
}
.l-grid.--row-gap-30 {
  row-gap: 1.87em;
}
.l-grid.--row-gap-20 {
  row-gap: 1.25em;
}
.l-grid.--column-gap-80 {
  -moz-column-gap: 5em;
       column-gap: 5em;
}
.l-grid.--column-gap-60 {
  -moz-column-gap: 3.75em;
       column-gap: 3.75em;
}
.l-grid.--column-gap-40 {
  -moz-column-gap: 2.5em;
       column-gap: 2.5em;
}
.l-grid.--column-gap-30 {
  -moz-column-gap: 1.87em;
       column-gap: 1.87em;
}
.l-grid.--column-gap-20 {
  -moz-column-gap: 1.25em;
       column-gap: 1.25em;
}

.l-main {
  padding-top: 22.2222222222vw;
  padding-bottom: 22.2222222222vw;
}

.l-section__inner {
  padding-left: 25px;
  padding-right: 25px;
}

.c-btn {
  display: inline-flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center;
  justify-content: space-between;
  min-height: 3.75em;
  padding: 0.62em 1.25em 0.62em 1.87em;
  color: #fff;
  color: var(--color-white);
  background-color: #120d6b;
  background-color: var(--color-main);
  border: 1px solid #cccccc;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}
.c-btn:hover {
  transition: all 0.3s ease;
  transition: all var(--transition-duration) var(--transition-function);
}

.c-btn__text {
  flex-basis: 100%;
  text-align: center;
  letter-spacing: 0.06em;
}

.m-btn {
  margin-top: 8.3333333333vw;
}

.m-footer {
  padding: 3.12em 0;
  background: #120d6b;
  background: var(--color-main);
}

.m-footer__copyright {
  display: block;
  font-family: Work Sans, sans-serif;
  font-family: var(--font-family-en);
  color: #fff;
  color: var(--color-white);
  text-align: center;
}

.m-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 13.8888888889vw;
}

.m-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 5.5555555556vw;
  padding-right: 5.5555555556vw;
  margin-left: auto;
  margin-right: auto;
}

.m-header__logo {
  position: relative;
  z-index: 12;
  font-weight: 600;
}

.m-header__nav.is-active {
  visibility: visible;
  background: #fff;
  opacity: 1;
}

.m-header__nav__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.m-header__nav__item {
  position: relative;
  width: 100%;
}

.m-header__btn {
  z-index: 12;
}

.m-header__btn__line {
  position: relative;
  display: inline-block;
  width: 8.3333333333vw;
  height: 2.7777777778vw;
  transition: all 0.3s ease;
  transition: all var(--transition-duration) var(--transition-function);
}
.m-header__btn__line:before, .m-header__btn__line:after {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.2777777778vw;
  content: "";
  background: #000;
  transition: all 0.3s ease;
  transition: all var(--transition-duration) var(--transition-function);
  transform: translateX(-50%);
  transform-origin: center;
}
.m-header__btn__line:after {
  bottom: 0;
}
.m-header__btn__line:before {
  top: 0;
}
.-navopen .m-header__btn__line:after, .-navopen .m-header__btn__line:before {
  width: 70%;
}
.-navopen .m-header__btn__line:before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.-navopen .m-header__btn__line:after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.m-header__nav__link {
  position: relative;
  display: block;
  padding: 18px 0;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-size: 15px;
  color: #222222;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
.m-header__nav__link:hover {
  text-decoration: none;
}

.m-header__menu {
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 10;
  display: block;
  width: 30px;
  height: 19px;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s 0.4s;
  transform: translate(0%, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.m-header__menu__inner {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  display: inline-block;
  width: 30px;
  height: 100%;
}

.m-header__menu__line {
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background-color: #000;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.m-header__menu__line--top {
  top: 0;
}
.m-header__menu__line--middle {
  top: 8px;
}
.m-header__menu__line--bottom {
  top: 16px;
}

.m-notfound {
  text-align: center;
}
.u-grid .col-1 {
  width: 8.3333333333% !important;
}
.u-grid .col-start-1 {
  margin-left: 8.3333333333% !important;
}
.u-grid .col-end-1 {
  margin-right: 8.3333333333% !important;
}
.u-grid .col-2 {
  width: 16.6666666667% !important;
}
.u-grid .col-start-2 {
  margin-left: 16.6666666667% !important;
}
.u-grid .col-end-2 {
  margin-right: 16.6666666667% !important;
}
.u-grid .col-3 {
  width: 25% !important;
}
.u-grid .col-start-3 {
  margin-left: 25% !important;
}
.u-grid .col-end-3 {
  margin-right: 25% !important;
}
.u-grid .col-4 {
  width: 33.3333333333% !important;
}
.u-grid .col-start-4 {
  margin-left: 33.3333333333% !important;
}
.u-grid .col-end-4 {
  margin-right: 33.3333333333% !important;
}
.u-grid .col-5 {
  width: 41.6666666667% !important;
}
.u-grid .col-start-5 {
  margin-left: 41.6666666667% !important;
}
.u-grid .col-end-5 {
  margin-right: 41.6666666667% !important;
}
.u-grid .col-6 {
  width: 50% !important;
}
.u-grid .col-start-6 {
  margin-left: 50% !important;
}
.u-grid .col-end-6 {
  margin-right: 50% !important;
}
.u-grid .col-7 {
  width: 58.3333333333% !important;
}
.u-grid .col-start-7 {
  margin-left: 58.3333333333% !important;
}
.u-grid .col-end-7 {
  margin-right: 58.3333333333% !important;
}
.u-grid .col-8 {
  width: 66.6666666667% !important;
}
.u-grid .col-start-8 {
  margin-left: 66.6666666667% !important;
}
.u-grid .col-end-8 {
  margin-right: 66.6666666667% !important;
}
.u-grid .col-9 {
  width: 75% !important;
}
.u-grid .col-start-9 {
  margin-left: 75% !important;
}
.u-grid .col-end-9 {
  margin-right: 75% !important;
}
.u-grid .col-10 {
  width: 83.3333333333% !important;
}
.u-grid .col-start-10 {
  margin-left: 83.3333333333% !important;
}
.u-grid .col-end-10 {
  margin-right: 83.3333333333% !important;
}
.u-grid .col-11 {
  width: 91.6666666667% !important;
}
.u-grid .col-start-11 {
  margin-left: 91.6666666667% !important;
}
.u-grid .col-end-11 {
  margin-right: 91.6666666667% !important;
}
.u-grid .col-12 {
  width: 100% !important;
}
.u-grid .col-start-12 {
  margin-left: 100% !important;
}
.u-grid .col-end-12 {
  margin-right: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 4 !important;
}

.m-2 {
  margin: 8 !important;
}

.m-3 {
  margin: 12 !important;
}

.m-4 {
  margin: 16 !important;
}

.m-5 {
  margin: 20 !important;
}

.m-6 {
  margin: 24 !important;
}

.m-7 {
  margin: 28 !important;
}

.m-8 {
  margin: 32 !important;
}

.m-9 {
  margin: 36 !important;
}

.m-10 {
  margin: 40 !important;
}

.m-11 {
  margin: 44 !important;
}

.m-12 {
  margin: 48 !important;
}

.m-13 {
  margin: 52 !important;
}

.m-14 {
  margin: 56 !important;
}

.m-15 {
  margin: 60 !important;
}

.m-16 {
  margin: 64 !important;
}

.m-17 {
  margin: 68 !important;
}

.m-18 {
  margin: 72 !important;
}

.m-19 {
  margin: 76 !important;
}

.m-20 {
  margin: 80 !important;
}

.m-21 {
  margin: 84 !important;
}

.m-22 {
  margin: 88 !important;
}

.m-23 {
  margin: 92 !important;
}

.m-24 {
  margin: 96 !important;
}

.m-25 {
  margin: 100 !important;
}

.m-auto {
  margin: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 4 !important;
}

.ml-2 {
  margin-left: 8 !important;
}

.ml-3 {
  margin-left: 12 !important;
}

.ml-4 {
  margin-left: 16 !important;
}

.ml-5 {
  margin-left: 20 !important;
}

.ml-6 {
  margin-left: 24 !important;
}

.ml-7 {
  margin-left: 28 !important;
}

.ml-8 {
  margin-left: 32 !important;
}

.ml-9 {
  margin-left: 36 !important;
}

.ml-10 {
  margin-left: 40 !important;
}

.ml-11 {
  margin-left: 44 !important;
}

.ml-12 {
  margin-left: 48 !important;
}

.ml-13 {
  margin-left: 52 !important;
}

.ml-14 {
  margin-left: 56 !important;
}

.ml-15 {
  margin-left: 60 !important;
}

.ml-16 {
  margin-left: 64 !important;
}

.ml-17 {
  margin-left: 68 !important;
}

.ml-18 {
  margin-left: 72 !important;
}

.ml-19 {
  margin-left: 76 !important;
}

.ml-20 {
  margin-left: 80 !important;
}

.ml-21 {
  margin-left: 84 !important;
}

.ml-22 {
  margin-left: 88 !important;
}

.ml-23 {
  margin-left: 92 !important;
}

.ml-24 {
  margin-left: 96 !important;
}

.ml-25 {
  margin-left: 100 !important;
}

.ml-auto {
  margin-left: auto !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 4 !important;
}

.pl-2 {
  padding-left: 8 !important;
}

.pl-3 {
  padding-left: 12 !important;
}

.pl-4 {
  padding-left: 16 !important;
}

.pl-5 {
  padding-left: 20 !important;
}

.pl-6 {
  padding-left: 24 !important;
}

.pl-7 {
  padding-left: 28 !important;
}

.pl-8 {
  padding-left: 32 !important;
}

.pl-9 {
  padding-left: 36 !important;
}

.pl-10 {
  padding-left: 40 !important;
}

.pl-11 {
  padding-left: 44 !important;
}

.pl-12 {
  padding-left: 48 !important;
}

.pl-13 {
  padding-left: 52 !important;
}

.pl-14 {
  padding-left: 56 !important;
}

.pl-15 {
  padding-left: 60 !important;
}

.pl-16 {
  padding-left: 64 !important;
}

.pl-17 {
  padding-left: 68 !important;
}

.pl-18 {
  padding-left: 72 !important;
}

.pl-19 {
  padding-left: 76 !important;
}

.pl-20 {
  padding-left: 80 !important;
}

.pl-21 {
  padding-left: 84 !important;
}

.pl-22 {
  padding-left: 88 !important;
}

.pl-23 {
  padding-left: 92 !important;
}

.pl-24 {
  padding-left: 96 !important;
}

.pl-25 {
  padding-left: 100 !important;
}

.pl-auto {
  padding-left: auto !important;
}

.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

@-webkit-keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-animation: gradientMove 3s ease infinite;
          animation: gradientMove 3s ease infinite;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(270deg, #0ea5e9, #0284c7, #0ea5e9);
  background-size: 200% 200%;
}
.btn--primary:hover {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  transform: translateY(-3px);
}

.btn--small {
  padding: 8px 16px;
  font-size: 13px;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(30px);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.page-transition-overlay.is-hidden {
  opacity: 0;
}

.page-header {
  padding: 140px 0 60px;
  background-color: #F2F2F2;
}

.page-header__label {
  margin-bottom: 0;
  font-size: 13px;
  color: #0ea5e9;
}

.page-header__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.particle-section {
  position: relative;
  overflow: hidden;
}
.particle-section > .container {
  position: relative;
  z-index: 1;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.particle-canvas > div {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.section-header {
  margin-bottom: 40px;
}

.section-header__label {
  margin-bottom: 8px;
  font-size: 13px;
  color: #0ea5e9;
}

.section-header__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.section-header__title-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.footer {
  padding: 60px 0 24px;
  background-color: #fff;
  border-top: 1px solid #cccccc;
}

.footer__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  font-size: 20px;
  font-weight: 700;
}

.footer__address {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

.footer__right {
  display: block;
  text-align: center;
}
.footer__right .btn {
  margin-bottom: 24px;
}

.footer__nav {
  display: flex;
  gap: 48px;
  justify-content: flex-start;
  text-align: left;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-col a {
  font-size: 13px;
  color: #555;
}

.footer__copyright {
  font-size: 12px;
  color: #999;
  text-align: center;
}

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.header__logo {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.header__logo a {
  color: inherit;
}

.header__nav-list {
  display: flex;
  gap: 40px;
}
.header__nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #222222;
  transition: all 0.3s ease;
}
.header__menu-btn.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media screen and (min-width: 481px){
  .u-grid .sm\:col-1 {
    width: 8.3333333333% !important;
  }
  .u-grid .sm\:col-start-1 {
    margin-left: 8.3333333333% !important;
  }
  .u-grid .sm\:col-end-1 {
    margin-right: 8.3333333333% !important;
  }
  .u-grid .sm\:col-2 {
    width: 16.6666666667% !important;
  }
  .u-grid .sm\:col-start-2 {
    margin-left: 16.6666666667% !important;
  }
  .u-grid .sm\:col-end-2 {
    margin-right: 16.6666666667% !important;
  }
  .u-grid .sm\:col-3 {
    width: 25% !important;
  }
  .u-grid .sm\:col-start-3 {
    margin-left: 25% !important;
  }
  .u-grid .sm\:col-end-3 {
    margin-right: 25% !important;
  }
  .u-grid .sm\:col-4 {
    width: 33.3333333333% !important;
  }
  .u-grid .sm\:col-start-4 {
    margin-left: 33.3333333333% !important;
  }
  .u-grid .sm\:col-end-4 {
    margin-right: 33.3333333333% !important;
  }
  .u-grid .sm\:col-5 {
    width: 41.6666666667% !important;
  }
  .u-grid .sm\:col-start-5 {
    margin-left: 41.6666666667% !important;
  }
  .u-grid .sm\:col-end-5 {
    margin-right: 41.6666666667% !important;
  }
  .u-grid .sm\:col-6 {
    width: 50% !important;
  }
  .u-grid .sm\:col-start-6 {
    margin-left: 50% !important;
  }
  .u-grid .sm\:col-end-6 {
    margin-right: 50% !important;
  }
  .u-grid .sm\:col-7 {
    width: 58.3333333333% !important;
  }
  .u-grid .sm\:col-start-7 {
    margin-left: 58.3333333333% !important;
  }
  .u-grid .sm\:col-end-7 {
    margin-right: 58.3333333333% !important;
  }
  .u-grid .sm\:col-8 {
    width: 66.6666666667% !important;
  }
  .u-grid .sm\:col-start-8 {
    margin-left: 66.6666666667% !important;
  }
  .u-grid .sm\:col-end-8 {
    margin-right: 66.6666666667% !important;
  }
  .u-grid .sm\:col-9 {
    width: 75% !important;
  }
  .u-grid .sm\:col-start-9 {
    margin-left: 75% !important;
  }
  .u-grid .sm\:col-end-9 {
    margin-right: 75% !important;
  }
  .u-grid .sm\:col-10 {
    width: 83.3333333333% !important;
  }
  .u-grid .sm\:col-start-10 {
    margin-left: 83.3333333333% !important;
  }
  .u-grid .sm\:col-end-10 {
    margin-right: 83.3333333333% !important;
  }
  .u-grid .sm\:col-11 {
    width: 91.6666666667% !important;
  }
  .u-grid .sm\:col-start-11 {
    margin-left: 91.6666666667% !important;
  }
  .u-grid .sm\:col-end-11 {
    margin-right: 91.6666666667% !important;
  }
  .u-grid .sm\:col-12 {
    width: 100% !important;
  }
  .u-grid .sm\:col-start-12 {
    margin-left: 100% !important;
  }
  .u-grid .sm\:col-end-12 {
    margin-right: 100% !important;
  }
  .sm\:m-0 {
    margin: 0 !important;
  }
  .sm\:m-1 {
    margin: 4 !important;
  }
  .sm\:m-2 {
    margin: 8 !important;
  }
  .sm\:m-3 {
    margin: 12 !important;
  }
  .sm\:m-4 {
    margin: 16 !important;
  }
  .sm\:m-5 {
    margin: 20 !important;
  }
  .sm\:m-6 {
    margin: 24 !important;
  }
  .sm\:m-7 {
    margin: 28 !important;
  }
  .sm\:m-8 {
    margin: 32 !important;
  }
  .sm\:m-9 {
    margin: 36 !important;
  }
  .sm\:m-10 {
    margin: 40 !important;
  }
  .sm\:m-11 {
    margin: 44 !important;
  }
  .sm\:m-12 {
    margin: 48 !important;
  }
  .sm\:m-13 {
    margin: 52 !important;
  }
  .sm\:m-14 {
    margin: 56 !important;
  }
  .sm\:m-15 {
    margin: 60 !important;
  }
  .sm\:m-16 {
    margin: 64 !important;
  }
  .sm\:m-17 {
    margin: 68 !important;
  }
  .sm\:m-18 {
    margin: 72 !important;
  }
  .sm\:m-19 {
    margin: 76 !important;
  }
  .sm\:m-20 {
    margin: 80 !important;
  }
  .sm\:m-21 {
    margin: 84 !important;
  }
  .sm\:m-22 {
    margin: 88 !important;
  }
  .sm\:m-23 {
    margin: 92 !important;
  }
  .sm\:m-24 {
    margin: 96 !important;
  }
  .sm\:m-25 {
    margin: 100 !important;
  }
  .sm\:m-auto {
    margin: auto !important;
  }
  .sm\:ml-0 {
    margin-left: 0 !important;
  }
  .sm\:ml-1 {
    margin-left: 4 !important;
  }
  .sm\:ml-2 {
    margin-left: 8 !important;
  }
  .sm\:ml-3 {
    margin-left: 12 !important;
  }
  .sm\:ml-4 {
    margin-left: 16 !important;
  }
  .sm\:ml-5 {
    margin-left: 20 !important;
  }
  .sm\:ml-6 {
    margin-left: 24 !important;
  }
  .sm\:ml-7 {
    margin-left: 28 !important;
  }
  .sm\:ml-8 {
    margin-left: 32 !important;
  }
  .sm\:ml-9 {
    margin-left: 36 !important;
  }
  .sm\:ml-10 {
    margin-left: 40 !important;
  }
  .sm\:ml-11 {
    margin-left: 44 !important;
  }
  .sm\:ml-12 {
    margin-left: 48 !important;
  }
  .sm\:ml-13 {
    margin-left: 52 !important;
  }
  .sm\:ml-14 {
    margin-left: 56 !important;
  }
  .sm\:ml-15 {
    margin-left: 60 !important;
  }
  .sm\:ml-16 {
    margin-left: 64 !important;
  }
  .sm\:ml-17 {
    margin-left: 68 !important;
  }
  .sm\:ml-18 {
    margin-left: 72 !important;
  }
  .sm\:ml-19 {
    margin-left: 76 !important;
  }
  .sm\:ml-20 {
    margin-left: 80 !important;
  }
  .sm\:ml-21 {
    margin-left: 84 !important;
  }
  .sm\:ml-22 {
    margin-left: 88 !important;
  }
  .sm\:ml-23 {
    margin-left: 92 !important;
  }
  .sm\:ml-24 {
    margin-left: 96 !important;
  }
  .sm\:ml-25 {
    margin-left: 100 !important;
  }
  .sm\:ml-auto {
    margin-left: auto !important;
  }
  .sm\:pl-0 {
    padding-left: 0 !important;
  }
  .sm\:pl-1 {
    padding-left: 4 !important;
  }
  .sm\:pl-2 {
    padding-left: 8 !important;
  }
  .sm\:pl-3 {
    padding-left: 12 !important;
  }
  .sm\:pl-4 {
    padding-left: 16 !important;
  }
  .sm\:pl-5 {
    padding-left: 20 !important;
  }
  .sm\:pl-6 {
    padding-left: 24 !important;
  }
  .sm\:pl-7 {
    padding-left: 28 !important;
  }
  .sm\:pl-8 {
    padding-left: 32 !important;
  }
  .sm\:pl-9 {
    padding-left: 36 !important;
  }
  .sm\:pl-10 {
    padding-left: 40 !important;
  }
  .sm\:pl-11 {
    padding-left: 44 !important;
  }
  .sm\:pl-12 {
    padding-left: 48 !important;
  }
  .sm\:pl-13 {
    padding-left: 52 !important;
  }
  .sm\:pl-14 {
    padding-left: 56 !important;
  }
  .sm\:pl-15 {
    padding-left: 60 !important;
  }
  .sm\:pl-16 {
    padding-left: 64 !important;
  }
  .sm\:pl-17 {
    padding-left: 68 !important;
  }
  .sm\:pl-18 {
    padding-left: 72 !important;
  }
  .sm\:pl-19 {
    padding-left: 76 !important;
  }
  .sm\:pl-20 {
    padding-left: 80 !important;
  }
  .sm\:pl-21 {
    padding-left: 84 !important;
  }
  .sm\:pl-22 {
    padding-left: 88 !important;
  }
  .sm\:pl-23 {
    padding-left: 92 !important;
  }
  .sm\:pl-24 {
    padding-left: 96 !important;
  }
  .sm\:pl-25 {
    padding-left: 100 !important;
  }
  .sm\:pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (min-width: 769px){
  body {
    font-size: 1.6rem;
  }
  .l-article-body {
    margin-top: 2.5em;
  }
  .l-article-body__inner {
    -moz-column-gap: 6.3636363636%;
         column-gap: 6.3636363636%;
    align-items: flex-start;
  }
  .l-article-side {
    width: 19.37em;
  }
  .l-flex.--pc-align-center {
    align-items: center;
  }
  .l-flex.--pc-content-center {
    justify-content: center;
  }
  .l-flex--pc {
    display: flex;
    flex-wrap: wrap;
  }
  .l-flex--pc.--pc-align-center {
    align-items: center;
  }
  .l-flex--pc.--pc-content-center {
    justify-content: center;
  }
  .l-flex--pc.--pc-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex--pc.--pc-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex--pc.--pc-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex--pc.--pc-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex--pc.--pc-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex--pc.--pc-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex--pc.--pc-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex--pc.--pc-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex--pc.--pc-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex--pc.--pc-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-col.--pc-align-center {
    align-items: center;
  }
  .l-flex-col.--pc-content-center {
    justify-content: center;
  }
  .l-flex-col--pc {
    display: flex;
    flex-direction: column;
  }
  .l-flex-col--pc.--pc-align-center {
    align-items: center;
  }
  .l-flex-col--pc.--pc-content-center {
    justify-content: center;
  }
  .l-flex-col--pc.--pc-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-col--pc.--pc-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-col--pc.--pc-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-col--pc.--pc-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-col--pc.--pc-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-col--pc.--pc-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-col--pc.--pc-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-col--pc.--pc-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-col--pc.--pc-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-col--pc.--pc-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-col-reverse.--pc-align-center {
    align-items: center;
  }
  .l-flex-col-reverse.--pc-content-center {
    justify-content: center;
  }
  .l-flex-col-reverse--pc {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-flex-col-reverse--pc.--pc-align-center {
    align-items: center;
  }
  .l-flex-col-reverse--pc.--pc-content-center {
    justify-content: center;
  }
  .l-flex-col-reverse--pc.--pc-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-col-reverse--pc.--pc-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-col-reverse--pc.--pc-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-col-reverse--pc.--pc-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-col-reverse--pc.--pc-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-col-reverse--pc.--pc-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-col-reverse--pc.--pc-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-col-reverse--pc.--pc-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-col-reverse--pc.--pc-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-col-reverse--pc.--pc-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-row-reverse.--pc-align-center {
    align-items: center;
  }
  .l-flex-row-reverse.--pc-content-center {
    justify-content: center;
  }
  .l-flex-row-reverse--pc {
    display: flex;
    flex-direction: row-reverse;
  }
  .l-flex-row-reverse--pc.--pc-align-center {
    align-items: center;
  }
  .l-flex-row-reverse--pc.--pc-content-center {
    justify-content: center;
  }
  .l-flex-row-reverse--pc.--pc-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-row-reverse--pc.--pc-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-row-reverse--pc.--pc-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-row-reverse--pc.--pc-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-row-reverse--pc.--pc-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-row-reverse--pc.--pc-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-row-reverse--pc.--pc-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-row-reverse--pc.--pc-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-row-reverse--pc.--pc-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-row-reverse--pc.--pc-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-grid.--pc-1col {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid.--pc-2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid.--pc-3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid.--pc-4col {
    grid-template-columns: repeat(4, 1fr);
  }
  .l-grid.--pc-row-gap-80 {
    row-gap: 5em;
  }
  .l-grid.--pc-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-grid.--pc-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-grid.--pc-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-grid.--pc-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-grid.--pc-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-grid.--pc-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-grid.--pc-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-grid.--pc-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-grid.--pc-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-main {
    padding-top: 9.37em;
    padding-bottom: 9.37em;
  }
  .l-section__inner {
    width: 100%;
    max-width: calc(100vw);
    padding-left: 4.1666666667vw;
    padding-right: 4.1666666667vw;
    margin-left: auto;
    margin-right: auto;
  }
  .c-btn {
    font-size: 1.6rem;
  }
  .c-btn {
    display: inline-flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 17.5em;
  }
  .m-btn {
    margin-top: 2.5em;
  }
  .m-footer__copyright {
    font-size: 1.1rem;
  }
  .m-footer__copyright {
    width: 100%;
    text-align: center;
  }
  .m-header {
    height: 6.25em;
  }
  .m-header__inner {
    padding-left: 3.75em;
    padding-right: 3.75em;
  }
  .m-header__logo {
    font-size: 3rem;
  }
  .m-header__nav__lists {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25em;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }
  .m-header__btn {
    display: none;
  }
  .m-header__btn__line {
    width: 1.87em;
    height: 0.62em;
  }
  .m-header__btn__line:before, .m-header__btn__line:after {
    height: 0.06em;
  }
  .m-header__menu {
    display: none;
  }
  .u-grid .md\:col-1 {
    width: 8.3333333333% !important;
  }
  .u-grid .md\:col-start-1 {
    margin-left: 8.3333333333% !important;
  }
  .u-grid .md\:col-end-1 {
    margin-right: 8.3333333333% !important;
  }
  .u-grid .md\:col-2 {
    width: 16.6666666667% !important;
  }
  .u-grid .md\:col-start-2 {
    margin-left: 16.6666666667% !important;
  }
  .u-grid .md\:col-end-2 {
    margin-right: 16.6666666667% !important;
  }
  .u-grid .md\:col-3 {
    width: 25% !important;
  }
  .u-grid .md\:col-start-3 {
    margin-left: 25% !important;
  }
  .u-grid .md\:col-end-3 {
    margin-right: 25% !important;
  }
  .u-grid .md\:col-4 {
    width: 33.3333333333% !important;
  }
  .u-grid .md\:col-start-4 {
    margin-left: 33.3333333333% !important;
  }
  .u-grid .md\:col-end-4 {
    margin-right: 33.3333333333% !important;
  }
  .u-grid .md\:col-5 {
    width: 41.6666666667% !important;
  }
  .u-grid .md\:col-start-5 {
    margin-left: 41.6666666667% !important;
  }
  .u-grid .md\:col-end-5 {
    margin-right: 41.6666666667% !important;
  }
  .u-grid .md\:col-6 {
    width: 50% !important;
  }
  .u-grid .md\:col-start-6 {
    margin-left: 50% !important;
  }
  .u-grid .md\:col-end-6 {
    margin-right: 50% !important;
  }
  .u-grid .md\:col-7 {
    width: 58.3333333333% !important;
  }
  .u-grid .md\:col-start-7 {
    margin-left: 58.3333333333% !important;
  }
  .u-grid .md\:col-end-7 {
    margin-right: 58.3333333333% !important;
  }
  .u-grid .md\:col-8 {
    width: 66.6666666667% !important;
  }
  .u-grid .md\:col-start-8 {
    margin-left: 66.6666666667% !important;
  }
  .u-grid .md\:col-end-8 {
    margin-right: 66.6666666667% !important;
  }
  .u-grid .md\:col-9 {
    width: 75% !important;
  }
  .u-grid .md\:col-start-9 {
    margin-left: 75% !important;
  }
  .u-grid .md\:col-end-9 {
    margin-right: 75% !important;
  }
  .u-grid .md\:col-10 {
    width: 83.3333333333% !important;
  }
  .u-grid .md\:col-start-10 {
    margin-left: 83.3333333333% !important;
  }
  .u-grid .md\:col-end-10 {
    margin-right: 83.3333333333% !important;
  }
  .u-grid .md\:col-11 {
    width: 91.6666666667% !important;
  }
  .u-grid .md\:col-start-11 {
    margin-left: 91.6666666667% !important;
  }
  .u-grid .md\:col-end-11 {
    margin-right: 91.6666666667% !important;
  }
  .u-grid .md\:col-12 {
    width: 100% !important;
  }
  .u-grid .md\:col-start-12 {
    margin-left: 100% !important;
  }
  .u-grid .md\:col-end-12 {
    margin-right: 100% !important;
  }
  .md\:m-0 {
    margin: 0 !important;
  }
  .md\:m-1 {
    margin: 4 !important;
  }
  .md\:m-2 {
    margin: 8 !important;
  }
  .md\:m-3 {
    margin: 12 !important;
  }
  .md\:m-4 {
    margin: 16 !important;
  }
  .md\:m-5 {
    margin: 20 !important;
  }
  .md\:m-6 {
    margin: 24 !important;
  }
  .md\:m-7 {
    margin: 28 !important;
  }
  .md\:m-8 {
    margin: 32 !important;
  }
  .md\:m-9 {
    margin: 36 !important;
  }
  .md\:m-10 {
    margin: 40 !important;
  }
  .md\:m-11 {
    margin: 44 !important;
  }
  .md\:m-12 {
    margin: 48 !important;
  }
  .md\:m-13 {
    margin: 52 !important;
  }
  .md\:m-14 {
    margin: 56 !important;
  }
  .md\:m-15 {
    margin: 60 !important;
  }
  .md\:m-16 {
    margin: 64 !important;
  }
  .md\:m-17 {
    margin: 68 !important;
  }
  .md\:m-18 {
    margin: 72 !important;
  }
  .md\:m-19 {
    margin: 76 !important;
  }
  .md\:m-20 {
    margin: 80 !important;
  }
  .md\:m-21 {
    margin: 84 !important;
  }
  .md\:m-22 {
    margin: 88 !important;
  }
  .md\:m-23 {
    margin: 92 !important;
  }
  .md\:m-24 {
    margin: 96 !important;
  }
  .md\:m-25 {
    margin: 100 !important;
  }
  .md\:m-auto {
    margin: auto !important;
  }
  .md\:ml-0 {
    margin-left: 0 !important;
  }
  .md\:ml-1 {
    margin-left: 4 !important;
  }
  .md\:ml-2 {
    margin-left: 8 !important;
  }
  .md\:ml-3 {
    margin-left: 12 !important;
  }
  .md\:ml-4 {
    margin-left: 16 !important;
  }
  .md\:ml-5 {
    margin-left: 20 !important;
  }
  .md\:ml-6 {
    margin-left: 24 !important;
  }
  .md\:ml-7 {
    margin-left: 28 !important;
  }
  .md\:ml-8 {
    margin-left: 32 !important;
  }
  .md\:ml-9 {
    margin-left: 36 !important;
  }
  .md\:ml-10 {
    margin-left: 40 !important;
  }
  .md\:ml-11 {
    margin-left: 44 !important;
  }
  .md\:ml-12 {
    margin-left: 48 !important;
  }
  .md\:ml-13 {
    margin-left: 52 !important;
  }
  .md\:ml-14 {
    margin-left: 56 !important;
  }
  .md\:ml-15 {
    margin-left: 60 !important;
  }
  .md\:ml-16 {
    margin-left: 64 !important;
  }
  .md\:ml-17 {
    margin-left: 68 !important;
  }
  .md\:ml-18 {
    margin-left: 72 !important;
  }
  .md\:ml-19 {
    margin-left: 76 !important;
  }
  .md\:ml-20 {
    margin-left: 80 !important;
  }
  .md\:ml-21 {
    margin-left: 84 !important;
  }
  .md\:ml-22 {
    margin-left: 88 !important;
  }
  .md\:ml-23 {
    margin-left: 92 !important;
  }
  .md\:ml-24 {
    margin-left: 96 !important;
  }
  .md\:ml-25 {
    margin-left: 100 !important;
  }
  .md\:ml-auto {
    margin-left: auto !important;
  }
  .md\:pl-0 {
    padding-left: 0 !important;
  }
  .md\:pl-1 {
    padding-left: 4 !important;
  }
  .md\:pl-2 {
    padding-left: 8 !important;
  }
  .md\:pl-3 {
    padding-left: 12 !important;
  }
  .md\:pl-4 {
    padding-left: 16 !important;
  }
  .md\:pl-5 {
    padding-left: 20 !important;
  }
  .md\:pl-6 {
    padding-left: 24 !important;
  }
  .md\:pl-7 {
    padding-left: 28 !important;
  }
  .md\:pl-8 {
    padding-left: 32 !important;
  }
  .md\:pl-9 {
    padding-left: 36 !important;
  }
  .md\:pl-10 {
    padding-left: 40 !important;
  }
  .md\:pl-11 {
    padding-left: 44 !important;
  }
  .md\:pl-12 {
    padding-left: 48 !important;
  }
  .md\:pl-13 {
    padding-left: 52 !important;
  }
  .md\:pl-14 {
    padding-left: 56 !important;
  }
  .md\:pl-15 {
    padding-left: 60 !important;
  }
  .md\:pl-16 {
    padding-left: 64 !important;
  }
  .md\:pl-17 {
    padding-left: 68 !important;
  }
  .md\:pl-18 {
    padding-left: 72 !important;
  }
  .md\:pl-19 {
    padding-left: 76 !important;
  }
  .md\:pl-20 {
    padding-left: 80 !important;
  }
  .md\:pl-21 {
    padding-left: 84 !important;
  }
  .md\:pl-22 {
    padding-left: 88 !important;
  }
  .md\:pl-23 {
    padding-left: 92 !important;
  }
  .md\:pl-24 {
    padding-left: 96 !important;
  }
  .md\:pl-25 {
    padding-left: 100 !important;
  }
  .md\:pl-auto {
    padding-left: auto !important;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1100px){
  .u-grid .lg\:col-1 {
    width: 8.3333333333% !important;
  }
  .u-grid .lg\:col-start-1 {
    margin-left: 8.3333333333% !important;
  }
  .u-grid .lg\:col-end-1 {
    margin-right: 8.3333333333% !important;
  }
  .u-grid .lg\:col-2 {
    width: 16.6666666667% !important;
  }
  .u-grid .lg\:col-start-2 {
    margin-left: 16.6666666667% !important;
  }
  .u-grid .lg\:col-end-2 {
    margin-right: 16.6666666667% !important;
  }
  .u-grid .lg\:col-3 {
    width: 25% !important;
  }
  .u-grid .lg\:col-start-3 {
    margin-left: 25% !important;
  }
  .u-grid .lg\:col-end-3 {
    margin-right: 25% !important;
  }
  .u-grid .lg\:col-4 {
    width: 33.3333333333% !important;
  }
  .u-grid .lg\:col-start-4 {
    margin-left: 33.3333333333% !important;
  }
  .u-grid .lg\:col-end-4 {
    margin-right: 33.3333333333% !important;
  }
  .u-grid .lg\:col-5 {
    width: 41.6666666667% !important;
  }
  .u-grid .lg\:col-start-5 {
    margin-left: 41.6666666667% !important;
  }
  .u-grid .lg\:col-end-5 {
    margin-right: 41.6666666667% !important;
  }
  .u-grid .lg\:col-6 {
    width: 50% !important;
  }
  .u-grid .lg\:col-start-6 {
    margin-left: 50% !important;
  }
  .u-grid .lg\:col-end-6 {
    margin-right: 50% !important;
  }
  .u-grid .lg\:col-7 {
    width: 58.3333333333% !important;
  }
  .u-grid .lg\:col-start-7 {
    margin-left: 58.3333333333% !important;
  }
  .u-grid .lg\:col-end-7 {
    margin-right: 58.3333333333% !important;
  }
  .u-grid .lg\:col-8 {
    width: 66.6666666667% !important;
  }
  .u-grid .lg\:col-start-8 {
    margin-left: 66.6666666667% !important;
  }
  .u-grid .lg\:col-end-8 {
    margin-right: 66.6666666667% !important;
  }
  .u-grid .lg\:col-9 {
    width: 75% !important;
  }
  .u-grid .lg\:col-start-9 {
    margin-left: 75% !important;
  }
  .u-grid .lg\:col-end-9 {
    margin-right: 75% !important;
  }
  .u-grid .lg\:col-10 {
    width: 83.3333333333% !important;
  }
  .u-grid .lg\:col-start-10 {
    margin-left: 83.3333333333% !important;
  }
  .u-grid .lg\:col-end-10 {
    margin-right: 83.3333333333% !important;
  }
  .u-grid .lg\:col-11 {
    width: 91.6666666667% !important;
  }
  .u-grid .lg\:col-start-11 {
    margin-left: 91.6666666667% !important;
  }
  .u-grid .lg\:col-end-11 {
    margin-right: 91.6666666667% !important;
  }
  .u-grid .lg\:col-12 {
    width: 100% !important;
  }
  .u-grid .lg\:col-start-12 {
    margin-left: 100% !important;
  }
  .u-grid .lg\:col-end-12 {
    margin-right: 100% !important;
  }
  .lg\:m-0 {
    margin: 0 !important;
  }
  .lg\:m-1 {
    margin: 4 !important;
  }
  .lg\:m-2 {
    margin: 8 !important;
  }
  .lg\:m-3 {
    margin: 12 !important;
  }
  .lg\:m-4 {
    margin: 16 !important;
  }
  .lg\:m-5 {
    margin: 20 !important;
  }
  .lg\:m-6 {
    margin: 24 !important;
  }
  .lg\:m-7 {
    margin: 28 !important;
  }
  .lg\:m-8 {
    margin: 32 !important;
  }
  .lg\:m-9 {
    margin: 36 !important;
  }
  .lg\:m-10 {
    margin: 40 !important;
  }
  .lg\:m-11 {
    margin: 44 !important;
  }
  .lg\:m-12 {
    margin: 48 !important;
  }
  .lg\:m-13 {
    margin: 52 !important;
  }
  .lg\:m-14 {
    margin: 56 !important;
  }
  .lg\:m-15 {
    margin: 60 !important;
  }
  .lg\:m-16 {
    margin: 64 !important;
  }
  .lg\:m-17 {
    margin: 68 !important;
  }
  .lg\:m-18 {
    margin: 72 !important;
  }
  .lg\:m-19 {
    margin: 76 !important;
  }
  .lg\:m-20 {
    margin: 80 !important;
  }
  .lg\:m-21 {
    margin: 84 !important;
  }
  .lg\:m-22 {
    margin: 88 !important;
  }
  .lg\:m-23 {
    margin: 92 !important;
  }
  .lg\:m-24 {
    margin: 96 !important;
  }
  .lg\:m-25 {
    margin: 100 !important;
  }
  .lg\:m-auto {
    margin: auto !important;
  }
  .lg\:ml-0 {
    margin-left: 0 !important;
  }
  .lg\:ml-1 {
    margin-left: 4 !important;
  }
  .lg\:ml-2 {
    margin-left: 8 !important;
  }
  .lg\:ml-3 {
    margin-left: 12 !important;
  }
  .lg\:ml-4 {
    margin-left: 16 !important;
  }
  .lg\:ml-5 {
    margin-left: 20 !important;
  }
  .lg\:ml-6 {
    margin-left: 24 !important;
  }
  .lg\:ml-7 {
    margin-left: 28 !important;
  }
  .lg\:ml-8 {
    margin-left: 32 !important;
  }
  .lg\:ml-9 {
    margin-left: 36 !important;
  }
  .lg\:ml-10 {
    margin-left: 40 !important;
  }
  .lg\:ml-11 {
    margin-left: 44 !important;
  }
  .lg\:ml-12 {
    margin-left: 48 !important;
  }
  .lg\:ml-13 {
    margin-left: 52 !important;
  }
  .lg\:ml-14 {
    margin-left: 56 !important;
  }
  .lg\:ml-15 {
    margin-left: 60 !important;
  }
  .lg\:ml-16 {
    margin-left: 64 !important;
  }
  .lg\:ml-17 {
    margin-left: 68 !important;
  }
  .lg\:ml-18 {
    margin-left: 72 !important;
  }
  .lg\:ml-19 {
    margin-left: 76 !important;
  }
  .lg\:ml-20 {
    margin-left: 80 !important;
  }
  .lg\:ml-21 {
    margin-left: 84 !important;
  }
  .lg\:ml-22 {
    margin-left: 88 !important;
  }
  .lg\:ml-23 {
    margin-left: 92 !important;
  }
  .lg\:ml-24 {
    margin-left: 96 !important;
  }
  .lg\:ml-25 {
    margin-left: 100 !important;
  }
  .lg\:ml-auto {
    margin-left: auto !important;
  }
  .lg\:pl-0 {
    padding-left: 0 !important;
  }
  .lg\:pl-1 {
    padding-left: 4 !important;
  }
  .lg\:pl-2 {
    padding-left: 8 !important;
  }
  .lg\:pl-3 {
    padding-left: 12 !important;
  }
  .lg\:pl-4 {
    padding-left: 16 !important;
  }
  .lg\:pl-5 {
    padding-left: 20 !important;
  }
  .lg\:pl-6 {
    padding-left: 24 !important;
  }
  .lg\:pl-7 {
    padding-left: 28 !important;
  }
  .lg\:pl-8 {
    padding-left: 32 !important;
  }
  .lg\:pl-9 {
    padding-left: 36 !important;
  }
  .lg\:pl-10 {
    padding-left: 40 !important;
  }
  .lg\:pl-11 {
    padding-left: 44 !important;
  }
  .lg\:pl-12 {
    padding-left: 48 !important;
  }
  .lg\:pl-13 {
    padding-left: 52 !important;
  }
  .lg\:pl-14 {
    padding-left: 56 !important;
  }
  .lg\:pl-15 {
    padding-left: 60 !important;
  }
  .lg\:pl-16 {
    padding-left: 64 !important;
  }
  .lg\:pl-17 {
    padding-left: 68 !important;
  }
  .lg\:pl-18 {
    padding-left: 72 !important;
  }
  .lg\:pl-19 {
    padding-left: 76 !important;
  }
  .lg\:pl-20 {
    padding-left: 80 !important;
  }
  .lg\:pl-21 {
    padding-left: 84 !important;
  }
  .lg\:pl-22 {
    padding-left: 88 !important;
  }
  .lg\:pl-23 {
    padding-left: 92 !important;
  }
  .lg\:pl-24 {
    padding-left: 96 !important;
  }
  .lg\:pl-25 {
    padding-left: 100 !important;
  }
  .lg\:pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (min-width: 1366px){
  .u-grid .xl\:col-1 {
    width: 8.3333333333% !important;
  }
  .u-grid .xl\:col-start-1 {
    margin-left: 8.3333333333% !important;
  }
  .u-grid .xl\:col-end-1 {
    margin-right: 8.3333333333% !important;
  }
  .u-grid .xl\:col-2 {
    width: 16.6666666667% !important;
  }
  .u-grid .xl\:col-start-2 {
    margin-left: 16.6666666667% !important;
  }
  .u-grid .xl\:col-end-2 {
    margin-right: 16.6666666667% !important;
  }
  .u-grid .xl\:col-3 {
    width: 25% !important;
  }
  .u-grid .xl\:col-start-3 {
    margin-left: 25% !important;
  }
  .u-grid .xl\:col-end-3 {
    margin-right: 25% !important;
  }
  .u-grid .xl\:col-4 {
    width: 33.3333333333% !important;
  }
  .u-grid .xl\:col-start-4 {
    margin-left: 33.3333333333% !important;
  }
  .u-grid .xl\:col-end-4 {
    margin-right: 33.3333333333% !important;
  }
  .u-grid .xl\:col-5 {
    width: 41.6666666667% !important;
  }
  .u-grid .xl\:col-start-5 {
    margin-left: 41.6666666667% !important;
  }
  .u-grid .xl\:col-end-5 {
    margin-right: 41.6666666667% !important;
  }
  .u-grid .xl\:col-6 {
    width: 50% !important;
  }
  .u-grid .xl\:col-start-6 {
    margin-left: 50% !important;
  }
  .u-grid .xl\:col-end-6 {
    margin-right: 50% !important;
  }
  .u-grid .xl\:col-7 {
    width: 58.3333333333% !important;
  }
  .u-grid .xl\:col-start-7 {
    margin-left: 58.3333333333% !important;
  }
  .u-grid .xl\:col-end-7 {
    margin-right: 58.3333333333% !important;
  }
  .u-grid .xl\:col-8 {
    width: 66.6666666667% !important;
  }
  .u-grid .xl\:col-start-8 {
    margin-left: 66.6666666667% !important;
  }
  .u-grid .xl\:col-end-8 {
    margin-right: 66.6666666667% !important;
  }
  .u-grid .xl\:col-9 {
    width: 75% !important;
  }
  .u-grid .xl\:col-start-9 {
    margin-left: 75% !important;
  }
  .u-grid .xl\:col-end-9 {
    margin-right: 75% !important;
  }
  .u-grid .xl\:col-10 {
    width: 83.3333333333% !important;
  }
  .u-grid .xl\:col-start-10 {
    margin-left: 83.3333333333% !important;
  }
  .u-grid .xl\:col-end-10 {
    margin-right: 83.3333333333% !important;
  }
  .u-grid .xl\:col-11 {
    width: 91.6666666667% !important;
  }
  .u-grid .xl\:col-start-11 {
    margin-left: 91.6666666667% !important;
  }
  .u-grid .xl\:col-end-11 {
    margin-right: 91.6666666667% !important;
  }
  .u-grid .xl\:col-12 {
    width: 100% !important;
  }
  .u-grid .xl\:col-start-12 {
    margin-left: 100% !important;
  }
  .u-grid .xl\:col-end-12 {
    margin-right: 100% !important;
  }
  .xl\:m-0 {
    margin: 0 !important;
  }
  .xl\:m-1 {
    margin: 4 !important;
  }
  .xl\:m-2 {
    margin: 8 !important;
  }
  .xl\:m-3 {
    margin: 12 !important;
  }
  .xl\:m-4 {
    margin: 16 !important;
  }
  .xl\:m-5 {
    margin: 20 !important;
  }
  .xl\:m-6 {
    margin: 24 !important;
  }
  .xl\:m-7 {
    margin: 28 !important;
  }
  .xl\:m-8 {
    margin: 32 !important;
  }
  .xl\:m-9 {
    margin: 36 !important;
  }
  .xl\:m-10 {
    margin: 40 !important;
  }
  .xl\:m-11 {
    margin: 44 !important;
  }
  .xl\:m-12 {
    margin: 48 !important;
  }
  .xl\:m-13 {
    margin: 52 !important;
  }
  .xl\:m-14 {
    margin: 56 !important;
  }
  .xl\:m-15 {
    margin: 60 !important;
  }
  .xl\:m-16 {
    margin: 64 !important;
  }
  .xl\:m-17 {
    margin: 68 !important;
  }
  .xl\:m-18 {
    margin: 72 !important;
  }
  .xl\:m-19 {
    margin: 76 !important;
  }
  .xl\:m-20 {
    margin: 80 !important;
  }
  .xl\:m-21 {
    margin: 84 !important;
  }
  .xl\:m-22 {
    margin: 88 !important;
  }
  .xl\:m-23 {
    margin: 92 !important;
  }
  .xl\:m-24 {
    margin: 96 !important;
  }
  .xl\:m-25 {
    margin: 100 !important;
  }
  .xl\:m-auto {
    margin: auto !important;
  }
  .xl\:ml-0 {
    margin-left: 0 !important;
  }
  .xl\:ml-1 {
    margin-left: 4 !important;
  }
  .xl\:ml-2 {
    margin-left: 8 !important;
  }
  .xl\:ml-3 {
    margin-left: 12 !important;
  }
  .xl\:ml-4 {
    margin-left: 16 !important;
  }
  .xl\:ml-5 {
    margin-left: 20 !important;
  }
  .xl\:ml-6 {
    margin-left: 24 !important;
  }
  .xl\:ml-7 {
    margin-left: 28 !important;
  }
  .xl\:ml-8 {
    margin-left: 32 !important;
  }
  .xl\:ml-9 {
    margin-left: 36 !important;
  }
  .xl\:ml-10 {
    margin-left: 40 !important;
  }
  .xl\:ml-11 {
    margin-left: 44 !important;
  }
  .xl\:ml-12 {
    margin-left: 48 !important;
  }
  .xl\:ml-13 {
    margin-left: 52 !important;
  }
  .xl\:ml-14 {
    margin-left: 56 !important;
  }
  .xl\:ml-15 {
    margin-left: 60 !important;
  }
  .xl\:ml-16 {
    margin-left: 64 !important;
  }
  .xl\:ml-17 {
    margin-left: 68 !important;
  }
  .xl\:ml-18 {
    margin-left: 72 !important;
  }
  .xl\:ml-19 {
    margin-left: 76 !important;
  }
  .xl\:ml-20 {
    margin-left: 80 !important;
  }
  .xl\:ml-21 {
    margin-left: 84 !important;
  }
  .xl\:ml-22 {
    margin-left: 88 !important;
  }
  .xl\:ml-23 {
    margin-left: 92 !important;
  }
  .xl\:ml-24 {
    margin-left: 96 !important;
  }
  .xl\:ml-25 {
    margin-left: 100 !important;
  }
  .xl\:ml-auto {
    margin-left: auto !important;
  }
  .xl\:pl-0 {
    padding-left: 0 !important;
  }
  .xl\:pl-1 {
    padding-left: 4 !important;
  }
  .xl\:pl-2 {
    padding-left: 8 !important;
  }
  .xl\:pl-3 {
    padding-left: 12 !important;
  }
  .xl\:pl-4 {
    padding-left: 16 !important;
  }
  .xl\:pl-5 {
    padding-left: 20 !important;
  }
  .xl\:pl-6 {
    padding-left: 24 !important;
  }
  .xl\:pl-7 {
    padding-left: 28 !important;
  }
  .xl\:pl-8 {
    padding-left: 32 !important;
  }
  .xl\:pl-9 {
    padding-left: 36 !important;
  }
  .xl\:pl-10 {
    padding-left: 40 !important;
  }
  .xl\:pl-11 {
    padding-left: 44 !important;
  }
  .xl\:pl-12 {
    padding-left: 48 !important;
  }
  .xl\:pl-13 {
    padding-left: 52 !important;
  }
  .xl\:pl-14 {
    padding-left: 56 !important;
  }
  .xl\:pl-15 {
    padding-left: 60 !important;
  }
  .xl\:pl-16 {
    padding-left: 64 !important;
  }
  .xl\:pl-17 {
    padding-left: 68 !important;
  }
  .xl\:pl-18 {
    padding-left: 72 !important;
  }
  .xl\:pl-19 {
    padding-left: 76 !important;
  }
  .xl\:pl-20 {
    padding-left: 80 !important;
  }
  .xl\:pl-21 {
    padding-left: 84 !important;
  }
  .xl\:pl-22 {
    padding-left: 88 !important;
  }
  .xl\:pl-23 {
    padding-left: 92 !important;
  }
  .xl\:pl-24 {
    padding-left: 96 !important;
  }
  .xl\:pl-25 {
    padding-left: 100 !important;
  }
  .xl\:pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (max-width: 1023px){
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__right {
    align-items: center;
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
  }
}
@media (max-width: 768px){
  .is-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px){
  body {
    font-size: max(1rem, min(4.44vw, 1.6rem));
  }
  .l-article-body__inner {
    flex-direction: column;
    row-gap: 22.2222222222vw;
  }
  .l-flex.--sp-align-center {
    align-items: center;
  }
  .l-flex.--sp-content-center {
    justify-content: center;
  }
  .l-flex--sp {
    display: flex;
    flex-wrap: wrap;
  }
  .l-flex--sp.--sp-align-center {
    align-items: center;
  }
  .l-flex--sp.--sp-content-center {
    justify-content: center;
  }
  .l-flex--sp.--sp-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex--sp.--sp-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex--sp.--sp-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex--sp.--sp-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex--sp.--sp-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex--sp.--sp-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex--sp.--sp-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex--sp.--sp-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex--sp.--sp-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex--sp.--sp-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-col.--sp-align-center {
    align-items: center;
  }
  .l-flex-col.--sp-content-center {
    justify-content: center;
  }
  .l-flex-col--sp {
    display: flex;
    flex-direction: column;
  }
  .l-flex-col--sp.--sp-align-center {
    align-items: center;
  }
  .l-flex-col--sp.--sp-content-center {
    justify-content: center;
  }
  .l-flex-col--sp.--sp-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-col--sp.--sp-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-col--sp.--sp-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-col--sp.--sp-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-col--sp.--sp-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-col--sp.--sp-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-col--sp.--sp-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-col--sp.--sp-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-col--sp.--sp-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-col--sp.--sp-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-col-reverse.--sp-align-center {
    align-items: center;
  }
  .l-flex-col-reverse.--sp-content-center {
    justify-content: center;
  }
  .l-flex-col-reverse--sp {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-flex-col-reverse--sp.--sp-align-center {
    align-items: center;
  }
  .l-flex-col-reverse--sp.--sp-content-center {
    justify-content: center;
  }
  .l-flex-col-reverse--sp.--sp-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-col-reverse--sp.--sp-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-col-reverse--sp.--sp-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-col-reverse--sp.--sp-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-col-reverse--sp.--sp-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-col-reverse--sp.--sp-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-col-reverse--sp.--sp-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-col-reverse--sp.--sp-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-col-reverse--sp.--sp-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-col-reverse--sp.--sp-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-flex-row-reverse.--sp-align-center {
    align-items: center;
  }
  .l-flex-row-reverse.--sp-content-center {
    justify-content: center;
  }
  .l-flex-row-reverse--sp {
    display: flex;
    flex-direction: row-reverse;
  }
  .l-flex-row-reverse--sp.--sp-align-center {
    align-items: center;
  }
  .l-flex-row-reverse--sp.--sp-content-center {
    justify-content: center;
  }
  .l-flex-row-reverse--sp.--sp-row-gap-80 {
    row-gap: 5em;
  }
  .l-flex-row-reverse--sp.--sp-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-flex-row-reverse--sp.--sp-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-flex-row-reverse--sp.--sp-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-flex-row-reverse--sp.--sp-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-flex-row-reverse--sp.--sp-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-flex-row-reverse--sp.--sp-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-flex-row-reverse--sp.--sp-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-flex-row-reverse--sp.--sp-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-flex-row-reverse--sp.--sp-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .l-grid.--sp-1col {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid.--sp-2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid.--sp-3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid.--sp-4col {
    grid-template-columns: repeat(4, 1fr);
  }
  .l-grid.--sp-row-gap-80 {
    row-gap: 5em;
  }
  .l-grid.--sp-row-gap-60 {
    row-gap: 3.75em;
  }
  .l-grid.--sp-row-gap-40 {
    row-gap: 2.5em;
  }
  .l-grid.--sp-row-gap-30 {
    row-gap: 1.87em;
  }
  .l-grid.--sp-row-gap-20 {
    row-gap: 1.25em;
  }
  .l-grid.--sp-column-gap-80 {
    -moz-column-gap: 5em;
         column-gap: 5em;
  }
  .l-grid.--sp-column-gap-60 {
    -moz-column-gap: 3.75em;
         column-gap: 3.75em;
  }
  .l-grid.--sp-column-gap-40 {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .l-grid.--sp-column-gap-30 {
    -moz-column-gap: 1.87em;
         column-gap: 1.87em;
  }
  .l-grid.--sp-column-gap-20 {
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .c-btn {
    font-size: max(1rem, min(3.88vw, 1.4rem));
  }
  .c-btn {
    display: flex;
  }
  .m-footer__copyright {
    font-size: max(1rem, min(3.05vw, 1.1rem));
  }
  .m-header__logo {
    font-size: max(1rem, min(4.44vw, 1.6rem));
  }
  .m-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    padding-top: 22.2222222222vw;
    overscroll-behavior: none;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition: opacity var(--transition-duration) var(--transition-function);
    translate: 0 -100%;
  }
  .-navopen .m-header__nav {
    opacity: 1;
    translate: 0 0;
  }
  .page-header {
    padding: 120px 0 40px;
  }
  .page-header__title {
    font-size: 36px;
  }
  .section-header__title {
    font-size: 28px;
  }
  .section-header__title-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }
  .footer__nav-col {
    align-items: center;
  }
  .header {
    top: 8px;
    width: calc(100% - 16px);
  }
  .header__inner {
    padding: 12px 20px;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 16px 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .header__nav.is-open {
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }
  .header__nav-list li {
    border-bottom: 1px solid #cccccc;
  }
  .header__nav-list li:last-child {
    border-bottom: none;
  }
  .header__nav-list a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }
  .header__nav-list a:hover {
    background-color: #f5f5f5;
    opacity: 1;
  }
  .header__menu-btn {
    display: flex;
  }
}