@charset "UTF-8";

/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
  /*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
  font-size: 16px;
  line-height: 1.9;
  color: #4D4D4D;
  background-color: #FDFBF8;
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", "Meiryo UI", "sans-serif";
  font-weight: 400;
  letter-spacing: 0.1rem;
  overflow-x: hidden;
}

body.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
  /* 0.5秒でふわっと */
}

body.fade-in.show {
  opacity: 1;
}

:root {
  --light-beige: #FDFBF8;
  --pink-red: #E6B3B3;
  --light-blue: #9EC5E2;
}

/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/
#header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 6.5rem 2.5rem 4rem;
  position: absolute;
  /* 親要素 #mainvisual を基準に配置 */
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  box-sizing: border-box;
}

.fv-container-sp {
  display: none;
}

.only-sp {
  display: none;
}

.only-ssp {
  display: none;
}

.header_left {
  display: flex;
  align-items: center;
  /* ロゴとテキストを垂直方向の中央に配置 */
}

.header_right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo img {
  display: block;
  width: 20rem;
  height: auto;
}

.site-name {
  display: block;
  color: #767676;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.2rem;
}

.header-cta--buttons {
  display: flex;
  /* 右側の要素を横並びにする */
  align-items: center;
  gap: 1.5rem;
}

.sp-cta-buttons {
  display: none;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}


.header-cta--casual {
  /* カジュアル面談ボタン */
  display: block;
  color: #767676;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01rem;
  text-align: center;
  min-width: 120px;
  min-height: 44px;
  padding: 0.7em 1.25em;
  border-radius: 90px;
  background-color: #fff;
  border: 4px solid #E6B3B3;
  text-decoration: none;
}

.header-cta--casual:hover {
  background-color: #876868;
  color: #fff;
  border-color: transparent;
}

.header-cta--entry {
  /* エントリーボタン */
  display: block;
  color: #767676;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.75em 1.25em;
  min-width: 120px;
  min-height: 44px;
  border-radius: 90px;
  background-color: #fff;
  border: 4px solid #9EC5E2;
  text-decoration: none;
}

.header-cta--entry:hover {
  background-color: #5B7284;
  color: #FFF;
  border-color: transparent;
}


/* メニューのスタイル */
.menu {
  position: absolute;
  right: -100%;
  /* 初期状態では画面の外に隠れている */
  width: 300px;
  height: 100vh;
  height: 100dvh;
  color: #4D4D4D;
  transition: right 0.3s ease;
  /* スライドインのアニメーション */
  box-sizing: border-box;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
  top: 3rem;
  opacity: 1;
  visibility: visible;
}

/* ボタンのスタイル */
.hamburger {
  position: absolute;
  right: 4rem;
  top: 2.5rem;
  cursor: pointer;
  z-index: 200;
  margin-bottom: 1rem;
}

.menu-label {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 700;
  color: #4D4D4D;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.menu-label .close-text {
  display: none;
}

/* activeクラスが付いたときに「MENU」を非表示に */
.hamburger.active .menu-label .menu-text {
  display: none;
}

/* activeクラスが付いたときに「CLOSE」を表示 */
.hamburger.active .menu-label .close-text {
  display: block;
}

.hamburger-icon {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  z-index: 10;
}

.hamburger-icon span {
  display: block;
  height: 0.11rem;
  width: 100%;
  background-color: #4D4D4D;
  margin: 0.6rem 0;
  transition: 0.4s;
}

.hamburger-icon span:nth-child(2) {
  background-color: #d99999;
  opacity: 1;
  transform: none;
}

/* バツ印に変化するスタイル */
.hamburger.active .hamburger-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-icon span:nth-child(2) {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  opacity: 0.7;
}

.hamburger.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  color: #4D4D4D;
  padding-top: 5.5rem;
}

.menu li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu li.show {
  opacity: 1;
  transform: translateY(0);
}

.menu li a {
  font-size: 0.8rem;
  letter-spacing: 0.8;
  font-weight: 600;
  color: #4D4D4D;
  text-decoration: none;
  display: inline-block;
  background-color: #FDFBF8;
  padding: 0.8rem 0.4rem 0.8rem 1.2rem;
  margin: 0.2rem 0;
  border: 2px solid #E6B3B3;
  border-right-color: transparent;
  border-radius: 10rem 0 0 10rem;
  z-index: 150;
}

#vision,
#service,
#member,
#cta,
#welfare,
#ourvoice,
#job,
#faq {
  padding: 2rem 4rem;
}

#mainvisual {
  position: relative;
  height: 100vh;
  background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/fv_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  box-sizing: border-box;
}

.fv-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.maincopy {
  color: #767676;
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: normal;
}


.scroll-container {
  height: 12rem;
  color: #4D4D4D;
}

.scrollbar-text {
  display: inline-block;
  position: absolute;
  bottom: 2.5rem;
  padding: 0.625rem 0.625rem clamp(8rem, 15vh, 13rem);
  color: #4D4D4D;
  font-size: 0.8rem;
  ;
  font-family: "Quicksand", "sans-serif";
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.scrollbar {
  position: absolute;
  right: 3rem;
  bottom: 0;
}

.scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 10rem;
  background: #4D4D4D;
}

.scrollbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #E6B3B3;
  animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 9rem;
  }

  100% {
    bottom: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }

}

/* スクロールバーここまで */


#vision {
  background-color: #FDFBF8;
}

.vision-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem auto;
}

.vision-text {
  letter-spacing: 0.15rem;
  margin-bottom: 1.25rem;
}

.item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

.col-2 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem auto;
}

.col-2 .item {
  flex: 1;
}

.more-button {
  /* もっと読むボタンMORE部分 */
  font-family: "Quicksand", "sans-serif";
  font-size: 0.9rem;
  color: #4D4D4D;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center;
  padding: 2rem 0.8rem 0.2rem 0;
  margin: 1.2rem;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.more-button::before {
  content: '';
  display: block;
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: #4D4D4D;
  bottom: 0;
  transition: all 0.3s;
}

.more-button::after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #4D4D4D;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.more-button:hover::after,
.more-button:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

.vision-af-more-button {
  display: block;
  align-items: center;
  padding: 1rem;
}


#service {
  background-color: #F3F1EE;

}

/* セクション見出しココから */
.heading {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  margin: 2.5rem auto;
}

.heading-container {
  position: relative;
  display: inline-block;
  z-index: 2;
  /* border: 3px solid red;*/
}

.heading-text {
  position: relative;
  font-family: "Quicksand", "sans-serif";
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 0.83;
  letter-spacing: 0.2rem;
  text-align: center;
}

.heading-text::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #F9EEEE;
  border: 3px solid #E6B3B3;
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  z-index: -1;
}

.heading-text::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #CDE0EF;
  border: 3px solid #9EC5E2;
  position: absolute;
  top: 0.4rem;
  right: -0.5rem;
  z-index: -1;
}

.heading-sub-text {
  display: block;
  position: relative;
  bottom: -0.5rem;
  /* メイン見出しとの距離 */
  font-family: "Zen Maru Gothic", "sans-serif";
  font-weight: 400;
  font-size: 1rem;
  line-height: 0.875;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-block {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.image-wrapper {
  flex: 1;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text-wrapper {
  flex: 1;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
}

.section-text {
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 2.5rem;
}

.reverse-layout {
  flex-direction: row-reverse;
  /* 子要素の並び順を反転 */
}

.section-container {
  margin-bottom: 3.5rem auto;
}

.section-af-more-button {
  margin: 2.5rem auto;
}

#member {
  background-color: #FDFBF8;
}

.member-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: visible;
}

.member-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;

}

.member-image-wrapper {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  z-index: 1;
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info-overlay {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  background-color: #FFFFFF;
  align-self: center;
  margin-right: 2.5rem;
}

.member-catch-copy {
  font-size: 1.07rem;
  ;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.member-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.member-details {
  font-size: 0.8rem;
}

.member-number-container {
  position: absolute;
  top: -6.25%;
  /* 上にずらす */
  left: 1%;
  /* 左にずらす */
  width: 20%;
  /* 全体のコンテナサイズを調整 */
  height: 15%;
  /* 全体のコンテナサイズを調整 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  /* 他の要素より手前に表示 */
}

.member-circle-outer {
  position: absolute;
  width: 5rem;
  /* 外側の円のサイズ */
  height: 5rem;
  border-radius: 50%;
  background-color: #F9EEEE;
  /* 薄いピンクの背景 */
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
  /* コンテナの中央に配置 */
  z-index: 1;
  /* 内側の円より奥 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* 影 */
  opacity: 0.7;
}

.member-circle-inner {
  position: absolute;
  width: 5rem;
  /* 内側の円のサイズ */
  height: 5rem;
  border-radius: 50%;
  background-color: #FDFBF8;
  /* 白い背景 */
  border: 1px solid #E6B3B3;
  /* 縁取り */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  /* 外側の円より手前 */
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  /* コンテナの中央に配置 */
  opacity: 0.9;
}

.member-circle-inner span {
  font-family: "Quicksand", "sans-serif";
  /* 数字のフォント */
  font-size: 3rem;
  /* 数字のサイズ */
  letter-spacing: 0.08rem;
  font-weight: bold;
  color: #E6B3B3;
  /* 数字の色 */
  line-height: 1;
  /* 行の高さを調整して中央寄せを改善 */
}

#cta {
  background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/cta-bg.png);
  background-repeat: no-repeat;
  background-color: #F3F1EE;
  background-size: 80%;
  background-position: center bottom;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 300px;
  padding: 50px 0 150px;
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.7rem;
}

.cta-button {
  display: flex;
  justify-content: center;
}

.cta--casual {
  display: block;
  color: #767676;
  font-size: 1.3rem;
  ;
  font-weight: 700;
  text-align: center;
  min-width: 240px;
  min-height: 44px;
  padding: 1rem 2rem;
  border-radius: 90px;
  background-color: #fff;
  border: 3px solid #9EC5E2;
  text-decoration: none;
}

.cta--casual:hover {
  color: #fff;
  ;
  background-color: #5B7284;
  border-color: transparent;
}

#welfare {
  background-color: #F3F1EE;
}

/* --- 福利厚生カードコンテナ --- */
.welfare-cards {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* --- 福利厚生各カード --- */
.welfare-card {
  width: 312px;
  text-align: center;
}

.welfare-card-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1
}

.welfare-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.welfare-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FDFBF8;
  padding: 0.5rem 0;
  background-color: #E6B3B3;
  margin-top: -1rem;
  position: relative;
  z-index: 4;
}

.heading-text.voice-heading {
  letter-spacing: 0.05rem;
}

#ourvoice {
  background-color: #F3F1EE;
  padding: 2rem 4rem;

}

/* --- スライダーの基本スタイル --- */
.mySlick {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 0 4rem 0;
  /* ページネーション用に下余白を追加 */

}

/* --- 各スライドのスタイル --- */
.slick-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 1rem;
  box-sizing: border-box;
}

.slick-slide.voice-card {
  height: 350px !important;
}

.voice-card {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 5px;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* テキストのスタイル */
.voice-text {
  color: #4D4D4D;
  position: absolute;
  top: 40px;
  left: 50px;
  width: 70%;
  box-sizing: border-box;
  z-index: 10;
}

.voice-main-text {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.8;
  box-sizing: border-box;
}

.voice-detail {
  font-size: 0.8rem;
  color: #4D4D4D;
  font-weight: 500;
  box-sizing: border-box;
}

/* --- 個別のフキダシ画像（背景画像）を指定 --- */
.voice-card-1 {
  background-image: url(../images/ourvoice01.png);
}

.voice-card-2 {
  background-image: url(../images/ourvoice02.png);
}

.voice-card-3 {
  background-image: url(../images/ourvoice03.png);
}

.voice-card-4 {
  background-image: url(../images/ourvoice04.png);
}

.voice-card-5 {
  background-image: url(../images/ourvoice05.png);
}

.voice-card-6 {
  background-image: url(../images/ourvoice06.png);
}

.voice-card-7 {
  background-image: url(../images/ourvoice07.png);
}

.voice-card-8 {
  background-image: url(../images/ourvoice08.png);
}

.voice-card-9 {
  background-image: url(../images/ourvoice09.png);
}

#job {
  background-color: #FDFBF8;
}

/* ジョブnav設定 */
.accordion-container {
  display: none;
}

.job-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
  margin: 0 auto;
}

.pconly-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

/* 左側のパネル */
.left-panel {
  flex: 1;
  /* 親要素の残りのスペースを埋める */
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: right;
}

/* 右側のパネル */
.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

/* 職種リスト全体 */
.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.job-image-wrapper {
  position: relative;
  width: 100%;
  height: 676px;
}


/* 画像 */
#job-display-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

.job-image-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background-color: #F9EEEE;
  top: 10%;
  left: -8%;
  bottom: -8%;
  z-index: 1;
}

/* 各職種アイテム */
.job-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.job-number {
  order: 1;
  font-family: "Quicksand", "sans-serif";
  font-size: 1.5rem;
  font-weight: 800;
  color: #E6B3B3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2rem;
  aspect-ratio: 1 / 1;
  text-align: center;
  border-radius: 80%;
  background-color: #FDFBF8;
  margin-left: 0.5rem;
}

.job-item a:hover .job-number {
  background-color: #E6B3B3;
  color: #FDFBF8;
}

.job-title-wrapper {
  order: 0;
  display: flex;
  flex-direction: column;
  /* タイトルとサブタイトルを縦に並べる */
}

.job-title {
  font-family: "Quicksand", "sans-serif";
  font-size: 1.5rem;
  ;
  font-weight: bold;
  margin: 0;
  color: #fff;
  /* 文字色を白に */
}

.job-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  /* 文字色を少し薄い白に */
  margin: 0;
  margin-top: -1rem;
  /* 上の要素と少し重ねる */
}

/* 職種リストを画像の上に重ねる */
.left-panel .job-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  width: 80%;
}

/* 詳細コンテンツ */
.job-details {
  display: none;
}

.job-details.active {
  display: block;
}

.job-details-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.job-details-numer {
  font-family: "Quicksand", "sans-serif";
  font-size: 1.5rem;
  font-weight: 800;
}

.job-details-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0;
}

.learn-more-link {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  outline: 1px solid #4D4D4D;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 450px;
  text-align: center;
  padding: 1rem 2rem;
  margin: 2rem 3rem;
  margin-inline: auto;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s;
}

.learn-more-link::before {
  content: "";
  position: absolute;
  top: -.5rem;
  left: -.6rem;
  width: 100%;
  height: 100%;
  background-color: #E6B3B3;
  /* 常に表示されるずれた背景色 */
  z-index: -999;
  transition: all 0.3s ease;
}

.learn-more-link:hover::before {
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.job-af-more-button {
  padding-top: 1rem;
  margin: 3rem auto;
}


/* エントリーセクション */
#recruit {
  background-color: #FDFBF8;
}

.recruit-title-wrapper {
  background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/joinus-bg.png);
  background-repeat: no-repeat;
  background-color: #F3F1EE;
  background-size: 90%;
  background-position: center bottom;
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 380px;
  gap: 1rem;
  position: relative;
}

.recruit-title,
.recruit-title-face {
  font-family: "Segoe Print", "Comic Sans MS", "Kristen ITC", "Bradley Hand ITC";
  font-weight: bold;
  color: #FDFBF8;
  text-shadow:
    1px 1px 0 #767676,
    -1px 1px 0 #767676,
    1px -1px 0 #767676,
    -1px -1px 0 #767676;
  transform: translateY(10px);
}

.recruit-title {
  font-size: 4rem;
  margin: 0.5rem;
}

.recruit-title-face {
  font-size: 3rem;
  margin: 0.5rem;
}

/* カジュアル面談 */
.catualinterview-entry-section {
  background-color: #FDFBF8;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 2rem;
  margin: 0 auto;
}

.catualinterview-image-container {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.catualinterview-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.catualinterview-image-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
  background-color: #F9EEEE;
  top: 30px;
  left: 5px;
  z-index: 1;
}


.catualinterview-text-container {
  flex: 1;
  max-width: 45%;
  position: relative;
  z-index: 1;
}

.catualinterview-title {
  font-family: "Quicksand", "sans-serif";
  font-size: 2.6rem;
  font-weight: 700;
  color: #4D4D4D;
  position: relative;
  z-index: 2;
}

.catualinterview-subtitle {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  top: -1rem;
  z-index: 2;
}

.catualinterview-entry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #767676;
  font-size: 1.125rem;
  font-weight: 800;
  text-align: center;
  padding: 1rem 2rem;
  min-height: 44px;
  min-width: 122px;
  border-radius: 90px;
  background-color: #fff;
  border: 2px solid #9EC5E2;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.catualinterview-entry-button:hover {
  color: #fff;
  background-color: #5B7284;
  border-color: transparent;
}

.catualinterview-entry-button::after {
  content: "→";
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 49px;
  text-align: center;
  border-radius: 80%;
  background-color: #9EC5E2;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

.catualinterview-entry-button:hover::after {
  color: #5B7284;
  background-color: #fff;
}

.recruit-entry-wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2rem auto 4rem auto;
}

.recruit-entry-section-container {
  display: block;
  width: 35%;
  overflow: hidden;
}

.recruit-entry-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.7rem;
}

.recruit-entry-text {
  display: flex;
  font-size: 1.2rem;
  color: #4D4D4D;
  font-weight: 700;
  margin-right: 1rem;
  text-decoration: none;
}

.recruit-entry-text::after {
  content: "→";
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 80%;
  background-color: #9EC5E2;
  display: flex;
  text-align: center;
  vertical-align: middle;
  margin-left: 0.8rem;
  margin-bottom: 0.2rem;
  transition: background-color 0.3s ease;
}

.recruit-entry-section-container:hover .recruit-entry-text::after {
  color: #89AEC8;
  background-color: #fff;
  border: 2px solid #89AEC8;
  transition: background-color 0.3s ease;
}

/* 画像を囲むコンテナ（縁取りの背景色、疑似要素の基準点） */
.recruit-entry-image-container {
  position: relative;
  background-color: transparent;
  transition: background-color 0.3s ease;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  padding: 0.3rem 0;
  box-sizing: border-box;
}

.recruit-entry-image-container:hover {
  background-color: #E6B3B3;
}

/* 画像をラップする要素（縮小・拡大の対象） */
.recruit-image--wrapper {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

/* ホバー時に画像を元のサイズに拡大 */
.recruit-entry-image-container:hover .recruit-image--wrapper {
  transform: scale(0.9);
}

.recruitment--image,
.entry--image {
  display: block;
  width: 100%;
  height: auto;
}

/* INFO/ENTRY テキストの疑似要素 */
.recruit-entry-image-container.info::before,
.recruit-entry-image-container.entry::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  font-family: "Quicksand", "sans-serif";
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 3px;
  background-color: #E6B3B3;
  padding: 0 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recruit-entry-image-container.info::before {
  content: 'INFO';
}

.recruit-entry-image-container.entry::before {
  content: 'ENTRY';
}

/* ホバー時に疑似要素を表示 */
.recruit-entry-image-container:hover::before {
  opacity: 1;
}

#faq {
  background-color: #FDFBF8;
  max-width: 100vw;
  margin: 0 auto;
}

.faq-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.faq-item {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #fff;
  background-color: var(--light-beige);
}

.faq-item:last-of-type {
  border-bottom: none;
  /* 最後の要素の下線は削除 */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--pink-red);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #d99999;
}

.faq-question-text {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  ;
  font-weight: 500;
  color: var(--light-beige);
}

.faq-question-text .qa-label {
  font-family: var(--qa-font);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-right: 0.8rem;
  color: var(--light-beige);
}

.faq-question::after {
  content: "+";
  font-size: 1.7rem;
  color: var(--light-beige);
  width: 1.7rem;
  height: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: -0.5rem;
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background-color: #fff;
}

.faq-answer-text {
  display: flex;
  font-size: 0.8rem;
  color: #4D4D4D;
  padding: 1.2rem;
}

.faq-answer-text .qa-label {
  font-family: var(--qa-font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-right: 0.8rem;
  color: var(--pink-red);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

#footer {
  background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  width: 100%;
}

/* 上段のフッターコンテンツ */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

/* ロゴセクション */
.footer-logo {
  align-self: flex-start;
  margin: 4rem;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo img {
  width: 15rem;
  /* ロゴ画像の幅 */
  height: auto;
}

/* サイトマップとボタンセクション */
.footer-right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: right;
  margin: 4rem 0;
  gap: 4rem;
}

/* サイトマップ（メニュー） */
.sitemap {
  margin-bottom: 1.2rem;
  ;
}

.sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.sitemap li {
  margin-bottom: 8px;
}

.sitemap a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4D4D4D;
  text-decoration: none;
  position: relative;
  transition: color 200ms ease-in-out;
}

.sitemap a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #89AEC8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease-in-out;
}

.sitemap a:hover {
  color: #4D4D4D;
}

.sitemap a:hover::before {
  transform: scaleX(1);
}

/* ボタンセクション */
.footer-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem auto 2rem;
  gap: 2rem;
}

.footer-buttons a {
  display: inline-block;
  width: 200px;
  height: auto;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 90px;
  text-decoration: none;
  text-align: center;
  transition: all 200ms ease;
}

.footer-button--casual {
  background-color: #fff;
  border: 3px solid #E6B3B3;
  color: #767676;
}

.footer-button--casual:hover {
  color: #fff;
  background-color: #876868;
  border: 3px solid #876868;
}

.footer-button--entry {
  background-color: #fff;
  border: 3px solid #9EC5E2;
  color: #767676;

  padding: 1rem 1.5rem;
}

.footer-button--entry:hover {
  color: #FDFBF8;
  background-color: #5B7284;
  border: 3px solid #5B7284;
}

/* 下段のフッターコンテンツ */
.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  padding-top: 1.6rem;
  margin-top: 1.6rem;
}

.footer-links a {
  color: #4D4D4D;
  font-weight: 800;
  text-decoration: none;
  margin: 0 0.4rem;
  transition-property: color;
  transition-duration: 200ms;
}

.footer-links a:hover {
  color: #89AEC8;
}

.copyright {
  font-family: "Quicksand", "sans-serif";
  font-size: 0.7rem;
  font-weight: 800;
  color: #4D4D4D;
  margin-top: 0.4rem;
}

/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/
/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:1199px) {
  .voice-text {
    left: 75px;
    width: 65%;
  }

}

@media screen and (max-width:1024px) {
  html {
    font-size: 16px;
  }

  .only-sp {
    display: block;
  }

  .only-ssp {
    display: none;
  }

  .hamburger.active .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .col-2 {
    gap: 0.8rem;
  }

  .voice-text {
    left: 60px;
    width: 65%;
  }

  .footer-buttons {
    flex-direction: column;
    margin: 0;
  }

  .footer-right {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media screen and (max-width:767px) {
  html {
    font-size: 14px;
  }

  .only-sp {
    display: block;
  }

  .only-ssp {
    display: none;
  }

  #header {
    padding: 1.5rem;
  }

  .hamburger {
    position: fixed;
    right: 2rem;
  }

  .unfixed {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
  }

  #header,
  .hamburger {
    transition: opacity 1.5s ease, transform 1.5s ease, position 0s linear;
    opacity: 1;
    z-index: 1000;
  }

  #header.unfixed,
  .hamburger.unfixed {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
  }

  .fade-out {
    opacity: 0 !important;
  }


  .header-logo img {
    width: 200px;
    /* ロゴの幅を調整 */
  }

  .header-cta--buttons {
    display: none;
  }

  .fv-container {
    display: none;
  }

  #mainvisual {
    background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/SPFV@0.75x.png);
    background-position: left;
    padding: 1rem;
  }

  .fv-container-sp {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1.5rem;
  }

  .sp-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .header-cta--casual {
    width: 150px;
  }

  .scroll-container {
    position: absolute;
    height: auto;
    right: 0;
    bottom: 0;
  }

  .scrollbar-text {
    transform: translateX(-65px) translateY(5px);
    font-size: 0.8rem;
    bottom: 0.5rem;
  }

  .scrollbar {
    transform: translateX(-5px) translateY(10px);
  }

  .scrollbar::after {
    transform: translateX(-5px) translateY(-10px);
    height: 120px;
  }

  .scrollbar::before {
    width: 1rem;
    height: 1rem;
  }

  @keyframes circlemove {
    0% {
      bottom: 120px;
    }

    100% {
      bottom: 0px;
    }
  }

  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    80% {
      opacity: 0.9;
    }

    100% {
      opacity: 0;
    }
  }

  .maincopy {
    line-height: 1.2;
    font-size: 4rem;
  }

  .col-2 {
    flex-direction: column;
  }

  .item img {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    object-fit: contain;
  }

  .content-block {
    flex-direction: column-reverse;
  }

  .member-card-container {
    flex-direction: column;
    gap: 8rem;
    margin: 4.5rem auto;
  }

  .member-card {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible
  }

  .member-image-wrapper {
    flex: none;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .member-image-wrapper img {
    width: 200%;
    object-fit: cover;
    object-position: right;
    position: static;
  }

  .member-info-overlay {
    position: relative;
    width: 95%;
    margin-top: -4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem;
    box-sizing: border-box;
    align-self: flex-start
  }

  .member-catch-copy {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }

  .member-name {
    font-size: 0.8rem;
  }

  .member-details {
    font-size: 0.7rem;
  }

  .member-number-container {
    top: -0.5rem;
    left: 4rem;
    width: auto;
    height: auto;
  }

  .member-circle-inner span {
    font-size: 2.5rem;
  }

  .member-circle-outer {
    top: 50%;
    left: 50%;
    transform: translate(-65%, -50%);
  }

  .only-ssp {
    display: inline;
  }

  #cta {
    min-height: 260px;
    padding: 30px 50px;
  }

  .voice-text {
    top: 70px;
    left: 35px;
    width: 70%;
  }

  .slick-dots li {
    margin: 0 2px !important;
  }

  #job {
    padding-bottom: 0;
  }

  /* -----職種ナビ------ */
  .pconly-nav {
    display: none;
  }

  /* アコーディオンのコンテナ全体SPのみ */
  .accordion-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }

  /* 各アコーディオン項目 */
  .accordion-item {
    border-bottom: 1px solid #FDFBF8;
  }

  /* 非表示のチェックボックス */
  .accordion-checkbox {
    display: none;
  }

  .label-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  /* アコーディオンのラベル（クリック可能部分） */
  .job-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    color: #FDFBF8;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  /* アコーディオンの背景設定 */
  .accordion-item:nth-of-type(1) .job-label {
    background-image: url(../images/engineer.jpg);
    background-size: cover;
    background-position: center 23%;
  }

  .accordion-item:nth-of-type(2) .job-label {
    background-image: url(../images/director.png);
    background-size: cover;
    background-position: center;
  }

  .accordion-item:nth-of-type(3) .job-label {
    background-image: url(../images/designer.png);
    background-size: cover;
    background-position: center;
  }

  .accordion-item:nth-of-type(4) .job-label {
    background-image: url(../images/marketer.png);
    background-size: cover;
    background-position: center 23%;
  }

  .accordion-item:nth-of-type(5) .job-label {
    background-image: url(../images/customersupport.png);
    background-size: cover;
    background-position: center;
  }


  /* 開閉アイコン（▼/▲） */
  .job-label::after {
    content: "+";
    font-size: 1.7rem;
    font-weight: 300;
    width: 1.7rem;
    height: 1.7rem;
    line-height: 1.7rem;
    transition: transform 0.5s ease;
    flex-shrink: 0;
    color: var(--light-beige);
  }

  /* 開いているときのアイコン */
  .accordion-checkbox:checked+.job-label::after {
    content: "-";
    font-size: 2rem;
    font-weight: 300;
    transform: rotate(180deg);
  }

  /* 職種番号 */
  .job-number {
    margin-right: 1.5rem;
  }

  /* 職種タイトル */
  .job-title-wrapper {
    flex-grow: 1;
    /* ラベル内でタイトルを広げる */
  }

  /* アコーディオンの中身（開閉する部分） */
  .job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 1rem 2rem;
  }

  /* 開いているときの中身のスタイル */
  .accordion-checkbox:checked+.job-label+.job-details {
    max-height: 500px;
    padding: 1rem 2rem;
    overflow: auto;
    background-color: #fff;
  }

  .job-details-numer,
  .job-details-title {
    display: inline-block;
    vertical-align: middle;
  }

  .job-details.active {
    background-color: #F3F1EE;
    z-index: -1;
  }

  /* 「詳しくみる」リンクの塊 */
  .learn-more-links {
    margin-top: 2rem;
    text-align: right;
  }

  .learn-more-link {
    display: inline-block;
    padding: 0.8rem 1.1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }

  .learn-more-link:hover {
    color: #fff;
  }

  .recruit-title-wrapper {
    min-height: 190px;
    background-size: 80%;
  }

  .catualinterview-entry-section {
    flex-direction: column;
  }

  .catualinterview-image-container {
    margin-top: 1.5rem;
    max-width: 80%;
  }

  .catualinterview-image-container::before {
    top: 2.5rem;
    left: 2rem;
  }

  .catualinterview-text-container {
    max-width: 66%;
    margin-top: 1rem;
  }

  .recruit-entry-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .recruit-entry-header {
    padding: 0.5rem 0;
  }

  .recruit-entry-section-container {
    width: 80%;
    margin: auto;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 90%;
  }

  .sitemap {
    margin-bottom: 2rem;
  }

  .sitemap ul {
    align-items: flex-end;
    text-align: right;
  }

  .footer-bottom {
    margin: 0;
    padding: 0;
  }

  .footer-buttons {
    flex-direction: row;
    margin: 0;
    gap: 1rem;
  }
}


@media screen and (max-width:680px) {
  .voice-main-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .voice-text {
    font-size: 0.8rem;
    top: 80px;
    left: 28px;
  }
}

@media screen and (max-width:619px) {
  .voice-text {
    top: 90px;
    left: 23px;
  }
}

@media screen and (max-width:549px) {
  .voice-main-text {
    font-size: 1rem;
  }

  .voice-text {
    font-size: 0.8rem;
    top: 750px;
    left: 32px;
  }
}

@media screen and (max-width:390px) {
  .only-sp {
    display: none;
  }

  .only-ssp {
    display: block;
  }

  body {
    font-size: 14px;
  }

  #mainvisual {
    height: 90vh;
    background-size: cover;
    background-position: left;
    padding: 1.5rem;
  }

  #header {
    padding: 2rem;
  }

  .maincopy {
    font-size: 3.5rem;
    line-height: 1;
    margin-left: auto;
    margin-right: 0;
  }

  .hamburger {
    margin-right: 1rem;
  }

  .scroll-container {
    display: none;
  }

  .item img {
    height: 100%;
    width: 100%;
  }

  .section-container {
    padding: 0;
  }

  .section-text {
    max-width: 100%;
    line-height: 1.8;
  }

  .text-wrapper {
    width: 100%;
    line-height: 1.8;
  }

  .member-card-container {
    gap: 1rem;
    margin: 1.5rem auto;
  }

  .member-card {
    width: 100%;
    margin: 1rem auto;
  }

  .member-info-overlay {
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .member-catch-copy {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .member-name {
    font-size: 0.75rem;
  }

  .member-details {
    font-size: 0.65rem;
  }

  .member-number-container {
    top: 0.5rem;
    left: 3rem;
  }

  .member-circle-outer,
  .member-circle-inner {
    width: 4rem;
    height: 4rem;
  }

  .member-circle-inner span {
    font-size: 2rem;
  }


  #cta {
    background-size: 100%;
  }

  .cta-text {
    font-size: 1.3rem;
  }

  .welfare-cards {
    gap: 1.5rem;
    margin: 3rem 0;
  }

  .welfare-card-image {
    height: 400px;
    margin-bottom: 1rem;
  }

  .voice-text {
    width: 65%;
    top: 90px;
    left: 30px;
  }

  .voice-main-text {
    font-size: 0.8rem;
  }

  .accordion-container {
    margin: 1rem auto;
  }

  #job,
  #faq {
    padding: 2.5rem;
  }

  .job-title {
    line-height: 1.5rem;
  }

  .job-subtitle {
    margin-top: 0.2rem;
  }

  .job-number {
    aspect-ratio: 1 / 1;
  }

  .job-af-more-button {
    padding: 0;
  }

  .recruit-title-wrapper {
    min-height: 150px;
    background-size: 100%;
    padding-left: 20px;
  }

  .recruit-title,
  .recruit-title-face {
    font-size: 3rem;
    transform: translateY(-5px);
  }

  .catualinterview-text-container {
    max-width: 80%
  }

  .catualinterview-entry-button {
    font-size: 1rem;
  }

  .catualinterview-entry-button::after {
    font-size: 1rem;
  }

  #footer {
    background-image: linear-gradient(rgba(243, 241, 238, 0.4), rgba(243, 241, 238, 0.4)), url(../images/footer-spbg.png);
    padding: 2rem;
  }

  .footer-logo {
    margin: 2rem;
  }

  .footer-logo img {
    width: 15rem;
  }

  .footer-buttons {
    flex-direction: column;
    transform: translateX(0%);
    margin: 0 2rem auto 2rem;
    gap: 30px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 0 0.8rem;
    margin: auto;
  }

}