.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #474747;
  background-color: #F5F5F5;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.header {
  position: absolute;
  top: 4vw;
  left: 0;
  width: 100%;
  z-index: 7;
}
@media screen and (max-width: 600px) {
  .header {
    top: 12px;
  }
}

.header_wrap {
  width: 90%;
  margin: 0 auto;
}

.header_logo {
  width: 8vw;
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 48px;
  }
}

.header_hamburger_menu {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .header_hamburger_menu {
    top: 12px;
    right: 12px;
  }
}

.menu_txt {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .menu_txt {
    font-size: 12px;
  }
}

.mask {
  padding: 120px 0;
  display: block;
  position: fixed;
  opacity: 0;
  top: 0;
  right: -1000px;
  height: 100vh;
  max-width: 500px;
  width: 100%;
  background: #1C4270;
  z-index: -4;
  transition: all 0.5s;
}

.mask .header_link {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.mask .header_link a {
  font-size: 18px;
  color: #FFF;
  font-weight: 600;
  display: block;
  margin-bottom: 40px;
  transform: all 0.3s;
}
.mask .header_link a:hover {
  opacity: 0.6;
}

.open.mask {
  opacity: 1;
  z-index: 99;
  right: 0;
}

.toggle_btn {
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background-color: #FFF;
  transition: all 0.5s;
}
@media screen and (max-width: 600px) {
  .toggle_btn span {
    height: 3px;
  }
}
.toggle_btn span:nth-child(1) {
  top: 4px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  top: 16px;
  width: 100%;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
  width: 100%;
}

.open .toggle_btn span {
  background-color: #FFF;
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 14px;
  transform: rotate(-45deg);
}

.opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  animation: fadein 1.6s 1.2s ease forwards;
}
.opening img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
}

@keyframes fadein {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
/*--------------- mv ---------------*/
.mv {
  position: relative;
}

.mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .mv_bg {
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .mv_bg_pc {
    display: none;
  }
}

.mv_bg_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .mv_bg_sp {
    display: block;
  }
}

.mv_txt {
  width: 41vw;
  position: absolute;
  top: 18vw;
  left: 7vw;
  z-index: 6;
}
@media screen and (max-width: 600px) {
  .mv_txt {
    width: 96%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.mv_txt_img {
  position: relative;
}
.mv_txt_img:nth-child(3) {
  width: 70%;
}

.mv_txt_img:nth-child(1) {
  width: 68%;
  margin-bottom: 2%;
}

.mv_txt_img:nth-child(1) img {
  animation: 1s 2.2s mv_txt ease forwards;
  opacity: 0;
}

@keyframes mv_txt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv_txt_img:nth-child(2) {
  margin-bottom: 8%;
}

.mv_txt_img:nth-child(2) img {
  animation: 1s 2.4s mv_txt ease forwards;
  opacity: 0;
}

.mv_txt_img:nth-child(3) img {
  animation: 1s 2.6s mv_txt ease forwards;
  opacity: 0;
}

.mv_txt_img:nth-child(1) {
  position: relative;
  color: transparent;
}
.mv_txt_img:nth-child(1)::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 100%;
  bottom: 0%;
  left: 0%;
  background: #fff;
}
.mv_txt_img:nth-child(1).active {
  animation-name: kf_c01a;
  animation-duration: 0s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.mv_txt_img:nth-child(1).active::before {
  animation-name: kf_c01b;
  animation-duration: 0.8s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.mv_txt_img:nth-child(2) {
  position: relative;
  color: transparent;
}
.mv_txt_img:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 100%;
  bottom: 0%;
  left: 0%;
  background: #fff;
}
.mv_txt_img:nth-child(2).active {
  animation-name: kf_c01a;
  animation-duration: 0s;
  animation-delay: 2.2s;
  animation-fill-mode: forwards;
}
.mv_txt_img:nth-child(2).active::before {
  animation-name: kf_c01b;
  animation-duration: 0.8s;
  animation-delay: 2.2s;
  animation-fill-mode: forwards;
}

@keyframes kf_c01a {
  100% {
    color: inherit;
  }
}
@keyframes kf_c01b {
  50% {
    left: 0%;
    right: 0%;
  }
  100% {
    left: 100%;
    right: 0%;
  }
}
.mv_img {
  width: 54.4%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .mv_img {
    width: 100%;
  }
}

.mv_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  width: 13vw;
}
@media screen and (max-width: 600px) {
  .mv_bottom {
    width: 24vw;
  }
}

/*--------------- vision ---------------*/
.vision {
  position: relative;
  background: radial-gradient(circle at 50%, #46b2ff 0%, #0766da 70%);
  padding: calc(10vw + 60px) 0 140px;
  width: 100%;
  overflow: hidden;
}

.vision_heading {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.vision_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .vision_heading span {
    font-size: 14px;
  }
}
.vision_heading h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .vision_heading h2 {
    font-size: 40px;
  }
}

.vision_top {
  margin-bottom: 80px;
}

.vision_top h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 800px) {
  .vision_top h3 {
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
  }
}

.vision_top p {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .vision_top p {
    font-size: 16px;
  }
}

.vision_item {
  position: relative;
  padding: 76px 25vw 76px 10vw;
  width: 76%;
}
@media screen and (max-width: 1200px) {
  .vision_item {
    padding: 76px 180px 76px 60px;
  }
}
@media screen and (max-width: 800px) {
  .vision_item {
    padding: 40px 24px 120px;
    width: 96%;
  }
}

.vision_img {
  position: absolute;
  width: 460px;
  top: 60px;
  right: -200px;
  z-index: 4;
}
@media screen and (max-width: 1200px) {
  .vision_img {
    width: 320px;
    right: -160px;
  }
}
@media screen and (max-width: 800px) {
  .vision_img {
    width: 240px;
    right: 24px;
    bottom: -60px;
    top: auto;
  }
}

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

.vision_item:not(:last-child) {
  margin-bottom: 3.75vw;
}
@media screen and (max-width: 800px) {
  .vision_item:not(:last-child) {
    margin-bottom: 80px;
  }
}

.vision_item:nth-child(odd) {
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
}

.vision_item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
}
@media screen and (max-width: 800px) {
  .vision_item:nth-child(even) {
    padding: 40px 24px;
    margin-bottom: 24px;
  }
}

.vision_bg {
  position: absolute;
  width: 325px;
  top: 0;
  right: 0;
  opacity: 0.16;
}
@media screen and (max-width: 800px) {
  .vision_bg {
    width: 100px;
  }
}

.vision_logo {
  position: absolute;
  width: 250px;
  opacity: 0.2;
  top: 320px;
  left: 0;
  transform: rotate(-11deg);
}
@media screen and (max-width: 800px) {
  .vision_logo {
    width: 90px;
    top: 400px;
  }
}

/*--------------- service ---------------*/
.service {
  padding: 240px 0 120px;
}
@media screen and (max-width: 800px) {
  .service {
    padding: 80px 0;
  }
}

.service_wrap {
  background-color: #fff;
  width: 84%;
  margin: 0 auto;
  padding: 4px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.04);
  padding: 65px;
}
@media screen and (max-width: 800px) {
  .service_wrap {
    width: 96%;
  }
}
@media screen and (max-width: 600px) {
  .service_wrap {
    padding: 40px 16px;
  }
}

.service_heading {
  color: #46B2FF;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
.service_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .service_heading span {
    font-size: 14px;
  }
}
.service_heading h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .service_heading h2 {
    font-size: 40px;
  }
}

.service_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .service_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .service_inner img {
    max-width: 420px;
    margin: 0 auto;
  }
}

.service_txt {
  line-height: 1.8;
  font-weight: 500;
}
.service_txt p {
  margin-bottom: 32px;
}

.service_item h3 {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .service_item h3 {
    font-size: 20px;
  }
}

.service_item:nth-child(1) h3 {
  color: #0766DA;
}

.service_item:nth-child(2) h3 {
  color: #FD8931;
}

.service_item:nth-child(3) h3 {
  color: #2CAF2C;
}

/*--------------- message ---------------*/
.message {
  position: relative;
  padding-bottom: 140px;
}
@media screen and (max-width: 800px) {
  .message {
    padding-bottom: 80px;
  }
}

.message_bg {
  position: absolute;
  width: 26vw;
  right: 0;
  top: 22%;
}
@media screen and (max-width: 600px) {
  .message_bg {
    width: 60%;
    top: 60%;
  }
}

.message_wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  width: 70%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1200px) {
  .message_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 800px) {
  .message_wrap {
    width: 92%;
  }
}
@media screen and (max-width: 600px) {
  .message_wrap {
    width: 96%;
  }
}

.message_heading {
  color: #0766DA;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .message_heading {
    margin-bottom: 24px;
  }
}
.message_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .message_heading span {
    font-size: 14px;
  }
}
.message_heading h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .message_heading h2 {
    font-size: 40px;
  }
}

.message_txt p {
  line-height: 2;
}
.message_txt p:last-child {
  margin-top: 48px;
}

.message_top h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .message_top h3 {
    font-size: 20px;
  }
}

.message_top span {
  font-size: 18px;
  display: block;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .message_top span {
    margin-bottom: 24px;
  }
}

.message_img {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .message_img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .message_img {
    grid-template-columns: 1fr;
  }
}

.message_img img:nth-child(1) {
  width: 64%;
  margin: 0 auto 60px;
  border-radius: 8px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1200px) {
  .message_img img:nth-child(1) {
    width: 72%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 600px) {
  .message_img img:nth-child(1) {
    display: none;
  }
}

.message_txt_img {
  display: none;
}
@media screen and (max-width: 600px) {
  .message_txt_img {
    display: block;
    width: 100%;
    margin: 0 auto 24px;
    border-radius: 8px;
  }
}

.message_bottom {
  display: grid;
  grid-template-columns: 22vw 1fr;
  gap: 7vw;
  width: 72%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .message_bottom {
    gap: 40px;
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .message_bottom {
    display: block;
    width: 92%;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .message_bottom {
    width: 96%;
  }
}

.message_bottom h3 {
  font-size: 18px;
  display: block;
  margin-bottom: 40px;
}

.message_bottom p {
  line-height: 2;
}

@media screen and (max-width: 800px) {
  .message_bottom img {
    position: absolute;
    width: 120px;
    top: -140px;
  }
}
@media screen and (max-width: 600px) {
  .message_bottom img {
    width: 90px;
    top: -110px;
  }
}

/*--------------- about ---------------*/
.about {
  background-color: #fff;
}

.about_wrap {
  padding: 80px 0 120px;
  width: 660px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .about_wrap {
    width: 92%;
    padding: 60px 0 80px;
  }
}

.about_heading {
  color: #46B2FF;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .about_heading {
    margin: 0 auto 40px;
  }
}
.about_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .about_heading span {
    font-size: 14px;
  }
}
.about_heading h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .about_heading h2 {
    font-size: 40px;
  }
}

.about_item {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 174px 1fr;
  padding-bottom: 14px;
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (max-width: 600px) {
  .about_item {
    grid-template-columns: 1fr;
  }
}
.about_item:not(:last-child) {
  margin-bottom: 14px;
}

.about_item h3 {
  font-weight: 600;
}

/*--------------- contact ---------------*/
.contact {
  position: relative;
  background: radial-gradient(circle at 50%, #46b2ff 0%, #0766da 70%);
  width: 100%;
  overflow: hidden;
  padding: 120px 0 160px;
}
@media screen and (max-width: 800px) {
  .contact {
    padding: 60px 0 80px;
  }
}

.contact_heading {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.contact_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .contact_heading span {
    font-size: 14px;
  }
}
.contact_heading h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .contact_heading h2 {
    font-size: 40px;
  }
}

.contact_txt {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 68px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .contact_txt {
    margin-bottom: 40px;
  }
}

.contact_content {
  background-color: #fff;
  width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 60px 0;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 800px) {
  .contact_content {
    width: 96%;
    padding: 40px 16px;
  }
}

.contact_top {
  width: 300px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 600px) {
  .contact_top {
    width: 240px;
    margin: 0 auto 24px;
  }
}

.contact_list {
  width: 640px;
  margin: 0 auto 40px;
  padding: 32px 0;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .contact_list {
    width: 100%;
  }
}

.contact_item {
  display: grid;
  grid-template-columns: 166px 1fr;
}
@media screen and (max-width: 600px) {
  .contact_item {
    grid-template-columns: 1fr;
  }
}
.contact_item:not(:last-child) {
  margin-bottom: 24px;
}

.contact_item h3 {
  font-weight: 600;
  padding: 12px 0;
}
@media screen and (max-width: 600px) {
  .contact_item h3 {
    padding: 0 0 8px;
  }
}

.contact_item input,
.contact_item textarea {
  border: none;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 12px 16px;
}
.contact_item input::-moz-placeholder, .contact_item textarea::-moz-placeholder {
  color: #B5B5B5;
}
.contact_item input::placeholder,
.contact_item textarea::placeholder {
  color: #B5B5B5;
}

.contact_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  background-color: #46B2FF;
  padding: 18px 68px;
  border-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    font-size: 18px;
    padding: 14px 40px;
  }
}

.contact_back_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  background-color: #46B2FF;
  padding: 18px 68px;
  border-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .contact_back_btn {
    font-size: 18px;
    padding: 14px 40px;
  }
}

.contact_inner {
  position: relative;
  overflow: hidden;
}

.contact_confirm,
.contact_thanks {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  transition: all 0.5s ease;
  opacity: 0;
}

.contact_confirm.active,
.contact_thanks.active {
  position: relative;
  opacity: 1;
  left: 0;
}

.contact_confirm.finish,
.contact_thanks.finish {
  position: absolute;
  opacity: 1;
  left: -100%;
}

.contact_form {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  transition: all 0.5s ease;
  opacity: 0;
}

.contact_form.active {
  position: relative;
  opacity: 1;
  left: 0;
}

.contact_form.finish {
  position: absolute;
  opacity: 1;
  left: -100%;
}

.contact_message {
  display: block;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}

.contact_logo {
  width: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .contact_logo {
    width: 90px;
  }
}

/*--------------- footer ---------------*/
.footer {
  padding: 72px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 40px 0 60px;
  }
}
.footer small {
  font-weight: 300;
  display: block;
  margin-left: auto;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 800px) {
  .footer small {
    font-size: 12px;
    margin: 0 auto;
  }
}

.footer_wrap {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .footer_wrap {
    width: 96%;
  }
}

.footer_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 72px;
}
@media screen and (max-width: 1200px) {
  .footer_inner {
    flex-direction: column;
    gap: 40px;
  }
}

.footer_left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.footer_logo {
  width: 85px;
}
@media screen and (max-width: 800px) {
  .footer_logo {
    width: 60px;
  }
}

.footer_name {
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  .footer_name {
    font-size: 20px;
  }
}

.footer_right {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .footer_right {
    flex-wrap: wrap;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    row-gap: 24px;
  }
}

.footer_right a {
  transition: all 0.3s;
}
.footer_right a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=index.css.map */