@charset "UTF-8";
/* -------------------------------

Reset CSS

-------------------------------  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  color: #333;
  height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 4.2666666667vw;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* -------------------------------

base CSS

-------------------------------  */
body {
  margin: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 2;
  min-width: 1120px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

a {
  text-decoration: none;
}

p {
  font-weight: 500;
  line-height: 2;
}

button {
  color: #333;
}

/* --------------------

共通

 -------------------- */
.content__heading {
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .content__heading {
    margin-bottom: 6.4vw;
  }
}

.content__heading .content__heading-ja {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .content__heading .content__heading-ja {
    font-size: 6.4vw;
  }
}

.content__heading .content__heading-en {
  font-size: 16px;
  display: block;
  letter-spacing: 0.1rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .content__heading .content__heading-en {
    font-size: 3.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}

.text--blue {
  color: #172a88;
}

.mt-m {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .mt-m {
    margin-top: 6.4vw;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.container {
  max-width: 100%;
  width: 1200px;
  min-width: 1120px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    min-width: 100%;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

/* --------------------

header

 -------------------- */
.header {
  position: absolute;
  width: 100%;
  min-width: 1120px;
}

.header__inner {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 102px;
  max-width: 100%;
  width: 1200px;
  min-width: 1120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 300;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header__inner {
    min-width: 100%;
    padding: 2.1333333333vw 4.2666666667vw;
    position: fixed;
    width: 100%;
    height: auto;
  }
}
.header__inner.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
}
.header__inner.scrolled .header__logo img {
  filter: none;
}
@media screen and (max-width: 768px) {
  .header__inner.scrolled .hamburger span {
    background: #172A88;
  }
}

.header__logo {
  flex: 1;
}
.header__logo img {
  max-width: 220px;
  width: 60%;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 60%;
    max-width: 58.6666666667vw;
  }
}

.header__nav {
  display: flex;
  gap: 24px;
  color: #ffffff;
  margin-right: 220px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  overflow: hidden;
  transition: color 0.3s ease;
}
.header__nav a:hover {
  color: #036EB9;
}

.header__button {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(calc(560px - 100%));
  z-index: 400;
}
@media (max-width: 1140px) {
  .header__button {
    left: auto;
    right: 40px;
    transform: translateX(0%);
  }
}
.header__button a {
  display: inline-block;
  background-color: #F47A00;
  border-radius: 99px;
  font-weight: bold;
  padding: 12px;
  color: #ffffff;
  font-size: 16px;
  width: 200px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.header__button a::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #036EB9;
  transition: bottom 0.3s ease;
  z-index: 0;
}
.header__button a:hover {
  color: #ffffff;
}
.header__button a:hover::before {
  bottom: 0;
}
.header__button a span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header__button {
    display: none;
  }
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 1.6vw;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 8vw;
  height: 0.5333333333vw;
  background: #fff;
  transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(2.1333333333vw) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-2.1333333333vw) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* SPメニュー */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 42, 136, 0.9);
  padding: 5.3333333333vw;
  z-index: 150;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.sp-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sp-menu .sp-menu__head {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.sp-menu__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-menu__logo img {
  width: 60%;
  filter: brightness(0) invert(1);
}
.sp-menu__logo .sp-menu__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 8.5333333333vw;
  cursor: pointer;
}
.sp-menu__nav {
  margin-top: 6.4vw;
}
.sp-menu__nav a {
  display: block;
  color: #fff;
  padding: 2.1333333333vw 0;
  text-decoration: none;
  font-size: 3.7333333333vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sp-menu__sub {
  padding-left: 5.3333333333vw;
}
.sp-menu__sub a {
  font-size: 4.2666666667vw;
  padding: 2.1333333333vw 0;
  border: none;
}
.sp-menu__entry {
  margin-top: auto;
}
.sp-menu__entry a {
  display: block;
  background: #fff;
  color: #036EB9;
  padding: 2.1333333333vw;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.sp-menu__entry a::after {
  content: "→";
  position: absolute;
  right: 5.3333333333vw;
  font-size: 4.2666666667vw;
}

.header.open .header__inner {
  display: none;
}

/* ENTRYボタンSP用 */
.sp-entry a {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #F47A00;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 200;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sp-entry a {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    font-size: 5.3333333333vw;
  }
}

/* --------------------

mv

 -------------------- */
.mv {
  position: relative;
  background-image: url("../img/mv_textbg.png"), url("../img/mv_bg.jpg");
  background-size: 80% 100%, cover;
  background-repeat: no-repeat;
  background-position: bottom left, center;
  min-width: 1120px;
}
@media screen and (max-width: 768px) {
  .mv {
    width: 100%;
    min-width: 100%;
    background-image: url("../img/mv_textbg_sp.png"), url("../img/mv_bg.jpg");
    background-size: 100% 60%, cover;
    background-position: top center, center;
  }
}

.mv__inner {
  position: relative;
  max-width: 1200px;
  min-width: 1120px;
  padding: 140px 40px 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    width: 100%;
    min-width: 100%;
    padding: 26.6666666667vw 4.2666666667vw 50.6666666667vw;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .mv__text {
    width: 100%;
  }
}

.mv__copy {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 32px;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    font-size: 10.6666666667vw;
    line-height: 1.1;
  }
}
.mv__copy span {
  font-size: 40px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .mv__copy span {
    font-size: 6.4vw;
    line-height: 2.4;
  }
}
.mv__copy span:last-child {
  line-height: 1;
}
.mv__copy .mv__copy-sub {
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .mv__copy .mv__copy-sub {
    font-size: 5.3333333333vw;
    line-height: 1.1;
  }
}

.mv__appeals {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .mv__appeals {
    gap: 1.0666666667vw;
    justify-content: center;
  }
}

.mv__appeal {
  padding: 16px 8px;
  text-align: center;
  background-color: #ffffff;
  color: #172A88;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .mv__appeal {
    width: 33%;
    padding: 4.2666666667vw 0vw 2.1333333333vw;
  }
}

.mv__appeal img {
  max-height: 32px;
  margin: 0 auto 16px;
}

.mv__appeal-main-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.1;
  color: #036EB9;
}
.mv__appeal-main-text span {
  font-size: 16px;
  color: #172A88;
}
@media screen and (max-width: 768px) {
  .mv__appeal-main-text span {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__appeal-main-text span.mv__appeal__note {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__appeal-main-text {
    font-size: 4.8vw;
  }
}

.mv__appeal-sub-text {
  font-size: 14px;
  line-height: 1.5;
}

.mv__right {
  width: 47%;
  margin: auto 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0%;
}
@media screen and (max-width: 768px) {
  .mv__right {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    width: 75%;
    left: 0%;
    right: 0;
    margin: auto;
    top: auto;
    bottom: 0;
    z-index: 0;
    max-height: 35%;
    overflow: hidden;
  }
}

/* --------------------

ctaTOP

-------------------- */
.cta-top {
  padding: 0px;
  background-color: #fff;
  color: #ffffff;
  border-radius: 0px;
  background: url(../img/cta_bg.jpg) center/cover;
  padding: 56px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cta-top {
    flex-direction: column;
    padding: 10.6666666667vw 4.2666666667vw 8.5333333333vw;
    text-align: center;
  }
}
.cta-top__text {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .cta-top__text {
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
  }
}
.cta-top__subtext {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .cta-top__subtext {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-top__button {
    width: 100%;
  }
}
.cta-top__button a {
  display: inline-block;
  background-color: #F47A00;
  border-radius: 99px;
  font-weight: bold;
  padding: 16px;
  color: #ffffff;
  font-size: 24px;
  width: 400px;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .cta-top__button a {
    width: 90%;
    font-size: 5.3333333333vw;
    padding: 2.1333333333vw;
  }
}
.cta-top__button a::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #036EB9;
  transition: bottom 0.3s ease;
  z-index: 0;
}
.cta-top__button a:hover {
  color: #ffffff;
}
.cta-top__button a:hover::before {
  bottom: 0;
}
.cta-top__button a span {
  position: relative;
  z-index: 1;
}

/* --------------------

message

 -------------------- */
.message {
  padding: 80px 0 100px;
  color: #ffffff;
  min-width: 1120px;
  background: url(../img/message_bg.jpg) repeat 0 0/auto;
}
@media screen and (max-width: 768px) {
  .message {
    min-width: 100%;
    padding: 14.9333333333vw 0 14.9333333333vw;
  }
}

.message__container {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .message__container {
    flex-direction: column;
  }
}

.message__heading,
.message__text {
  width: 100%;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .message__heading,
  .message__text {
    width: 100%;
  }
}
.message__heading p,
.message__text p {
  line-height: 2;
  margin-bottom: 24px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .message__heading p,
  .message__text p {
    font-size: 4.2666666667vw;
  }
}

/* --------------------

about

-------------------- */
.about {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .about .content__heading {
    line-height: 1.6;
    padding: 14.9333333333vw 0vw;
  }
}

.about__text {
  margin-bottom: 16px;
}

.about__box {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .about__box {
    flex-direction: column;
  }
}

.about__box-item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about__box-item {
    width: 100%;
  }
}

.about__heading {
  background-color: #f8f9fb;
  color: #172A88;
  font-weight: bold;
  font-size: 20px;
  padding: 16px 24px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 4.8vw;
    padding: 2.1333333333vw 4.2666666667vw;
  }
}

/* --------------------

recruit

-------------------- */
.recruit {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 14.9333333333vw 0vw;
  }
}
.recruit__item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  background: #172A88;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    flex-direction: column;
  }
}
.recruit__title {
  background: #172A88;
  color: #fff;
  padding: 0px 48px;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .recruit__title {
    font-size: 4.8vw;
    width: 100%;
    padding: 2.1333333333vw 4.2666666667vw;
    text-align: center;
  }
}
.recruit__content {
  background: #f7f8fa;
  padding: 32px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .recruit__content {
    padding: 4.2666666667vw;
    width: 100%;
  }
}
.recruit__box {
  background: #fff;
  padding: 32px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .recruit__box {
    margin-top: 4.2666666667vw;
    padding: 4.2666666667vw;
  }
}
.recruit__info {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .recruit__info {
    flex-direction: column;
    gap: 8px;
  }
}
.recruit__subtitle {
  line-height: 1.5;
  color: #036EB9;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .recruit__subtitle {
    font-size: 4.8vw;
  }
}
.recruit__img {
  margin-top: 10px;
}
.recruit__img--large img {
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit__img--half {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: bottom;
}
.recruit__img--half:last-child {
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .recruit__img--half:last-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit__img--half {
    width: 100%;
    margin-top: 2.6666666667vw;
  }
}
.recruit__note {
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit__note {
    margin-top: 2.1333333333vw;
    line-height: 1.5;
    font-size: 3.7333333333vw;
  }
}

/* --------------------

flow

-------------------- */
.flow {
  background: #f8f9fb;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-top: 14.9333333333vw;
  }
}

.flow__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  gap: 24px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .flow__list {
    flex-direction: column;
    gap: 4.2666666667vw;
  }
}

.flow__item {
  background: #fff;
  padding: 40px 0 32px;
  position: relative;
  width: 25%;
  height: 180px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__item {
    width: 100%;
    height: auto;
    padding: 8.5333333333vw 0 4.2666666667vw;
  }
}

.flow__item-step {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #172A88;
  color: #fff;
  font-weight: bold;
  padding: 2px 8px;
  font-size: 12px;
}
.flow__item-step span {
  font-size: 14px;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .flow__item-step {
    font-size: 3.2vw;
  }
  .flow__item-step span {
    font-size: 3.7333333333vw;
    margin-left: 1.0666666667vw;
  }
}

.flow__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .flow__item-icon {
    margin-bottom: 4.2666666667vw;
    height: 11.2vw;
  }
}

.flow__item-icon img {
  max-height: 100%;
  width: 20%;
}

.flow__item-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .flow__item-text {
    font-size: 4.8vw;
    height: 13.3333333333vw;
  }
}

.flow__item::after {
  content: "";
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.9em;
  height: 0.9em;
  display: block;
  position: absolute;
  top: 50%;
  right: -1.05em;
  transform: translateY(-50%);
  transform-origin: top right;
}
@media screen and (max-width: 768px) {
  .flow__item::after {
    top: auto;
    bottom: -1.25em;
    right: 0;
    left: 0;
    transform: translateX(50%) rotate(90deg);
    transform-origin: center top;
    width: 0.9em;
    margin: auto;
  }
}

.flow__item:last-child::after {
  display: none;
}

/* --------------------

cta

-------------------- */
.cta {
  padding: 48px 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 8.5333333333vw 0vw;
    text-align: center;
  }
}
.cta__container {
  color: #ffffff;
  border-radius: 10px;
  background: url(../img/cta_bg.jpg) center/cover;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta__container {
    flex-direction: column;
    padding: 10.6666666667vw 4.2666666667vw;
  }
}
.cta__text {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .cta__text {
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
  }
}
.cta__subtext {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .cta__subtext {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta__button {
    width: 100%;
  }
}
.cta__button a {
  display: inline-block;
  background-color: #F47A00;
  border-radius: 99px;
  font-weight: bold;
  padding: 16px;
  color: #ffffff;
  font-size: 24px;
  width: 300px;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .cta__button a {
    width: 90%;
    font-size: 5.3333333333vw;
    padding: 2.1333333333vw;
  }
}
.cta__button a::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #036EB9;
  transition: bottom 0.3s ease;
  z-index: 0;
}
.cta__button a:hover {
  color: #ffffff;
}
.cta__button a:hover::before {
  bottom: 0;
}
.cta__button a span {
  position: relative;
  z-index: 1;
}

/* --------------------

.footer

-------------------- */
.footer {
  margin-top: 40px;
  padding: 56px 0;
  background-color: #172A88;
  color: white;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 8.5333333333vw 0 32vw;
    margin-top: 14.9333333333vw;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
}

.footer__nav {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    font-size: 3.7333333333vw;
    width: 100%;
    gap: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__nav a {
    width: 50%;
    margin-bottom: 8px;
  }
}

.link-blank::after {
  content: "";
  background-image: url(../img/icon-external.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 10px;
  height: 7px;
  margin-left: 4px;
  vertical-align: 2px;
}
@media screen and (max-width: 768px) {
  .link-blank::after {
    font-size: 3.7333333333vw;
    width: 3.2vw;
    height: 2.1333333333vw;
    margin-left: 1.0666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 60%;
    margin-top: 24px;
    margin-right: auto;
  }
}
.footer__logo img {
  filter: brightness(0) invert(1);
  max-width: 180px;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    max-width: 48vw;
    width: 100%;
  }
}

.footer__copyright {
  font-size: 12px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 3.2vw;
    max-width: 48vw;
    margin-top: 8.5333333333vw;
  }
}

.footer__nav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #036EB9;
}
.footer__nav a:hover::before {
  bottom: 0;
}
.footer__nav a span {
  position: relative;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */