@charset "UTF-8";
/*
Theme Name: magonoteHR
Theme URL: https://magonote-hr.com/
*/
html {
  scroll-behavior: smooth; /* スムーススクロール */
  scroll-padding-top: 105px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

h3 {
  margin: 0;
}
h1.header__inner-wrap-logo {
  margin: 0;
}

h2,
h3,
ul,
li,
p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.5s;
}
a:hover {
  opacity: 0.6;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.section_title {
  text-align: center;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1.444;
}
.section_title span {
  color: #ee3377;
  font-weight: 900;
  font-size: 0.3888em;
  display: block;
  text-transform: uppercase;
}

header .header__inner.pc {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.1058823529);
}
header .header__inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
header .header__inner-wrap-logo {
  flex-basis: 40%;
  max-width: 300px;
}
header .header__inner-wrap .menu {
  display: flex;
  flex-basis: 60%;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(10px, 2vw, 40px);
  min-width: 550px;
}
header .header__inner-wrap .menu__item {
  font-size: clamp(13px, 1.1vw, 16px);
}
header .header__inner-wrap .menu__item.contact a {
  display: block;
  padding: 1em 2.5em;
  background-color: #ee3377;
  border-radius: 26px;
  color: #fff;
  line-height: 1;
}

/*　ハンバーガーメニューボタン　*/
.sp-nav {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  top: 0;
  padding: 12px 0 5px;
  z-index: 100;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.1058823529);
}
.sp-nav .sp-nav-inner {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
.sp-nav__logo {
  width: 70%;
  left: 20px;
  top: 15px;
  z-index: 100;
  max-width: 300px;
}
.sp-nav__logo img {
  vertical-align: bottom;
}

.hamburger {
  display: block;
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #000;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(to right, #28c3d4, #2565c4);
  background: linear-gradient(47deg, #9745d7 -34.79%, #31bbfa 130.41%);
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
nav.globalMenuSp .menu__item.contact {
  background-color: #ee3377;
  color: #fff;
  padding: 1em 2.5em;
  border-radius: 26px;
  line-height: 1;
}
nav.globalMenuSp .menu__item.contact a {
  margin-bottom: 0;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 55%;
  font-size: 18px;
  font-weight: bold;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 3em;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  height: 100vh;
  padding: 20vh 0;
}

.fv {
  margin-bottom: 72px;
  padding-top: 105px;
}
@media (max-width: 768px) {
  .fv {
    padding-top: 80px;
  }
}
.fv__inner {
  position: relative;
  width: 95%;
  max-width: 2000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .fv__inner {
    padding-bottom: 120px;
    width: 100%;
  }
}
.fv__inner-text {
  position: absolute;
  top: 22%;
  left: 10%;
}
@media (max-width: 768px) {
  .fv__inner-text {
    bottom: 0;
    top: auto;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
  }
}
.fv__inner-text h2 {
  line-height: 2;
  font-size: clamp(26px, 4vw, 80px);
  font-weight: 900;
  text-shadow: 2px 2px 12px #fff;
}
@media (max-width: 768px) {
  .fv__inner-text h2 {
    line-height: 2.4;
  }
}
.fv__inner-text h2 .blue {
  color: #22bbff;
  padding: 10px 10px 12px;
  border: solid 1.5px #000;
  font-size: clamp(48px, 6vw, 100px);
  line-height: 1;
  display: inline-block;
  background-color: #fff;
  margin-right: 10px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .fv__inner-text h2 .blue {
    margin-right: 5px;
  }
}
.fv__inner-text h2 .pink {
  color: #ee3377;
  padding: 10px 10px 12px;
  border: solid 1.5px #000;
  font-size: clamp(48px, 6vw, 100px);
  line-height: 1;
  display: inline-block;
  background-color: #fff;
  margin-right: 10px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .fv__inner-text h2 .pink {
    margin-right: 5px;
  }
}
.fv__inner-text .img {
  width: 80%;
  margin-right: auto;
}
@media (max-width: 768px) {
  .fv__inner-text .img {
    width: 100%;
  }
}

.onayami__title {
  font-size: clamp(30px, 2.5vw, 36px);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}
.onayami__title span {
  color: #22bbff;
}
.onayami__wrap-pc {
  width: 90%;
  margin: 0 auto 120px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.onayami__wrap-pc .onayami__img {
  flex-basis: 12.5%;
}
.onayami__wrap-pc .onayami__text-left {
  flex-basis: 35.8%;
}
.onayami__wrap-pc .onayami__text-right {
  flex-basis: 35.8%;
}
.onayami__wrap-sp {
  width: 90%;
  margin: 0 auto;
  max-width: 300px;
}
.onayami__wrap-sp .onayami__img {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .onayami__wrap-sp .onayami__img {
    width: 40%;
  }
}
.onayami__wrap-sp .onayami__txt02,
.onayami__wrap-sp .onayami__txt03,
.onayami__wrap-sp .onayami__txt04 {
  margin-top: -10px;
}

.flow {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;
}
@media (max-width: 900px) {
  .flow {
    max-width: 400px;
    width: 80%;
    margin: 64px auto;
  }
}
.flow .section_title {
  margin-bottom: 80px;
}
.flow .flow__wrap {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 32px;
}
@media (max-width: 900px) {
  .flow .flow__wrap {
    flex-direction: column;
    margin-left: 15px;
  }
}
.flow .flow__wrap .flow__item {
  padding-top: 30px;
  flex-basis: 25%;
}
.flow .flow__wrap .flow__item:first-child .flow__item-inner .flow__item-text {
  -webkit-clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
          clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
}
@media (max-width: 900px) {
  .flow .flow__wrap .flow__item:first-child .flow__item-inner .flow__item-text {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
  }
}
@media (max-width: 900px) {
  .flow .flow__wrap .flow__item {
    margin-top: -50px;
  }
}
.flow .flow__wrap .flow__item-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.flow .flow__wrap .flow__item-inner .step {
  background-color: #2566c4;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  width: 64px;
  height: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  top: -16px;
  left: -43px;
  transform: translateY(-10%);
  z-index: 10;
}
@media (max-width: 900px) {
  .flow .flow__wrap .flow__item-inner .step {
    left: -28px;
  }
}
.flow .flow__wrap .flow__item-inner .step span {
  display: block;
  font-size: 1.5em;
}
.flow .flow__wrap .flow__item-inner .flow__item-text {
  padding: 2.2vw 0;
  background: linear-gradient(to right, #28c3d4, #2565c4);
  height: 70vw;
  max-height: 300px;
  -webkit-clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
          clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}
@media (max-width: 1200px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text {
    max-height: 360px;
  }
}
@media (max-width: 900px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text {
    height: 80vw;
    max-height: 250px;
    -webkit-clip-path: polygon(0% 0%, 50% 10%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
            clip-path: polygon(0% 0%, 50% 10%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
    padding-top: 40px;
  }
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 80%;
}
@media (max-width: 900px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text-inner {
    width: 90%;
    padding-left: 15px;
  }
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner h3 {
  font-size: clamp(20px, 1.66vw, 24px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: clamp(18px, 1.66vw, 20px);
}
@media (max-width: 1200px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text-inner h3 {
    margin-bottom: 5px;
  }
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner h3.db {
  margin-bottom: clamp(20px, 3.24vw, 51px);
}
@media (max-width: 1200px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text-inner h3.db {
    margin-bottom: 5px;
  }
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner h3 span {
  font-size: 0.7em;
  display: block;
  color: #fff;
  background-color: #ee3377;
  padding: 2px 0;
  border-radius: 35px;
  text-align: center;
  width: 70px;
  font-weight: normal;
  margin-bottom: 14px;
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner h3 span.hon-keiyaku {
  background-color: #fff;
  color: #ee3377;
  font-weight: bold;
}
@media (max-width: 768px) {
  .flow .flow__wrap .flow__item-inner .flow__item-text-inner h3 span {
    font-size: 14px;
  }
}
.flow .flow__wrap .flow__item-inner .flow__item-text-inner p {
  color: #fff;
  font-size: 14px;
  line-height: 1.571;
}

.gyoumu {
  padding: 135px 0;
}
@media (max-width: 768px) {
  .gyoumu {
    padding: 64px 0;
  }
}
.gyoumu .section_title {
  margin-bottom: 16px;
}
.gyoumu .gyoumu__text {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 32px;
}
.gyoumu__img {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.gyoumu__img .sp {
  max-width: 500px;
  margin: 0 auto;
}
.gyoumu__img img {
  width: 100%;
}
.gyoumu .more-info {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  width: 90%;
  margin: 0 auto;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  max-width: 500px;
  padding: 26px 20px 12px;
  position: relative;
}
@media (max-width: 768px) {
  .gyoumu .more-info {
    padding: 30px 10px 15px;
  }
}
.gyoumu .more-info__title {
  color: #fff;
  background-color: #ee3377;
  position: absolute;
  line-height: 1;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  width: 80%;
  max-width: 330px;
}
@media (max-width: 768px) {
  .gyoumu .more-info__title {
    padding: 10px;
  }
}
.gyoumu .more-info p {
  line-height: 1.8;
  font-size: clamp(14px, 1.11vw, 16px);
}
.gyoumu .btn-link {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 24px;
  background: #000000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.cta {
  background-color: #e7f6ff;
  padding: 80px 0 64px;
  text-align: center;
}
.cta__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.cta__inner .cta__caption {
  color: #ee3377;
  font-size: clamp(14px, 1.66vw, 24px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
}
.cta__inner .cta__caption::after {
  content: "|";
  transform: rotate(25deg);
  display: inline-block;
  margin-left: 10px;
}
.cta__inner .cta__caption::before {
  content: "|";
  transform: rotate(-25deg);
  display: inline-block;
  margin-right: 10px;
}
.cta__inner .cta__sub-text {
  font-size: clamp(20px, 1.66vw, 24px);
  text-align: center;
  font-weight: 600;
}
.cta__inner .cta__sub-text.lower {
  margin-top: -20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cta__inner .cta__sub-text.lower {
    margin-top: 0;
  }
}
.cta__inner .img {
  margin-top: -30px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta__inner .img {
    margin-top: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0.75em 0.7em 0.75em 1.45em;
  background-color: #f33d82;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  font-size: clamp(16px, 1.38vw, 20px);
}

/* 白い丸 */
.btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

/* ピンクの三角 */
.btn .triangle {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #f33d82; /* ピンク */
  position: absolute;
  left: 37%;
}

.point {
  padding: 88px 0 0;
}
.point__wrap .point__item {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  justify-content: space-between;
  margin-bottom: 136px;
  align-items: center;
}
@media (max-width: 768px) {
  .point__wrap .point__item {
    flex-direction: column;
    margin-bottom: 72px;
  }
}
.point__wrap .point__item:last-child {
  margin-bottom: 80px;
}
.point__wrap .point__item .point__img {
  flex-basis: 44%;
}
.point__wrap .point__item .point__text-wrap {
  flex-basis: 48%;
}
.point__wrap .point__item .point__text-wrap .point__sub-title {
  color: #ee3377;
  border-bottom: solid 1px #ee3377;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 768px) {
  .point__wrap .point__item .point__text-wrap .point__sub-title {
    padding-bottom: 1px;
    margin-bottom: 5px;
  }
}
.point__wrap .point__item .point__text-wrap .point__img-sp {
  margin-bottom: 24px;
}
.point__wrap .point__item.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .point__wrap .point__item.reverse {
    flex-direction: column;
  }
}
.point__wrap .point__item h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.2vw, 32px);
}
.point__wrap .point__item .point__text {
  line-height: 1.875;
}
.point__wrap .point__item .point__text .em {
  color: #ee3377;
  font-weight: bold;
}

.support {
  background-color: #e7f6ff;
  padding: 80px 0 48px;
}
.support .section_title {
  margin-bottom: 40px;
}
.support .support__wrap {
  max-width: 1200px;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 64px;
}
@media (max-width: 768px) {
  .support .support__wrap {
    flex-direction: column;
    row-gap: 32px;
  }
}
.support .support__wrap .support__item {
  flex-basis: 44.74%;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.388vw, 20px);
  gap: 24px;
}
.support .support__wrap .support__item span {
  font-weight: bold;
  font-size: 1.1em;
}
.support .support__wrap .support__item .img {
  flex-basis: 28.35%;
  max-width: 131px;
}
@media (max-width: 768px) {
  .support .support__wrap .support__item .img {
    max-width: 70px;
  }
}
.support .support__wrap .support__item .support_item-text {
  flex-basis: 67%;
}
@media (max-width: 768px) {
  .support .support__wrap .support__item .support_item-text {
    line-height: 1.5;
  }
}
.support .more-info {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
}
.support .btn-link {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: #00bcd4;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.support .btn-link:hover {
  background: #0097a7;
}

.service {
  padding-bottom: 40px;
}
.service .img {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .service .img {
    width: 98%;
  }
}
.service .img .section_title {
  position: absolute;
  left: 5%;
  top: 5%;
}
@media (max-width: 768px) {
  .service .img .section_title {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 32px;
  }
}
.service .img .service-sp {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.service .img img.sp {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.faq {
  background-color: #e7f6ff;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}
.faq .section_title {
  margin-bottom: 40px;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #00bcd4; /* ← 背景をitemに付与 */
}

.accordion-header {
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  background: transparent; /* ← 背景は親に任せる */
  border: none; /* ボタンのデフォルト枠を消す */
  width: 100%;
  text-align: left;
  font-size: clamp(16px, 1.3vw, 20px);
}
@media (max-width: 768px) {
  .accordion-header {
    padding: 12px 10px 12px 16px;
  }
}

.accordion-header .icon {
  font-size: 40px;
  font-weight: 100;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .accordion-header .icon {
    margin-left: 5px;
    font-size: 25px;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 20px; /* ← デフォルトでpaddingゼロにする */
  line-height: 2;
  font-size: clamp(14px, 1.1vw, 16px);
}
@media (max-width: 768px) {
  .accordion-content {
    line-height: 1.7;
  }
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* 十分大きくしておく */
  padding: 2em 20px; /* 開いたときだけ余白 */
}

.company {
  padding: 80px 0;
}
.company .section_title {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .company .section_title {
    margin-bottom: 40px;
  }
}
.company .company__wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .company .company__wrap {
    flex-direction: column-reverse;
  }
}
.company .company__wrap .company__info {
  font-family: sans-serif;
  font-size: 16px;
  flex-basis: 40.5%;
  font-weight: bold;
}
@media (max-width: 768px) {
  .company .company__wrap .company__info {
    margin-top: 32px;
    font-size: 14px;
  }
}
.company .company__wrap .company__info dl {
  margin: 0;
  padding: 0;
}
.company .company__wrap .company__info .row {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 16px 0;
}
.company .company__wrap .company__info dt {
  font-weight: bold;
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .company .company__wrap .company__info dt {
    flex-basis: 26%;
  }
}
.company .company__wrap .company__info dd {
  margin: 0;
  flex: 1;
}
.company .company__wrap .company__map {
  flex-basis: 50%;
}
@media (max-width: 768px) {
  .company .company__wrap .company__map iframe {
    height: 300px;
  }
}

/* .copy-right {
  text-align: center;
  margin-bottom: 32px;
} */

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.footer-bottom .footer-links,.copy-right {
    font-size: 13px;
    color: #666;
  }

  .footer-links a {
    color: #666;
    text-decoration: none;
  }
@media (max-width: 768px) {
  .footer-bottom {
    display: block;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */