@charset "UTF-8";

.btnlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

@media screen and (max-width: 1400px) {
  .btnlist {
    gap: 15rem;
    margin: 20rem 0;
  }
}

@media screen and (max-width: 768px) {
  .btnlist {
    grid-template-columns: 1fr;
    gap: 10rem;
    margin: 15rem 0;
  }
}

.btnlist_item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.btnlist_item:hover {
  border-color: #4FC3F7;
  box-shadow: 0 2px 8px rgba(79, 195, 247, 0.2);
}

.btnlist_item a {
  display: block;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.btnlist_item a:hover {
  color: #4FC3F7;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .btnlist_item a {
    font-size: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .btnlist_item a {
    font-size: 28rem;
  }
}

@media screen and (max-width: 1400px) {
  .btnlist_item {
    padding: 15rem;
    border-radius: 8rem;
    border-width: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .btnlist_item {
    padding: 20rem;
    border-radius: 10rem;
  }
}

/* Course Card Component Styles (Udemy-inspired) */
.course_card {
  background: #fff;
  border: 1px solid #d1d7dc;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.course_card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

@media screen and (max-width: 1400px) {
  .course_card {
    margin-bottom: 20rem;
    border-radius: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card {
    margin-bottom: 25rem;
    border-radius: 10rem;
    flex-direction: column;
  }
}

.course_card_link {
  display: flex;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
  flex-direction: row;
}

.course_card_link:hover {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .course_card_link {
    flex-direction: column;
  }
}

.course_card_image {
  position: relative;
  width: 200px;
  height: auto;
  overflow: hidden;
  background: #f7f9fa;
  flex-shrink: 0;
}

@media screen and (max-width: 1400px) {
  .course_card_image {
    width: 180rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_image {
    width: 100%;
    height: 300rem;
  }
}

.course_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 20px;
  background: #fff;
}

@media screen and (max-width: 1400px) {
  .course_card_image img {
    padding: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_image img {
    padding: 30rem;
  }
}

.course_card_badge {
  display: inline-block;
  align-items: center;
  align-self: flex-start;
  padding-block: 0.2rem 0.2rem;
  padding-inline: 0.4rem 0.6rem;
  white-space: nowrap;
  background-color: #c2e9eb;
  color: #0d5261;
  border-radius: 0.4rem;
  font-size: 12px;
}

@media screen and (max-width: 1400px) {
  .course_card_badge {
    padding: 4rem 8rem;
    border-radius: 4rem;
    font-size: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_badge {
    padding: 8rem 15rem;
    border-radius: 6rem;
    font-size: 22rem;
  }
}

.course_card_badge:nth-child(n+2) {
  margin-left: 10px;
}

.course_card_content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .course_card_content {
    padding: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_content {
    padding: 25rem;
  }
}

.course_card_title {
  font-size: 16px;
  font-weight: 700;
  color: #1c1d1f;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

@media screen and (max-width: 1400px) {
  .course_card_title {
    font-size: 16rem;
    margin-bottom: 8rem;
    min-height: 44rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_title {
    font-size: 28rem;
    margin-bottom: 15rem;
    min-height: 70rem;
    line-height: 1.3;
  }
}

.course_card_description {
  font-size: 14px;
  color: #6a6f73;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 40px;
}

@media screen and (max-width: 1400px) {
  .course_card_description {
    font-size: 14rem;
    margin-bottom: 12rem;
    min-height: 40rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_description {
    font-size: 24rem;
    margin-bottom: 20rem;
    -webkit-line-clamp: 3;
    min-height: 72rem;
  }
}

.course_card_skills {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

@media screen and (max-width: 1400px) {
  .course_card_skills {
    margin-bottom: 12rem;
    gap: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_skills {
    margin-bottom: 20rem;
    gap: 8rem;
  }
}

.course_card_skills .skill_tag {
  display: inline-block;
  background: #f7f9fa;
  color: #1c1d1f;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 400;
  border: 1px solid #d1d7dc;
}

@media screen and (max-width: 1400px) {
  .course_card_skills .skill_tag {
    padding: 2rem 6rem;
    border-radius: 2rem;
    font-size: 11rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_skills .skill_tag {
    padding: 6rem 12rem;
    border-radius: 4rem;
    font-size: 20rem;
  }
}

.course_card_skills .skill_more {
  display: inline-block;
  color: #6a6f73;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 4px;
}

@media screen and (max-width: 1400px) {
  .course_card_skills .skill_more {
    font-size: 11rem;
    padding: 2rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_skills .skill_more {
    font-size: 20rem;
    padding: 6rem 8rem;
  }
}

.course_card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.course_card_rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 1400px) {
  .course_card_rating {
    gap: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_rating {
    gap: 10rem;
  }
}

.course_card_rating .stars {
  display: flex;
  gap: 1px;
}

@media screen and (max-width: 1400px) {
  .course_card_rating .stars {
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_rating .stars {
    gap: 2rem;
  }
}

.course_card_rating .stars .star {
  color: #f69c08;
  font-size: 12px;
}

@media screen and (max-width: 1400px) {
  .course_card_rating .stars .star {
    font-size: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_rating .stars .star {
    font-size: 20rem;
  }
}

.course_card_rating .rating_text {
  font-size: 12px;
  color: #f69c08;
  font-weight: 600;
}

@media screen and (max-width: 1400px) {
  .course_card_rating .rating_text {
    font-size: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_rating .rating_text {
    font-size: 20rem;
  }
}

.course_card_price .price_label {
  font-size: 14px;
  color: #5624d0;
  font-weight: 700;
}

@media screen and (max-width: 1400px) {
  .course_card_price .price_label {
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .course_card_price .price_label {
    font-size: 24rem;
  }
}

.listbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 1400px) {
  .listbox {
    gap: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox {
    gap: 25rem;
  }
}

.listbox_item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.17);
}

.listbox_item p {
  margin: 0;
  font-size: 14px;
}

@media screen and (max-width: 1400px) {
  .listbox_item {
    padding: 15rem;
    border-radius: 10rem;
    box-shadow: 0px 0px 6rem rgba(0, 0, 0, 0.17);
  }
}

@media screen and (max-width: 768px) {
  .listbox_item {
    flex-direction: column;
    border-radius: 15rem;
    background: #fff;
    box-shadow: 0px 0px 10rem rgba(0, 0, 0, 0.17);
    padding: 30rem;
  }
}

.listbox_img {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  margin-right: 20px;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .listbox_img {
    width: 150rem;
    height: 150rem;
    margin-right: 20rem;
    border-radius: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_img {
    width: 100%;
    height: auto;
    margin-right: 0;
    border-radius: 15rem;
  }
}

.listbox_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
}

@media screen and (max-width: 1400px) {
  .listbox_content {
    padding: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_content {
    padding: 15rem;
  }
}

.listbox_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 1400px) {
  .listbox_title {
    font-size: 18rem;
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_title {
    font-size: 20rem;
    margin-bottom: 15rem;
  }
}

.listbox_btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  .listbox_btn {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_btn {
    margin-top: 30rem;
  }
}

.listbox_btn a {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #0071bc;
  border: 1px solid #0071bc;
  border-radius: 30px;
}

@media screen and (max-width: 1400px) {
  .listbox_btn a {
    padding: 7rem 20rem;
    font-size: 14rem;
    gap: 10rem;
    border-radius: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_btn a {
    border-radius: 40rem;
    padding: 15rem 40rem;
    font-size: 28rem;
    gap: 15rem;
  }
}

.listbox_btn a img {
  max-width: 18px;
}

@media screen and (max-width: 1400px) {
  .listbox_btn a img {
    max-width: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .listbox_btn a img {
    max-width: 35rem;
  }
}

.table {
  width: 100%;
  margin-bottom: 1.25rem;
  color: #333;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem 1.25rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  font-size: 14px;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.625rem 1.25rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.03);
}

.table-blue th,
.table-blue td {
  white-space: nowrap !important;
  line-height: 1.6;
}

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

  .table-blue th,
  .table-blue td {
    font-size: 24rem;
    padding: 20rem 30rem;
  }
}

.table-blue th {
  background-color: #2E2D77 !important;
  color: #fff;
}

.table-blue th a {
  color: #fff !important;
}

.table-blue td {
  background-color: #fff;
}

#gmap {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}

.catalog_list {
  margin-top: 30px;
  position: relative;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.catalog_list_card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.catalog_list_card-body {
  text-align: left;
}

.catalog_list_card-body img {
  max-width: 100%;
  height: auto;
}

.catalog_list_card-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

.catalog_list_card-footer {
  text-align: center;
  margin-top: 10px;
  background-color: #2E2D77;
}

.catalog_list_card-footer input[type=checkbox] {
  cursor: pointer;
}

.text-small {
  font-size: 12px;
  color: #6c757d;
}

@media screen and (max-width: 1400px) {
  .text-small {
    font-size: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .text-small {
    font-size: 14rem;
  }
}

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

@media screen and (max-width: 1400px) {
  .mt-5 {
    margin-top: 50rem;
  }
}

@media screen and (max-width: 768px) {
  .mt-5 {
    margin-top: 50rem;
  }
}

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

@media screen and (max-width: 1400px) {
  .mt-3 {
    margin-top: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .mt-3 {
    margin-top: 30rem;
  }
}

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

@media screen and (max-width: 1400px) {
  .mt-2 {
    margin-top: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .mt-2 {
    margin-top: 20rem;
  }
}

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

@media screen and (max-width: 1400px) {
  .mt-1 {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .mt-1 {
    margin-top: 10rem;
  }
}

.mb-5 {
  margin-bottom: 50px;
}

@media screen and (max-width: 1400px) {
  .mb-5 {
    margin-bottom: 50rem;
  }
}

@media screen and (max-width: 768px) {
  .mb-5 {
    margin-bottom: 50rem;
  }
}

.mb-3 {
  margin-bottom: 30px;
}

@media screen and (max-width: 1400px) {
  .mb-3 {
    margin-bottom: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .mb-3 {
    margin-bottom: 30rem;
  }
}

.mb-2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
  .mb-2 {
    margin-bottom: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .mb-2 {
    margin-bottom: 20rem;
  }
}

.mb-1 {
  margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
  .mb-1 {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .mb-1 {
    margin-bottom: 10rem;
  }
}

/* Blog Article Styles */
.blog_article {
  background: #fff;
  margin-bottom: 40px;
}

@media screen and (max-width: 1400px) {
  .blog_article {
    border-radius: 8rem;
    margin-bottom: 40rem;
  }
}

@media screen and (max-width: 768px) {
  .blog_article {
    border-radius: 10rem;
    margin-bottom: 60rem;
  }
}

.blog_article_header {
  border-bottom: 1px solid #e0e0e0;
}

.blog_article_title {
  font-size: 28px;
  font-weight: 700;
  color: #1c1d1f;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1400px) {
  .blog_article_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
}

.blog_article_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: #6a6f73;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
  .blog_article_meta {
    gap: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_meta {
    gap: 15px;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog_article_meta i {
  margin-right: 8px;
  color: #4FC3F7;
}

@media screen and (max-width: 1400px) {
  .blog_article_meta i {
    margin-right: 8px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_meta i {
    margin-right: 8px;
  }
}

.blog_article_date {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.blog_article_company {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.blog_article_image {
  padding: 40px 40px 0px;
  max-width: 500px;
}

@media screen and (max-width: 1400px) {
  .blog_article_image {
    max-height: 300rem;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_image {
    max-height: 500rem;
  }
}

.blog_article_image img {
  width: 100%;
  /*height: 100%;
  object-fit: cover;*/
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.blog_article_content {
  padding: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 1400px) {
  .blog_article_content {
    padding: 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_content {
    padding: 30px 20px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.blog_article_content p {
  margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
  .blog_article_content p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_content p {
    margin-bottom: 20px;
  }
}

.blog_article_content p:last-child {
  margin-bottom: 0;
}

.blog_article_content ul {
  list-style-type: disc;
  padding-left: 2em;
  margin: 0 0 20px 0;
}

.blog_article_content ul li {
  list-style-type: disc;
  margin: 0.25em 0;
}

.blog_article_content ol {
  list-style-type: decimal;
  padding-left: 2em;
  margin: 0 0 20px 0;
}

.blog_article_content ol li {
  list-style-type: decimal;
  margin: 0.25em 0;
}

.blog_article_content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
  .blog_article_content img {
    margin-bottom: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_content img {
    margin-bottom: 20rem;
  }
}

.blog_article_footer {
  padding: 30px 40px 40px;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
}

@media screen and (max-width: 1400px) {
  .blog_article_footer {
    padding: 25px 30px 30px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_footer {
    padding: 25px 20px 30px;
  }
}

.blog_article_back .btn_back {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #4FC3F7;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1400px) {
  .blog_article_back .btn_back {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_back .btn_back {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
  }
}

.blog_article_back .btn_back:hover {
  background: #29B6F6;
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
}

.blog_article_back .btn_back i {
  margin-right: 8px;
  font-size: 12px;
}

@media screen and (max-width: 1400px) {
  .blog_article_back .btn_back i {
    margin-right: 8px;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .blog_article_back .btn_back i {
    margin-right: 8px;
    font-size: 12px;
  }
}

/* Search Button Styles - Hide the existing ::after pseudo elements */
.header .searchbox::after,
.pcnav .searchbox::after {
  display: none !important;
}

.header .searchbox .search_btn {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background-image: url(../image/common/icon-search.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1400px) {
  .header .searchbox .search_btn {
    width: 18rem;
    height: 18rem;
    right: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .header .searchbox .search_btn {
    width: 18rem;
    height: 18rem;
    right: 10rem;
  }
}

.header .searchbox .search_btn:hover {
  opacity: 0.8;
}

.pcnav .searchbox .search_btn {
  position: absolute;
  width: 25rem;
  height: 25rem;
  right: 10rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background-image: url(../image/common/icon-search.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1400px) {
  .pcnav .searchbox .search_btn {
    width: 35rem;
    height: 35rem;
    right: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .pcnav .searchbox .search_btn {
    width: 35rem;
    height: 35rem;
    right: 20rem;
  }
}

.pcnav .searchbox .search_btn:hover {
  opacity: 0.8;
}

/* Custom Pagination Styles for default.blade.php */
nav .d-flex {
  justify-content: center;
  margin: 40px 0;
}

@media screen and (max-width: 1400px) {
  nav .d-flex {
    margin: 40rem 0;
  }
}

@media screen and (max-width: 768px) {
  nav .d-flex {
    margin: 60rem 0;
    flex-direction: column;
    gap: 20rem;
  }
}

nav .d-flex .d-flex.flex-wrap {
  gap: 8px;
}

@media screen and (max-width: 1400px) {
  nav .d-flex .d-flex.flex-wrap {
    gap: 8rem;
  }
}

@media screen and (max-width: 768px) {
  nav .d-flex .d-flex.flex-wrap {
    gap: 12rem;
    justify-content: center;
  }
}

nav .d-flex .d-flex.flex-wrap .btn {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  color: #333;
  background: #fff;
  border: 1px solid #d1d7dc !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  nav .d-flex .d-flex.flex-wrap .btn {
    min-width: 40rem;
    height: 40rem;
    padding: 8rem 12rem;
    border-radius: 6rem;
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  nav .d-flex .d-flex.flex-wrap .btn {
    min-width: 70rem;
    height: 70rem;
    padding: 15rem 20rem;
    border-radius: 8rem;
    font-size: 24rem;
  }
}

nav .d-flex .d-flex.flex-wrap .btn:hover {
  color: #4FC3F7 !important;
  border-color: #4FC3F7 !important;
  background: #f8f9fa !important;
  text-decoration: none;
}

nav .d-flex .d-flex.flex-wrap .btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

nav .d-flex .d-flex.flex-wrap .btn.active {
  color: white !important;
  background: #4FC3F7 !important;
  border-color: #4FC3F7 !important;
}

nav .d-flex .d-flex.flex-wrap .btn.active:hover {
  color: white !important;
  background: #29B6F6 !important;
  border-color: #29B6F6 !important;
}

nav .d-flex .d-flex.flex-wrap .btn.btn-light-primary:first-child,
nav .d-flex .d-flex.flex-wrap .btn.btn-light-primary:last-child {
  font-weight: 600;
}

nav .d-flex .d-flex.flex-wrap span.btn {
  color: #6c757d !important;
  background: #f8f9fa !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed;
}

nav .d-flex .d-flex.flex-wrap span.btn:hover {
  color: #6c757d !important;
  background: #f8f9fa !important;
  border-color: #dee2e6 !important;
}

nav .d-flex .text-muted {
  font-size: 14px;
  color: #6c757d;
  margin-left: 20px;
}

@media screen and (max-width: 1400px) {
  nav .d-flex .text-muted {
    font-size: 14rem;
    margin-left: 20rem;
  }
}

@media screen and (max-width: 768px) {
  nav .d-flex .text-muted {
    font-size: 24rem;
    margin-left: 0;
    text-align: center;
  }
}

/* Process/Facility/Service/Machine List Component Styles */
.index_card_area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

@media screen and (max-width: 1400px) {
  .index_card_area {
    gap: 20rem;
    margin: 20rem 0;
  }
}

@media screen and (max-width: 768px) {
  .index_card_area {
    grid-template-columns: 1fr;
    gap: 15rem;
    margin: 15rem 0;
  }
}

.index_card_area_item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.index_card_area_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.index_card_area_item .card-header {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.index_card_area_item .card-header a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.index_card_area_item .card-header a:hover {
  text-decoration: none;
  opacity: 0.9;
}

@media screen and (max-width: 1400px) {
  .index_card_area_item .card-header {
    padding: 12rem 16rem;
    font-size: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .index_card_area_item .card-header {
    padding: 12rem 20rem;
    font-size: 22rem;
  }
}

.index_card_area_item .card-body {
  padding: 15px 20px;
}

@media screen and (max-width: 1400px) {
  .index_card_area_item .card-body {
    padding: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .index_card_area_item .card-body {
    padding: 20rem;
  }
}

.index_card_area_item .list-arrow {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index_card_area_item .list-arrow li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  padding-left: 0px;
}

.index_card_area_item .list-arrow li:last-child {
  border-bottom: none;
}

.index_card_area_item .list-arrow li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  margin-left: 0px;
}

.index_card_area_item .list-arrow li a:hover {
  color: #4FC3F7;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .index_card_area_item .list-arrow li a {
    font-size: 22rem;
  }
}

@media screen and (max-width: 1400px) {
  .index_card_area_item .list-arrow li {
    padding: 6rem 0 6rem 16rem;
  }
}

@media screen and (max-width: 768px) {
  .index_card_area_item .list-arrow li {
    padding: 6rem 0 6rem 0rem;
  }
}

.page_head_text {
  margin-bottom: 40px;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  padding-top: 40px;
}

@media screen and (max-width: 1400px) {
  .page_head_text {
    margin-bottom: 40rem;
    font-size: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .page_head_text {
    margin-bottom: 60rem;
    font-size: 28rem;
  }
}

.contact-personalinfo_detail {
  border: 1px solid #d1d7dc;
  border-radius: 4px;
  overflow-y: auto;
  height: 200px;
  max-height: 200px;
}

@media screen and (max-width: 1400px) {
  .contact-personalinfo_detail {
    height: 200rem;
    max-height: 200rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-personalinfo_detail {
    height: 300rem;
    max-height: 300rem;
  }
}

.contact-personalinfo_detail.privacy {
  padding: 15px;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  background: #f9f9f9;
}

@media screen and (max-width: 1400px) {
  .contact-personalinfo_detail.privacy {
    padding: 15rem;
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-personalinfo_detail.privacy {
    padding: 20rem;
    font-size: 24rem;
    line-height: 1.5;
  }
}

.s-productcontact {
  padding: 50px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 50px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact {
    padding: 50rem;
    margin-bottom: 50rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact {
    padding: 80rem 70rem;
    margin-bottom: 80rem;
  }
}

.s-productcontact_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact_title {
    gap: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact_title {
    gap: 30rem;
  }
}

.s-productcontact_title img {
  max-width: 18px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact_title img {
    max-width: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact_title img {
    max-width: 40rem;
  }
}

.s-productcontact_title h3 {
  font-weight: bolder;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #4d4d4d;
}

@media screen and (max-width: 1400px) {
  .s-productcontact_title h3 {
    font-size: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact_title h3 {
    font-size: 26rem;
  }
}

.s-productcontact_box {
  max-width: 800px;
  margin: auto;
  margin-top: 30px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact_box {
    max-width: 800rem;
    margin-top: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact_box {
    max-width: 100%;
    margin-top: 60rem;
  }
}

.s-productcontact .contactform {
  position: relative;
}

.s-productcontact .contactform_note {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #999;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #f3f3f3;
  padding: 15px 20px;
  border-radius: 6px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_note {
    font-size: 14rem;
    margin-bottom: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_note {
    font-size: 26rem;
    margin-bottom: 40rem;
  }
}

.s-productcontact .contactform_note_title {
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  color: #333;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_note_title {
    font-size: 14rem;
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_note_title {
    font-size: 26rem;
    margin-bottom: 15rem;
  }
}

.s-productcontact .contactform_item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_item {
    gap: 10rem;
    margin-bottom: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
  }
}

.s-productcontact .contactform_item:last-child {
  margin-bottom: 0;
}

.s-productcontact .contactform_item.aling-start {
  align-items: flex-start;
}

.s-productcontact .contactform_item.aling-start .contactform_head {
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_item.aling-start {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_item.aling-start {
    margin-top: 0;
  }
}

.s-productcontact .contactform_head {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #333;
  min-width: 200px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_head {
    font-size: 16rem;
    min-width: 130rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_head {
    font-size: 26rem;
    min-width: auto;
  }
}

.s-productcontact .contactform_inputbox {
  gap: 25px;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_inputbox {
    gap: 25rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_inputbox {
    gap: 40rem;
  }
}

.s-productcontact .contactform_inputbox.itemradiobox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_inputbox.itemradiobox {
    gap: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_inputbox.itemradiobox {
    gap: 15rem;
  }
}

.s-productcontact .contactform_inputbox input[type=text],
.s-productcontact .contactform_inputbox textarea,
.s-productcontact .contactform_inputbox select {
  width: 100%;
  height: 45px;
  padding: 20px;
  background: #fff;
  border: 2px solid #e6e6e6;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #333;
}

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

  .s-productcontact .contactform_inputbox input[type=text],
  .s-productcontact .contactform_inputbox textarea,
  .s-productcontact .contactform_inputbox select {
    height: 45rem;
    font-size: 16rem;
    border-width: 2rem;
    padding: 0 20rem;
  }
}

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

  .s-productcontact .contactform_inputbox input[type=text],
  .s-productcontact .contactform_inputbox textarea,
  .s-productcontact .contactform_inputbox select {
    padding: 5rem 30rem;
    height: 70rem;
    font-size: 26rem;
  }
}

.s-productcontact .contactform_inputbox input[type=text]::-moz-placeholder,
.s-productcontact .contactform_inputbox textarea::-moz-placeholder,
.s-productcontact .contactform_inputbox select::-moz-placeholder {
  color: #999;
}

.s-productcontact .contactform_inputbox input[type=text]::-moz-placeholder,
.s-productcontact .contactform_inputbox textarea::-moz-placeholder,
.s-productcontact .contactform_inputbox select::-moz-placeholder {
  color: #999;
}

.s-productcontact .contactform_inputbox input[type=text]::placeholder,
.s-productcontact .contactform_inputbox textarea::placeholder,
.s-productcontact .contactform_inputbox select::placeholder {
  color: #999;
}

.s-productcontact .contactform_inputbox textarea {
  height: 180px;
  padding: 20px 20px;
  line-height: 1.8rem;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform_inputbox textarea {
    height: 180rem;
    padding: 20rem 20rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform_inputbox textarea {
    height: 400rem;
    padding: 20rem 30rem;
  }
}

.s-productcontact .contactform .itemradio {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: left;
  color: #333;
  margin-bottom: 0;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform .itemradio {
    gap: 5rem;
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform .itemradio {
    gap: 10rem;
    font-size: 26rem;
  }
}

.s-productcontact .contactform .itemradio label {
  margin-bottom: 0;
  margin-left: 5px;
  cursor: pointer;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform .itemradio label {
    margin-left: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform .itemradio label {
    margin-left: 10rem;
  }
}

.s-productcontact .contactform .itemradio input[type=radio],
.s-productcontact .contactform .itemradio input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #333;
  margin: auto 0;
}

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

  .s-productcontact .contactform .itemradio input[type=radio],
  .s-productcontact .contactform .itemradio input[type=checkbox] {
    width: 18rem;
    height: 18rem;
  }
}

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

  .s-productcontact .contactform .itemradio input[type=radio],
  .s-productcontact .contactform .itemradio input[type=checkbox] {
    width: 30rem;
    height: 30rem;
  }
}

.s-productcontact .contactform .submitbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform .submitbox {
    margin-top: 50rem;
    gap: 15rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform .submitbox {
    gap: 30rem;
  }
}

.s-productcontact .contactform .submitbox_txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform .submitbox_txt {
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform .submitbox_txt {
    font-size: 26rem;
    text-align: left;
  }
}

.s-productcontact .contactform .submitbox_btn {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  width: 380px;
  height: 52px;
  background: #1b1464;
  border: none;
  outline: none;
  box-shadow: 4px 5px 7px rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 1400px) {
  .s-productcontact .contactform .submitbox_btn {
    font-size: 18rem;
    width: 380rem;
    height: 52rem;
    box-shadow: 4rem 5rem 7rem rgba(0, 0, 0, 0.38);
  }
}

@media screen and (max-width: 768px) {
  .s-productcontact .contactform .submitbox_btn {
    font-size: 26rem;
    width: 100%;
    height: 80rem;
    box-shadow: 7rem 8rem 10rem rgba(0, 0, 0, 0.38);
  }
}

.s-productcontact .contactform .submitbox_btn {
  /*&::after {
      position: absolute;
      content: "";
      top: 50%;
      transform: translateY(-50%);
      right: 20px;
      width: 23px;
      height: 9px;
      background-image: url(../image/common/arrow-white.png);
      background-repeat: no-repeat;
      background-size: contain;

      @include response() {
          right: 20rem;
          width: 23rem;
          height: 9rem;
      }

      @include sp {
          width: 35rem;
          height: 10rem;
          right: 30rem;
      }
  }*/
}

a.blue_btn {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  width: 380px;
  height: 52px;
  background: #1b1464;
  border: none;
  outline: none;
  box-shadow: 4px 5px 7px rgba(0, 0, 0, 0.38);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  a.blue_btn {
    font-size: 18rem;
    width: 380rem;
    height: 52rem;
    box-shadow: 4rem 5rem 7rem rgba(0, 0, 0, 0.38);
  }
}

@media screen and (max-width: 768px) {
  a.blue_btn {
    font-size: 26rem;
    width: 100%;
    height: 80rem;
    box-shadow: 7rem 8rem 10rem rgba(0, 0, 0, 0.38);
  }
}

a.blue_btn:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.9;
}

a.blue_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 23px;
  height: 9px;
  background-image: url(../image/common/arrow-white.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1400px) {
  a.blue_btn::after {
    right: 20rem;
    width: 23rem;
    height: 9rem;
  }
}

@media screen and (max-width: 768px) {
  a.blue_btn::after {
    width: 35rem;
    height: 10rem;
    right: 30rem;
  }
}

p.message {
  font-size: 14px;
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 1400px) {
  p.message {
    font-size: 14rem;
    margin-top: 20rem;
  }
}

@media screen and (max-width: 768px) {
  p.message {
    font-size: 24rem;
    margin-top: 30rem;
  }
}

.listarea {
  padding: 50px 20px;
}

@media screen and (max-width: 1400px) {
  .listarea {
    padding: 50rem 20rem;
  }
}

@media screen and (max-width: 768px) {
  .listarea {
    padding: 80rem 20rem;
  }
}

.searchlist_company {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #e6e6e6;
  display: block;
  padding: 20px;
}

@media screen and (max-width: 1400px) {
  .searchlist_company {
    margin-bottom: 10rem;
    padding: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company {
    padding: 40rem;
    margin-bottom: 35rem;
  }
}

.searchlist_company:last-child {
  margin-bottom: 0;
}

.searchlist_company .searchlist_company_main {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_main {
    gap: 15rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30rem;
  }
}

.searchlist_company .searchlist_company_img {
  max-width: 230px;
  width: 100%;
  border: 2px solid #f2f2f2;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_img {
    max-width: 230rem;
    border: 2rem solid #f2f2f2;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_img {
    max-width: 100%;
    border: 4rem solid #f2f2f2;
  }
}

.searchlist_company .searchlist_company_img img {
  max-width: 100%;
}

.searchlist_company .searchlist_company_content {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_content {
    max-width: 450rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_content {
    max-width: 100%;
  }
}

.searchlist_company .searchlist_company_name {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #666;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_name {
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_name {
    font-size: 24rem;
  }
}

.searchlist_company .searchlist_company_title {
  margin-top: 5px;
  font-weight: bolder;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 25px;
  text-align: left;
  color: #4d4d4d;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_title {
    font-size: 18rem;
    margin-top: 5rem;
    line-height: 25rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_title {
    font-size: 30rem;
    line-height: 38rem;
    margin-top: 10rem;
  }
}

.searchlist_company .searchlist_company_tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 15px auto;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_tags {
    margin: 15rem auto;
    gap: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_tags {
    gap: 15rem;
    margin: 20rem auto;
  }
}

.searchlist_company .searchlist_company_tags li {
  padding: 3px 5px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: #1b1464;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_tags li {
    padding: 3rem 5rem;
    font-size: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_tags li {
    padding: 5rem 10rem;
    font-size: 22rem;
  }
}

.searchlist_company .searchlist_company_txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 21px;
  text-align: left;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_txt {
    font-size: 14rem;
    line-height: 21rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_txt {
    font-size: 24rem;
    line-height: 35rem;
  }
}

.searchlist_company .searchlist_company_links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_links {
    margin-top: 20rem;
    gap: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_links {
    gap: 20rem;
    margin-top: 30rem;
  }
}

.searchlist_company .searchlist_company_viewlink {
  max-width: 170px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_viewlink {
    max-width: 170rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_viewlink {
    max-width: 250rem;
  }
}

.searchlist_company .searchlist_company_viewlink a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  padding: 5px 10px;
  background: #fff;
  border: 3px solid #29abe2;
  box-shadow: 0px 2.24px 1.07px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #0071bc;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_viewlink a {
    font-size: 15rem;
    padding: 5rem 10rem;
    height: 40rem;
    max-width: 170rem;
    border-radius: 3rem;
    border-width: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_viewlink a {
    max-width: 250rem;
    font-size: 26rem;
    width: 258.12px;
    height: 60rem;
    border-radius: 5rem;
    background: #fff;
    border: 5rem solid #29abe2;
    box-shadow: 0px 3rem 2rem rgba(0, 0, 0, 0.2);
  }
}

.searchlist_company .searchlist_company_viewlink a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.searchlist_company .searchlist_company_request {
  max-width: 170px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_request {
    max-width: 170rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_request {
    max-width: 250rem;
  }
}

.searchlist_company .searchlist_company_request a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  width: 100%;
  height: 40px;
  padding: 3px 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  border-radius: 3.35px;
  background: #f78700;
  border: 7px solid #fff;
  box-shadow: 0px 2.24px 1.07px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .searchlist_company .searchlist_company_request a {
    height: 40rem;
    font-size: 15rem;
    max-width: 170rem;
    padding: 3rem 10rem;
    border-radius: 3rem;
    border-width: 7rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_company .searchlist_company_request a {
    font-size: 26rem;
    padding: 10rem;
    max-width: 250rem;
    height: 60rem;
    border-radius: 5rem;
    border: 8rem solid #fff;
    box-shadow: 0px 3rem 2rem rgba(0, 0, 0, 0.2);
  }
}

.searchlist_company .searchlist_company_request a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.searchlist_news {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #e6e6e6;
  display: block;
  padding: 20px;
}

@media screen and (max-width: 1400px) {
  .searchlist_news {
    margin-bottom: 10rem;
    padding: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news {
    padding: 40rem;
    margin-bottom: 35rem;
  }
}

.searchlist_news:last-child {
  margin-bottom: 0;
}

.searchlist_news .searchlist_news_main {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_main {
    gap: 15rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30rem;
  }
}

.searchlist_news .searchlist_news_img {
  max-width: 230px;
  width: 100%;
  border: 2px solid #f2f2f2;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_img {
    max-width: 230rem;
    border: 2rem solid #f2f2f2;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_img {
    max-width: 100%;
    border: 4rem solid #f2f2f2;
  }
}

.searchlist_news .searchlist_news_img img {
  max-width: 100%;
}

.searchlist_news .searchlist_news_content {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_content {
    max-width: 450rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_content {
    max-width: 100%;
  }
}

.searchlist_news .searchlist_news_name {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #666;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_name {
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_name {
    font-size: 24rem;
  }
}

.searchlist_news .searchlist_news_title {
  margin-top: 5px;
  font-weight: bolder;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 25px;
  text-align: left;
  color: #4d4d4d;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_title {
    font-size: 18rem;
    margin-top: 5rem;
    line-height: 25rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_title {
    font-size: 30rem;
    line-height: 38rem;
    margin-top: 10rem;
  }
}

.searchlist_news .searchlist_news_tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 15px auto;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_tags {
    margin: 15rem auto;
    gap: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_tags {
    gap: 15rem;
    margin: 20rem auto;
  }
}

.searchlist_news .searchlist_news_tags li {
  padding: 3px 5px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: #1b1464;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_tags li {
    padding: 3rem 5rem;
    font-size: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_tags li {
    padding: 5rem 10rem;
    font-size: 22rem;
  }
}

.searchlist_news .searchlist_news_txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 21px;
  text-align: left;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_txt {
    font-size: 14rem;
    line-height: 21rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_txt {
    font-size: 24rem;
    line-height: 35rem;
  }
}

.searchlist_news .searchlist_news_links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_links {
    margin-top: 20rem;
    gap: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_links {
    gap: 20rem;
    margin-top: 30rem;
  }
}

.searchlist_news .searchlist_news_viewlink {
  max-width: 170px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_viewlink {
    max-width: 170rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_viewlink {
    max-width: 250rem;
  }
}

.searchlist_news .searchlist_news_viewlink a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  padding: 5px 10px;
  background: #fff;
  border: 3px solid #29abe2;
  box-shadow: 0px 2.24px 1.07px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #0071bc;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_viewlink a {
    font-size: 15rem;
    padding: 5rem 10rem;
    height: 40rem;
    max-width: 170rem;
    border-radius: 3rem;
    border-width: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_viewlink a {
    max-width: 250rem;
    font-size: 26rem;
    width: 258.12px;
    height: 60rem;
    border-radius: 5rem;
    background: #fff;
    border: 5rem solid #29abe2;
    box-shadow: 0px 3rem 2rem rgba(0, 0, 0, 0.2);
  }
}

.searchlist_news .searchlist_news_viewlink a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.searchlist_news .searchlist_news_request {
  max-width: 170px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_request {
    max-width: 170rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_request {
    max-width: 250rem;
  }
}

.searchlist_news .searchlist_news_request a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  width: 100%;
  height: 40px;
  padding: 3px 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  border-radius: 3.35px;
  background: #f78700;
  border: 7px solid #fff;
  box-shadow: 0px 2.24px 1.07px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .searchlist_news .searchlist_news_request a {
    height: 40rem;
    font-size: 15rem;
    max-width: 170rem;
    padding: 3rem 10rem;
    border-radius: 3rem;
    border-width: 7rem;
  }
}

@media screen and (max-width: 768px) {
  .searchlist_news .searchlist_news_request a {
    font-size: 26rem;
    padding: 10rem;
    max-width: 250rem;
    height: 60rem;
    border-radius: 5rem;
    border: 8rem solid #fff;
    box-shadow: 0px 3rem 2rem rgba(0, 0, 0, 0.2);
  }
}

.searchlist_news .searchlist_news_request a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.header .navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  background: #1b1464;
  box-shadow: 7px 7px 8px rgba(0, 0, 0, 0.28);
  padding: 20px;
}

@media screen and (max-width: 1400px) {
  .header .navlist {
    padding: 20rem;
    gap: 70rem;
    box-shadow: 7rem 7rem 8rem rgba(0, 0, 0, 0.28);
  }
}

@media screen and (max-width: 768px) {
  .header .navlist {
    display: none;
  }
}

.header .navlist li a {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .header .navlist li a {
    font-size: 16rem;
  }
}

.header .navlist li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.indexcontent {
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  gap: 15px;
}

.p-indexsec {
  padding: 30px;
  width: 100%;
  background: #fff;
  border: 0.81px solid #e6e6e6;
  border-radius: 0px 0px 15px 15px;
}

.alert {
  position: relative;
  padding: 0.9375rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 1400px) {
  .alert {
    padding: 0.9375rem 1.25rem;
    font-size: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .alert {
    padding: 10rem 20rem;
    font-size: 20rem;
  }
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 500;
}

.alert-dismissible {
  padding-right: 3.75003rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.9375rem 1.25rem;
  color: inherit;
  background: none;
  border: none;
}

.alert-primary {
  color: #114e7e;
  background-color: #dbeefd;
  border-color: #339ef4;
}

.alert-primary hr {
  border-top-color: #1b92f3;
}

.alert-primary .alert-link {
  color: #0b3251;
}

.alert-secondary {
  color: #9b51e0;
  background-color: #eee8fe;
  border-color: #9b51e0;
}

.alert-secondary hr {
  border-top-color: #757575;
}

.alert-secondary .alert-link {
  color: #9b51e0;
}

.alert-success {
  color: #285b2a;
  background-color: #e2f2e3;
  border-color: #5ab55e;
}

.alert-success hr {
  border-top-color: #4ca950;
}

.alert-success .alert-link {
  color: #18381a;
}

.alert-info {
  color: #00626e;
  background-color: #d6f4f8;
  border-color: #14c1d7;
}

.alert-info hr {
  border-top-color: #12acc0;
}

.alert-info .alert-link {
  color: #00353b;
}

.alert-warning {
  color: #853a23;
  background-color: #ffe8e1;
  border-color: #ff7b52;
}

.alert-warning hr {
  border-top-color: #ff6839;
}

.alert-warning .alert-link {
  color: #5d2818;
}

.alert-danger {
  color: #7f231c;
  background-color: #fde1df;
  border-color: #f55246;
}

.alert-danger hr {
  border-top-color: #f43b2e;
}

.alert-danger .alert-link {
  color: #551713;
}

.alert-light {
  color: #828282;
  background-color: #fefefe;
  border-color: #fafafa;
}

.alert-light hr {
  border-top-color: #ededed;
}

.alert-light .alert-link {
  color: dimgray;
}

.alert-dark {
  color: #1a2225;
  background-color: #dee1e2;
  border-color: #425057;
}

.alert-dark hr {
  border-top-color: #374349;
}

.alert-dark .alert-link {
  color: #050607;
}

.error {
  display: block;
}

.text-danger {
  color: #dc3545 !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: left;
}

.pagetitle {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 24px;
  text-align: left;
  color: #333;
  padding-left: 0px;
}

@media screen and (max-width: 1400px) {
  .pagetitle {
    font-size: 20rem;
    line-height: 24rem;
    padding-left: 0rem;
  }
}

@media screen and (max-width: 768px) {
  .pagetitle {
    font-size: 32rem;
    line-height: 38rem;
    padding-left: 0rem;
  }
}

.pagetitle {
  /*
  &::before {
      position: absolute;
      content: "";
      width: 15px;
      height: 25px;
      left: 0;
      top: 0;
      clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
      background: #2e3192;

      @include response() {
          width: 15rem;
          height: 25rem;
      }

      @include sp {
          width: 25rem;
          height: 40rem;
      }
  }*/
}

.favorite_btn {
  padding: 10px 5px;
  border-radius: 3px;
  height: 40px;
  background: linear-gradient(#fff 84.41%, #b9b9b9 100%);
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: left;
  color: #666;
  width: 200px;
  margin-top: 10px;
}

.favorite_btn.is-checked {
  background: #e1f3ff;
  border: 1px solid #b5e2f5;
}

.favorite_btn img {
  max-width: 18px;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .favorite_btn img {
    max-width: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .favorite_btn img {
    max-width: 36rem;
  }
}

#login_modal {
  background: rgba(0, 0, 0, 0.5);
}

/* Bootstrap form and modal styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
  max-width: 500px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  pointer-events: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  border: 0;
  background: none;
}

.close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (max-width: 1400px) {
  .form-control {
    font-size: 14rem;
    padding: 10rem 15rem;
    border-radius: 3rem;
    height: 40rem;
  }
}

@media screen and (max-width: 768px) {
  .form-control {
    font-size: 28rem;
    padding: 10rem 15rem;
    border-radius: 5rem;
    height: 60rem;
  }
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-block {
  display: block;
  width: 100%;
}

.tel {
  border-bottom: 1px solid #0071bc;
  color: #0071bc;
}

/* Joditエディタースニペット用スタイル */
.autolead {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 20px 0;
  padding: 15px 0;
  border-left: 4px solid #4FC3F7;
  padding-left: 15px;
  background: rgba(79, 195, 247, 0.05);
}

@media screen and (max-width: 1400px) {
  .autolead {
    font-size: 18rem;
    margin: 20rem 0;
    padding: 15rem 0 15rem 15rem;
  }
}

@media screen and (max-width: 768px) {
  .autolead {
    font-size: 32rem;
    margin: 30rem 0;
    padding: 25rem 0 25rem 25rem;
    line-height: 1.5;
  }
}

.autopoint {
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #f8f9fa;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .autopoint {
    padding: 20rem;
    margin: 20rem 0;
    border-radius: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .autopoint {
    padding: 30rem;
    margin: 30rem 0;
    border-radius: 12rem;
  }
}

.autopoint::before {
  content: "📌 要点まとめ";
  display: block;
  font-weight: bold;
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

@media screen and (max-width: 1400px) {
  .autopoint::before {
    font-size: 14rem;
    margin-bottom: 10rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .autopoint::before {
    font-size: 26rem;
    margin-bottom: 15rem;
    padding-bottom: 12rem;
  }
}

.autopoint p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

@media screen and (max-width: 768px) {
  .autopoint p {
    line-height: 1.5;
  }
}

.autodata {
  border: 2px solid #ffc107;
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.1);
  padding: 20px;
  margin: 20px 0;
}

@media screen and (max-width: 1400px) {
  .autodata {
    padding: 20rem;
    margin: 20rem 0;
    border-radius: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .autodata {
    padding: 30rem;
    margin: 30rem 0;
    border-radius: 12rem;
  }
}

.autodata ul,
.autodata ol {
  margin: 10px 0;
  padding-left: 20px;
}

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

  .autodata ul,
  .autodata ol {
    margin: 10rem 0;
    padding-left: 20rem;
  }
}

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

  .autodata ul,
  .autodata ol {
    margin: 15rem 0;
    padding-left: 35rem;
  }
}

.autodata ul li,
.autodata ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

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

  .autodata ul li,
  .autodata ol li {
    margin-bottom: 8rem;
  }
}

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

  .autodata ul li,
  .autodata ol li {
    margin-bottom: 12rem;
    line-height: 1.5;
  }
}

.autodata p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

@media screen and (max-width: 768px) {
  .autodata p {
    line-height: 1.5;
  }
}

h2.autotitle {
  font-size: 24px;
  font-weight: bold;
  color: #2e3192;
  margin: 30px 0 20px 0;
  padding: 15px 0 15px 20px;
  border-left: 5px solid #4FC3F7;
  background: linear-gradient(90deg, rgba(79, 195, 247, 0.1) 0%, transparent 100%);
  position: relative;
}

@media screen and (max-width: 1400px) {
  h2.autotitle {
    font-size: 24rem;
    margin: 30rem 0 20rem 0;
    padding: 15rem 0 15rem 20rem;
  }
}

@media screen and (max-width: 768px) {
  h2.autotitle {
    font-size: 40rem;
    margin: 40rem 0 25rem 0;
    padding: 20rem 0 20rem 35rem;
    line-height: 1.3;
  }
}

h2.autotitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #4FC3F7;
}

@media screen and (max-width: 1400px) {
  h2.autotitle::after {
    width: 60rem;
    height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  h2.autotitle::after {
    width: 100rem;
    height: 3rem;
  }
}

.autoaction {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .autoaction {
    padding: 15rem 30rem;
    font-size: 16rem;
    margin: 20rem 0;
    border-radius: 50rem;
  }
}

@media screen and (max-width: 768px) {
  .autoaction {
    padding: 25rem 45rem;
    font-size: 28rem;
    margin: 30rem 0;
    border-radius: 80rem;
  }
}

.autoaction::before {
  content: "→ ";
  margin-right: 8px;
  font-weight: bold;
}

@media screen and (max-width: 1400px) {
  .autoaction::before {
    margin-right: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .autoaction::before {
    margin-right: 12rem;
  }
}

.autoaction::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid white;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media screen and (max-width: 1400px) {
  .autoaction::after {
    right: 20rem;
    border-left-width: 6rem;
    border-top-width: 4rem;
    border-bottom-width: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .autoaction::after {
    right: 30rem;
    border-left-width: 10rem;
    border-top-width: 6rem;
    border-bottom-width: 6rem;
  }
}

.autoaction:hover {
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
  background: linear-gradient(135deg, #29B6F6 0%, #4FC3F7 100%);
}

.autoaction:active {
  transform: translateY(0);
}

.pcnav_list a.active {
  color: #aa98f6 !important;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1400px) {
  .pcnav_list a.active {
    border-radius: 8rem;
    padding: 8rem 16rem;
  }
}

@media screen and (max-width: 768px) {
  .pcnav_list a.active {
    border-radius: 12rem;
    padding: 12rem 24rem;
  }
}

.navlist a.active {
  color: #aa98f6 !important;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1400px) {
  .navlist a.active {
    border-radius: 8rem;
    padding: 8rem 16rem;
  }
}

@media screen and (max-width: 768px) {
  .navlist a.active {
    border-radius: 12rem;
    padding: 12rem 24rem;
  }
}

/* Mobile Login Form Styling - Professional Design */
@media screen and (max-width: 768px) {
  .mobile-login-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    border-bottom: 1px solid #ebedf2 !important;
    margin-bottom: 20px !important;
    border-radius: 6px 6px 0 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  }

  .mobile-login-tabs .nav-item {
    flex: 1 1 50% !important;
    max-width: 50% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .mobile-login-tabs .nav-link {
    padding: 12px 10px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: center !important;
    border: none !important;
    border-radius: 0 !important;
    background: #f8f9fa !important;
    color: #6c757d !important;
    transition: all 0.3s ease !important;
    position: relative !important;
  }

  .mobile-login-tabs .nav-link.active {
    background: #ffffff !important;
    color: #2E2D77 !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #2E2D77 !important;
  }

  .mobile-login-tabs .nav-link:hover:not(.active) {
    background: #e9ecef !important;
    color: #495057 !important;
  }

  .mobile-login-tabs .nav-item:first-child .nav-link {
    border-radius: 6px 0 0 0 !important;
  }

  .mobile-login-tabs .nav-item:last-child .nav-link {
    border-radius: 0 6px 0 0 !important;
  }

  .mobile-login-tabs .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid #dee2e6 !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-login-tabs+.tab-content {
    background: #ffffff !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #ebedf2 !important;
    border-top: none !important;
    padding: 20px !important;
    margin-top: -1px !important;
  }

  .mobile-login-tabs+.tab-content .tab-pane {
    padding: 0 !important;
  }

  .mobile-login-tabs+.tab-content .login-form .form-group {
    margin-bottom: 20px !important;
  }

  .mobile-login-tabs+.tab-content .login-form .btn {
    border-radius: 6px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 480px) {
  .mobile-login-tabs .nav-link {
    padding: 10px 6px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 360px) {
  .mobile-login-tabs .nav-link {
    padding: 8px 4px !important;
    font-size: 0.75rem !important;
  }
}

p {
  line-height: 1.6;
  color: #333;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 22rem;
    line-height: 1.5;
  }
}

dl.list-definition-02 dt {
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

@media screen and (max-width: 1400px) {
  dl.list-definition-02 dt {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 768px) {
  dl.list-definition-02 dt {
    margin-top: 15rem;
    font-size: 28rem;
  }
}

dl.list-definition-02 dd {
  margin-left: 0;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #666;
}

@media screen and (max-width: 1400px) {
  dl.list-definition-02 dd {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  dl.list-definition-02 dd {
    margin-bottom: 15rem;
    font-size: 28rem;
    line-height: 1.5;
  }
}

.text-muted {
  color: #6c757d !important;
  font-size: 12px;
}

@media screen and (max-width: 1400px) {
  .text-muted {
    font-size: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .text-muted {
    font-size: 24rem;
  }
}

.section-title {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.88);
  letter-spacing: 2px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28rem !important;
    line-height: 1.5;
  }
}

.section-title p {
  margin-bottom: 4px;
  color: #0D4199;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: normal;
}

@media screen and (max-width: 768px) {
  .section-title p {
    font-size: 48rem !important;
    line-height: 1.5;
  }
}

.bg_white {
  background-color: #ffffff !important;
}

#businessCategoryAccordion .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-bottom: 0;
}

#businessCategoryAccordion .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
}

#businessCategoryAccordion .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

#businessCategoryAccordion .card-title {
  margin-bottom: 0;
}

#businessCategoryAccordion .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

#businessCategoryAccordion .rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

#businessCategoryAccordion .mb-0 {
  margin-bottom: 0 !important;
}

#businessCategoryAccordion .collapse:not(.show) {
  display: none;
}

#businessCategoryAccordion .collapse.show {
  display: block;
}

#businessCategoryAccordion .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

#businessCategoryAccordion .col-md-3 {
  flex: 0 0 auto;
  width: 25%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

#businessCategoryAccordion .mb-2 {
  margin-bottom: 0.5rem !important;
}

#businessCategoryAccordion .d-flex {
  display: flex !important;
}

#businessCategoryAccordion .align-items-center {
  align-items: center !important;
}

#businessCategoryAccordion .justify-content-between {
  justify-content: space-between !important;
}

#businessCategoryAccordion .w-100 {
  width: 100% !important;
}

#businessCategoryAccordion .text-start {
  text-align: left !important;
}

#businessCategoryAccordion .text-decoration-none {
  text-decoration: none !important;
}

#businessCategoryAccordion .ms-2 {
  margin-left: 0.5rem !important;
}

#businessCategoryAccordion .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
}

#businessCategoryAccordion .btn-link {
  font-weight: 400;
  color: #333;
  text-decoration: none;
  padding: 1rem;
  border: none;
  background: none;
  width: 100%;
  font-size: 16px;
}

#businessCategoryAccordion .btn-link span {
  font-size: 16px;
}

#businessCategoryAccordion .btn-link:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

#businessCategoryAccordion .btn-link:focus {
  box-shadow: none;
  outline: none;
}

#businessCategoryAccordion .btn-link:not(.collapsed) .toggle-icon {
  transform: rotate(90deg);
  color: #0d6efd;
}

#businessCategoryAccordion .toggle-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  color: #6c757d;
}

#businessCategoryAccordion label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px !important;
}

#businessCategoryAccordion label span {
  font-size: 14px !important;
  margin-left: 10px;
}

#businessCategoryAccordion input[type=radio] {
  cursor: pointer;
  margin: 0;
}

@media (max-width: 767px) {
  #businessCategoryAccordion .col-md-3 {
    width: 50%;
  }

  #businessCategoryAccordion .btn-link {
    font-size: 14px !important;
    padding: 10px;
  }

  #businessCategoryAccordion .btn-link span {
    font-size: 18px !important;
  }

  #businessCategoryAccordion .card-body {
    padding: 1rem;
  }

  #businessCategoryAccordion label {
    font-size: 14px !important;
  }

  #businessCategoryAccordion label span {
    font-size: 14px !important;
  }
}

@media (max-width: 575px) {
  #businessCategoryAccordion .col-md-3 {
    width: 100%;
  }

  #businessCategoryAccordion .btn-link {
    font-size: 14px !important;
    padding: 10px;
  }

  #businessCategoryAccordion .btn-link span {
    font-size: 14px !important;
  }

  #businessCategoryAccordion .card-body {
    padding: 20px;
  }

  #businessCategoryAccordion label {
    font-size: 14px !important;
  }

  #businessCategoryAccordion label span {
    font-size: 14px !important;
    margin-left: 10px;
  }

  #businessCategoryAccordion .toggle-icon {
    font-size: 18px !important;
  }

  #businessCategoryAccordion input[type=radio] {
    margin: 0px;
  }
}

@media screen and (max-width: 1400px) {
  .p-searchsec_title {
    font-size: 20px !important;
    line-height: 24px !important;
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 768px) {
  .p-searchsec_title {
    font-size: 20px !important;
    line-height: 24px !important;
    padding-left: 20px !important;
  }
}

/*# sourceMappingURL=custom.css.map */
