@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

.font_en {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* ==========================================================================
   Modern Top Page Styles
   ========================================================================== */

:root {
  --primary-color: #007bff;
  /* Change to your brand color */
  --primary-dark: #0056b3;
  --accent-color: #ff9800;
  --accent-dark: #e68a00;
  --text-main: #333333;
  --text-sub: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #ced4da;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-size-base: 16px;
  /* Base font size increased */
  --width-container: 1200px;
  /* Define common width */
}

body.modern-theme {
  font-family: var(--font-family-base);
  color: #2a2626;
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: var(--font-size-base);
  /* Applied */
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

/* Reset tweaks for modern theme if needed */
.modern-theme a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.modern-theme a:hover {
  opacity: 0.8;
}

.modern-theme img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Container */
.container {
  max-width: var(--width-container);
  margin: 0 auto;
  padding: 0 0;
  /* Added bottom padding for footer spacing */
  box-sizing: border-box;
  /* Ensure padding is included */
}

@media screen and (max-width:1350px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 20px 15px 20px;
  }

}

/* Search Status - Same as search page */
.search-status {
  margin-bottom: 30px;
  /* 下線の下に余白を追加 */
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  padding-top: 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.search-status p {
  margin: 0;
  font-size: 16px;
  color: var(--text-main);
}

.search-status em {
  font-weight: 700;
  font-size: 150%;
  color: var(--primary-color);
  margin: 0 0.5em;
  font-style: normal;
}

/* Section Common */
.section-container {
  padding: 5em 0;
}

.section-container.bg-light {
  background-color: var(--bg-light);
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-en-title {
  display: block;
  font-size: 16px;
  /* Increased */
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-jp-title {
  font-size: 36px;
  /* Increased */
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}

@media (max-width: 767px) {
  .section-container {
    padding: 30px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-en-title {
    margin-bottom: 0;
  }

  .section-jp-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   Header Styles (Override & Modernize)
   ========================================================================== */


/* Company Link Box on Register Page */
.company-link-box {
  background: #f5f2ed;
  border: none;
  border-radius: 12px;
  padding: 32px 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: none;
}

.company-link-title {
  font-size: 1.15em;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.5;
}

.company-link-text {
  font-size: 0.95em;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.7;
}

.company-link-button-wrap {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .company-link-box {
    border-radius: 12px;
    padding: 20px 10px;
    margin-top: 30px;
  }
}



/* Company Register Button on Register Page */
.btn-company-register {
  display: inline-block;
  background: #f0e800;
  color: #333 !important;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.5;
}

.btn-company-register:hover {
  /*  background: var(--accent-dark);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);*/
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-company-register i {
  margin-right: 8px;
  font-size: 16px;
}

/* Login Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  display: none;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
}

.modal-message {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-modal-login {
  display: block;
  height: 53px;
  padding: 12px;
  background: var(--primary-color);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-modal-login:hover {
  /*background: var(--primary-dark);
  color: #fff;*/
  opacity: 0.9;
}

.btn-modal-register {
  display: block;
  padding: 12px;
  background: #fff;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-modal-register:hover {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 767px) {

  .btn-modal-login,
  .btn-modal-register {
    height: 50px;
    border-width: 2px;
    font-size: clamp(13px, 3.0vw, 15px);
    line-height: 1.8em;
  }

}

/* ========== Registration Button Highlight ========== */
/* Target the "New Registration" list item specifically */
#pnav li.drop_down {
  margin-left: 30px;
}

#pnav li.drop_down>span {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  /* Increased padding */
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  /* Increased */
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(255, 152, 0, 0.2);
}

#pnav li.drop_down>span:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(255, 152, 0, 0.3);
}

#pnav li.drop_down>span i {
  display: none;
  /* Hide legacy icon if not needed */
}

/* Dropdown Menu Override */
.drop_down_list {
  top: 120%;
  /* Space below button */
  right: 0;
  /* Align to right edge of parent */
  left: auto;
  /* Override any left positioning */
  margin-top: 5px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  background: #fff;
  min-width: 220px;
  /* Increased for Japanese text */
  padding: 10px 0;
  display: none;
  /* Controlled by hover usually, or JS */
  position: absolute;
  z-index: 100;
  overflow: hidden;
  /* Fix for hover overflow */
  box-sizing: border-box;
}

/* Show dropdown on hover */
li.drop_down:hover .drop_down_list {
  display: block;
}

/* Specific fix for #pnav dropdown to prevent text overflow */
#pnav .drop_down_list {
  right: 0 !important;
  /* Force right alignment */
  left: auto !important;
  /* Override any left positioning */
  min-width: 220px !important;
  /* Ensure sufficient width for Japanese text */
}

.drop_down_list li {
  margin: 0;
  width: 100%;
}

.drop_down_list li a {
  padding: 12px 20px;
  /* Increased padding */
  color: var(--text-main);
  font-weight: normal;
  display: block;
  transition: background 0.2s;
  font-size: 15px;
  /* Increased */
  box-sizing: border-box;
  /* Fix for width issue */
  white-space: nowrap;
  /* Prevent text wrapping */
  overflow: visible;
  /* Ensure text is visible */
  text-overflow: clip;
  /* Don't clip text */
  text-align: center;
  /* Center align text */
}

.drop_down_list li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  #header_nav {
    display: none;
    /* Typically handled by JS toggle, or show hamburger */
  }
}


/* ==========================================================================
   Hero Section (Revamped)
   ========================================================================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-section::before,
.hero-section::after {
  content: "";
  display: inline-block;
  position: absolute;
  transform: translateY(-50%);
}

.hero-section::before {
  background: url("../images/mv_left.png") no-repeat;
  background-size: contain;
  width: 30vw;
  max-width: 380px;
  height: 30vw;
  max-height: 369px;
  top: 50%;
  left: 6%;
}

.hero-section::after {
  background: url("../images/mv_right.png") no-repeat;
  background-size: contain;
  width: 50vw;
  max-width: 818px;
  height: 35vw;
  max-height: 555px;
  top: 50%;
  right: 2.5vw;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/main_img.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Add subtle scale animation */
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* More sophisticated gradient */
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--width-container);
  /* Match container width */
  margin: 0 auto;
  padding: 6.5em 0 3.5em;
  box-sizing: border-box;
}


.hero-content {
  text-align: left;
  width: fit-content;
  margin-left: 16%;
}

.hero-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.4em;
  margin: 0 0 0.25em;
  /* text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.hero-title .text-highlight {
  color: #fff;
  /* text-decoration: underline; text-decoration-color: var(--accent-color); */
  border-bottom: 5px solid var(--accent-color);
  display: inline-block;
  line-height: 1;
}

.hero-lead {
  font-size: 30px;
  line-height: 1.6em;
  font-weight: bold;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  /* opacity: 0.9; */
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  text-shadow: -3px -3px 6px rgba(255, 255, 255, 0.9), 3px -1px 6px rgba(255, 255, 255, 0.9), -5px 0px 6px rgba(255, 255, 255, 0.9);
}

.hero-sublead {
  width: fit-content;
  margin: 0.5em 0 0;
  font-size: 22px;
  padding: 0.5em 0.75em;
  border-radius: 12px;
}

/* Hero Search Box (Glassmorphism) */
.hero-search-box {
  margin: 1.5em 0;
}

.top_search_form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0 10px;
}

.mv_form_input {
  font-size: 16px;
  width: 200px;
  padding: 8px 10px;
  margin: 0 0;
  background: url(../images/select_arrow.png) no-repeat #fff;
  background-position: 95% center;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mv_form_x {
  width: 23px;
  height: 23px !important;
  vertical-align: middle;
  margin: 15px 0;
}

.btn_img_css {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 17px 5px 15px 2.5em;
  background: url(../images/i_search.png) no-repeat #f19ec2;
  background-position: left 1.25em center;
  border-radius: 50px;
  width: 120px;
  height: 60px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn_img_css:hover {
  transform: translateY(-1px);
}

.search-form-flex {
  display: flex;
  gap: 0;
  /* Remove gap, button connected */
}

.search-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-group i {
  position: absolute;
  left: 25px;
  color: var(--text-sub);
  font-size: 22px;
  z-index: 10;
}

.hero-input {
  width: 100%;
  height: 54px;
  /* Reduced height */
  padding: 0 20px 0 50px;
  /* Adjusted padding */
  border: none;
  border-radius: 50px 0 0 50px;
  /* Left pill */
  font-size: 16px;
  /* Reduced font size */
  background: #fff;
  color: var(--text-main);
  box-sizing: border-box;
}

.hero-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--primary-color);
}

.hero-submit-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  /* Right pill */
  padding: 0 30px;
  /* Reduced padding */
  font-size: 18px;
  /* Reduced font size */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  height: 54px;
  /* Match input height */
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
}

.hero-submit-btn:hover {
  background: var(--accent-dark);
  padding-right: 30px;
  /* Slight animation */
}

.hero-tags {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tags span {
  margin-right: 10px;
  font-weight: bold;
}

.hero-tags a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}

.hero-tags a:hover {
  background: rgba(255, 255, 255, 0.4);
}



@media screen and (max-width:1800px) {
  .hero-section::before {
    width: 19vw;
    height: 18vw;
    left: 1.5vw;
  }

  .hero-section::after {
    width: 45vw;
    height: 31vw;
    right: 1.5vw;
  }
}


@media screen and (max-width:1350px) {
  .hero-section::before {
    width: 18vw;
    height: 17vw;
  }

  .hero-section::after {
    width: 41vw;
    height: 28vw;
    right: 0;
  }

  .hero-container {
    padding: 3.75em 0 0;
  }

  .hero-title {
    font-size: clamp(36px, 6.5vw, 40px);
    text-shadow: -3px -3px 6px rgba(255, 255, 255, 0.9), 3px -1px 6px rgba(255, 255, 255, 0.9), -5px 0px 6px rgba(255, 255, 255, 0.9);
  }

  .hero-lead {
    font-size: clamp(22px, 5.0vw, 24px);
    line-height: 1.4em;
  }

  .hero-sublead {
    font-size: clamp(16px, 3.75vw, 18px);
  }

}

@media (max-width: 1200px) {
  .hero-content {
    margin-left: 2.5vw;
  }

  .hero-section::before {
    width: 20vw;
    height: 20vw;
    left: inherit;
    top: 77%;
    right: 1.5vw;
    z-index: 2;
  }

  .hero-section::after {
    width: 49vw;
    height: 33vw;
    top: 45%;
    right: 7.5vw;
  }
}

@media (max-width: 991px) {
  .hero-section::before {
    width: 22vw;
    height: 22vw;
    top: 70%;
  }

  .hero-section::after {
    width: 53vw;
    height: 36vw;
    top: 37%;
    right: 2.5vw;
  }

  .hero-title {
    font-size: clamp(28px, 6.5vw, 34px);
    line-height: 1.2em;
    margin: 0 0 0.5em;
  }

  .hero-lead {
    font-size: clamp(18px, 5.0vw, 22px);
  }

  .hero-sublead {
    margin: 1em 0;
  }

  .hero-search-box {
    border-radius: var(--radius-lg);
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    margin: 1.5em 0 3em;
  }

  .search-form-flex {
    flex-direction: column;
    gap: 10px;
  }

  .hero-input {
    border-radius: var(--radius-md);
    height: 60px;
  }

  .hero-submit-btn {
    border-radius: var(--radius-md);
    height: 60px;
    width: 100%;
    box-shadow: none;
  }

  .hero-submit-btn:hover {
    padding-right: 0;
  }

  .hero-tags a {
    color: var(--text-main);
    background: #fff;
  }

  /* If background becomes light on mobile due to form change */
  .hero-tags {
    color: #fff;
  }

  .hero-tags a {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    padding: 0 0;
  }

  .hero-section::before {
    content: none;
  }

  .hero-section::after {
    top: 15%;
  }

  .hero-container {
    padding: 2.0em 2.5vw;
  }

  .hero-content {
    width: 100%;
    margin: 0 0;
  }

  .hero-title {
    font-size: clamp(24px, 6.5vw, 28px);
  }

  .hero-lead {
    font-size: clamp(16px, 3.5vw, 18px);
  }

  .hero-sublead {
    font-size: clamp(14px, 3.25vw, 16px);
  }

  .hero-search-box {
    padding: 15px;
    margin: 20px 0 0;
  }

  .hero-input {
    font-size: 16px;
    padding-left: 50px;
  }

  .search-input-group i {
    left: 20px;
    font-size: 18px;
  }

  .top_search_form {
    justify-content: center;
    gap: 10px 10px;
  }

  .mv_form_input {
    width: calc((100% - 40px) / 2);
    height: 50px;
    padding: 8px 5px;
  }

  .mv_form_x {
    width: 20px;
    height: 20px;
  }

  .btn_img_css {
    font-size: 15px;
    padding: 15px 5px 15px 2.5em;
    height: 50px;
    background: url(../images/i_search.png) no-repeat #f19ec2;
    background-position: left 2.0em center;
    background-size: 22px auto;
  }

}


.news-section {
  padding: 0 0;
}

.news-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 1em 1.5em;
  position: relative;
  display: flex;
  align-items: stretch;
}

.news-content-title {
  color: #c1c0c0;
  font-size: 36px;
  border-right: 1px solid #333;
  padding-right: 30px;
}

.news-list {
  width: calc(100% - (135px + 150px));
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 30px;
}

.news-list li {
  padding: 15px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.news-list li+li {
  border-top: 1px solid #e9ecef;
}

.news-date {
  width: 110px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-content {
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  color: var(--text-main);
}

.news-content a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-content a:hover {
  /*color: #007bff;*/
  text-decoration: underline;
}

.news-content-btn {
  color: #2a2626;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 1.0em;
  right: 1.5em
}

.news-content-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/arrow_b.png) no-repeat;
  background-size: contain;
  margin-right: 0.25em;
}

.news-content-btn:hover {
  transform: translateY(-1px);
}

@media screen and (max-width:1350px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {
  .news-section {
    padding: 0 0;
  }

  .news-wrapper {
    width: 100%;
    margin: 0 0;
    padding: 1em 1em;
    flex-direction: column;
  }

  .news-content-title {
    font-size: clamp(22px, 4.0vw, 26px);
    border-right: none;
    border-bottom: 1px solid #333;
    padding: 0 0 6px;
  }

  .news-list {
    width: 100%;
    padding: 0 0;
  }

  .news-list li {
    flex-direction: row;
    gap: 1em;
  }

  .news-date {
    margin-bottom: 0;
    width: auto;
    font-size: clamp(13px, 3.0vw, 14px);
  }

  .news-content {
    font-size: clamp(13px, 3.0vw, 14px);
  }

  .news-list li:hover {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .news-content-btn {
    margin-top: 10px;
    font-size: 16px;
    justify-content: flex-end;
    position: static;
  }

  .news-content-btn::before {
    width: 28px;
    height: 28px;
  }

}



/* ==========================================================================
   Category Grid
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.category-icon {
  width: 45px;
  /* Increased */
  height: 45px;
  /* Increased */
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
  /* Increased */
  flex-shrink: 0;
}

.category-name {
  flex: 1;
  font-weight: 700;
  font-size: 16px;
  /* Increased */
}

.category-arrow {
  font-size: 16px;
  color: #ccc;
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 15px 10px;
    flex-direction: column;
    text-align: center;
  }

  .category-icon {
    margin: 0 0 10px 0;
  }

  .category-arrow {
    display: none;
  }

  .category-name {
    font-size: 14px;
  }
}

/* ==========================================================================
   Job Cards (Pickup & Grid)
   ========================================================================== */
.job-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.job-card {
  margin: 0 15px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-3px);
}

.job-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.job-card-image {
  border-radius: 18px;
  overflow: hidden;
}

.job-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.job-card:hover .job-card-image img {
  transform: scale(1.05);
}

.badge-pickup {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 12px;
  /* Increased padding */
  font-size: 13px;
  /* Increased */
  font-weight: bold;
  border-radius: 4px;
  z-index: 2;
}

.job-card-body {
  padding: 15px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job-card-company {
  font-size: 15px;
  /* Increased */
  color: var(--text-sub);
  margin-bottom: 10px;
  font-weight: normal;
  display: none;
}

.job-card-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6em;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  /* Increased */
  display: flex;
  align-items: center;
}

.btn-text i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.job-card:hover .btn-text i {
  transform: translateX(5px);
}

.job-card .overview {}

.job-card .overview li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.job-card .overview li+li {
  margin-top: 5px;
}

.job-card .overview li::before {
  content: "";
  display: inline-block;
  min-width: 18px;
  min-height: 18px;
  margin-right: 0.5em;
}

.job-card .overview li.saraly::before {
  background: url(../images/i_saraly.png) no-repeat center;
  background-size: contain;
}

.job-card .overview li.area::before {
  background: url(../images/i_area.png) no-repeat center;
  background-size: contain;
}

.job-card .overview li.clock::before {
  background: url(../images/i_clock.png) no-repeat center;
  background-size: contain;
}

.job-card .overview li.jobtype::before {
  background: url(../images/i_jobtype.png) no-repeat center;
  background-size: contain;
}

.job-card .overview li.calender::before {
  background: url(../images/i_calender.png) no-repeat center;
  background-size: contain;
}

.job-card .overview li p {
  font-size: 14px;
  font-weight: 300;
}

.job-grid-cards .slick-prev,
.job-grid-cards .slick-next {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
}

.job-grid-cards .slick-prev::before,
.job-grid-cards .slick-next::before {
  content: "";
  width: 27px;
  height: 24px;
  background: url(../images/arrow.png) no-repeat center;
  background-size: contain;
}

.job-grid-cards .slick-prev::before {
  transform: rotate(180deg);
}

.job-grid-cards .slick-prev:hover,
.job-grid-cards .slick-next:hover {
  opacity: inherit;
  background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width:1280px) {
  .job-card-image img {
    height: 16vw;
  }

}

@media (max-width: 991px) {
  .job-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-grid-cards .slick-prev,
  .job-grid-cards .slick-next {
    width: 30px;
    height: 30px;
  }

  .job-grid-cards .slick-prev::before,
  .job-grid-cards .slick-next::before {
    width: 23px;
    height: 20px;
  }

  .job-grid-cards .slick-prev {
    left: -12px;
  }

  .job-grid-cards .slick-next {
    right: -12px;
  }

}

@media (max-width: 576px) {
  .job-grid-cards {
    grid-template-columns: 1fr;
  }

  .job-card-image img {
    height: 45vw;
  }
}


/* ==========================================================================
   strength
   ========================================================================== */
.section-container:has(.strength-grid) {
  padding: 5em 0 2.5em;
}

.strength-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5em;
  justify-content: space-between;
}

.strength-col {
  width: calc((100% - 7em) / 3);
}

.strength-image {
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

.strength-title {
  font-size: 22px;
  font-weight: bold;
  padding: 0.25em 0.75em;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.strength-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media screen and (max-width:1350px) {
  .strength-grid {
    gap: 3em;
  }

  .strength-col {
    width: calc((100% - 6em) / 3);
  }

  .strength-title {
    font-size: clamp(16px, 3.75vw, 18px);
    padding: 0.25em 0.5em;
  }
}

@media (max-width: 991px) {}

@media (max-width: 768px) {
  .section-container:has(.strength-grid) {
    padding: 2.5em 0 0;
  }

  .strength-grid {
    flex-direction: column;
  }

  .strength-col {
    width: 100%;
  }

  .strength-image {
    width: 66%;
  }

  .strength-title {
    font-size: clamp(16px, 3.5vw, 18px);
  }

}


/* ==========================================================================
   calender(カレンダー検索)
   ========================================================================== */
.calender_form_desc {
  text-align: center;
  margin-bottom: 20px;
}

.calender_form_desc p {
  color: #3c3c4c;
  font-size: 18px;
  position: relative;
}

.calender_form_desc p span {
  color: #FFB347;
  display: inline-block;
  margin-right: 0.25em;
}

/* 日付で絞り込む */
.calender_form .date_search {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 30px;
}

/* table styles */
.date_search table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.0em;
  display: inline-block;
}

.date_search thead {
  position: relative;
}

.date_search thead::after {
  content: "";
  display: block;
  height: 10px;
}

.date_search .cellTableHead {
  font-size: 16px;
  font-weight: 300;
  padding: 0.5em 0.5em;
}

.date_search th,
.date_search td {
  border: 1px solid #ccc;
}

.date_search .cellTableHead {
  font-size: 16px;
  font-weight: 300;
  padding: 0.75em 0.75em;
}

.date_search td {
  padding: 10px;
  vertical-align: top;
  text-align: center;
}

.date_search .cellHoliday {
  background: #ccc;
}

.date_search .cellSaturday {
  background: #BDE2E8;
}

.date_search .cellSunday,
.date_search .cellHoliday {
  background: #ECC6C7;
}

/* 求人がある日（クリック可能） */
.date_search .cellHasJob {
  background: #FFD5A0 !important;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  transition: background 0.2s ease, color 0.2s ease;
}

.date_search .cellHasJob:hover {
  background: #FFB347 !important;
  color: #fff;
}

/* 選択中の日 */
.date_search .cellSelected {
  background: #F28C28 !important;
  color: #fff !important;
  font-weight: bold;
  box-shadow: inset 0 0 0 2px #D2691E;
}

/* 今日 */
.date_search .cellToday {
  font-weight: bold;
  box-shadow: inset 0 0 0 2px #333;
}

/* エリアで絞り込む */
.calender_form .area_search {
  display: flex;
  justify-content: center;
  gap: 1em 1em;
  overflow: hidden;
}

.calender_form .area_search .item_button {
  display: none;
}

.calender_form .area_search label {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  background: #333;
  padding: 0.25em 1em;
  border-radius: 50px;
  display: inline-block;
}

.calender_form .area_search .item_button:checked+label {
  background: #f19ec2;
}

/* 検索／リセット ボタン */
.calender_form_btn {
  margin: 2em 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

.calender_form_btn button {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

.calender_form_btn .btn_submit {
  padding: 15px 30px 15px 70px;
  background: url(../images/i_search.png) no-repeat #f19ec2;
  background-position: left 2em center;
}

.calender_form_btn .btn_reset {
  background: #cfc1c7;
}

@media screen and (max-width:1350px) {}

@media screen and (max-width:991px) {
  .calender_form_desc p {
    font-size: 16px;
  }

  /* 日付で絞り込む */
  .calender_form .date_search {}

  /* table styles */
  .calender_form .date_search {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  /* エリアで絞り込む */
  .calender_form .area_search label {
    font-size: clamp(14px, 3.5vw, 16px);
  }

  /* 検索／リセット ボタン */
  .calender_form_btn {
    gap: 1em;
  }

  .calender_form_btn button {
    font-size: clamp(14px, 3.5vw, 16px);
  }
}

@media screen and (max-width: 768px) {}



/* ==========================================================================
   Job List (New Arrival)
   ========================================================================== */
.job-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-list-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s;
  overflow: hidden;
}

.job-list-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.job-list-link {
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: flex-start;
  color: inherit;
}

.job-list-image {
  width: 180px;
  /* Increased width */
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.job-list-image img {
  width: 100%;
  height: auto;
  display: block;
}

.badge-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  /* Increased */
  text-align: center;
  padding: 2px 0;
}

.job-list-content {
  flex: 1;
  min-width: 0;
  /* flex overflow fix */
}

.job-list-meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.job-company {
  font-size: 14px;
  /* Increased */
  color: var(--text-sub);
}

.job-date {
  font-size: 12px;
  /* Increased */
  color: #fff;
  background: #dc3545;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.job-title {
  font-size: 20px;
  /* Increased */
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-detail-row {
  font-size: 14px;
  /* Increased */
  color: var(--text-sub);
  display: flex;
  align-items: center;
}

.job-detail-row i {
  margin-right: 5px;
  color: var(--primary-color);
}

.job-list-action {
  align-self: center;
  padding-left: 20px;
}

.btn-detail {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-main);
  padding: 12px 24px;
  /* Increased padding */
  border-radius: 30px;
  font-size: 14px;
  /* Increased */
  font-weight: 700;
  transition: all 0.3s;
  white-space: nowrap;
}

.job-list-item:hover .btn-detail {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 767px) {
  .job-list-link {
    flex-direction: column;
    padding: 15px;
  }

  .job-list-image {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
  }

  .job-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .job-list-action {
    width: 100%;
    text-align: center;
    padding: 0;
    margin-top: 15px;
  }

  .btn-detail {
    width: 100%;
    text-align: center;
  }

  .job-title {
    font-size: 18px;
  }
}

.btn-view-all {
  display: inline-block;
  padding: 15px 50px;
  background: #fff;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s;
  font-size: 16px;
  /* Increased */
}

.btn-view-all:hover {
  background: var(--text-main);
  color: #fff;
}


.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .sp-mt-10 {
    margin-top: 10px;
  }

  .sp-mt-20 {
    margin-top: 20px;
  }

  .sp-mt-30 {
    margin-top: 30px;
  }

  .sp-mt-40 {
    margin-top: 40px;
  }

  .sp-mt-50 {
    margin-top: 50px;
  }
}


.text-center {
  text-align: center;
}



/* ==========================================================================
   Search Conditions (Area, Koyou, etc.)
   ========================================================================== */
.search-conditions-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.search-condition-col {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.condition-title {
  font-size: 20px;
  /* Increased */
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light);
  display: flex;
  align-items: center;
}

.condition-title i {
  margin-right: 10px;
  color: var(--primary-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.tag-list li a {
  display: inline-block;
  padding: 10px 18px;
  /* Increased padding */
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 14px;
  /* Increased */
  color: var(--text-main);
  transition: all 0.2s;
}

.tag-list li a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ==========================================================================
   Recent Jobs (Small Cards)
   ========================================================================== */
.sm-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.simple-card {
  border: none;
  box-shadow: none;
  background: transparent;
}

.simple-card:hover {
  transform: translateY(-3px);
}

.simple-card:hover .sm-image img {
  transform: scale(1.05);
}

.sm-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
  padding-top: 60%;
}

.sm-body {
  padding: 5px;
  background: transparent;
}

.job-card-title-sm {
  font-size: 16px;
  /* Increased */
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
}

.job-card-company-sm {
  font-size: 13px;
  /* Increased */
  color: var(--text-sub);
}

/* ==========================================================================
   Blog/Column Section
   ========================================================================== */
.blog-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
}

.blog-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-column-card {
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-column-card:hover {
  transform: translateY(-3px);
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}

.blog-column-link {
  display: block;
  position: relative;
}

.blog-column-image {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.blog-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-column-card:hover .blog-column-image img {
  transform: scale(1.05);
}

.blog-column-body {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 20px 20px;
  padding: 0.75em 0.75em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-column-date {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-column-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.5;
}

.blog-column-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}

@media (max-width:1350px) {
  .blog-column-image {
    height: 22vw;
  }

  .blog-column-title {
    font-size: clamp(15px, 3.5vw, 16px);
  }
}

@media (max-width: 992px) {
  .blog-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 30px 0;
  }

  .blog-column-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-column-image {
    height: 55vw;
  }

  .blog-column-body {
    padding: 15px;
  }

  .blog-column-date {
    margin-bottom: 5px;
  }

  .blog-column-title {
    margin-bottom: 0;
    font-size: clamp(14px, 3.75vw, 16px);
  }

  .blog-column-excerpt {
    margin-top: 8px;
    font-size: clamp(13px, 3.0vw, 14px);
  }
}


/* ==========================================================================
   support Section
   ========================================================================== */
.message-wrap {
  min-height: 540px;
  position: relative;
}

.message-wrap::after {
  content: "";
  display: inline-block;
  /* width: 740px; */
  width: 650px;
  height: 540px;
  background: url("../images/support_img.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}

.message-wrap .outer {
  width: 50%;
}

.message-head {
  padding-top: 6em;
  position: relative;
  margin-bottom: 30px;
}

.message-head::before {
  content: "SUPPORT";
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(100px, 10vw, 122px);
  font-weight: 300;
  line-height: 1.0em;
  width: fit-content;
  position: absolute;
  top: -0.08em;
}

.message-head h3 {
  color: #a6cdaa;
  font-size: 36px;
  letter-spacing: 0.075em;
  background: #fff;
  padding: 0.25em 0.5em;
  width: fit-content;

}

.message-body {
  color: #3c3c4c;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.message-title {
  font-size: 26px;
  font-weight: bold;
}

.message-lead {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0 20px;
}

.message-text {
  font-size: 16px;
  line-height: 1.8em;
}

.message-wrap .content_btn01 {
  margin: 30px 0;
}

@media screen and (max-width:1350px) {
  .message-wrap {
    min-height: 35vw;
  }

  .message-wrap::after {
    width: 45vw;
    height: 35vw;
  }

  .message-wrap .outer {
    width: 60%;
  }

  .message-head {
    padding-top: 5em;
  }

  .message-head::before {
    font-size: clamp(70px, 9vw, 100px);
  }

  .message-head h3 {
    font-size: clamp(26px, 7.5vw, 30px);
  }
}

@media (max-width: 992px) {
  .message-wrap {
    min-height: 29vw;
  }

  .message-wrap::after {
    width: 40vw;
    height: 29vw;
  }

  .message-wrap .outer {
    width: 80%;
  }

  .message-head {
    padding-top: 3.75em;
  }

  .message-head::before {
    font-size: clamp(70px, 9.0vw, 80px);
  }

  .message-head h3 {
    font-size: clamp(20px, 6.5vw, 24px);
  }

  .message-lead {
    font-size: clamp(14px, 6.5vw, 16px);
  }

}

@media (max-width: 767px) {
  .message-head {
    padding-top: 3.0em;
    margin-bottom: 20px;
  }

  .message-head::before {
    font-size: clamp(30px, 9.0vw, 42px);
    position: absolute;
    top: 0.55em;
  }

  .message-head h3 {
    font-size: clamp(16px, 5.0vw, 18px);
  }

  .message-wrap::after {
    top: -2em;
    z-index: 0;
  }

  .message-wrap .outer {
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .message-title {
    font-size: clamp(16px, 5.5vw, 18px);
  }

  .message-lead {
    font-size: clamp(14px, 3.75vw, 16px);
  }

  .message-text {
    font-size: clamp(13px, 3.25vw, 15px);
    line-height: 1.6em;
  }

  .message-wrap .content_btn01 {
    margin: 20px auto 0;
  }
}



/* ==========================================================================
   role Section
   ========================================================================== */
.role-section {
  background: url(../images/role_back.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.role-section .container {
  position: relative;
}

.role-conteniner {
  width: 55%;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.role-conteniner .role-title {}

.role-conteniner .role-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.role-conteniner .role-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.0em;
}

.role-section .bnr_corporate {
  position: absolute;
  top: 35%;
  right: 0;
}

.role-sponsor {
  margin-top: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5em;
}

.role-sponsor .item {
  display: block;
}

@media (max-width:1350px) {
  .role-conteniner {
    width: calc(100% - 36.5vw);
  }

  .role-conteniner .role-subtitle {
    font-size: clamp(16px, 3.75vw, 18px);
    margin: 20px 0 10px;
  }

  .role-conteniner .role-text {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.8em;
  }

  .role-section .bnr_corporate {
    width: 35vw;
    top: 30%;
    right: 1.5vw;
  }

  .role-sponsor {
    width: 70%;
    margin: 5em auto 0;
    gap: 2.5em;
  }
}

@media (max-width: 992px) {
  .role-conteniner {
    width: 60%;
  }

  .role-section .bnr_corporate {
    width: 33.33%;
    right: 1em;
  }

  .role-sponsor {
    width: 70%;
    margin: 5em auto 0;
    gap: 2.5em;
  }
}

@media (max-width: 767px) {
  .role-conteniner {
    width: 100%;
  }

  .role-conteniner .role-subtitle {
    font-size: clamp(14px, 3.75vw, 16px);
  }

  .role-conteniner .role-text {
    font-size: clamp(13px, 3.25vw, 15px);
    line-height: 1.6em;
  }

  .role-section .bnr_corporate {
    width: 70%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
    position: static;
  }

  .role-sponsor {
    width: 100%;
    margin: 0 auto;
    gap: 1.5em;
  }
}



/* ==========================================================================
   Footer & Other Overrides
   ========================================================================== */
.modern-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  opacity: 0.8;
}

.modern-pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--text-main);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 24px;
  /* Increased */
}

.modern-pagetop a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Clearfix helpers if still needed for legacy floats in header/footer */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Slick Slider Customization */
.slick-prev,
.slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: var(--primary-color);
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}