@charset "UTF-8";
html, body {
  font-family: "Montserrat", "Zen Kaku Gothic New", "游ゴシック", "メイリオ", sans-serif;
}

.header_recruit_wrap {
  padding: 0.5rem 1rem;
  /* スクロール時に固定表示するための設定 */
  position: fixed; /* ヘッダーを画面上部に固定 */
  top: 0; /* 画面の一番上からの距離 */
  width: 100%; /* 幅を画面いっぱいに */
  z-index: 1000; /* 他の要素より手前に表示 */
  background-color: rgba(237, 237, 237, 0.7); /* 半透明の白色背景*/
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加して浮いているように見せる */
  /* transitionプロパティは不要になりますが、念のため残しておくことも可能です */
  /* transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out; */
  /* 背景をぼかす効果*/
  -webkit-backdrop-filter: blur(10px); /* Safari対応*/
  backdrop-filter: blur(10px); /* 標準プロパティ*/
}
.header_recruit_wrap .header_recruit_logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 420px) {
  .header_recruit_wrap .header_recruit_logo_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
}
.header_recruit_wrap .header_recruit_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header_recruit_wrap .header_recruit_logo {
    height: 40px;
  }
}
.header_recruit_wrap .header_recruit_logo img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .header_recruit_wrap .header_recruit_logo img {
    width: 120px;
  }
}
.header_recruit_wrap .recruit_sublogo {
  padding-top: 9px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .header_recruit_wrap .recruit_sublogo {
    padding-top: 0px;
    font-size: 0.8rem;
  }
}

.recruit_nav ul {
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .recruit_nav ul {
    display: block;
  }
}
.recruit_nav ul li .nav_link {
  position: relative;
  font-size: 1rem;
}
@media screen and (max-width: 1366px) {
  .recruit_nav ul li .nav_link {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 1280px) {
  .recruit_nav ul li .nav_link {
    display: none;
  }
}
.recruit_nav ul li .nav_link::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--black);
}
.recruit_nav ul li .nav_link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.recruit_nav .nav_apply_btn {
  display: block;
  width: 180px;
  height: 60px;
  position: relative;
  background: #FFE628;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 420px) {
  .recruit_nav .nav_apply_btn {
    width: 160px;
    height: 48px;
    font-size: 0.95rem;
  }
}
.recruit_nav .nav_apply_btn::before {
  content: "";
  position: absolute;
  background-color: var(--black);
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.recruit_nav .nav_apply_btn::after {
  content: "";
  position: absolute;
  background-color: var(--black);
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.recruit_nav .nav_apply_btn > span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.recruit_nav .nav_apply_btn > span::before {
  content: "";
  position: absolute;
  background-color: var(--black);
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.recruit_nav .nav_apply_btn > span::after {
  content: "";
  position: absolute;
  background-color: var(--black);
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.recruit_nav .nav_apply_btn > span > span {
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit_nav .nav_apply_btn:hover {
  background-color: #FFF49E;
}
.recruit_nav .nav_apply_btn:hover::before, .recruit_nav .nav_apply_btn:hover::after {
  width: 100%;
}
.recruit_nav .nav_apply_btn:hover > span::before, .recruit_nav .nav_apply_btn:hover > span::after {
  height: 100%;
}

.main_inner,
.footer_inner {
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .main_inner,
  .footer_inner {
    max-width: 1240px;
  }
}
@media screen and (max-width: 1280px) {
  .main_inner,
  .footer_inner {
    max-width: 100%;
    margin: 0 2rem;
  }
}

.top_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--white);
  margin-bottom: 4rem;
  margin-top: 76px;
}
@media screen and (max-width: 1280px) {
  .top_title_wrap {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top_title_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 68px;
  }
}
.top_title_wrap .top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top_title_wrap .top_title {
    width: 100%;
    padding: 4.2rem 0;
  }
}
.top_title_wrap .title {
  padding: 0rem 7rem;
  font-size: 5rem;
  font-weight: 500;
}
@media screen and (max-width: 1680px) {
  .top_title_wrap .title {
    font-size: 4rem;
    padding: 0rem 0rem 0rem 4rem;
  }
}
@media screen and (max-width: 1366px) {
  .top_title_wrap .title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .top_title_wrap .title {
    font-size: 3.6rem;
    padding: 0rem 0rem 0rem 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .top_title_wrap .title {
    font-size: 3rem;
    padding: 0rem 0rem 0rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top_title_wrap .title {
    font-size: 2.8rem;
    padding: 0rem 0rem 0rem 0rem;
    min-width: 100px;
    margin: 0 auto;
  }
}
.top_title_wrap .top_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top_title_wrap .top_image {
    width: 100%;
    height: 30vh;
  }
}
.top_title_wrap .top_image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top_title_wrap .top_image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.recruit_section {
  margin-bottom: 5rem;
}

.section_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  gap: 5rem;
}
@media screen and (max-width: 1280px) {
  .section_contents {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .section_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .section_contents.kachikan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.section_title {
  margin-bottom: 3rem;
  padding-top: 7rem;
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 2rem;
  }
}

.text_wrap {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .text_wrap {
    width: 100%;
  }
}
.text_wrap .section_second_title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.text_wrap p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

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

.grid_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .grid_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid_item,
.grid_item--wide {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--white);
  padding: 1.5rem;
}

/* 4行目 左＋中央の2マス分を結合 */
.grid_item--wide {
  grid-column: span 2;
}
@media screen and (max-width: 1024px) {
  .grid_item--wide {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
}
@media screen and (max-width: 768px) {
  .grid_item--wide {
    grid-column: span 1;
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}

.data_inner_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .data_inner_wrap.uriage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .data_inner_wrap.uriage img {
    width: 100%;
    padding: 0.5rem 0px;
  }
}
.data_inner_wrap.danjyo {
  margin-top: 2rem;
}
.data_inner_wrap.fashion_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.data_only_wrap .title_woman {
  font-weight: 500;
}

.data {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 1366px) {
  .data {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .data {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .data {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 768px) {
  .data {
    font-size: 4rem;
  }
}

.data_mini {
  font-size: 4rem;
  font-weight: 300;
}
@media screen and (max-width: 1366px) {
  .data_mini {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .data_mini {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .data_mini {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .data_mini {
    font-size: 3rem;
  }
}

.unit {
  font-size: 2.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1366px) {
  .unit {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .unit {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .unit {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .unit {
    font-size: 2rem;
  }
}

.grid_item_img {
  width: 160px;
}
@media screen and (max-width: 1280px) {
  .grid_item_img {
    width: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .grid_item_img {
    width: 100px;
  }
}
.grid_item_img.clock {
  width: 120px;
}
@media screen and (max-width: 1280px) {
  .grid_item_img.clock {
    width: 80px;
  }
}
.grid_item_img.holiday {
  width: 150px;
}
@media screen and (max-width: 1280px) {
  .grid_item_img.holiday {
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .grid_item_img.holiday {
    width: 90px;
  }
}
.grid_item_img.baby {
  width: 120px;
}
@media screen and (max-width: 1280px) {
  .grid_item_img.baby {
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .grid_item_img.baby {
    width: 80px;
  }
}
.grid_item_img.salse {
  width: 60%;
}
.grid_item_img.fashion {
  width: 100%;
}

.annotation {
  color: var(--gray);
}

.danjyo_indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
}
.danjyo_indicator .man {
  padding: 8px;
  background-color: #FFE735;
  width: 42%;
  border-radius: 1.5rem 0 0 1.5rem;
}
.danjyo_indicator .woman {
  padding: 8px;
  background-color: #FFF49E;
  width: 58%;
  border-radius: 0 1.5rem 1.5rem 0;
}

.annual_holiday_copy {
  width: 160px;
  margin: 3.5rem 0;
  padding: 4px;
  border: 2px solid #FFE735;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .annual_holiday_copy {
    width: 140px;
    font-size: 0.7rem;
  }
}
.annual_holiday_copy span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 1280px) {
  .annual_holiday_copy span {
    font-size: 1rem;
  }
}

.school_list {
  margin-top: 1rem;
}
.school_list li {
  display: inline-block;
  margin: 0 2px;
}

.accordion {
  width: 100%;
  max-width: 600px;
  margin: 2em auto;
  font-family: sans-serif;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.accordion input[type=checkbox] {
  display: none;
}
.accordion label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  background-color: #FFF49E;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 4px 4px 0 0;
}
.accordion label .title {
  font-size: 1em;
}
.accordion label .icon {
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.accordion label:hover {
  background-color: #fce96a;
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #fff;
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.accordion .content p {
  margin: 1em;
  line-height: 1.6;
}
.accordion input[type=checkbox]:checked + label .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.accordion input[type=checkbox]:checked + label + .content {
  max-height: 500px;
  padding: 1em;
}

.process_wrap {
  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;
  width: 30%;
}
@media screen and (max-width: 1280px) {
  .process_wrap {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .process_wrap {
    width: 100%;
  }
}
.process_wrap .process_item {
  width: 100%;
  min-width: 200px;
  background-color: #ffffff;
  border-radius: 4px;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.process_wrap .process_item::after {
  content: "▼";
  font-size: 1.2rem;
  color: #888;
  position: absolute;
  bottom: -1.85rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.process_wrap .process_item:last-child {
  margin-bottom: 0;
}
.process_wrap .process_item:last-child::after {
  display: none;
}

.process_note {
  padding-left: 0;
  margin: 0;
}
.process_note li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.process_note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: var(--black);
  border-radius: 50%;
}

@media (max-width: 480px) {
  .process_wrap .process_item {
    width: 100%;
  }
}
.section_button_wrap {
  background-color: #fff;
  padding: 6rem 1rem;
  text-align: center;
  /* アニメーション背景用の追加 */
  background: -webkit-gradient(linear, right top, left top, from(#ffbe31), color-stop(#f8eed9), color-stop(#39b6f0), color-stop(#e2edf1), to(#f75090));
  background: linear-gradient(270deg, #ffbe31, #f8eed9, #39b6f0, #e2edf1, #f75090);
  background-size: 800% 800%;
  -webkit-animation: gradientAnimation 20s ease-in-out infinite;
          animation: gradientAnimation 20s ease-in-out infinite;
  /* 背景をゆっくりと動かすアニメーション */
}
@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.section_button_wrap .section_button_inner {
  width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .section_button_wrap .section_button_inner {
    width: 1240px;
  }
}
@media screen and (max-width: 1280px) {
  .section_button_wrap .section_button_inner {
    width: 100%;
  }
}
.section_button_wrap .recruit_inner {
  max-width: 800px;
  margin: 0 auto;
}
.section_button_wrap .recruit_title {
  margin-bottom: 3rem;
  font-size: 2.4rem;
}
.section_button_wrap .recruit_description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.section_button_wrap .recruit_note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #444;
}

.recruit_button {
  position: relative;
  display: inline-block;
  background-color: #FFE735;
  overflow: hidden;
  width: 100%;
  height: 100px;
  max-width: 400px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.recruit_button::before, .recruit_button::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: black;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit_button::before {
  top: 0;
  left: 0;
}
.recruit_button::after {
  bottom: 0;
  right: 0;
}
.recruit_button > span {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.recruit_button > span::before, .recruit_button > span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: black;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit_button > span::before {
  top: 0;
  left: 0;
}
.recruit_button > span::after {
  bottom: 0;
  right: 0;
}
.recruit_button > span > span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit_button:hover {
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05);
  background-color: #FFF49E;
}
.recruit_button:hover::before, .recruit_button:hover::after {
  width: 100%;
}
.recruit_button:hover > span::before,
.recruit_button:hover > span::after {
  height: 100%;
}

.contact_contents {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 0;
}

footer {
  padding: 4rem 0rem;
  color: var(--white);
  background-color: var(--black);
}
@media screen and (max-width: 1680px) {
  footer {
    margin-top: 0;
  }
}
footer .footer_title img {
  width: 260px;
}

.footer_title .footer_sitetitle {
  display: inline-block;
  padding-top: 0.5rem;
}

.sns_list {
  margin-top: 1rem;
}
.sns_list li {
  margin: 8px 0px;
}
.sns_list li a.corp_site img {
  margin-left: 8px;
}
.sns_list li a.tiktok img {
  margin-right: 8px;
}
.sns_list li a img {
  width: 1rem;
  height: 1rem;
}

.footer_icon_boshu_blank {
  width: 1rem;
  margin-left: 8px;
}

.footer_nav_link {
  position: relative;
  font-size: 16px;
}
.footer_nav_link::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--white);
}
.footer_nav_link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

footer .footer_link_list .footer_link_innerlist_01 li a {
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .br {
    display: block;
  }
}