@charset "UTF8";

:root {
  --font-gothic: font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'ＭＳ ゴシック', sans-serif;
  --font-mincho: 'Zen Old Mincho', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
  --text-color: #333;
  --theme-color: #002456;
}

body {
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'ＭＳ ゴシック', sans-serif;
  /* 12px */
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: .05em;
  scroll-behavior: smooth;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  body {
    /* 16px */
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.button {
  cursor: pointer;

  &:active {
    scale: .95;
  }
}

/* ===========================================
 * header
 * ======================================== */

.header {
  width: 100%;
  position: fixed;
  z-index: 9999;
}

.wrapper--1920px {
  max-width: 1920px;
  margin-inline: auto;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  --header-height: 60px;
  height: var(--header-height);
}

.header__left {
  width: 190px;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--theme-color);
  -webkit-clip-path: polygon(15% 0, 0 100%, 85% 100%, 100% 0);
  clip-path: polygon(15% 0, 0 100%, 85% 100%, 100% 0);
}

.logo__text {
  /* 20px */
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-color);
}

.logo__image {
  width: 85px;
  aspect-ratio: 114 / 49;
  vertical-align: middle;
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(70, 70, 70, 1)), to(rgba(129, 129, 129, 1)));
  background-image: -o-linear-gradient(top, rgba(70, 70, 70, 1), rgba(129, 129, 129, 1));
  background-image: linear-gradient(180deg, rgba(70, 70, 70, 1), rgba(129, 129, 129, 1));
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: visibility 0s ease 0.3s, opacity 0.3s;
  -o-transition: visibility 0s ease 0.3s, opacity 0.3s;
  transition: visibility 0s ease 0.3s, opacity 0.3s;
  visibility: hidden;
  opacity: 0;
}

.--is-active {
  .global-nav {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    visibility: visible;
    opacity: 1;
  }
}

.is-resize {
  .global-nav {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
}

.global-nav__item {
  text-align: center;
  width: 100%;
  padding: 1em;
}

.global-nav__link {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;

  &:hover {
    color: #333;
  }
}

.cta-button {
  font-weight: 600;
  color: #fff;
  width: 85%;
  padding: 1.5em 2em;
  text-align: center;
  display: inline-block;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #e2e2e2, 0 0 2px #e2e2e2, 0 0 1px #e2e2e2, 0 0 4px #e2e2e2, 0 0 10px #e2e2e2;
  box-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #e2e2e2, 0 0 2px #e2e2e2, 0 0 1px #e2e2e2, 0 0 4px #e2e2e2, 0 0 10px #e2e2e2;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

  &:hover {
    color: rgba(70, 70, 70, 1);
    background: #fff;
  }

  &:active {
    scale: .95;
  }
}

/* hamburger */
/* ======================================== */

.js-hamburger {
  position: relative;
  width: 40px;
  height: 30px;
  margin-right: 4%;
  z-index: 999;
}

.js-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.js-hamburger,
.js-hamburger__line {
  display: inline-block;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.js-hamburger__line:nth-of-type(1) {
  top: 0;
}

.js-hamburger__line:nth-of-type(2) {
  top: 14px;
}

.js-hamburger__line:nth-of-type(3) {
  bottom: 0;
}

.--is-active .js-hamburger__line {
  background-color: #fff;
}

.--is-active .js-hamburger__line:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-315deg);
  -ms-transform: translateY(14px) rotate(-315deg);
  transform: translateY(14px) rotate(-315deg);
}

.--is-active .js-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.--is-active .js-hamburger__line:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(315deg);
  -ms-transform: translateY(-14px) rotate(315deg);
  transform: translateY(-14px) rotate(315deg);
}

/* hamburger end */
/* ======================================== */

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .js-hamburger {
    display: none;
  }

  .global-nav {
    position: static;
    width: 100%;
    height: auto;
    background-image: none;
    z-index: 10;
    overflow-x: auto;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }

  .global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    gap: 4%;
    width: 100%;
    height: 100%;
  }

  .global-nav__item {
    width: unset;
    padding: 1em;
  }

  .global-nav__link {
    color: #fff;
    /* 16px */
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  }

  .cta-button {
    width: unset;
    padding: 0.5em 2em;
    text-align: center;
  }
}

/* ===========================================
 * header end
 * ======================================== */


/* ===========================================
 * mainvisual
 * ======================================== */

.mainvisual {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.mainvisual__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wrapper--1200px {
  width: 100%;
  max-width: 1200px;
  padding-inline: min(4%, 48px);
  margin-inline: auto;
}

.catch {
  position: absolute;
  top: 45%;
}

.catch__en {
  color: var(--theme-color);
  font-size: clamp(1.5rem, 0.0651rem + 6.1224vw, 3rem);
  font-family: var(--font-mincho);
  font-family: "Sawarabi Mincho";
  line-height: 1.4;
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.catch__ja {
  font-family: "Zen Old Mincho";
  font-size: clamp(0.875rem, 0.2771rem + 2.551vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0px;
}

/* 767px ---------------------------------- */
@media screen and (min-width: 767px) {
  .catch__en {
    color: var(--theme-color);
    font-size: clamp(3rem, 2.3333rem + 1.3889vw, 4rem);
    margin-bottom: 38px;
  }

  .catch__ja {
    font-size: clamp(1.5rem, 1.1667rem + 0.6944vw, 2rem);
  }
}

/* ===========================================
 * mainvisual end
 * ======================================== */

/* ===========================================
 * message
 * ======================================== */

.message {
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6)),
    url(../image/bg_people.png) no-repeat right top / cover;
  background: linear-gradient(45deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6)),
    url(../image/bg_people.png) no-repeat right top / cover;

  padding-block: 5px 60px;
  overflow: hidden;
}

.message__wrapper {
  position: relative;

}

.message__head {
  position: relative;
  margin-bottom: 20px;
}

.bg-text {
  color: #c0c0c0;
  font-family: "Sawarabi Mincho";
  font-size: clamp(2.9rem, -0.1612rem + 13.0612vw, 6.1rem);
  display: inline-block;
  margin-inline: -2%;
  white-space: nowrap;
  opacity: .8;
  mix-blend-mode: overlay;
}

.message__catch {
  color: #fff;
  font-family: Zen Old Mincho;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  padding-block: 4em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.message__text {
  color: #fff;
  font-family: var(--font-mincho);
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 2;
  margin-bottom: 1.5em;
}

.pc-only {
  display: none;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .message {
    padding-block: 40px 70px;
  }

  .message__head {
    margin-bottom: 20px;
    max-width: 1920px;
    margin-inline: auto;
  }

  .sp-only {
    display: none;
  }

  .bg-text {
    font-size: clamp(4.5rem, 0.5833rem + 8.1597vw, 10.375rem);
  }

  .message__catch {
    font-size: 1.375rem;
    white-space: nowrap;
  }

  .message__text {
    margin-bottom: 1.5em;
  }

  .pc-only {
    display: block;
  }
}

/* ===========================================
 * message end
 * ======================================== */

/* ===========================================
 * service
 * ======================================== */

.section-outer {
  background: url(../image/bg_main.png) no-repeat center top / cover;
}

.service {
  padding-block: 85px 80px;
}

.service__inner {
  display: -ms-grid;
  display: grid;
  gap: 35px;
  justify-items: center;
  margin-bottom: 50px;
}

.service__head {
  font-family: var(--font-mincho);
  /* 24px */
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 30px;
}

.service__text {
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 2;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.service__figure {
  width: 100%;
  text-align: center;
}

.service__desc {
  line-height: 2;
  text-align: center;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: keep-all;
  line-break: strict;
  max-width: 500px;
  margin-inline: auto;
}

.brackets {
  display: inline-block;
  position: relative;
  margin-block: 1em;

  &::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    top: 15px;
    left: -25px;
  }

  &::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    bottom: 15px;
    right: -20px;
  }
}

.brackets__text {
  display: inline-block;
  margin-block: 2em;

  &::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    top: 18px;
    left: -28px;
  }

  &::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    bottom: 18px;
    right: -23px;
  }
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {

  .service {
    padding-block: 85px 100px;
  }

  .service__inner {
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .service__head {
    /* 32px */
    font-size: 2rem;
  }

  .service__text {
    /* 17px */
    font-size: 1.0625rem;
    min-width: 370px;
  }
}

/* ===========================================
 * service end
 * ======================================== */

/* ===========================================
 * cta
 * ======================================== */

.cta {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(4%, rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(71, 71, 71, 0.85)), color-stop(96%, rgba(94, 94, 94, 0.8)), to(rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8) 4%, rgba(71, 71, 71, 0.85) 50%, rgba(94, 94, 94, 0.8) 96%, rgba(255, 255, 255, 0));
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8) 4%, rgba(71, 71, 71, 0.85) 50%, rgba(94, 94, 94, 0.8) 96%, rgba(255, 255, 255, 0));
  padding-block: 80px;
}

.wrapper--780px {
  width: 100%;
  max-width: 780px;
  padding-inline: min(4%, 31.2px);
  margin-inline: auto;
}

.cta__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6% 6fr;
  grid-template-columns: 1fr 6fr;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 6%;
  -moz-column-gap: 6%;
  column-gap: 6%;
  margin-bottom: -10px;
}

.cta__catch {
  color: #fff;
  font-family: var(--font-mincho);
  /* 24px */
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.cta__desc {
  margin-top: -6px;
}

.cta__text {
  color: #fff;
  line-height: 2;
  margin-bottom: 2em;
}

.cta__area {
  text-align: center;
}

.cta__message {
  color: #fff;
  font-family: var(--font-mincho);
  /* 14px */
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .cta {
    padding-block: 130px;
  }

  .cta__inner {
    -webkit-column-gap: 10%;
    -moz-column-gap: 10%;
    column-gap: 10%;
    margin-bottom: 20px;
  }

  .cta__catch {
    /* 28px */
    font-size: 1.75rem;
  }

  .cta__message {
    /* 18px */
    font-size: 1.125rem;
    margin-bottom: 70px;
  }
}

/* ===========================================
 * cta end
 * ======================================== */

/* ===========================================
 * profile
 * ======================================== */

.profile {
  padding-block: 50px;
}

.title__en {
  color: #bdbdbd;
  font-family: var(--font-mincho);
  font-family: "Sawarabi Mincho";
  /* 24px */
  font-size: 1.5rem;
}

.title__ja {
  color: var(--theme-color);
  font-family: var(--font-mincho);
  font-size: 0.625rem;
}

.profile__table {
  margin-block: 40px;
}

.inner--780px {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
}

.profile__th {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  padding-right: 35px;
}

.profile__td {
  word-break: break-all;
}

.profile__th,
.profile__td {
  /* 12px */
  font-size: .75rem;
  padding-block: 1em;
}

.map-link {
  color: var(--theme-color);

  &:hover {
    text-decoration: underline;
  }
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .profile {
    padding-block: 50px;
  }

  .title__en {
    font-weight: 300;
    /* 64px */
    font-size: 4rem;
  }

  .title__ja {
    font-size: unset;
  }

  .profile__th,
  .profile__td {
    /* 16px */
    font-size: 1rem;
  }
}

/* ===========================================
 * profile end
 * ======================================== */

/* ===========================================
 * contact
 * ======================================== */

.contact {
  padding-block: 50px 140px;
}

.contact__form {
  margin-top: 40px;
}

.contact__table {
  width: 100%;
}

.contact__tr,
.contact__th {
  /* 12px */
  font-size: .75rem;
}

.contact__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.contact__th {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  padding-right: 35px;
}

.contact__text-field,
.contact__textarea {
  line-height: 2;
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 6px;
  background: #fff;
  padding: 0.5em 1em;
}

.contact__textarea {
  height: 10em;
}

.pp-link {
  color: var(--theme-color);

  &:hover {
    text-decoration: underline;
  }
}

.contact__checkbox {
  position: relative;
  top: 0.1em;
  scale: 1.2;
}

.required {
  color: #333;
  font-size: 0.7em;
  vertical-align: top;
  display: inline-block;
  background: #d0d0d0;
  border-radius: 3px;
  margin-left: 1em;
  padding: 0.2em 0.6em 0.3em;
}

.contact__button {
  color: #fff;
  width: 100%;
  display: block;
  background: #333;
  padding: 1.1em 2em;
  margin-top: 20px;
  margin-inline: auto;

  &:hover {
    -webkit-box-shadow: 0 0 1px #e2e2e2, 0 0 1px #e2e2e2, 0 0 2px #e2e2e2, 0 0 4px #5e5e5e, 0 0 2px #5e5e5e, 0 0 1px #5e5e5e, 0 0 4px #5e5e5e, 0 0 10px #5e5e5e;
    box-shadow: 0 0 1px #e2e2e2, 0 0 1px #e2e2e2, 0 0 2px #e2e2e2, 0 0 4px #5e5e5e, 0 0 2px #5e5e5e, 0 0 1px #5e5e5e, 0 0 4px #5e5e5e, 0 0 10px #5e5e5e;
  }
}

.contact__button--gray {
  background: #bdbdbd;
}

.confirm__td {
  background: #fff;
  min-height: 30px;
  padding: 0.5em 1em;
  border-radius: 6px;
}

.confirm__text {
  font-family: var(--font-mincho);
  /* 20px */
  font-size: 1.25rem;
  margin-block: 40px;
}

.confirm__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
}

.thanks__title {
  font-family: var(--font-mincho);
  /* 20px */
  font-size: 1.25rem;
  margin-block: 35px 25px;
}

.error_list {
  padding: 1em;
  color: red;
  font-size: 86%;
  text-align: left;
  border: 1px solid red;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {

  .contact__tr,
  .contact__th {
    /* 16px */
    font-size: 1rem;
  }

  .contact__tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .contact__th {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
  }

  .contact__td {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .confirm__td {
    min-height: 40px;
  }
}

/* ===========================================
 * contact end
 * ======================================== */

/* ===========================================
 * footer
 * ======================================== */

.footer {
  color: #fff;
  background: #5E5E5E;
  padding-block: 55px;
}

.footer_inner {
  display: -ms-grid;
  display: grid;
  gap: 53px;
  margin-bottom: 50px;
}

.footer-nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-nav_link {
  color: #fff;
  font-family: var(--font-mincho);

  &:hover {
    opacity: 0.8;
  }
}

.footer-logo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;

  &:hover {
    opacity: 0.8;
  }
}

.footer-logo_image {
  width: 150px;
  height: auto;
}

.footer_line {
  width: 100px;
  height: 1px;
  background: #fff;
  margin-inline: auto;
}

.dictionary_en {
  font-family: var(--font-mincho);
  /* 24px */
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.dictionary_ja {
  font-family: var(--font-mincho);
  text-align: center;
  margin-bottom: 35px;
}

.dictionary_desc {
  font-family: var(--font-mincho);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
}

.copyright {
  /* 10px */
  font-size: 0.625rem;
  text-align: center;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .footer {
    padding-block: 55px;
  }

  .footer_inner {
    -ms-grid-columns: 3fr 0 1fr 0 4fr;
    grid-template-columns: 3fr 1fr 4fr;
    gap: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-nav_list {
    margin-bottom: 120px;
  }

  .footer_line {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    rotate: 90deg;
  }

  .dictionary_desc {
    /* 14px */
    font-size: .875rem;
  }
}

/* ===========================================
 * Privacy-policy
 * ======================================== */

.privacy-policy {
  width: 100%;
  padding-block: 100px;
}

.privacy-policy__wrapper {
  width: 100%;
  padding-inline: 4%;
  margin-inline: auto;
}

/* 767px ---------------------------------- */

@media screen and (min-width: 767px) {
  .privacy-policy__wrapper {
    max-width: 960px;
  }
}