/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #11111B;
  color: #fff;
  font-family: "Inter", 'Hiragino Kaku Gothic ProN', "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

main {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.splash__img img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

dl,
ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt,
dd {
  margin: 0;
  padding: 0;
}


/* **************************************************************
 Utility Classes
*************************************************************** */
.section {
  padding: 50px 0;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.section.container__page {
  padding-top: 160px;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.inner--summary {
  display: block;
  margin: 15px 0 40px;
  line-height: 2;
  letter-spacing: 0.278px;
}

.inner--btns {
  margin-top: 40px;
}

.title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
  color: inherit;
  font-weight: normal;
}

.title--en {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: normal;
}

.title--jp {
  font-size: 24px;
  line-height: 1;
  text-align: center;
  font-weight: normal;
}

.title--max {
  margin-bottom: 25px;
  line-height: 1.3;
  font-size: 48px;
  font-weight: normal;
}

.title--mid {
  margin-bottom: 25px;
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.title--mid .min {
  font-size: 16px;
}

.title--min {
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.title--min .min {
  display: block;
  font-size: 20px;
}

.title--mic {
  display: block;
  line-height: 1.3;
  font-size: 24px;
  font-weight: normal;
}


.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  min-height: 40px;
  background-color: #33333B;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.btn:hover {
  background-color: #1C86FF;
}

.btn--white {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  min-height: 40px;
  background-color: #fff;
  border-radius: 4px;
  font-family: 'Montserrat',
    sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  color: #11111B;
  text-align: center;
}

.btn--white:hover {
  background-color: #1C86FF;
  color: #fff;
}

.btn--max {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 104px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.btn--max::after {
  content: "\f054";
  position: absolute;
  right: 45px;
  top: 50%;
  translate: 0 -50%;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.btn--max:hover {
  opacity: 1;
  background-color: #1C86FF;
  color: #fff;
}

.bg--navy {
  background-color: #11111B;
  color: #fff;
}

.bg--gray {
  background-color: #33333B;
  color: #fff;
}

.list--disc li {
  position: relative;
  padding-left: 22px;
}

.list--disc li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}



/* **************************************************************
 header
*************************************************************** */
.header__inner {
  position: fixed;
  left: 50%;
  translate: -50%;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 24px;
}

.header__menu {
  display: none;
}

.header__menu--nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu--nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #fff;
}

.header__menu--nav a:hover {
  color: #1C86FF;
}

.header__menu--nav .btn {
  border-bottom: none;
}

.btn-menu {
  position: fixed;
  z-index: 1500;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-menu::before {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 33px;
  color: #fff;
}

.btn-menu.is-opened::before {
  content: "\f00d";
}

.hamburger__menu--open {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #11111B;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 112px 24px 40px;
  translate: 0 -100%;
  transition: translate 0.2s ease-in-out;
  overflow-y: auto;
}

.hamburger__menu--open.is-opened {
  translate: 0 0;
}

.hamburger__catch--inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
}

.hamburger__catch--main {
  display: block;
  margin-bottom: 25px;
  line-height: 1.2;
  font-size: 32px;
  font-size: clamp(32px, 8.2vw, 52px);
  font-weight: 400;
}

.hamburger__catch--text {
  line-height: 1.2;
  font-size: 20px;
  font-size: clamp(20px, 5.12vw, 30px);
}

.hamburger__menu--nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 15px;
  margin: 70px 0 25px;
  font-family: 'Montserrat', sans-serif;
}

.hamburger__menu--nav li {
  line-height: 1;
}

.hamburger__menu--nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: left;
}

.hamburger__menu--nav a:hover {
  color: #1C86FF;
}

.hamburger__menu--cv {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}




/* **************************************************************
 splash
*************************************************************** */
.splash {
  position: relative;
  width: 100%;
  height: auto;
  /*min-height: 100vh;*/
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  box-sizing: border-box;
}

.splash__img {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.splash__inner {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 1248px;
  padding: 24px;
  pointer-events: none;
  box-sizing: border-box;
}

.splash__catch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: fit-content;
  line-height: 1.3;
  font-size: clamp(24px, 6vw, 40px);
  color: #fff;
  white-space: normal;
  word-break: keep-all;
}

.splash__text--main {
  margin-top: 15px;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: normal;
  word-break: keep-all;
}

.splash__btn {
  width: fit-content;
  margin-top: 70px;
  pointer-events: all;
}

/* **************************************************************
 news
*************************************************************** */
.news__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.news__item-date {
  flex-shrink: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  width: 120px;
}

.news__item-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.news__item-link:hover {
  color: #1C86FF;
}

.news__item-link-text {
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  word-break: break-all;
}

.news__item-link-icon {
  margin-top: -5px;
}

.news__bottom {
  margin-top: 55px;
}


.news__pager {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  gap: 8px;
}

.news__pager-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  width: 100%;
  box-sizing: border-box;
}

.news__pager-button:hover {
  background-color: #fff;
  color: #11111B;
}

.news__pager-button-text {
  font-size: 24px;
  line-height: 1em;
}


.news__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.news__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news__head-title {
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.news__body p {
  line-height: 2;
  margin: 20px 0;
  text-align: justify;
}

.news__cv .btn--white {
  padding: 12px;
  width: 150px;
}


/* **************************************************************
 company
*************************************************************** */
.company__catch--img {
  position: relative;
  width: 100%;
  height: 374px;
  margin-top: 55px;
}

.company__catch--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: contain;  /* 画像全体を表示し、両端が切れないようにする */
}



/* **************************************************************
 service
*************************************************************** */
.service__catch--img {
  position: relative;
  width: 100%;
  height: 324px;
  margin: 40px 0;
}

.service__catch--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  /*height: 100%;
  object-fit: cover;*/
}

.service__cont {
  margin: 80px 0;
}

.service__conta--img {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
}

/* **************************************************************
 style
*************************************************************** */
.style__cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  margin: 80px 0;
}

.style__cont--box {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.style__cont--left {
  display: flex;
  justify-content: center;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-width: 104px;
}

.style__cont--right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.style__cont--title {
  line-height: 1;
  font-size: 32px;
  color: #fff;
  text-align: center;
}

.style__cont--text {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-align: left;
}


.stats__cont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 44px;
  width: 100%;
}

.stats__cont--left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.stats__cont--right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.stats__cont:first-of-type .stats__cont--left {
  border-top: none;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.stats__item-title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  text-align: center;
  margin: 0;
}

.stats__item-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.stats__item-number {
  font-weight: 600;
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  margin: 0;
}


.stats__item-unit {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.4em;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats__item-unit.min {
  font-size: 16px;
}

.stats__item-description {
  margin: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7em;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}


/* Interview Section */
.interview__cont {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.interview__cont--movie {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.interview__cont--movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__cont--movie .play-button {
  position: absolute;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 50px;
  color: rgba(17, 17, 27, 0.6);
}

.interview__cont--movie .play-button.is-play {
  display: none;
}

.interview__cont--box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.interview__cont--profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.interview__cont--name {
  font-size: 32px;
  line-height: 1;
}

.interview__cont--details {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.interview__cont--details dl {
  display: grid;
  grid-template-columns: auto 1fr;
}

.interview__cont--image {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 294 / 248);
  border-radius: 4px;
  overflow: hidden;
}

.interview__cont--image img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* **************************************************************
 member
*************************************************************** */
.member__item {
  position: relative;
  display: block;
  padding-top: 40px;
  margin: 50px 0;
}

.member__item:not(:first-of-type):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}

.member__item--img {
  margin-bottom: 24px;
}

.member__item--img img {
  /*width: 100%;*/
  width: 400px;
  height: auto;
}

.member__item--name {
  font-size: 32px;
  font-weight: normal;
}

.member__item--name .ruby {
  display: block;
  font-size: initial;
}

.member__item--role {
  line-height: 1;
}

.member__item--info {
  display: block;
  margin: 24px 0;
}

.member__item--summary {
  display: block;
  margin-top: 40px;
  line-height: 2;
}

/* **************************************************************
 information
*************************************************************** */
.information__cont {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.information__cont--box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 0;
  width: 100%;
}

.information__cont--box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}

.information__cont--box:first-of-type {
  padding-top: 0;
}

.information__cont--box:first-of-type::before {
  display: none;
}

.information__cont--label {
  font-size: 16px;
  line-height: 1;
  text-align: left;
  font-weight: 400;
}

.information__cont--value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
}

.information__cont--value .min {
  display: block;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
}


/* **************************************************************
 talk
*************************************************************** */
.talk__profile--list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 80px 0;
}

.talk__profile--item {
  display: flex;
  gap: 24px;
}

.talk__profile---thumb {
  width: 120px;
  flex-shrink: 0;
}

.talk__profile--cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.4;
}

.talk__profile--name {
  font-size: 32px;
  font-weight: normal;
}

.talk__content {
  position: relative;
  margin-top: 40px;
  padding-top: 10px;
}

.talk__content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}


.talk__tag--bk {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #72727B;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--bl {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #1C86FF;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--rd {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #F85453;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}



/* **************************************************************
 entry
*************************************************************** */

.entry__cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.entry__cont--box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.entry__cont--text {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}

.entry__cont--btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.entry__cont--button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background-color: #11111B;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;

}

.entry__cont--button.entry-line:hover {
  background-color: #06C755;
}

.entry__cont--button.entry-indeed:hover {
  background-color: #003a9b;
}




/* **************************************************************
 footer
*************************************************************** */
.footer {
  position: relative;
  padding: 55px 0;
  background-color: #11111B;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px 0;
}

.footer__logo {
  display: block;
  width: fit-content;
  min-width: 330px;
}

.footer__address {
  min-width: 330px;
  font-size: 14px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 330px;
  gap: 15px 0;
}

.footer__nav li {
  width: 50%;
  line-height: 1;
}

.footer__nav li.entry {
  width: 100%;
}

.footer__nav li.entry .btn {
  background-color: #fff;
  color: #11111B;
}

.footer__nav li.entry .btn:hover {
  background-color: #1C86FF;
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 25px;
}

.footer__sns li {
  width: 56px;
  height: 56px;
}

.footer__sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #4a4a52;
  border-radius: 8px;
  font-size: 30px;
}

.footer__sns li a:hover {
  background-color: #1C86FF;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
}


/* **************************************************************
*
* PC view
*
*************************************************************** */
@media (width > 1024px) {

  /* **************************************************************
 Utility Classes
*************************************************************** */
  .section {
    padding: 80px 0;
  }

  .inner {
    max-width: 648px;
    margin-left: auto;
    margin-right: 0;
  }

  .inner--btns {
    margin-top: 80px;
  }


  /* **************************************************************
 header
*************************************************************** */
  .header__menu {
    display: block;
  }

  .btn-menu {
    display: none;
  }

  .hamburger__menu--open {
    display: none;
  }



  /* **************************************************************
 splash
*************************************************************** */
  .splash__inner {
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 160px;
    translate: -50%;
    padding: 0 24px;
  }

  /* **************************************************************
   news
  *************************************************************** */
  .news__item {
    flex-direction: row;
  }

  .news__pager {
    flex-direction: row;
  }

  /* **************************************************************
   service
  *************************************************************** */
  .stats__cont {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats__cont--left {
    padding: 24px 30px 24px 0;
  }

  .stats__cont--right {
    padding: 24px 0 24px 30px;
  }

  .stats__cont--right::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 1px;
    height: calc(100% - 48px);
    background-color: rgba(255, 255, 255, 0.24);
  }

  .stats__cont:first-of-type .stats__cont--left,
  .stats__cont:first-of-type .stats__cont--right {

    border-top: none;
  }


  .stats__item-description {
    font-size: 12px;
  }


  /* **************************************************************
   interview
  *************************************************************** */
  .interview__cont {
    flex-direction: row;
  }

  .interview__cont--movie {
    width: 53%;
  }

  .interview__cont--movie:hover {
    cursor: pointer;
  }

  .interview__cont--movie .play-button {
    width: 95px;
    height: 95px;
    font-size: 40px;
    transition: all 0.2s ease-in-out;
  }

  .interview__cont--movie:hover .play-button {
    background-color: #fff;
    scale: 1.2;
  }


  /* **************************************************************
   member
  *************************************************************** */
  .member__item {
    margin: 80px 0;
  }

  /* **************************************************************
   talk
  *************************************************************** */
  .talk__profile---thumb {
    width: auto;
    flex-shrink: 0;
  }


  /* **************************************************************
 information
*************************************************************** */
  .information__cont--box {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .information__cont--label {
    min-width: 75px;
  }

  /* **************************************************************
 footer
*************************************************************** */
  .footer .inner {
    max-width: 1200px;
    margin-right: auto;
    padding: 0;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    justify-content: space-between;
  }

  .footer__nav {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
  }

  .footer__sns {
    margin: 0;
  }


}