@charset "UTF-8";
/* ========================================
  Arrow Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Number} $border - Border
  @param {Color} $color - Color
  ex: @include arrow.arrow(upward, 20px, 20px, 2px, #333);
======================================== */
/* ========================================
  Aspect Ratio Mixin
  @param {Number} $width - Width
  @param {Number} $height - Height
  ex: @include aspect-ratio.aspect-ratio(16, 9);
======================================== */
/* ========================================
  Hover Mixin
  ex: @include hover.hover() {...}
======================================== */
/* ========================================
  Leading Trim Mixin
  @param {Number} $line-height - Line Height
  Note: You can use get-line-height function.
  ex: @include leading-trim.leading-trim(1.6);
======================================== */
/* ========================================
  Breakpoint Variables
  Note: These breakpoints are refered from Bootstrap.
  https://getbootstrap.com/docs/5.0/layout/breakpoints/
  ex: $breakpoints
======================================== */
/* ========================================
  Media Query Mixin
  @param {String} $breakpoint - Class infix like 'sm', 'md'
  Note: Check out a breakpoints file if you want to modify breakpoints.
  ex: @include media-query(md) {...}
======================================== */
/* ========================================
  Triangle Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Color} $color - Color
  ex: @include triangle.triangle(upward, 20px, 20px, #333);
======================================== */
/* ========================================
  Underline Mixin
  @param {Color} $color - Color
  @param {Number} $height - Height
  ex: @include underline.underline(#ff6B00, 10px);
======================================== */
/* ========================================
  Visibility Hidden Mixin
  ex: @include visibility-hidden.visibility-hidden();
======================================== */
/* ========================================
  Strip-unit Function
  @param {Number} $number - Number to remove unit
  @return {Number} - Unitless number
  note: You can use this function in other functions and mixins.
  ex: strip-unit(100px); -> 100
======================================== */
/* ========================================
  Get Line Hight Function
  @param {Number} $font-size - Font size with px
  @param {Number} $line-feed - Line feed with no-unit
  @return {Number} $line-height - Line hight
  ex: get-line-height(16); -> 1.5
======================================== */
/* ========================================
  Font Size Variables
======================================== */
/* ========================================
  Get Rem Function
  @param {Number} $font-size - Number to convert px to rem
  @param {Number} $root-font-size - Number to divite target value by root's font size
  @return {Number} $rem - Number with rem unit
  ex: get-rem(16px); -> 1rem
======================================== */
/* ========================================
  Get Vw Function
  @param {Number} $px - Number to convert px to vw
  @param {Number} $viewport - Viewport size
  @return {Number} $vw - Number with vw unit
  ex: get-vw(30px); -> 8vw
======================================== */
/* ========================================
  Z-index Function
======================================== */
/* ========================================
  Color Variables
======================================== */
/* ========================================
  Font Variables
======================================== */
/* ========================================
  Transition Variables
======================================== */
/* ========================================
  Content Width Variables
======================================== */
/* ========================================
  Base
======================================== */
:root {
  --color-canvas-primary: #fff;
  --color-canvas-inverted: #202021;
  --color-brand-primary: #FFFBEF;
  --color-brand-secondary: #FFF4E8;
  --color-brand-tertiary: #FFF5F2;
  --color-text-primary: #333;
  --color-text-secondary: #999;
  --color-text-tertiary: #ccc;
  --color-text-inverted: #fff;
  --color-text-link: #4da1ff;
  --color-text-success: #00b533;
  --color-text-warn: #ffb700;
  --color-text-danger: #ff2600;
  --color-ui-primary: #FF8E85;
  --color-ui-secondary: #1675e1;
  --color-ui-tertiary: #000;
  --color-ui-success: #00b533;
  --color-ui-warn: #ffb700;
  --color-ui-danger: #E60012;
  --font-size-x-small: 0.75rem;
  --font-size-small: 0.875rem;
  --font-size-medium: 1rem;
  --font-size-large: 1.125rem;
  --font-size-x-large: 1.5rem;
  --font-size-xx-large: 1.75rem;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  outline: 0;
  border: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  text-decoration: none;
  background-color: #ff9;
  color: #000;
}

/* change colours to suit your needs */
mark {
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body,
input,
button,
select,
textarea {
  font-family: "Zen Maru Gothic", "Signika Negative", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
}

body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  background: #fff;
  color: #333;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  background-color: #FFFBEF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

label {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

li {
  list-style: none;
}

/* ========================================
  Swiper 5.3.6
  Most modern mobile touch slider and framework with hardware accelerated transitions
  Copyright 2014-2020 Vladimir Kharlampidi
  Released under the MIT License
  Released on: February 29,2020
  スライダーにはSwiperスライダーを利用しています。
  http://swiperjs.com
======================================== */
@font-face {
  font-family: "swiper-icons";
  font-weight: 400;
  font-style: normal;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
}
.swiper-container {
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-flow: column wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  /* For Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  color: #007aff;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  text-transform: none !important;
  letter-spacing: 0;
  font-family: "swiper-icons";
  font-size: 44px;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
}

.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next::after,
.swiper-container-rtl .swiper-button-prev::after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007aff;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  bottom: 3px;
  left: 1%;
  z-index: 50;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  top: 1%;
  right: 3px;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid #007aff;
  border-top-color: transparent;
  border-radius: 50%;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  pointer-events: none;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

/* ========================================
  Layout Container
======================================== */
.l-container {
  width: calc(100% - 60px);
  margin-right: auto;
  margin-left: auto;
}

/* ========================================
  Layout Footer
======================================== */
.l-footer {
  margin-top: 38px;
}

.l-footer__inner {
  background-image: url("/assets_labo/img/common/bg_footer_circle.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-y: 25px;
  padding-top: 55px;
}
.l-footer__inner .c-btn {
  margin-bottom: 100px;
}

.l-footer__share-copy {
  font-size: 18px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.l-footer__share-copy::before, .l-footer__share-copy::after {
  content: "";
  background-color: #333;
  height: 16px;
  width: 1px;
  display: block;
  border-radius: 9999px;
  margin-top: 4px;
}
.l-footer__share-copy:before {
  margin-right: 8px;
  transform: rotate(-15deg);
}
.l-footer__share-copy:after {
  margin-left: 8px;
  transform: rotate(15deg);
}

.l-footer__share-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 15px;
}

.l-footer__share-item {
  display: flex;
  aspect-ratio: 1/1;
  position: relative;
}

.l-footer__home-logo {
  text-align: center;
}
.l-footer__home-logo a {
  display: grid;
  justify-content: center;
}

.l-footer__nav-item {
  list-style: none;
}

.l-footer__nav-link {
  color: #333;
  font-size: 18px;
  font-weight: 800;
  line-height: normal;
}

.l-footer__nav-link--deco {
  font-size: 14px;
}

.l-footer__nav-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}

.l-footer__nav-item:nth-of-type(5),
.l-footer__nav-item:nth-of-type(6) {
  grid-row-end: span 2;
}

.l-footer__nav-item:nth-of-type(1) {
  grid-area: content1;
}

.l-footer__nav-item:nth-of-type(2) {
  grid-area: content2;
}

.l-footer__nav-item:nth-of-type(3) {
  grid-area: content3;
}

.l-footer__nav-item:nth-of-type(4) {
  grid-area: content4;
}

.l-footer__nav-item:nth-of-type(5) {
  grid-area: content5;
}

.l-footer__nav-item:nth-of-type(6) {
  grid-area: content6;
}

.l-footer__nav-item:nth-of-type(7) {
  grid-area: content7;
}

.l-footer__copyright {
  font-size: 13px;
  text-align: center;
  color: #999;
  line-height: 1.3846153846;
  margin-top: 28px;
}

.l-footer__body {
  padding-top: 65px;
  padding-bottom: 70px;
  background-image: url("/assets_labo/img/common/bg_footer_bottom.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

.l-footer__bottom {
  background-color: #fff;
  padding-bottom: 30px;
}

.l-footer__bottom__inner {
  padding-top: 30px;
}

.l-footer__copy-tip {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: absolute;
  padding: 5px 10px;
  white-space: nowrap;
  color: #fff;
  top: -40px;
  left: 50%;
  transform: translate(-60%);
  font-size: 12px;
  z-index: 10;
  background-color: rgba(51, 51, 51, 0.5843137255);
}
.l-footer__copy-tip[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

/* ========================================
  Layout Header
======================================== */
.l-header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.l-header__inner {
  padding: 18px 0;
  width: calc(100% - 40px);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
}

.l-header-btn {
  margin-top: -16px;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  align-items: flex-end;
  z-index: 1;
}
.l-header-btn::before, .l-header-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
.l-header-btn::after {
  width: 16px;
}
.l-header-btn[aria-expanded=true] {
  gap: 0;
}
.l-header-btn[aria-expanded=true]::before, .l-header-btn[aria-expanded=true]::after {
  content: "";
}
.l-header-btn[aria-expanded=true]::before {
  transform: rotate(45deg);
}
.l-header-btn[aria-expanded=true] .l-header-line {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.l-header-btn[aria-expanded=true]::after {
  transform: rotate(-45deg);
  width: 100%;
  margin-top: -2px;
}

.l-header-line {
  width: 25px;
  background-color: #000;
  height: 2px;
  display: block;
  transition: all 0.3s ease;
}

.l-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.l-header__nav-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  row-gap: 18px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: calc(100% - 60px);
  margin-right: auto;
  margin-left: auto;
}

.l-header__nav-link {
  color: #333;
  font-size: 18px;
  font-weight: 800;
}

.l-header__nav-link--deco {
  font-size: 14px;
}
.l-header__nav-link--deco::before {
  content: "ー";
  display: inline-block;
  margin-right: 8px;
}

.l-header__copyright {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 18px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 13px;
  text-align: center;
  color: #999;
}

body.is-menuActive .l-header__copyright {
  opacity: 1;
  visibility: visible;
}
body.is-menuActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

/* ========================================
  Layout Main
======================================== */
.l-main {
  overflow-x: hidden;
}
.l-main__primary-unit {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets_labo/img/top/bg_mv_sp.png");
  position: relative;
  padding-top: 90px;
}

/* ========================================
  Button
======================================== */
.c-btn, .c-btn-sub, .c-btn-main {
  position: relative;
  text-align: center;
}
.c-btn a, .c-btn-sub a, .c-btn-main a {
  font-size: 16px;
  max-width: 315px;
  padding: 24px 0px;
  display: inline-block;
  width: 100%;
  background-color: #FF8E85;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.c-btn a.--secondary, .c-btn-sub a.--secondary, .c-btn-main a.--secondary {
  background: #fff;
  color: #333;
  border: 1px solid #666;
}
.c-btn .c-btn__inner, .c-btn-sub .c-btn__inner, .c-btn-main .c-btn__inner {
  position: relative;
  padding: 0 65px;
}

.c-btn__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.c-btn__arrow {
  margin-right: -18px;
}

.c-btn__circle {
  transition: transform 0.3s ease;
}

.c-btn-main {
  border: 2px solid transparent;
  background-color: #FF8E85;
  color: #fff;
  transition: 0.3s;
}
.c-btn-main:hover, .c-btn-main:focus {
  outline: none;
  border-color: currentcolor;
  background-color: #fff;
  color: #4da1ff;
}

.c-btn-sub {
  border: 2px solid transparent;
  background-color: #000;
  color: #fff;
  transition: 0.3s;
}
.c-btn-sub:hover, .c-btn-sub:focus {
  outline: none;
  border-color: currentcolor;
  background-color: #fff;
  color: #000;
}

.c-icon-btn {
  display: inline-block;
  position: relative;
  padding: 0.2em 0.3em;
  text-decoration: none;
  border: 1px solid currentcolor;
  color: #4da1ff;
  transition: 0.25s;
}
.c-icon-btn svg {
  fill: #4da1ff;
}
.c-icon-btn:focus, .c-icon-btn:hover {
  background-color: #4da1ff;
  color: #fff;
}
.c-icon-btn:focus svg, .c-icon-btn:hover svg {
  fill: #fff;
}

.c-news-card {
  padding: 31px 0 26px 0;
  display: flex;
  flex-direction: column;
}

.c-news-card__ttl {
  font-size: 14px;
  color: #333;
  margin-top: 12px;
  line-height: 1.7142857143;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 表示する行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-news-card__body {
  flex: 1 1;
}

.c-news-card__date {
  font-size: 16px;
  line-height: 1.25;
  color: #999;
  font-family: "Signika Negative", serif;
}

.c-news-card__tag-item {
  list-style: none;
}

.c-news-card__unit {
  display: flex;
  gap: 16px;
}

.c-news-card__sub-unit {
  display: flex;
  align-items: center;
}

.c-news-card__label {
  font-size: 12px;
  margin-left: 16px;
  line-height: normal;
  font-weight: 700;
  color: #fff;
  padding: 1px 12px;
  background-color: #E60012;
  border-radius: 9999px;
  padding-bottom: 2px;
}

.c-news-card__tag-list {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.c-news-card__tag-link {
  font-size: 12px;
  color: #999;
  line-height: 2;
}
.c-news-card__tag-link::before, .c-news-card__tag-link::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-news-card__tag-link::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.c-news-card__tag-link::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

/* ========================================
  Caption
======================================== */
.c-caption--center {
  text-align: center;
}

.c-caption--right {
  text-align: right;
}

.c-caption__txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ========================================
  Caution
======================================== */
.c-caution {
  color: red;
}

/* ========================================
  Heading
======================================== */
.c-heading {
  font-size: 28px;
  text-align: center;
  line-height: 1.2142857143;
  font-family: "Zen Maru Gothic", "Signika Negative", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
}

.c-heading--lev3 {
  color: #000;
  font-family: Zen Maru Gothic;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

.c-bgc-wrapper {
  padding: 30px 0;
  margin: 0 -30px;
}
.c-bgc-wrapper.--orange {
  background: #FFF4E8;
}
.c-bgc-wrapper.--red {
  background: #FFF5F2;
}
.c-bgc-wrapper .p-action-text {
  padding: 0 30px;
}

/* ========================================
  Icon
======================================== */
.c-icon {
  vertical-align: text-top;
  width: 1.2em;
  height: 1.2em;
}

.c-icon--before {
  margin-right: 0.5em;
}

.c-icon--after {
  margin-left: 0.5em;
}

.c-icon-bg--before {
  padding-left: 1.5em;
  line-height: 1.2em;
}

.c-icon-bg--after {
  display: inline-block;
  padding-right: 1.5em;
  line-height: 1.2em;
}

/* ========================================
  Iframe
======================================== */
.c-iframe {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.c-iframe iframe,
.c-iframe embed,
.c-iframe object,
.c-iframe video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
  Label
======================================== */
.c-label {
  display: inline-block;
  padding: 0.2em 0.3em;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #1675e1;
  color: #fff;
}

/* ========================================
  List
======================================== */
.c-bullet-list {
  list-style: none;
}

.c-bullet-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-bullet-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color: #1675e1;
}
.c-bullet-list__item:last-child {
  margin-bottom: 0;
}

.c-order-list {
  counter-reset: c-order-list;
}

.c-order-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-order-list__item::before {
  content: counter(c-order-list) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  color: #1675e1;
  counter-increment: c-order-list;
}
.c-order-list__item:last-child {
  margin-bottom: 0;
}

/* ========================================
  Media
======================================== */
.c-media__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.c-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1;
}

.c-media__img img {
  width: 100%;
}

.c-media__img-unit {
  position: relative;
}

.c-media__img-txt {
  font-size: 5.3333333333vw;
  line-height: normal;
  color: #333;
  position: absolute;
  top: 50%;
  left: 22px;
  font-weight: 800;
  transform: translateY(-50%);
}

.c-media__desc {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #333;
  text-align: justify;
  font-style: normal;
  white-space: pre-wrap;
  letter-spacing: -0.5px;
}

/* ========================================
  Bread crumb
======================================== */
body.is-menuActive .c-bread-crumb {
  z-index: 0;
}

.c-bread-crumb {
  display: flex;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
  padding-bottom: 17px;
  position: relative;
  z-index: 100;
  margin-top: 3px;
}

.c-bread-crumb__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-bread-crumb__link {
  font-size: 12px;
  color: #999;
}
.c-bread-crumb__link.-current {
  color: #333;
  font-weight: 500;
}

.c-bread-crumb__arrow {
  margin: 0 10px;
  font-size: 0;
}

/* ========================================
  Accordion
======================================== */
.p-accordion {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.p-accordion__btn {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5.3333333333vw 13.3333333333vw 5.3333333333vw 6.6666666667vw;
  text-align: left;
  font-size: 6.9333333333vw;
  outline: none;
  border: none;
  border-bottom: 1px solid #2d5996;
  background-color: #FF8E85;
  color: #fff;
  cursor: pointer;
}
.p-accordion__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 2px;
  height: 20px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn:focus, .p-accordion__btn:hover {
  background-color: #fff;
  color: #4da1ff;
}

.p-accordion__body {
  overflow: hidden;
  height: 0;
  padding: 0 6.6666666667vw;
  line-height: 0;
  opacity: 0;
  transition: padding 0.25s, opacity 0.25s;
}
.p-accordion__body > *:last-child {
  margin-bottom: 0;
}

.p-accordion__txt {
  margin-bottom: 8vw;
}

.is-accordion-active {
  border-bottom: none;
}
.is-accordion-active::after {
  content: none;
}

.is-accordion-open {
  height: auto;
  padding: 6.6666666667vw;
  line-height: normal;
  opacity: 1;
}

/* ========================================
  Banner
======================================== */
.p-bnr__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.p-bnr__list-col2 {
  margin-bottom: -2rem;
}
.p-bnr__list-col2 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col3 {
  margin-bottom: -2rem;
}
.p-bnr__list-col3 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col4 {
  margin-bottom: -2rem;
}
.p-bnr__list-col4 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-item img {
  width: 100%;
}

.p-bnr__list-link {
  opacity: 0.8;
}

/* ========================================
  Card
======================================== */
.p-card-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.p-card__col2 {
  margin-bottom: -2rem;
}
.p-card__col2 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card__col3 {
  margin-bottom: -2rem;
}
.p-card__col3 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.p-card__img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.p-card__img-wrapper img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.p-card__body {
  padding: 1.5rem;
}
.p-card__body > *:last-child {
  margin-bottom: 0;
}

.p-card__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-card__txt {
  color: #333;
}

/* ========================================
  Table
======================================== */
.p-horizontal-table {
  border: 1px solid #ddd;
}
.p-horizontal-table table {
  width: 100%;
}
.p-horizontal-table th {
  vertical-align: middle;
  width: 20%;
  padding: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-horizontal-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.p-horizontal-table tr:last-child th,
.p-horizontal-table tr:last-child td {
  border-bottom-width: 0;
}

.p-horizontal-table--scrollX {
  overflow-x: auto;
  border-right-width: 0;
}
.p-horizontal-table--scrollX td,
.p-horizontal-table--scrollX th {
  white-space: nowrap;
}
.p-horizontal-table--scrollX td {
  border-right: 1px solid #ddd;
}

.p-vert-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-vert-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-vert-table thead tr {
  background-color: #ccc;
  color: #fff;
}
.p-vert-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table th,
.p-vert-table td {
  white-space: nowrap;
}
.p-vert-table td:last-child,
.p-vert-table th:last-child {
  border-right-width: 1px;
}
.p-vert-table tbody tr:last-child td {
  border-bottom-width: 0;
}

.p-cross-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-cross-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-cross-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-cross-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-cross-table th,
.p-cross-table td {
  white-space: nowrap;
}
.p-cross-table td:last-child,
.p-cross-table th:last-child {
  border-right-width: 1px;
}
.p-cross-table tbody tr:last-child td {
  border-bottom-width: 0;
}
.p-cross-table .p-cross-table--sticky {
  position: sticky;
  left: 0;
}

.p-top-mv {
  padding-top: 145px;
  padding-bottom: 90px;
}

.p-top-mv__inner {
  overflow-x: hidden;
}

.p-top-mv__copy-unit {
  position: relative;
  aspect-ratio: 551/368;
  height: 368px;
  background-size: 551px 368px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-image: url("/assets_labo/img/top/bg_mv_circle.png");
  min-width: 551px;
  transform: translateX(-50%);
  position: relative;
  left: 50%;
}

.p-top-mv__copy-circle {
  min-width: 551px;
  margin: 0 auto;
}

.p-top-mv__copy-txt-unit {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.p-top-mv__copy-default {
  font-size: 26px;
  line-height: 1.5384615385;
  display: block;
  font-weight: 500;
}

.p-top-mv__copy-strong {
  display: block;
  font-size: 39px;
  line-height: normal;
  font-weight: 800;
}

.p-top-mv__scroll {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}

.p-top-mv__scroll-txt {
  font-size: 15px;
  transform: rotate(90deg);
  display: inline-block;
  margin-top: 5px;
}

.p-top-mv__scroll {
  position: relative;
  width: 7px;
  height: 64px;
  margin-right: auto;
  margin-left: auto;
}

.p-top-mv__scroll__inner {
  /*矢印の動き1秒かけて永遠にループ*/
  position: absolute;
  animation: arrowmove 1.4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  gap: 16px;
  top: 0;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    top: 0%;
  }
  50% {
    top: -20%;
  }
  100% {
    top: 0%;
  }
}

.p-top-mv__intro-copy {
  text-align: center;
  font-size: 14px;
  line-height: 2.2857142857;
  margin-top: 145px;
  font-weight: 500;
}
.p-top-mv__intro-copy + .p-top-mv__intro-copy {
  margin-top: 34px;
}

.p-top-mv__intro-copy-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.p-top-mv__intro-copy-child::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 16px;
  background-color: #000;
}

.p-top-news {
  padding-top: 70px;
  padding-bottom: 70px;
  border-radius: 0 50px 0 0;
  background-color: #fff;
  position: relative;
}

.p-top-news__body {
  position: relative;
}

.p-top-news__heading {
  position: relative;
  z-index: 10;
}

.p-top-news__card-item {
  border-bottom: 1px dashed #ccc;
}
.p-top-news__card-item:first-of-type > .c-news-card {
  padding-top: 0;
}

.p-top-news__card-list {
  margin-top: 46px;
}

.p-top-news__link {
  text-align: right;
  margin-top: 50px;
}
.p-top-news__link a {
  display: inline-flex;
  font-weight: 800;
  align-items: center;
  color: #333;
  font-size: 14px;
}
.p-top-news__link a svg {
  margin-left: 10px;
}

.p-top-attempt {
  border-radius: 50px 0 0 50px;
  position: relative;
  background-color: #FFF4E8;
}

.p-top-attempt__heading {
  position: relative;
  z-index: 10;
}

.p-top-attempt__media-list {
  position: relative;
  z-index: 10;
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.p-top-attempt__inner {
  padding: 70px 0;
}
.p-top-attempt__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  background-color: #FFF4E8;
  height: 100%;
}
.p-top-attempt__media {
  width: 100%;
}

.p-top-attempt__media-img {
  aspect-ratio: 1/1;
}
.p-top-attempt__media-img img {
  width: 100%;
}

.p-top-attempt__media-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #333;
}

.p-top-attempt-link {
  position: relative;
  z-index: 10;
  margin-top: 44px;
}

.p-top-info {
  padding-top: 70px;
  padding-bottom: 62px;
}

.p-top-info__media-list {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-top-research {
  background-color: #FFF5F2;
  padding-top: 70px;
  padding-bottom: 60px;
  border-radius: 50px;
}

.p-top-research__inner {
  background-color: #FFF5F2;
}

.p-report-article-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.p-report-article-list__item {
  padding-top: 35px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ccc;
}
.p-report-article-list__link {
  display: block;
}
.p-report-article-list__per-img {
  min-width: 151px;
  max-width: 151px;
  display: block;
}

.p-report-article-list__flex {
  display: flex;
  -moz-column-gap: 17.37px;
       column-gap: 17.37px;
  align-items: flex-start;
}

.p-report-article-list__per {
  min-width: 151px;
  max-width: 151px;
  min-height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/assets_labo/img/news/news_per_bg.png");
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-report-article-list__per-text {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px; /* 200% */
  letter-spacing: -0.6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
  text-align: center;
}
.p-report-article-list__per-text span {
  color: #333;
  font-family: Signika Negative;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 66.667% */
  letter-spacing: -1.8px;
  margin-top: 5px;
}
.p-report-article-list__per-text span span {
  font-size: 29px;
  font-family: Zen Maru Gothic;
}

.p-report-article-list__date {
  color: #999;
  font-family: Signika Negative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.p-report-article-list__date.--new::after {
  content: "NEW";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 20px;
  background-color: #e60012;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  border-radius: 100px;
}

.p-report-article-list__title {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 10px;
}

.p-report-article-list__tag-list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0px 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.p-report-article-list__tag-link {
  display: block;
  color: #999;
  font-family: Zen Maru Gothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 200% */
}

.p-report-pagination {
  margin-top: 50px;
}
.p-report-pagination__list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.p-report-pagination__link {
  color: #999;
  font-family: Signika Negative;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.p-report-pagination__link.is-active {
  color: #333;
}
.p-report-search {
  margin-right: -30px;
  margin-top: 48px;
  border-radius: 50px 0 0 50px;
  background: #f4f3ef;
}

.p-report-search__inner {
  padding: 40px 30px;
  overflow: hidden;
  transition: max-height 0.5s;
}
.p-report-search__inner.is-freewords-none {
  max-height: 180px;
}
.p-report-search__inner.is-open {
  max-height: 100vh;
}
.p-report-search__inner.is-open + .p-report-search__button-wrapper .p-report-search__button::before {
  transform: translateY(-50%) rotate(90deg);
}

.p-report-search__freewords {
  margin-bottom: 30px;
}

.p-report-search__title {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 175% */
  margin-bottom: 20px;
}

.p-report-search__form {
  display: flex;
}
.p-report-search__form .p-report-search__box {
  outline: none;
  flex: 1 1;
  padding: 13.25px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: #fff;
}
.p-report-search__form .p-report-search__box::-moz-placeholder {
  font-size: 14px;
}
.p-report-search__form .p-report-search__box::placeholder {
  font-size: 14px;
}
/*.p-report-search__form .p-report-search__submit {*/
/*  width: 55px;*/
/*  background-size: 22px 22px;*/
/*  background-repeat: no-repeat;*/
/*  background-image: url("/assets_labo/img/news/icon_search.svg");*/
/*  background-position: center center;*/
/*  border: none;*/
/*  background-color: #fff;*/
/*  cursor: pointer;*/
/*  border-radius: 0 5px 5px 0;*/
/*}*/

.p-report-search .p-report-search__submit {
    font-size: 16px;
    max-width: 315px;
    padding: 5px 0px;
    display: block;
    width: 35%;
    background-color: #FAC8C8;
    border-radius: 100px;
    text-align: center;
    font-weight: 700;
    margin: 20px auto 0;
    border: none;
    cursor:pointer;
}

.p-report-search .p-report-search__submit:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.p-report-search__keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 9px;
}

.p-report-search__keywords-link {
  border-radius: 100px;
  background: #fff;
  display: flex;
  padding: 5px 16px 6px 16px;
  justify-content: center;
  align-items: center;
  color: #333;
  /* SP本文 */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.p-report-search__button-wrapper {
  margin-top: 20px;
}

.p-report-search__button {
  position: relative;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 36px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
  border-radius: 100px;
  background: #9f9f9f;
  width: 123px;
}
.p-report-search__button::after {
  content: "";
  width: 12px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-report-search__button::before {
  content: "";
  width: 2px;
  height: 12px;
  background: #fff;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.p-report-detail__inner {
  background: #fff;
  width: initial;
  border-radius: 0px 50px 50px 0px;
  padding: 70px 30px;
  position: relative;
}

.p-report-detail__date {
  color: #999;
  font-family: Signika Negative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.p-report-detail__date span {
  border-radius: 100px;
  background: #ffa955;
  color: #fff;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  padding: 2.5px 20px 3.5px;
  margin-left: 11px;
}

.p-report-detail__headingLv2 {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
  margin-top: 10px;
}

.p-report-detail__tag-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.p-report-detail__tag-link {
  color: #999;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.p-report-detail__flex {
  display: flex;
  min-height: 210px;
}
.p-report-detail__per {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/assets_labo/img/news/news_per_bg.png");
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.p-report-detail__per-text {
  color: #333;
  text-align: center;
  font-family: Zen Maru Gothic;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
  text-align: center;
}
.p-report-detail__per-text span {
  color: #333;
  font-family: Signika Negative;
  font-size: 66px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -1.8px;
  margin-top: 20px;
}
.p-report-detail__per-text span span {
  font-size: 66px;
  font-family: Zen Maru Gothic;
}

.p-report-detail__per-img {
  margin-top: 40px;
}

.p-report-detail__per-img {
  margin-top: 40px;
}

.p-report-detail__share {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.p-report-detail__share-copy {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 20px;
}

.p-report-detail__share-list {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.p-report-detail__share-item {
  display: flex;
  aspect-ratio: 1/1;
  position: relative;
}

.p-report-detail__content {
  margin-top: 40px;
}

.p-report-detail__text {
  color: #333;
  /* SP本文 */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.p-report-detail__text.has-border {
  padding-bottom: 40px;
  border-bottom: 1px dashed #ccc;
}

.p-report-detail__section {
  margin-top: 70px;
}
.p-report-detail__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  border-radius: 10px;
}

.p-report-detail__headingLv3 {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  color: #333;
  /* 見出し2 */
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
   /* 175% */
  border-radius: 10px;
}
.p-report-detail__headingLv3.is-bgc-gray {
  padding: 10px 20px;
  background: #f1f1f1;
  font-weight: normal;
    font-size: 16px;
}
.p-report-detail__headingLv3.is-bgc-pink {
  padding: 10px 20px;
  background: #ffe8ea;
}

.p-report-detail__ol-list {
  padding-left: 1em;
}
.p-report-detail__ol-item {
  color: #333;
  /* SP本文 */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  list-style-type: decimal;
}
.p-report-detail__ol-item::marker {
  color: #333;
  font-family: Signika Negative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.p-report-detail__ul-list {
  padding-left: 1em;
}
.p-report-detail__ul-item {
  color: #333;
  /* SP本文 */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  list-style-type: disc;
}
.p-report-detail__ul-item::marker {
  color: #333;
  font-family: Signika Negative;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.p-report-detail__content-tag {
  margin-top: 26px;
}

.p-report-detail__content-tag-title {
  color: #333;
  /* 見出し */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-report-detail__content-tag-list {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.p-report-detail__content-tag-link {
  color: #666;
  /* SP本文 */
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-report-detail__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid #666;
}
.p-report-detail__table tbody tr:last-child td {
  border-bottom: none;
}
.p-report-detail__table tbody tr td:last-child {
  border-right: none;
}

.p-report-detail__table-cell {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  min-width: 104.6666666667px;
  padding: 8px 10px 9px 9px;
  text-align: center;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  vertical-align: middle;
  box-sizing: border-box;
}

.p-noindex-text__wrapper {
  margin-top: 43px;
}

.p-report-detail__summary-inner {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

.p-contact-body {
  background: #fff;
  position: relative;
  border-radius: 0 50px 50px 0px;
}

.p-contact-body__unit {
  padding-top: 70px;
  padding-bottom: 70px;
}

.p-contact-body__heading {
  color: #000;
  text-align: center;
  font-size: 28px;
}

.p-contact-body__text {
  font-weight: 500;
  font-size: 14px;
}
.p-contact-body__text.--tel {
  text-align: center;
  padding: 18px 35px;
  background-color: #FFF5F2;
  border-radius: 10px;
}

.p-contact-body__unit-primary {
  margin-top: 50px;
}

.p-contact-body__unit-secondary {
  margin-top: 30px;
}

.p-contact-body__unit-tertiary {
  margin-top: 30px;
}

.p-contact-body__link {
  text-decoration: underline;
}
.p-contact-body__link.--bold {
  font-weight: 800;
}

.p-action-text__wrapper {
  margin-top: 20px;
}

.p-action-text {
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-action-contents {
  margin-top: 70px;
}
.p-action-content + .p-action-content {
  margin-top: 70px;
}
.p-action-content__list {
  display: flex;
  flex-direction: column;
}

.p-action-content__item {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #ccc;
}
.p-action-content__item:last-child {
  margin-bottom: 40px;
}
.p-action-content__link {
  display: block;
}
.p-action-article-list__data {
  margin-top: 40px;
}
.p-action-article-list__date {
  color: #999;
  font-family: Signika Negative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.p-action-article-list__date.--new::after {
  content: "NEW";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background-color: #E60012;
  color: #fff;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  border-radius: 100px;
}

.p-action-article-list__title {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
  margin-top: 10px;
}
.p-action-article-list__tag-list {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.p-action-article-list__tag-link {
  color: #999;
  font-family: Zen Maru Gothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 200% */
}

.p-general-mv {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets_labo/img/top/bg_mv_sp.png");
  position: relative;
  padding-top: 145px;
  padding-bottom: 90px;
  z-index: -1;
}

.p-general-inner {
  background: #fff;
  width: initial;
  border-radius: 0px 50px 50px 0px;
  padding: 70px 30px;
  position: relative;
}

.p-research-contents {
  margin-top: 40px;
}

.p-research-main__img img {
  width: 100%;
}

.p-research__title-wrapper {
  margin-top: 20px;
}

.p-research__title {
  color: #333;
  text-align: center;
  /* 見出し2 */
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 175% */
}

.p-research__text-wrapper {
  margin-top: 50px;
}

.p-research__text {
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-research-data {
  margin-top: 50px;
}
.p-research-data__inner {
  border-radius: 20px;
  background: #FFF5F2;
  padding: 35px 20px 30px;
}

.p-research-data__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5px;
  row-gap: 20px;
}

.p-research-data__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-research-data__text-wrapper {
  text-align: center;
}
.p-research-data__text {
  color: #000;
  text-align: center;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 6px;
}

span.is-num {
  color: #E60012;
  font-family: Signika Negative;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 70.588% */
  letter-spacing: -1.7px;
  display: inline-block;
  margin-top: 6px;
  margin-left: 3px;
  margin-right: 3px;
}

span.is-caution {
  color: #666;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-top: 3px;
}

.p-research-solution__inner {
  margin-top: 50px;
}

.p-research-solution__def {
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-research-solution__item {
  list-style-type: disc;
  margin-left: 1em;
}
.p-research-solution__item::marker {
  font-size: 10px;
}
.p-research-solution__btn-wrapper {
  margin-top: 50px;
}

.p-research-data__logo {
  margin-top: 50px;
}
.p-research-data__logo-inner {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 30px;
}

.p-research-data__logo-list {
  margin-top: 26px;
}

/* ========================================
  Display
======================================== */
.u-dsp-block {
  display: block;
}
.u-dsp-none {
  display: none;
}
.u-dsp-inline {
  display: inline;
}
.u-dsp-ib {
  display: inline-block;
}
.u-dsp-sp {
  display: block;
}
.u-dsp-pc {
  display: none;
}

/* ========================================
  Margin
======================================== */
.u-mt0 {
  margin-top: 0px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt105 {
  margin-top: 105px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt115 {
  margin-top: 115px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt125 {
  margin-top: 125px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt135 {
  margin-top: 135px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt145 {
  margin-top: 145px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mt155 {
  margin-top: 155px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mt165 {
  margin-top: 165px;
}

.u-mt170 {
  margin-top: 170px;
}

.u-mt175 {
  margin-top: 175px;
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt185 {
  margin-top: 185px;
}

.u-mt190 {
  margin-top: 190px;
}

.u-mt195 {
  margin-top: 195px;
}

.u-mt200 {
  margin-top: 200px;
}

.u-mt205 {
  margin-top: 205px;
}

.u-mt210 {
  margin-top: 210px;
}

.u-mt215 {
  margin-top: 215px;
}

.u-mt220 {
  margin-top: 220px;
}

.u-mt225 {
  margin-top: 225px;
}

.u-mt230 {
  margin-top: 230px;
}

.u-mt235 {
  margin-top: 235px;
}

.u-mt240 {
  margin-top: 240px;
}

.u-mt245 {
  margin-top: 245px;
}

.u-mt250 {
  margin-top: 250px;
}

.u-mt255 {
  margin-top: 255px;
}

.u-mt260 {
  margin-top: 260px;
}

.u-mt265 {
  margin-top: 265px;
}

.u-mt270 {
  margin-top: 270px;
}

.u-mt275 {
  margin-top: 275px;
}

.u-mt280 {
  margin-top: 280px;
}

.u-mt285 {
  margin-top: 285px;
}

.u-mt290 {
  margin-top: 290px;
}

.u-mt295 {
  margin-top: 295px;
}

.u-mt300 {
  margin-top: 300px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb155 {
  margin-bottom: 155px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb165 {
  margin-bottom: 165px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb175 {
  margin-bottom: 175px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb185 {
  margin-bottom: 185px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb195 {
  margin-bottom: 195px;
}

.u-mb200 {
  margin-bottom: 200px;
}

.u-mb205 {
  margin-bottom: 205px;
}

.u-mb210 {
  margin-bottom: 210px;
}

.u-mb215 {
  margin-bottom: 215px;
}

.u-mb220 {
  margin-bottom: 220px;
}

.u-mb225 {
  margin-bottom: 225px;
}

.u-mb230 {
  margin-bottom: 230px;
}

.u-mb235 {
  margin-bottom: 235px;
}

.u-mb240 {
  margin-bottom: 240px;
}

.u-mb245 {
  margin-bottom: 245px;
}

.u-mb250 {
  margin-bottom: 250px;
}

.u-mb255 {
  margin-bottom: 255px;
}

.u-mb260 {
  margin-bottom: 260px;
}

.u-mb265 {
  margin-bottom: 265px;
}

.u-mb270 {
  margin-bottom: 270px;
}

.u-mb275 {
  margin-bottom: 275px;
}

.u-mb280 {
  margin-bottom: 280px;
}

.u-mb285 {
  margin-bottom: 285px;
}

.u-mb290 {
  margin-bottom: 290px;
}

.u-mb295 {
  margin-bottom: 295px;
}

.u-mb300 {
  margin-bottom: 300px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-ml105 {
  margin-left: 105px;
}

.u-ml110 {
  margin-left: 110px;
}

.u-ml115 {
  margin-left: 115px;
}

.u-ml120 {
  margin-left: 120px;
}

.u-ml125 {
  margin-left: 125px;
}

.u-ml130 {
  margin-left: 130px;
}

.u-ml135 {
  margin-left: 135px;
}

.u-ml140 {
  margin-left: 140px;
}

.u-ml145 {
  margin-left: 145px;
}

.u-ml150 {
  margin-left: 150px;
}

.u-ml155 {
  margin-left: 155px;
}

.u-ml160 {
  margin-left: 160px;
}

.u-ml165 {
  margin-left: 165px;
}

.u-ml170 {
  margin-left: 170px;
}

.u-ml175 {
  margin-left: 175px;
}

.u-ml180 {
  margin-left: 180px;
}

.u-ml185 {
  margin-left: 185px;
}

.u-ml190 {
  margin-left: 190px;
}

.u-ml195 {
  margin-left: 195px;
}

.u-ml200 {
  margin-left: 200px;
}

.u-ml205 {
  margin-left: 205px;
}

.u-ml210 {
  margin-left: 210px;
}

.u-ml215 {
  margin-left: 215px;
}

.u-ml220 {
  margin-left: 220px;
}

.u-ml225 {
  margin-left: 225px;
}

.u-ml230 {
  margin-left: 230px;
}

.u-ml235 {
  margin-left: 235px;
}

.u-ml240 {
  margin-left: 240px;
}

.u-ml245 {
  margin-left: 245px;
}

.u-ml250 {
  margin-left: 250px;
}

.u-ml255 {
  margin-left: 255px;
}

.u-ml260 {
  margin-left: 260px;
}

.u-ml265 {
  margin-left: 265px;
}

.u-ml270 {
  margin-left: 270px;
}

.u-ml275 {
  margin-left: 275px;
}

.u-ml280 {
  margin-left: 280px;
}

.u-ml285 {
  margin-left: 285px;
}

.u-ml290 {
  margin-left: 290px;
}

.u-ml295 {
  margin-left: 295px;
}

.u-ml300 {
  margin-left: 300px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr100 {
  margin-right: 100px;
}

.u-mr105 {
  margin-right: 105px;
}

.u-mr110 {
  margin-right: 110px;
}

.u-mr115 {
  margin-right: 115px;
}

.u-mr120 {
  margin-right: 120px;
}

.u-mr125 {
  margin-right: 125px;
}

.u-mr130 {
  margin-right: 130px;
}

.u-mr135 {
  margin-right: 135px;
}

.u-mr140 {
  margin-right: 140px;
}

.u-mr145 {
  margin-right: 145px;
}

.u-mr150 {
  margin-right: 150px;
}

.u-mr155 {
  margin-right: 155px;
}

.u-mr160 {
  margin-right: 160px;
}

.u-mr165 {
  margin-right: 165px;
}

.u-mr170 {
  margin-right: 170px;
}

.u-mr175 {
  margin-right: 175px;
}

.u-mr180 {
  margin-right: 180px;
}

.u-mr185 {
  margin-right: 185px;
}

.u-mr190 {
  margin-right: 190px;
}

.u-mr195 {
  margin-right: 195px;
}

.u-mr200 {
  margin-right: 200px;
}

.u-mr205 {
  margin-right: 205px;
}

.u-mr210 {
  margin-right: 210px;
}

.u-mr215 {
  margin-right: 215px;
}

.u-mr220 {
  margin-right: 220px;
}

.u-mr225 {
  margin-right: 225px;
}

.u-mr230 {
  margin-right: 230px;
}

.u-mr235 {
  margin-right: 235px;
}

.u-mr240 {
  margin-right: 240px;
}

.u-mr245 {
  margin-right: 245px;
}

.u-mr250 {
  margin-right: 250px;
}

.u-mr255 {
  margin-right: 255px;
}

.u-mr260 {
  margin-right: 260px;
}

.u-mr265 {
  margin-right: 265px;
}

.u-mr270 {
  margin-right: 270px;
}

.u-mr275 {
  margin-right: 275px;
}

.u-mr280 {
  margin-right: 280px;
}

.u-mr285 {
  margin-right: 285px;
}

.u-mr290 {
  margin-right: 290px;
}

.u-mr295 {
  margin-right: 295px;
}

.u-mr300 {
  margin-right: 300px;
}

/* ========================================
  New Line
======================================== */
.u-newLine-pc::before {
  content: none;
}

.u-newLine-sp::before {
  content: "\a";
  white-space: pre;
}

.u-newLine-no {
  white-space: nowrap;
}

/* ========================================
  Padding
======================================== */
.u-pt0 {
  padding-top: 0px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pt105 {
  padding-top: 105px;
}

.u-pt110 {
  padding-top: 110px;
}

.u-pt115 {
  padding-top: 115px;
}

.u-pt120 {
  padding-top: 120px;
}

.u-pt125 {
  padding-top: 125px;
}

.u-pt130 {
  padding-top: 130px;
}

.u-pt135 {
  padding-top: 135px;
}

.u-pt140 {
  padding-top: 140px;
}

.u-pt145 {
  padding-top: 145px;
}

.u-pt150 {
  padding-top: 150px;
}

.u-pt155 {
  padding-top: 155px;
}

.u-pt160 {
  padding-top: 160px;
}

.u-pt165 {
  padding-top: 165px;
}

.u-pt170 {
  padding-top: 170px;
}

.u-pt175 {
  padding-top: 175px;
}

.u-pt180 {
  padding-top: 180px;
}

.u-pt185 {
  padding-top: 185px;
}

.u-pt190 {
  padding-top: 190px;
}

.u-pt195 {
  padding-top: 195px;
}

.u-pt200 {
  padding-top: 200px;
}

.u-pt205 {
  padding-top: 205px;
}

.u-pt210 {
  padding-top: 210px;
}

.u-pt215 {
  padding-top: 215px;
}

.u-pt220 {
  padding-top: 220px;
}

.u-pt225 {
  padding-top: 225px;
}

.u-pt230 {
  padding-top: 230px;
}

.u-pt235 {
  padding-top: 235px;
}

.u-pt240 {
  padding-top: 240px;
}

.u-pt245 {
  padding-top: 245px;
}

.u-pt250 {
  padding-top: 250px;
}

.u-pt255 {
  padding-top: 255px;
}

.u-pt260 {
  padding-top: 260px;
}

.u-pt265 {
  padding-top: 265px;
}

.u-pt270 {
  padding-top: 270px;
}

.u-pt275 {
  padding-top: 275px;
}

.u-pt280 {
  padding-top: 280px;
}

.u-pt285 {
  padding-top: 285px;
}

.u-pt290 {
  padding-top: 290px;
}

.u-pt295 {
  padding-top: 295px;
}

.u-pt300 {
  padding-top: 300px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pb105 {
  padding-bottom: 105px;
}

.u-pb110 {
  padding-bottom: 110px;
}

.u-pb115 {
  padding-bottom: 115px;
}

.u-pb120 {
  padding-bottom: 120px;
}

.u-pb125 {
  padding-bottom: 125px;
}

.u-pb130 {
  padding-bottom: 130px;
}

.u-pb135 {
  padding-bottom: 135px;
}

.u-pb140 {
  padding-bottom: 140px;
}

.u-pb145 {
  padding-bottom: 145px;
}

.u-pb150 {
  padding-bottom: 150px;
}

.u-pb155 {
  padding-bottom: 155px;
}

.u-pb160 {
  padding-bottom: 160px;
}

.u-pb165 {
  padding-bottom: 165px;
}

.u-pb170 {
  padding-bottom: 170px;
}

.u-pb175 {
  padding-bottom: 175px;
}

.u-pb180 {
  padding-bottom: 180px;
}

.u-pb185 {
  padding-bottom: 185px;
}

.u-pb190 {
  padding-bottom: 190px;
}

.u-pb195 {
  padding-bottom: 195px;
}

.u-pb200 {
  padding-bottom: 200px;
}

.u-pb205 {
  padding-bottom: 205px;
}

.u-pb210 {
  padding-bottom: 210px;
}

.u-pb215 {
  padding-bottom: 215px;
}

.u-pb220 {
  padding-bottom: 220px;
}

.u-pb225 {
  padding-bottom: 225px;
}

.u-pb230 {
  padding-bottom: 230px;
}

.u-pb235 {
  padding-bottom: 235px;
}

.u-pb240 {
  padding-bottom: 240px;
}

.u-pb245 {
  padding-bottom: 245px;
}

.u-pb250 {
  padding-bottom: 250px;
}

.u-pb255 {
  padding-bottom: 255px;
}

.u-pb260 {
  padding-bottom: 260px;
}

.u-pb265 {
  padding-bottom: 265px;
}

.u-pb270 {
  padding-bottom: 270px;
}

.u-pb275 {
  padding-bottom: 275px;
}

.u-pb280 {
  padding-bottom: 280px;
}

.u-pb285 {
  padding-bottom: 285px;
}

.u-pb290 {
  padding-bottom: 290px;
}

.u-pb295 {
  padding-bottom: 295px;
}

.u-pb300 {
  padding-bottom: 300px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pl105 {
  padding-left: 105px;
}

.u-pl110 {
  padding-left: 110px;
}

.u-pl115 {
  padding-left: 115px;
}

.u-pl120 {
  padding-left: 120px;
}

.u-pl125 {
  padding-left: 125px;
}

.u-pl130 {
  padding-left: 130px;
}

.u-pl135 {
  padding-left: 135px;
}

.u-pl140 {
  padding-left: 140px;
}

.u-pl145 {
  padding-left: 145px;
}

.u-pl150 {
  padding-left: 150px;
}

.u-pl155 {
  padding-left: 155px;
}

.u-pl160 {
  padding-left: 160px;
}

.u-pl165 {
  padding-left: 165px;
}

.u-pl170 {
  padding-left: 170px;
}

.u-pl175 {
  padding-left: 175px;
}

.u-pl180 {
  padding-left: 180px;
}

.u-pl185 {
  padding-left: 185px;
}

.u-pl190 {
  padding-left: 190px;
}

.u-pl195 {
  padding-left: 195px;
}

.u-pl200 {
  padding-left: 200px;
}

.u-pl205 {
  padding-left: 205px;
}

.u-pl210 {
  padding-left: 210px;
}

.u-pl215 {
  padding-left: 215px;
}

.u-pl220 {
  padding-left: 220px;
}

.u-pl225 {
  padding-left: 225px;
}

.u-pl230 {
  padding-left: 230px;
}

.u-pl235 {
  padding-left: 235px;
}

.u-pl240 {
  padding-left: 240px;
}

.u-pl245 {
  padding-left: 245px;
}

.u-pl250 {
  padding-left: 250px;
}

.u-pl255 {
  padding-left: 255px;
}

.u-pl260 {
  padding-left: 260px;
}

.u-pl265 {
  padding-left: 265px;
}

.u-pl270 {
  padding-left: 270px;
}

.u-pl275 {
  padding-left: 275px;
}

.u-pl280 {
  padding-left: 280px;
}

.u-pl285 {
  padding-left: 285px;
}

.u-pl290 {
  padding-left: 290px;
}

.u-pl295 {
  padding-left: 295px;
}

.u-pl300 {
  padding-left: 300px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-pr105 {
  padding-right: 105px;
}

.u-pr110 {
  padding-right: 110px;
}

.u-pr115 {
  padding-right: 115px;
}

.u-pr120 {
  padding-right: 120px;
}

.u-pr125 {
  padding-right: 125px;
}

.u-pr130 {
  padding-right: 130px;
}

.u-pr135 {
  padding-right: 135px;
}

.u-pr140 {
  padding-right: 140px;
}

.u-pr145 {
  padding-right: 145px;
}

.u-pr150 {
  padding-right: 150px;
}

.u-pr155 {
  padding-right: 155px;
}

.u-pr160 {
  padding-right: 160px;
}

.u-pr165 {
  padding-right: 165px;
}

.u-pr170 {
  padding-right: 170px;
}

.u-pr175 {
  padding-right: 175px;
}

.u-pr180 {
  padding-right: 180px;
}

.u-pr185 {
  padding-right: 185px;
}

.u-pr190 {
  padding-right: 190px;
}

.u-pr195 {
  padding-right: 195px;
}

.u-pr200 {
  padding-right: 200px;
}

.u-pr205 {
  padding-right: 205px;
}

.u-pr210 {
  padding-right: 210px;
}

.u-pr215 {
  padding-right: 215px;
}

.u-pr220 {
  padding-right: 220px;
}

.u-pr225 {
  padding-right: 225px;
}

.u-pr230 {
  padding-right: 230px;
}

.u-pr235 {
  padding-right: 235px;
}

.u-pr240 {
  padding-right: 240px;
}

.u-pr245 {
  padding-right: 245px;
}

.u-pr250 {
  padding-right: 250px;
}

.u-pr255 {
  padding-right: 255px;
}

.u-pr260 {
  padding-right: 260px;
}

.u-pr265 {
  padding-right: 265px;
}

.u-pr270 {
  padding-right: 270px;
}

.u-pr275 {
  padding-right: 275px;
}

.u-pr280 {
  padding-right: 280px;
}

.u-pr285 {
  padding-right: 285px;
}

.u-pr290 {
  padding-right: 290px;
}

.u-pr295 {
  padding-right: 295px;
}

.u-pr300 {
  padding-right: 300px;
}

.u-hover-opacity {
  transition: all 0.3s ease;
}

/* ========================================
  align
======================================== */
.u-align-center {
  text-align: center;
}
.u-align-left {
  text-align: left;
}
.u-align-right {
  text-align: right;
}

/* ========================================
  Shame リファクタリングを前提とするコード
  https://csswizardry.com/2013/04/shame-css/
======================================== */
/* ==========================================================================
  Print
  http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media screen and (min-width: 768px){
  body {
    background-image: url("/assets_labo/img/common/bg_pc.png");
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: 1080px;
    background-position-y: -120px;
  }
  .l-container {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .l-footer {
    margin-top: 120px;
  }
  .l-footer__inner .c-btn {
    margin-bottom: 130px;
  }
  .l-footer__inner {
    background-image: none;
    padding-top: 0px;
  }
  .l-footer__home-logo svg {
    width: 300px;
    height: 40px;
  }
  .l-footer__nav-list {
    max-width: 375px;
    row-gap: 20px;
  }
  .l-footer__nav-list {
    display: grid;
    grid-template-areas: "content1 ." "content2 content6" "content3 content7" "content4 content7" "content5 content7";
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    -moz-column-gap: 115px;
         column-gap: 115px;
  }
  .l-footer__copyright {
    margin-top: 42px;
  }
  .l-footer__body {
    padding-top: 115px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    gap: 108px;
    background-image: url("/assets_labo/img/common/bg_footer_pc.png");
  }
  .l-footer__body > * {
    width: auto;
    margin: initial;
  }
  .l-footer__bottom__inner {
    padding-top: 50px;
  }
  .l-footer__copy-tip {
    transform: translate(-50%);
    font-size: 14px;
  }
  .l-header__inner {
    gap: 16px;
    align-items: flex-start;
  }
  .l-header__logo {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
  }
  .l-header__logo img {
    width: 100%;
  }
  .l-header-bg {
    padding: 9px 20px;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
  }
  .l-header-btn {
    display: none;
  }
  .l-header__nav {
    position: relative;
    visibility: visible;
    opacity: 1;
    height: auto;
    background-color: transparent;
  }
  .l-header__nav-list {
    max-width: initial;
    display: flex;
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    justify-content: flex-end;
    -moz-column-gap: 14px;
         column-gap: 14px;
    width: auto;
  }
  .l-header__nav-link--deco {
    font-size: 18px;
  }
  .l-header__nav-link--deco::before {
    display: none;
  }
  .l-main__primary-unit {
    background-color: transparent;
    background-image: none;
    padding-top: 100px;
    padding-bottom: 24px;
  }
  .c-btn a, .c-btn-sub a, .c-btn-main a {
    max-width: 580px;
    width: 100%;
    font-size: 23px;
    padding: 28px 0px;
  }
  .c-btn .c-btn__inner, .c-btn-sub .c-btn__inner, .c-btn-main .c-btn__inner {
    padding: 0 100px;
  }
  .c-btn__icon {
    right: 24px;
  }
  .c-btn__arrow {
    width: 48px;
    margin-right: -28px;
  }
  .c-btn__circle {
    width: 46px;
    height: 46px;
  }
  .c-news-card {
    padding: 25px 0;
  }
  .c-news-card__ttl {
    font-size: 16px;
    line-height: 1.75;
  }
  .c-news-card__unit {
    align-items: center;
    gap: 31px;
  }
  .c-news-card__label {
    margin-left: 10px;
  }
  .c-heading {
    font-size: 42px;
  }
  .c-heading--lev3 {
    font-size: 28px;
  }
  .c-bgc-wrapper {
    border-radius: 20px;
    margin: 0;
  }
  .c-bgc-wrapper .p-action-text {
    padding: 0;
  }
  .c-media__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 75px;
  }
  .c-media__img-txt {
    font-size: 20px;
  }
  .c-media__desc {
    font-size: 16px;
    letter-spacing: -1.3px;
  }
  .c-bread-crumb {
    padding-bottom: 0;
  }
  .c-bread-crumb__link {
    font-size: 14px;
  }
  .p-accordion__btn {
    padding: 1rem 4rem 1rem 1.5rem;
    font-size: 1.6rem;
  }
  .p-accordion__body {
    padding: 0 1.5rem;
  }
  .p-accordion__txt {
    margin-bottom: 2rem;
  }
  .is-accordion-open {
    padding: 1.5rem;
  }
  .p-bnr__list-col2 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item {
    width: 49.375%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-bnr__list-col3 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item {
    width: 32.5%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-bnr__list-col4 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item {
    width: 24.0625%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .p-card__col2 {
    margin-bottom: -3rem;
  }
  .p-card__col2 .p-card {
    width: 48.75%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col2 .p-card:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-card__col3 {
    margin-bottom: -3rem;
  }
  .p-card__col3 .p-card {
    width: 31.6666666667%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col3 .p-card:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-vert-table table {
    width: 100%;
  }
  .p-vert-table th,
  .p-vert-table td {
    white-space: pre-wrap;
  }
  .p-vert-table td:last-child,
  .p-vert-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table table {
    width: 100%;
  }
  .p-cross-table th,
  .p-cross-table td {
    white-space: pre-wrap;
  }
  .p-cross-table td:last-child,
  .p-cross-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table .p-cross-table--sticky {
    position: static;
  }
  .p-top-mv {
    padding-top: 140px;
    padding-bottom: 120px;
  }
  .p-top-mv__inner {
    display: flex;
    gap: 4.5572916667vw;
    max-width: 1100px;
    width: calc(100% - 60px);
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-mv__copy-unit {
    transform: initial;
    left: initial;
    background-size: 450px 300px;
    height: 300px;
    min-width: initial;
  }
  .p-top-mv__scroll {
    display: none;
  }
  .p-top-mv__scroll {
    display: none;
  }
  .p-top-mv__scroll__inner {
    display: none;
  }
  .p-top-mv__intro-copy {
    margin-top: 0px;
    text-align: left;
    font-size: 16px;
    line-height: 2.25;
  }
  .p-top-news {
    padding-top: 100px;
    padding-bottom: 296px;
  }
  .p-top-news__card-item:first-of-type > .c-news-card {
    padding-top: 31px;
  }
  .p-top-news__card-item:first-of-type {
    margin-top: 0px;
  }
  .p-top-news__card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    -moz-column-gap: 38px;
         column-gap: 38px;
  }
  .p-top-news__link {
    margin-top: 32px;
  }
  .p-top-news__link a {
    font-size: 18px;
  }
  .p-top-news__link-txt svg {
    width: 40px;
    height: 40px;
  }
  .p-top-attempt {
    margin-top: -180px;
    background-color: transparent;
    border-radius: 0px;
  }
  .p-top-attempt__media-list {
    flex-direction: row;
    gap: 24px;
    width: calc(100% - 16.4285714286vw);
    margin-right: auto;
    margin-left: auto;
    align-items: flex-start;
    margin-top: 90px;
  }
  .p-top-attempt__inner {
    background-color: #FFF4E8;
    border-radius: 50px 0 0 50px;
    padding: 100px 0;
  }
  .p-top-attempt__media-desc {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 32px;
  }
  .p-top-attempt-link {
    margin-top: 78px;
  }
  .p-top-info {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .p-top-info__media-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
  }
  .p-top-research {
    background-color: transparent;
    border-radius: none;
    padding-bottom: 0;
    padding-top: 100px;
  }
  .p-top-research__inner {
    padding-top: 105px;
    padding-bottom: 100px;
    border-radius: 50px;
  }
  .p-top-research__media-list {
    display: flex;
    padding-right: 8.2142857143vw;
    padding-left: 8.2142857143vw;
  }
  .p-top-research__media-desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
  }
  .p-report-article-list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .p-report-article-list__per-img {
    min-width: 240px;
    max-width: 240px;
  }
  .p-report-article-list__flex {
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: center;
  }
  .p-report-article-list__per {
    min-width: 240px;
    max-width: 240px;
    min-height: 160px;
  }
  .p-report-article-list__per-text {
    font-size: 19.073px;
    line-height: 1.5; /* 200% */
  }
  .p-report-article-list__per-text span {
    font-size: 57.219px;
    margin-top: 15px;
  }
  .p-report-article-list__per-text span span {
    font-size: 46.093px;
  }
  .p-report-article-list__date.--new::after {
    font-size: 14px;
    width: 62.5px;
  }
  .p-report-article-list__date {
    font-size: 18px;
    -moz-column-gap: 11px;
         column-gap: 11px;
  }
  .p-report-article-list__title {
    font-size: 18px;
    line-height: 28px;
  }
  .p-report-article-list__tag-list {
    margin-left: 280px;
  }
  .p-report-article-list__tag-link {
    font-size: 14px;
  }
  .p-report-search {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border-radius: 50px;
    margin-top: 68px;
  }
  .p-report-search__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .p-report-search__inner.is-freewords-none {
    max-height: initial;
  }
  .p-report-search__inner {
    max-height: initial;
    padding: 40px 60px 40px 60px;
  }
  .p-report-search__freewords {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .p-report-search__title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .p-report-search__form {
    flex: 1 1;
  }
  /*.p-report-search__form .p-report-search__submit {*/
  /*  width: 65px;*/
  /*}*/
  .p-report-search .p-report-search__submit {
    width: 20%;
    padding: 10px 0px;
  }
  .p-report-search__keywords-list {
    margin-top: 20px;
    gap: 10px;
  }
  .p-report-search__button-wrapper {
    display: none;
  }
  .p-report-search__button {
    width: 210px;
    padding: 5px 16px 6px 16px;
  }
  .p-report-search__button svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .p-report-detail__inner {
    border-radius: 50px 50px 50px 50px;
    width: calc(100% - 60px);
    padding: 80px 0 100px;
  }
  .p-report-detail {
    padding: 0 100px;
  }
  .p-report-detail__date {
    font-size: 18px;
  }
  .p-report-detail__date span {
    font-size: 16px;
  }
  .p-report-detail__headingLv2 {
    margin-top: 20px;
    font-size: 28px;
  }
  .p-report-detail__tag-list {
    margin-top: 20px;
  }
  .p-report-detail__per-text {
    font-size: 19.073px;
    line-height: 1.5; /* 200% */
  }
  .p-report-detail__per-text span {
    font-size: 57.219px;
    margin-top: 15px;
  }
  .p-report-detail__per-text span span {
    font-size: 46.093px;
  }
  .p-report-detail__per-img {
    margin-top: 30px;
  }
  .p-report-detail__per-img {
    margin-top: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-report-detail__share {
    position: absolute;
    top: 80px;
    right: 100px;
    margin-top: 0;
  }
  .p-report-detail__content {
    margin-top: 70px;
  }
  .p-report-detail__text {
    font-size: 16px;
    line-height: 30px;
  }
  .p-report-detail__title {
    font-size: 22px;
  }
  .p-report-detail__headingLv3 {
    font-size: 22px;
  }
  .p-report-detail__headingLv3.is-bgc-gray {
    padding: 20px 20px;
  }
  .p-report-detail__headingLv3.is-bgc-pink {
    padding: 20px 20px;
  }
  .p-report-detail__content-tag {
    margin-top: 30px;
  }
  .p-report-detail__content-tag-title {
    font-size: 16px;
  }
  .p-report-detail__content-tag-link {
    font-size: 16px;
  }
  .p-noindex-text__wrapper {
    margin-top: 63px;
  }
  .p-contact-body {
    background-color: transparent;
  }
  .p-contact-body__unit {
    background: #fff;
    border-radius: 50px;
    padding: 100px;
  }
  .p-contact-body__heading {
    font-size: 42px;
  }
  .p-contact-body__text {
    font-size: 16px;
    line-height: 1.875;
  }
  .p-action-text__wrapper {
    margin-top: 60px;
  }
  .p-action-text {
    font-size: 16px;
    line-height: 30px; /* 187.5% */
  }
  .p-action-content__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .p-action-content__list > * {
    width: 50%;
  }
  .p-action-content__item {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-sizing: border-box;
    border-bottom: none;
  }
  .p-action-content__item:nth-child(odd) {
    border-right: 1px dashed #ccc;
  }
  .p-action-article-list__date {
    font-size: 18px;
  }
  .p-action-article-list__date.--new::after {
    font-size: 14px;
    width: 62.5px;
  }
  .p-action-article-list__tag-link {
    font-size: 14px;
  }
  .p-general-mv {
    background-color: transparent;
    background-image: none;
    padding-top: 33px;
    padding-bottom: 120px;
  }
  .p-general-inner {
    border-radius: 50px 50px 50px 50px;
    width: calc(100% - 60px);
    padding: 100px 0;
  }
  .p-general-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .p-research-contents {
    margin-top: 80px;
  }
  .p-research__title-wrapper {
    margin-top: 50px;
  }
  .p-research__title {
    font-size: 20px;
    line-height: 32px; /* 160% */
  }
  .p-research__text-wrapper {
    margin-top: 25px;
  }
  .p-research__text {
    font-size: 16px;
    line-height: 30px; /* 187.5% */
  }
  .p-research-data__inner {
    padding: 40px;
  }
  .p-research-data__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 25px;
  }
  .p-research-data__img {
    width: 130px;
  }
  .p-research-data__img img {
    width: 100%;
  }
  .p-research-data__img svg {
    width: 130px;
    height: 130px;
  }
  .p-research-data__text {
    font-size: 18px;
  }
  span.is-num {
    font-size: 48.84px;
    margin-top: 10px;
  }
  span.is-caution {
    font-size: 12px;
    margin-top: 6px;
  }
  .p-research-solution__inner {
    margin-top: 56px;
  }
  .p-research-solution__def {
    font-size: 16px;
    line-height: 30px;
  }
  .p-research-solution__btn-wrapper {
    margin-top: 40px;
  }
  .p-research-data__logo-inner {
    padding: 30px 80px 20px;
  }
  .p-research-data__logo-list {
    margin-top: 3px;
  }
  .u-dsp-sp {
    display: none;
  }
  .u-dsp-pc {
    display: block;
  }
  .u-newLine-pc::before {
    content: "\a";
    white-space: pre;
  }
  .u-newLine-sp::before {
    content: none;
  }
  .u-align-center-pc {
    text-align: center;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .l-footer__nav-item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer__nav-item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 992px){
  body {
    background-size: 1414px;
    background-position-y: -140px;
  }
  .c-news-card__img-wrapper {
    max-width: 230px;
    width: 100%;
  }
  .c-news-card__img-wrapper img {
    width: 100%;
  }
  .c-media__list {
    gap: 40px;
  }
  .p-top-mv__inner {
    gap: 72px;
  }
  .p-top-mv__copy-unit {
    min-width: 592px;
    height: 406px;
    aspect-ratio: 592/406;
    background-size: 592px 406px;
  }
  .p-top-mv__copy-default {
    font-size: 32px;
  }
  .p-top-mv__copy-strong {
    font-size: 48px;
  }
  .p-top-mv__intro-unit {
    flex-shrink: 0;
  }
  .p-top-news {
    background-color: transparent;
    border-radius: 0 0 0 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-top-news__inner {
    padding-top: 100px;
    border-radius: 0 50px 0 0;
    background-color: #fff;
    padding-bottom: 295px;
  }
  .p-top-news__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #fff;
  }
  .p-top-news__body {
    width: calc(100% - 65px);
    margin-right: auto;
  }
  .p-top-attempt__media-list {
    width: calc(100% - 230px);
    gap: 50px;
    margin-top: 50px;
  }
  .p-top-info__media-list {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px){
  body {
    background-size: 2000px;
    background-position-y: -190px;
  }
  .p-top-research__media-list {
    padding-right: 115px;
    padding-left: 115px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px){
  .l-footer__body {
    gap: 208px;
  }
}
@media (hover: hover) and (pointer: fine){
  .c-btn a:hover .c-btn__circle, .c-btn-sub a:hover .c-btn__circle, .c-btn-main a:hover .c-btn__circle {
    transform: scale(1.3);
  }
  .u-hover-opacity:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 576px){
  .c-bullet-list--horiz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item {
    flex: calc(50% - 2.5rem) 1;
    margin-right: 1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item:nth-of-type(even) {
    margin-right: 0;
  }
}
@media print{
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
