
.admin_header {
  color: #333;
}

.content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}
.content-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #274154;
}
.content-header .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.admin-table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.admin-table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  color: #495057;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  white-space: nowrap;
}
.admin-table tbody tr {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
.admin-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
.admin-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}
.admin-table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #212529;
}
.admin-table .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.admin-table .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.admin-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}
.admin-card .card-header {
  background-color: #f8f9fa;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.admin-card .card-header h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #274154;
}
.admin-card .card-header.bg-primary h5, .admin-card .card-header.bg-success h5, .admin-card .card-header.bg-info h5, .admin-card .card-header.bg-warning h5, .admin-card .card-header.bg-secondary h5 {
  color: #fff;
}
.admin-card .card-body {
  padding: 1.25rem;
}
.admin-card .card-subtitle {
  font-size: 0.875rem;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.advertising-guide h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #274154;
}
.advertising-guide p,
.advertising-guide ul {
  font-size: 0.875rem;
  color: #495057;
}
.advertising-guide ul {
  padding-left: 1.25rem;
}
.advertising-guide ul li {
  margin-bottom: 0.5rem;
}

.form-control-sm {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  height: calc(1.5em + 0.5rem + 2px);
}

.dropdown-menu {
  font-size: 0.875rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
}
.dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
}

.alert {
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.container-fluid .border-bottom {
  border-color: #dee2e6 !important;
}
.container-fluid .text-muted {
  color: #6c757d;
  font-size: 0.9rem;
}
.container-fluid .row {
  margin-bottom: 1.5rem;
}
.container-fluid .row:last-child {
  margin-bottom: 0;
}
.container-fluid .col-3,
.container-fluid .col-6 {
  padding: 0.75rem;
}

.card {
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  height: 100%;
  -webkit-transition: -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.card.bg-primary .card-body, .card.bg-success .card-body, .card.bg-info .card-body, .card.bg-warning .card-body {
  padding: 1.25rem;
}
.card.bg-primary .card-title, .card.bg-success .card-title, .card.bg-info .card-title, .card.bg-warning .card-title {
  font-size: 1rem;
  font-weight: 500;
}
.card.bg-primary .display-4, .card.bg-success .display-4, .card.bg-info .display-4, .card.bg-warning .display-4 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.card.bg-primary .stretched-link, .card.bg-success .stretched-link, .card.bg-info .stretched-link, .card.bg-warning .stretched-link {
  font-size: 0.875rem;
  font-weight: 500;
}
.card.bg-primary .stretched-link:hover, .card.bg-success .stretched-link:hover, .card.bg-info .stretched-link:hover, .card.bg-warning .stretched-link:hover {
  text-decoration: underline !important;
}
.card.bg-primary .stretched-link .bi-arrow-right, .card.bg-success .stretched-link .bi-arrow-right, .card.bg-info .stretched-link .bi-arrow-right, .card.bg-warning .stretched-link .bi-arrow-right {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.card.bg-primary .stretched-link:hover .bi-arrow-right, .card.bg-success .stretched-link:hover .bi-arrow-right, .card.bg-info .stretched-link:hover .bi-arrow-right, .card.bg-warning .stretched-link:hover .bi-arrow-right {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.75rem 1.25rem;
}
.card-header h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
}
.card-header .btn-group .btn {
  font-size: 0.75rem;
}
.card-header .btn-group .btn.active {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}

.card-body {
  padding: 1.25rem;
}
.card-body canvas {
  margin-top: 0.5rem;
  height: 250px !important;
}

.list-group .list-group-item {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
.list-group .list-group-item:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
.list-group .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group .list-group-item:last-child {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.list-group .list-group-item h6 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.list-group .list-group-item p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.list-group .list-group-item small {
  font-size: 0.75rem;
}

.badge {
  padding: 0.35em 0.65em;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 10rem;
}
.badge.bg-primary {
  background-color: #007bff !important;
}

canvas {
  max-width: 100%;
  height: 250px !important;
  width: 100% !important;
}

.bi-people, .bi-building, .bi-briefcase, .bi-calendar-check, .bi-graph-up, .bi-activity, .bi-info-circle, .bi-hdd-stack, .bi-gem, .bi-braces, .bi-server {
  vertical-align: -0.125em;
}

.pageTitle_h6 {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}
.pageTitle_h6 i {
  margin-right: 8px;
}

.news_adminIndex {
  padding: 80px 0;
  min-height: 90vh;
}
.news_adminIndex .alert-info {
  background: none !important;
  border: none;
  color: #272727;
  padding: 0 !important;
}

.news_edit {
  padding: 80px 0;
}
.news_edit h6 {
  font-size: 24px;
  letter-spacing: 2px;
}
.news_edit h6 i {
  margin-right: 8px;
}
.news_edit .edit_table {
  width: 100%;
}
.news_edit .edit_table th,
.news_edit .edit_table td {
  display: block;
  width: 100%;
}
.news_edit .edit_table th {
  text-align: left;
  margin: 1rem 0;
}
.news_edit .edit_table td .form-text {
  font-size: 12px;
  color: #666;
  margin: 1rem 0;
}
.news_edit .edit_table tr {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0;
  margin: 1rem 0;
  display: block;
}

.create_btn {
  background: #333;
  color: white;
  padding: 8px 24px;
  display: block;
  width: 80px;
  margin-bottom: 3rem;
  font-size: 14px;
}

.back_btn {
  background: #272727;
  color: white;
  padding: 8px 24px;
  display: block;
  width: 100px;
  margin-bottom: 3rem;
  font-size: 14px;
}

.btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 2rem 0;
}
.btn_group .approval＿btn {
  background: #272727;
  color: white;
  padding: 8px 24px;
}
.btn_group .cancel_btn {
  background: #ccc;
  color: #272727;
  padding: 8px 24px;
}

.admin_category {
  padding: 80px 0;
}
.admin_category table {
  border-top: none !important;
}
.admin_category table th {
  text-align: left !important;
}

.admin_categoryEdit {
  padding: 80px 0;
}
.admin_categoryEdit .container {
  max-width: 960px;
  margin: 0 auto;
}
.admin_categoryEdit .edit_table {
  width: 100%;
}
.admin_categoryEdit .edit_table th,
.admin_categoryEdit .edit_table td {
  display: block;
  width: 100%;
}
.admin_categoryEdit .edit_table th {
  text-align: left;
  margin-bottom: 8px;
}
.admin_categoryEdit .edit_table tr {
  display: block;
  padding: 16px 0;
}

.admin_joblistsIndex {
  padding: 80px 0;
}
.admin_joblistsIndex .admin-table {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: none;
}
.admin_joblistsIndex .recommend_job_offerList {
  margin: 3rem 0;
}
.admin_joblistsIndex .recommend_job_offerList h5 {
  margin: 1rem 0;
}
.admin_joblistsIndex .recommend_job_offerList h5 span {
  font-size: 80%;
  margin-left: 8px;
}
.admin_joblistsIndex .general_job_offerList {
  margin: 3rem 0;
}
.admin_joblistsIndex .general_job_offerList h5 {
  margin: 1rem 0;
}
.admin_joblistsIndex .general_job_offerList h5 span {
  font-size: 80%;
  margin-left: 8px;
}

.admin_joblistsShow {
  padding: 80px 0;
}
.admin_joblistsShow .status_info {
  background: white;
  padding: 16px;
  margin-bottom: 40px;
}
.admin_joblistsShow .status_info h6::before {
  content: "■";
  margin-right: 8px;
}
.admin_joblistsShow .status_info .row .col-3 dl {
  margin: 1rem 0;
}
.admin_joblistsShow .status_info .row .col-3 dl dt {
  float: left;
}
.admin_joblistsShow .status_info .row .col-3 dl dt::after {
  content: ":";
  margin-right: 8px;
}
.admin_joblistsShow .status_info .row .col-3 dl dd {
  margin: 0;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .success {
  padding: 0.4rem 0.8rem;
  color: #272727;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .danger {
  padding: 0.4rem 0.8rem;
  color: #dc3545;
}
.admin_joblistsShow .status_info .row .col-3 dl dd .green {
  color: green;
}
.admin_joblistsShow table {
  width: 100%;
  table-layout: fixed;
}
.admin_joblistsShow table tr {
  border-bottom: 1px solid #ccc;
}
.admin_joblistsShow table th,
.admin_joblistsShow table td {
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}
.admin_joblistsShow table th {
  width: 20%;
  text-align: left;
}
.admin_joblistsShow table td {
  width: 90%;
}

.company_dashboard {
  padding: 80px 0;
}
.company_dashboard .row {
  margin: 40px 0 !important;
}
@media screen and (max-width: 767px) {
  .company_dashboard .row .col-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .company_dashboard .table-responsive,
  .company_dashboard .job-table {
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
  }
  .company_dashboard .job-table {
    min-width: 1200px;
  }
}
.company_dashboard .col-2 {
  padding: 0 8px;
  min-height: 100% !important;
}
@media screen and (max-width: 767px) {
  .company_dashboard .col-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 8px;
  }
}
.company_dashboard .col-2 h5 {
  font-size: 1rem;
}

.company_profile_edit {
  padding: 80px 0;
  overflow: visible !important;
}
.company_profile_edit .back_btn {
  width: 200px !important;
}
.company_profile_edit .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.company_profile_edit .col-3 {
  position: sticky;
  top: 100px;
  z-index: 10;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.company_profile_edit .col-3 h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.company_profile_edit .col-3 p {
  font-size: 12px;
  margin-bottom: 16px;
}
.company_profile_edit .col-3 .company_setting {
  background: white;
  padding: 24px 16px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.company_profile_page {
  padding: 0;
}
.company_profile_page .container {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_profile_page .container {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.company_profile_page .company_main_visual {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.company_profile_page .main_visual_title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  position: absolute;
  padding: 16px 24px;
  top: 50%;
  left: 0;
  background: white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company_profile_page .about_contents {
  padding: 120px 0;
  background-color: #f8f9fa;
}
.company_profile_page .about_contents h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.company_profile_page .about_contents h6 span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #666;
  margin-top: 0.5rem;
}
.company_profile_page .about_contents p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company_profile_page .about_contents p {
    font-size: 1rem;
    text-align: left;
  }
}
.company_profile_page .company_detile {
  padding: 120px 0;
  background-color: #eef3f5;
}
.company_profile_page .company_detile h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.company_profile_page .company_detile h6 span {
  font-size: 50%;
  display: block;
  font-weight: normal;
}
.company_profile_page .company_detile .company_info_table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table {
    max-width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.company_profile_page .company_detile .company_info_table th, .company_profile_page .company_detile .company_info_table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table th, .company_profile_page .company_detile .company_info_table td {
    display: block;
    border-bottom: none;
    padding: 0;
  }
}
.company_profile_page .company_detile .company_info_table th {
  width: 30%;
  color: #333;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table th {
    width: 100%;
    padding: 16px 0 8px;
    color: #888;
  }
}
.company_profile_page .company_detile .company_info_table td {
  width: 70%;
  color: #555;
}
@media screen and (max-width: 767px) {
  .company_profile_page .company_detile .company_info_table td {
    width: 100%;
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 16px !important;
    color: #272727 !important;
  }
}
.company_profile_page .company_detile .company_info_table td p {
  margin: 0;
}
.company_profile_page .company_detile .company_info_table tr:last-child th, .company_profile_page .company_detile .company_info_table tr:last-child td {
  border-bottom: none;
}
.company_profile_page .company_detile .company_info_table .website_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .company_detile .company_info_table .website_link:hover {
  text-decoration: underline;
}
.company_profile_page .main_visual_category {
  font-size: 1.3rem;
  color: white;
  text-align: center;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.company_profile_page .company_header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.company_profile_page .company_main_image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.company_profile_page .company_image_placeholder {
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
}
.company_profile_page .company_name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.company_profile_page .company_category, .company_profile_page .company_station {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.company_profile_page .company_section {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.company_profile_page .section_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}
.company_profile_page .section_content {
  line-height: 1.8;
  color: #555;
}
.company_profile_page .joblists_grid, .company_profile_page .oneday_jobs_grid {
  display: grid;
  gap: 1rem;
}
.company_profile_page .joblist_card, .company_profile_page .oneday_job_card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.company_profile_page .joblist_card:hover, .company_profile_page .oneday_job_card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.company_profile_page .joblist_title, .company_profile_page .oneday_job_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.company_profile_page .joblist_link, .company_profile_page .oneday_job_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .joblist_link:hover, .company_profile_page .oneday_job_link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}
.company_profile_page .joblist_salary, .company_profile_page .oneday_job_salary {
  background-color: #667eea;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
}
.company_profile_page .joblist_details, .company_profile_page .oneday_job_details {
  margin-top: 1rem;
}
.company_profile_page .joblist_location, .company_profile_page .joblist_work_time, .company_profile_page .oneday_job_date, .company_profile_page .oneday_job_location {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.company_profile_page .company_sidebar {
  position: sticky;
  top: 2rem;
}
.company_profile_page .sidebar_section {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.company_profile_page .sidebar_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
.company_profile_page .company_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.company_profile_page .info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.company_profile_page .info_item:last-child {
  border-bottom: none;
}
.company_profile_page .info_label {
  font-weight: bold;
  color: #666;
}
.company_profile_page .info_value {
  color: #333;
}
.company_profile_page .website_link {
  color: #667eea;
  text-decoration: none;
}
.company_profile_page .website_link:hover {
  text-decoration: underline;
}
.company_profile_page .company_address {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}
.company_profile_page .address_text {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
.company_profile_page .action_buttons {
  text-align: center;
}
@media (max-width: 768px) {
  .company_profile_page .company_main_visual {
    height: 300px;
  }
  .company_profile_page .main_visual_title {
    font-size: 1.2rem;
    padding: 12px 16px;
  }
  .company_profile_page .main_visual_category {
    font-size: 1.1rem;
  }
  .company_profile_page .company_name {
    font-size: 2rem;
  }
  .company_profile_page .company_section {
    padding: 1.5rem;
  }
  .company_profile_page .company_sidebar {
    position: static;
    margin-top: 2rem;
  }
}

.company_access {
  padding: 80px 0;
}
.company_access h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.company_access h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}

.entry_box {
  padding: 80px 0;
}
.entry_box h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.entry_box h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.entry_box .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 80px 0 !important;
}
.entry_box .row h5 {
  margin-bottom: 1.5rem;
}
.entry_box .row .tel_link {
  background: none;
  border: none;
  color: #272727;
  font-size: 32px;
  padding: 0;
  margin: 0;
}
.entry_box .row .entry_btn {
  background: #F4A300;
  border: none;
  font-size: 18px;
  padding: 0;
  margin: 0 auto;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  width: 60%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.joblist_detile {
  padding: 80px 0;
}
.joblist_detile h2 {
  margin: 2rem 0 1rem;
  font-size: 24px;
}
.joblist_detile h2 span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .joblist_detile h2 {
    font-size: 20px;
  }
}
.joblist_detile h3 {
  margin: 2rem 0;
  font-size: 16px;
}
.joblist_detile h4 {
  margin: 1rem 0;
  font-size: 16px;
}
.joblist_detile .job-description, .joblist_detile .target-resources, .joblist_detile .job-conditions, .joblist_detile .welfare-benefits {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info a {
    display: block;
    margin: 24px auto;
    width: 60%;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .joblist_detile .company-info {
    margin: 40px 0;
    background: white;
    padding: 32px 16px;
  }
}

.job-conditions table {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .job-conditions table th, .job-conditions table td {
    display: block;
    border-bottom: none;
    padding: 0;
  }
}
.job-conditions table th {
  width: 20%;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .job-conditions table th {
    width: 100%;
    padding: 16px 0 8px;
    color: #888;
    border-bottom: none;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .job-conditions table td {
    width: 100%;
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 16px !important;
    color: #272727 !important;
    border-top: none !important;
  }
}
.job-conditions table tr:last-of-type th, .job-conditions table tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .job-conditions table tr:last-of-type th, .job-conditions table tr:last-of-type td {
    border-bottom: none !important;
  }
}

.welfare-benefits .benefits-list span {
  background: #FFE5B0;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.entry_login_btn {
  max-width: 250px;
  margin: 0 auto;
  background: #007bff;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: block;
}

.information_management .row .col-3 .inner_cotents {
  background: white;
  padding: 32px 16px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.information_management .row .col-3 .inner_cotents h3 {
  font-size: 1.5rem;
}
.information_management .row .col-3 .inner_cotents p {
  margin: 0;
  font-size: 1.2rem;
}

.recruit_management .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}
.recruit_management .tab-content {
  padding: 1rem;
  background: white;
  margin-top: 0 !important;
}
.recruit_management .nav-item {
  margin-right: 2px;
  font-size: 1rem;
}
.recruit_management .nav-item .nav-link {
  display: block;
  font-size: 1rem !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #6c757d;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.recruit_management .nav-item .nav-link i {
  margin-right: 8px;
}
.recruit_management .nav-item .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  color: #0d6efd;
}
.recruit_management .nav-item .nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}

.nav-item {
  margin-right: 2px;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #6c757d;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  color: #0d6efd;
}
.nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.tab-content {
  padding: 1rem 0;
}

.tab-pane {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.tab-pane.active {
  display: block;
  opacity: 1;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.job-table th,
.job-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
}
.job-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.job-table tbody tr {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.job-table tbody tr:hover {
  background-color: #f8f9fa;
}

.job-title {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}
.job-title:hover {
  text-decoration: underline;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  min-width: 60px;
}
.status-badge.draft {
  background-color: #6c757d;
  color: #fff;
}
.status-badge.pending {
  background-color: #ffc107;
  color: #000;
}
.status-badge.approved {
  background-color: #198754;
  color: #fff;
}
.status-badge.rejected {
  background-color: #dc3545;
  color: #fff;
}
.status-badge.published {
  background-color: #198754;
  color: #fff;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .action-buttons {
    display: block;
  }
}
.action-buttons .btn {
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .action-buttons .btn {
    display: block;
    padding: 8px 0;
    width: 60%;
    border-radius: 30px;
    margin: 40px auto;
  }
}

.status-select {
  min-width: 100px;
}

.status-selector {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.status-selector:hover {
  border-color: #0d6efd;
}
.status-selector:focus {
  border-color: #0d6efd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  outline: none;
}
.status-selector option[value=draft] {
  color: #6c757d;
}
.status-selector option[value=published] {
  color: #198754;
}

.user_management_company {
  padding: 40px 0;
  margin: 80px 0;
  min-height: 90vh;
}
.user_management_company h3 {
  margin-bottom: 3rem;
}
.user_management_company .inner_contents {
  padding: 40px 16px;
  background: white;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.user_management_company .inner_contents .table thead th {
  background: none;
  border-top: none;
  text-align: left;
}
.user_management_company .inner_contents .table thead th {
  background: none;
  border-top: none;
  text-align: left;
}
.user_management_company .inner_contents .table th,
.user_management_company .inner_contents .table td {
  font-size: 14px;
  padding: 8px;
}
.user_management_company .inner_contents .table .status-select {
  font-size: 14px;
}
.user_management_company .show_table {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.user_management_company .show_table th,
.user_management_company .show_table td {
  padding: 24px 0;
  border-bottom: 1px solid #dee2e6;
}
.user_management_company .show_table th {
  width: 30%;
  text-align: left;
}
.user_management_company .show_table td {
  width: 70%;
}

.recruit_form .btn-group {
  margin: 40px 0 80px;
}

.edit_section {
  background: white;
  padding: 16px;
  margin: 24px 0;
}
.edit_section table {
  width: 100%;
}
.edit_section table th, .edit_section table td {
  display: block;
  width: 100%;
  padding: 8px 0;
}
.edit_section table th {
  text-align: left;
  margin-top: 8px;
}
.edit_section table .half {
  display: inline-block;
  width: 48%;
  padding: 0 8px;
}
.edit_section table td input, .edit_section table td select, .edit_section table td textarea {
  width: 100%;
  padding: 12px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.edit_section table td .form-check {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 8px;
}
.edit_section table td .form-check .form-check-input {
  margin-right: 6px;
  width: 20px;
}
.edit_section table td .form-check .form-check-label {
  font-weight: normal;
  cursor: pointer;
}
.edit_section table td .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.edit_section table td .row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 8px);
          flex: 0 0 calc(50% - 8px);
}
.edit_section table td .row .col-6 .form-check {
  display: block;
  margin-bottom: 8px;
}
.edit_section table td .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.edit_section table td .input-group .form-control, .edit_section table td .input-group .form-select {
  width: 40%;
}
.edit_section table td .input-group .btn {
  width: auto;
  white-space: nowrap;
  background: #272727;
  color: white;
}

.user_mypage {
  padding: 80px 0;
  min-height: 70vh;
}
.user_mypage h3 span {
  font-size: 50%;
  display: block;
}
.user_mypage .btn-group {
  margin: 2rem 0;
}
.user_mypage .btn-group .btn {
  width: 200px;
  padding: 8px 0;
}
.user_mypage .btn-group .btn::before {
  content: "\f2bb";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-right: 8px;
}
.user_mypage .btn-group a {
  color: white;
  width: 200px !important;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
}
.user_mypage .btn-group a:last-of-type {
  background: #888;
  padding: 8px 0;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.user_mypage .btn-group a:last-of-type::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-right: 8px;
}
.user_mypage .tab-content {
  padding: 1rem;
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.user_mypage .tab-content .alert, .user_mypage .tab-content .alert-info {
  background: none;
  border: none;
}
.user_mypage .tab-content ul {
  padding: 0;
}
.user_mypage .tab-content ul li {
  list-style: none;
  border: none;
  border-bottom: 1px solid #f2f2f2;
}
.user_mypage .tab-content ul li span {
  display: block;
  margin: 4px 0;
  color: #888;
}
.user_mypage .tab-content ul li span:last-of-type {
  display: inline-block;
  color: #272727;
}

.mypage-tabs {
  margin-bottom: 1.5rem;
}
.mypage-tabs .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}
.mypage-tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #6c757d;
}
.mypage-tabs .nav-tabs .nav-link.active {
  color: #0d6efd;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 500;
}

.profile_edit {
  padding: 80px 0;
}
.profile_edit h3 {
  margin-bottom: 2rem;
}
.profile_edit h3 span {
  font-size: 50%;
  display: block;
  margin-top: 8px;
}
.profile_edit .edit_table th {
  width: 20%;
  vertical-align: middle;
}
.profile_edit .edit_table td input, .profile_edit .edit_table td select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
}
.profile_edit .btn-group {
  margin: 2rem 0;
}
.profile_edit .btn-group .btn {
  width: 200px;
  padding: 8px 0;
}
.profile_edit .btn-group .btn::before {
  content: "\f2ea" !important;
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-right: 8px;
}
.profile_edit .btn-group a {
  color: white;
  width: 200px !important;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
}
.profile_edit .btn-group a:last-of-type {
  background: #888;
  padding: 8px 0;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.profile_edit .btn-group a:last-of-type::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-right: 8px;
}

.edit_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.edit_table th {
  width: 30%;
  padding: 1rem;
  font-weight: 600;
  vertical-align: top;
  text-align: left;
}
.edit_table td {
  padding: 1rem;
  vertical-align: top;
}
.edit_table .form-control,
.edit_table .form-select {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.edit_table .form-control:focus,
.edit_table .form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.edit_table .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.edit_table .input-group .form-control, .edit_table .input-group .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.edit_table .input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.edit_table .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
.edit_table textarea.form-control, .edit_table textarea.form-select {
  resize: vertical;
  min-height: 100px;
}

.contact_form_page {
  padding: 80px 0;
}
.contact_form_page h3 {
  margin-bottom: 3rem;
}
.contact_form_page .form_contents {
  max-width: 960px;
  margin: 0 auto;
}
.contact_form_page table {
  width: 100%;
}
.contact_form_page table th, .contact_form_page table td {
  display: block;
}
.contact_form_page table th {
  text-align: left;
  border: none;
  font-weight: 500;
  margin-top: 12px;
}
.contact_form_page table td {
  border-top: none;
  border-bottom: 1px solid #ccc;
}
.contact_form_page table td input, .contact_form_page table td textarea, .contact_form_page table td select {
  width: 100%;
  border-radius: 6px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --gutter-width: 1rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min)em;
  --screen-sm-min: var(--sm-min)em;
  --screen-md-min: var(--md-min)em;
  --screen-lg-min: var(--lg-min)em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 16px;
  margin-left: 16px;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

.col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
      flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
      flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
      flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
      flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
      flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (--sm-viewport) {
  .container {
    width: var(--container-sm, 46rem);
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (--md-viewport) {
  .container {
    width: var(--container-md, 61rem);
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 16px;
    padding-left: 16px;
  }
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-offset-0,
.col-offset-1,
.col-offset-2,
.col-offset-3,
.col-offset-4,
.col-offset-5,
.col-offset-6,
.col-offset-7,
.col-offset-8,
.col-offset-9,
.col-offset-10,
.col-offset-11,
.col-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .col,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-offset-0,
  .col-offset-1,
  .col-offset-2,
  .col-offset-3,
  .col-offset-4,
  .col-offset-5,
  .col-offset-6,
  .col-offset-7,
  .col-offset-8,
  .col-offset-9,
  .col-offset-10,
  .col-offset-11,
  .col-offset-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
@media screen and (max-width: 767px) {
  .col-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-2 {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
@media screen and (max-width: 767px) {
  .col-2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
@media screen and (max-width: 767px) {
  .col-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-4 {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
@media screen and (max-width: 767px) {
  .col-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-5 {
  -ms-flex-preferred-size: 41.66666667%;
      flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
@media screen and (max-width: 767px) {
  .col-5 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.col-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .col-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.col-7 {
  -ms-flex-preferred-size: 58.33333333%;
      flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
@media screen and (max-width: 767px) {
  .col-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

.col-8 {
  -ms-flex-preferred-size: 66.66666667%;
      flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
@media screen and (max-width: 767px) {
  .col-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
@media screen and (max-width: 767px) {
  .col-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-10 {
  -ms-flex-preferred-size: 83.33333333%;
      flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
@media screen and (max-width: 767px) {
  .col-10 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-11 {
  -ms-flex-preferred-size: 91.66666667%;
      flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
@media screen and (max-width: 767px) {
  .col-11 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.col-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.col-offset-0 {
  margin-left: 0;
}

.col-offset-1 {
  margin-left: 8.33333333%;
}

.col-offset-2 {
  margin-left: 16.66666667%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.33333333%;
}

.col-offset-5 {
  margin-left: 41.66666667%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.33333333%;
}

.col-offset-8 {
  margin-left: 66.66666667%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.33333333%;
}

.col-offset-11 {
  margin-left: 91.66666667%;
}

.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}

.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
}

.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

img {
  display: block;
  max-width: 100%;
}

.first {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .first {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}

.second {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .second {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .inline {
    display: inline-block !important;
  }
}

.readmore {
  display: inline;
  text-align: center;
  font-size: 0.8rem;
  margin: 0;
  color: #675852;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

h2 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h3 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h4 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

h5 {
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  h2, h3, h4, h5, h6, p {
    letter-spacing: 0.03em !important;
  }
}

h4, h5, h6 {
  line-height: 1.5;
}

p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  p {
    white-space: normal;
  }
}

article {
  padding: calc(40px + 3vw) 0;
}

a {
  text-decoration: none;
  color: #272727;
}

.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.row {
  margin: 0 !important;
}

.container-fluid {
  width: calc(100% - 32px);
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  max-width: 1138px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
    padding: 0 !important;
    margin: 0 auto;
  }
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

.wp-pagenavi { /* 全体 */
  margin: 20px 0;
  font-size: 12px;
  text-align: center;
}

.wp-pagenavi a { /* フォント色 */
  color: #4a4a4a;
  margin: 0 8px;
}

.pages { /* 左の表記 */
  margin-right: 20px;
}

.sfwppa-pages {
  margin: 0 8px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page { /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current { /* カレント数字 */
  border: none;
  background: #87e6e9;
  color: #fff;
}

.wp-pagenavi a.page:hover { /* マウスオーバー */
  background: #87e6e9;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend { /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}

#stickyBox {
  position: relative;
  width: 100%;
}
#stickyBox.is-show #floating-menu {
  left: 30px;
  position: fixed;
  top: 0;
}

.sticky #floating-menu {
  top: 0;
  position: fixed;
}

.automatic_quote {
  background: #0068b7;
  color: white;
  border-radius: 30px;
  display: block;
  width: 250px;
  margin: 3rem auto;
  padding: 8px 16px;
  font-size: 24px;
}

.Iinner_btnGroup ul {
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .Iinner_btnGroup ul {
    display: block;
  }
}
.Iinner_btnGroup ul li {
  background: white;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #272727;
  border-radius: 6px;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .Iinner_btnGroup ul li {
    width: 90%;
    display: block;
    margin: 1rem auto;
  }
}
.Iinner_btnGroup ul li span {
  display: block;
  font-size: 50%;
}
.Iinner_btnGroup ul li a {
  font-size: clamp(24px, 2.8vw, 28px);
  text-align: center;
}

.blueBtn {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  background: #00b9e7;
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
}

.stripBtn_blue {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 185, 231, 0.5) 10px, rgba(0, 185, 231, 0.5) 25px);
  display: block;
  max-width: 400px;
  margin: 2rem auto;
  padding: 18px 0;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  text-align: center;
}

.stripBtn_yellow {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 219, 0, 0.5) 10px, rgba(255, 219, 0, 0.5) 25px);
  display: block;
  max-width: 400px;
  margin: 2rem auto;
  padding: 18px 0;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  text-align: center;
}
.stripBtn_yellow i {
  font-weight: 500;
}

.dmtitle {
  text-align: center;
}

.dm-text {
  white-space: pre-line;
}

#trial_period_fields {
  display: none;
}
#trial_period_fields.show {
  display: block;
}

.trial-period-fields {
  display: none;
}

.trial-period-toggle:checked ~ .trial-period-fields {
  display: block;
}

footer {
  border-top: 1px solid #ccc;
  padding-top: 80px;
  background: white;
}
footer h2 {
  font-size: 16px;
  margin-top: 2rem;
}
footer h2 span {
  display: block;
  font-size: 80%;
  margin-bottom: 8px;
}
footer h2 span::before {
  content: "■";
  margin-right: 4px;
}
footer .row .col-6 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer .col-6 .col-6 {
    margin: 2rem 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  footer .col-6 .col-6 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  footer .col-6 .col-6 img {
    width: 100%;
  }
}
footer address {
  font-style: normal;
  margin-bottom: 8px;
}
footer .tel::before {
  content: "TEL";
  margin-right: 4px;
}
footer ul {
  padding: 0;
  margin: 2rem 0;
}
footer ul li {
  margin-bottom: 8px;
  margin: 0 16px;
  display: inline-block;
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer ul li {
    display: block;
  }
}
footer ul li a {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  footer ul li a {
    font-size: 12px;
    margin: 8px 0;
  }
}

#main-header .logo {
  max-width: 250px !important;
  height: auto !important;
}
@media screen and (max-width: 767px) {
  #main-header .logo {
    padding: 16px 0;
    max-width: 200px !important;
  }
}
#main-header .logo img {
  width: 100% !important;
  height: auto !important;
}
#main-header .up_menu {
  display: block;
  text-align: right;
}
#main-header .up_menu li {
  padding: 0;
  padding-top: 8px;
}
#main-header .up_menu li a {
  font-size: 12px !important;
}
#main-header .up_menu li:last-of-type {
  border-left: none;
  border-right: none;
}

.admin-header {
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
}
.admin-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 1.5rem;
}
.admin-header img {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.admin-header .admin-info {
  margin-left: auto;
  font-size: 0.9rem;
  padding-right: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-header .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.admin-header .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.col-2 {
  min-height: calc(100vh - 60px);
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
.col-2 ul {
  list-style: none;
  padding: 0;
}
.col-2 ul li {
  padding: 1rem 0;
}
.col-2 ul li a i {
  margin-right: 0.5rem;
}
.col-2 .nav-link {
  border-radius: 0.25rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
  list-style: none;
}
.col-2 .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.col-2 .nav-link.active {
  background-color: #1f9ee5;
  color: #fff;
}
.col-2 hr {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    padding: 80px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100vw;
    height: 100vh;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav-menu.open {
    display: block !important;
    position: fixed;
  }
  .nav-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
    text-align: left;
    padding: 12px 16px;
    margin: 0 !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav-menu li:last-child {
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  .nav-menu li:last-child i {
    display: inline-block !important;
    margin: 0;
  }
  .nav-menu li:last-child button {
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }
  .hamburger {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1100;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: #333;
    margin: 6px 0;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  .nav-menu {
    display: block !important;
  }
}
.hamburger span {
  display: block;
  height: 2px;
  width: 30px;
  background: #333;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

header {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .navbar .logo {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  header .navbar .logo {
    padding: 16px 0;
  }
}
header .navbar .up_menu li a {
  font-size: 12px !important;
}
header .navbar .nav-menu {
  display: inline-block;
}
header .navbar .nav-menu ul {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .navbar .nav-menu ul li {
  margin: 0 1rem;
  display: inline-block;
}
header .navbar .nav-menu ul li i {
  margin-right: 8px;
}
header .navbar .nav-menu ul li:last-child {
  margin-right: 0;
  background: none !important;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0.8rem 1rem;
}
@media screen and (max-width: 767px) {
  header .navbar .nav-menu ul li:last-child {
    border-left: none;
    border-right: none;
  }
}
header .navbar .nav-menu ul li:last-child i {
  display: block;
  font-size: 1.5rem;
  margin: 0 auto 4px;
  text-align: center;
}
header .navbar .nav-menu ul li:last-child form {
  background: none !important;
}
header .navbar .nav-menu ul li:last-child form button {
  background: none !important;
  border: none !important;
}
header .navbar .navbar-brand img {
  width: 50px !important;
  height: auto !important;
}
header .navbar .nav-link {
  padding: 0.5rem 0;
  color: #444;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  border: none !important;
}
header .navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
header .navbar .nav-link:hover, header .navbar .nav-link:focus {
  color: #007bff;
}
header .navbar .nav-link:hover::after, header .navbar .nav-link:focus::after {
  width: 100%;
}
header .navbar .nav-link.active {
  color: #007bff;
}
header .navbar .nav-link.active::after {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
main .alert {
  margin-bottom: 1rem;
}

.debug-info {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  header .navbar .navbar-brand {
    margin-right: 0;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  header .navbar .navbar-menu {
    width: 100%;
  }
  header .navbar .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
  }
  header .navbar .navbar-nav .nav-item {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .navbar .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  header .navbar .navbar-nav .nav-link::after {
    display: none;
  }
  header .navbar .nav-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  header .navbar .nav-buttons .btn {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
  header .navbar .nav-buttons .btn:last-child {
    margin-bottom: 0;
  }
}
.index_page {
  margin: calc(80px + 3rem) 0;
}
.index_page h2,
.index_page h3 {
  font-size: 2rem;
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
}
.index_page h2 span,
.index_page h3 span {
  font-size: 14px;
  display: block;
  margin-top: 8px;
}
.index_page p {
  text-align: center;
  font-size: 14px;
  color: #888;
}
.index_page .search-form select,
.index_page .search-form input {
  width: 100%;
  padding: 8px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index_page .search-form select {
  padding: 8px;
}
.index_page .search-form .btn {
  background: #FFB000;
  margin: 0 auto;
  width: 90%;
  font-weight: bold;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .index_page .search-form .btn {
    width: 50%;
    margin: 20px auto;
    display: block;
  }
}
.index_page .search-tabs {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .index_page .search-tabs {
    margin: 40px 0;
  }
}
.index_page .search-tabs .tab-link {
  background: #fafafa;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .index_page .search-tabs .tab-link {
    font-size: 14px;
  }
}
.index_page .search-tabs .active {
  background: #FFE5B0;
  border-bottom: 2px solid #FFB000;
  color: #272727;
}
.index_page .search-tabs .tab-content {
  background-color: #fff;
  padding: 3rem 0;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .index_page .search-tabs .tab-content {
    padding: 1rem 0;
  }
}
.index_page .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto !important;
}
.index_page .row .col-2 {
  height: auto !important;
  min-height: 100%;
  padding: 0 !important;
}
.index_page .card h5 {
  margin: 1rem 0;
}
.index_page .card a {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
}

#main_visual {
  background: #4BB4FF;
  background-size: 50% auto;
  height: 50vh;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #main_visual {
    height: 70vh;
  }
}
#main_visual img {
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
#main_visual .textBox {
  position: absolute;
  left: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#main_visual .textBox h2 {
  white-space: pre-line;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #main_visual .textBox h2 {
    font-size: 2rem;
  }
}
#main_visual .textBox a {
  background-color: #ffffff;
  color: #007acc;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #main_visual .textBox {
    left: 0;
    top: 10%;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.tab-link {
  padding: 12px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #222;
  font-size: 1.1rem;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-right: 4px;
  cursor: pointer;
}

.tab-link.active {
  background: #cceaff;
  color: #222;
  font-weight: bold;
  border-bottom: 2px solid #2196f3;
}

.tab-link:hover {
  background: #e3f4fd;
  color: #1976d2;
}

.tab-content {
  margin-top: 16px;
}

.job-new-arrivals h3 {
  text-align: center;
  margin-bottom: 4rem;
}
.job-new-arrivals .row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.job-new-arrivals .row .col-4 {
  margin: 16px 0;
}
.job-new-arrivals h5 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}
.job-new-arrivals h5 span {
  font-size: 12px;
  display: block;
  padding: 0;
  background: none !important;
  color: #272727;
  margin: 4px 0;
}
.job-new-arrivals h2 {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 1.5rem;
}
.job-new-arrivals i {
  color: #007bff;
  font-weight: bold;
  margin-right: 4px;
}
.job-new-arrivals a {
  width: 100%;
  display: block;
}
.job-new-arrivals .box {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .job-new-arrivals .box {
    padding: 8px;
    display: block;
    width: 95%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.job-new-arrivals .box .mb-1 {
  font-size: 12px;
  color: #666;
  padding: 4px 0;
}

.urgent-jobs h3 {
  text-align: center;
}

.site_information {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .site_information {
    padding-bottom: 40px;
  }
}
.site_information h2 span {
  text-transform: capitalize;
  font-style: normal;
}
.site_information h3 {
  font-size: 18px;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .site_information h3 {
    font-size: 13px;
  }
}
.site_information .row {
  margin: 80px 0 !important;
}
.site_information .col-3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site_information .col-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 8px;
  }
}
.site_information .col-3 img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.site_information .col-3 .infoBox {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
}
@media screen and (max-width: 767px) {
  .site_information .col-3 .infoBox {
    padding: 8px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .search-form {
    margin: 40px 0;
  }
  .search-form .col-3, .search-form .col-4 {
    margin: 8px 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.recruit_form h3 {
  font-size: 80px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  margin: 1rem 0 4rem;
  opacity: 0.7;
}
.recruit_form h3 span {
  font-size: 16px;
  font-weight: normal;
  display: block;
  padding-left: 16px;
  opacity: 1;
  font-style: normal;
  font-weight: 500;
}
.recruit_form h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0;
  color: #888;
}
.recruit_form .mb-3 {
  margin-bottom: 2rem !important;
}
.recruit_form .row {
  padding: 0 !important;
}
.recruit_form .row .col-4,
.recruit_form .row .col-6 {
  padding: 0 !important;
}

.login_info {
  margin: 160px 0;
  min-height: 100%;
}
.login_info h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0 4rem;
  color: #272727;
  text-align: center;
}
.login_info .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login_info .row .login_info_box {
  text-align: center;
  background: white;
  padding: 2rem;
}
.login_info .text-link {
  margin: 4rem 0;
  text-align: center;
}

.login {
  height: 80vh;
  position: relative;
}
.login .login_form {
  max-width: 400px;
  background: white;
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login .login_form h5 {
  margin-bottom: 3rem;
  font-size: 24px;
  background: none;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.login .login_form label {
  margin-bottom: 8px;
  display: block;
}
.login .login_form .mb-3 {
  margin-bottom: 1rem !important;
}
.login .login_form .d-grid .btn {
  margin: 0 auto;
  display: block;
  padding: 8px 48px;
}

.company .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit_show {
  padding: 80px 0;
}
.recruit_show h2 span {
  display: block;
  font-size: 16px;
}
.recruit_show h2 span::before {
  content: "エリア:";
  margin-right: 10px;
}
.recruit_show h4 {
  font-size: 16px;
}
.recruit_show table {
  text-align: left;
}
.recruit_show .job-description h4 {
  margin: 1rem 0;
}
.recruit_show .company-message {
  margin-bottom: 3rem;
}

.onedaypage {
  padding: 80px 0;
}

.companiespage {
  padding: 80px 0;
}

.news-section {
  margin: 4rem 0;
}
.news-section .container {
  max-width: 960px;
  margin: 0 auto;
}
.news-section .news-ticker {
  background: #f8f9fa;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  margin: 2rem 0;
}

.job-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.job-main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advanced-search-slide {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 0;
  margin-bottom: 1rem;
}
.advanced-search-slide.open {
  padding: 1.5rem 0.5rem;
}

.search-section {
  background: white;
  margin: 3rem 0;
  padding: 32px 16px;
}
.search-section h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 3rem;
  color: #888;
  text-align: center;
}
.search-section h6 span {
  font-size: 16px;
  display: block;
}
.search-section input,
.search-section select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.search-section .advanced-search-slide.open {
  max-height: 100%;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
}

.joblist-cards .job-card {
  background: #fff;
  border: 2px solid #f8c471;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card {
    padding: 16px;
  }
}
.joblist-cards .job-card p {
  margin: 0;
  color: #888;
  font-size: 12px;
}
.joblist-cards .job-card .title_box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.5rem 0 0.2rem 0;
  position: relative;
  letter-spacing: 0.08em;
}
.joblist-cards .job-card .title_box h3 span {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ff9800;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .title_box h3 span {
    font-size: 10px;
    top: -80px;
    right: 8px;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
.joblist-cards .job-card .job-card-header {
  position: relative;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.joblist-cards .job-card .job-card-header h2 {
  font-size: 14px;
  font-weight: normal;
  margin: 0.5rem 0 0.2rem 0;
}
.joblist-cards .job-card .job-card-header .favorite-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}
.joblist-cards .job-card .job-card-header .favorite-btn i {
  font-size: 1.7rem;
  color: #bbb;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.joblist-cards .job-card .job-card-header .favorite-btn:hover i {
  color: #ff5a5f;
}
.joblist-cards .job-card .job-card-header .favorite-btn .text-danger {
  color: #ff5a5f !important;
}
.joblist-cards .job-card .job-card-header .badge {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: 1em;
}
.joblist-cards .job-card .job-card-header .badge-featured {
  background: #ffb300;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .badge-fulltime {
  background: #4caf50;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .badge-parttime {
  background: #2196f3;
  color: #fff;
}
.joblist-cards .job-card .job-card-header .company-info {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.2rem;
}
.joblist-cards .job-card .job-card-header .company-info .appeal-point {
  color: #ff9800;
  font-weight: 500;
  font-size: 0.98em;
}
.joblist-cards .job-card .job-card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .col-8,
  .joblist-cards .job-card .job-card-body .col-4 {
    padding: 0;
  }
}
.joblist-cards .job-card .job-card-body .job-main-image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-main-image {
    height: 100%;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0.5rem;
}
.joblist-cards .job-card .job-card-body .job-info-table th {
  width: 30%;
  color: #666;
  font-weight: 500;
  background: #f8f8f8;
  padding: 0.3em 0.5em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table th {
    background: none;
    width: 100%;
    border-bottom: none !important;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table td {
  color: #222;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table td {
    border-bottom: 1px solid #f2f2f2 !important;
    font-size: 14px;
    padding: 0 0 4px;
  }
}
.joblist-cards .job-card .job-card-body .job-info-table th,
.joblist-cards .job-card .job-card-body .job-info-table td {
  padding: 8px 16px;
  border-bottom: 1px solid #f2f2f2;
}
@media screen and (max-width: 767px) {
  .joblist-cards .job-card .job-card-body .job-info-table th,
  .joblist-cards .job-card .job-card-body .job-info-table td {
    display: block;
    border-bottom: none;
  }
}
.joblist-cards .job-card .job-card-footer {
  margin-top: 1rem;
}
.joblist-cards .job-card .job-card-footer .btn {
  margin-right: 0.5rem;
}

.job-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.job-card-link:hover .job-card {
  -webkit-box-shadow: 0 4px 16px rgba(255, 179, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(255, 179, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #ffb300;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s, -webkit-box-shadow 0.2s;
}

.ticker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .ticker-wrapper {
    height: 60px;
  }
}
.ticker-wrapper .ticker-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker-wrapper .ticker-item p {
  margin: 0;
  font-size: 0.9em;
}
.ticker-wrapper .ticker-date {
  color: #666;
  margin-right: 10px;
}
.ticker-wrapper .ticker-category {
  background: #007bff;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7em;
  margin-right: 10px;
}
.ticker-wrapper .ticker-title {
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .ticker-item {
    padding: 0 15px;
  }
  .ticker-item p {
    font-size: 16px;
  }
  .ticker-date {
    margin-bottom: 4px;
  }
  .ticker-title {
    display: block;
  }
  .ticker-title, .ticker-category {
    font-size: 16px;
  }
}
.other_page {
  padding: 80px 0;
}
.other_page .page_title {
  font-size: 32px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 3rem;
}
.other_page .page_title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #888;
  margin-top: 8px;
}
.other_page .privacy_contents {
  max-width: 960px;
  margin: 0 auto;
}
.other_page .privacy_contents h2 {
  font-size: 20px;
  margin-top: 3rem;
}
.other_page .privacy_contents ul {
  padding: 0;
}
.other_page .privacy_contents ul li {
  padding: 8px 16px;
  list-style: none;
}
.other_page .privacy_contents .text-end {
  text-align: right;
}

.search-section .card {
  border: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-section .form-label {
  font-weight: 500;
  color: #495057;
}
.search-section .btn-primary {
  min-width: 120px;
}

.card {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.advertisements .card {
  border: 2px solid #dc3545;
  -webkit-box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
          box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}
.advertisements .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
          box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
}
.advertisements .card-header {
  background: linear-gradient(135deg, #dc3545, #c82333);
}
.advertisements .badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
}
.advertisements .card-title {
  font-weight: bold;
}
.advertisements .btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
.advertisements .btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.category-jobs {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}
.category-jobs h2 {
  color: #495057;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.category-jobs .card {
  border: 1px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-jobs .card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}
.category-jobs .btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
}
.category-jobs .btn-outline-primary:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
          box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.highlight-keyword {
  background-color: #fff3cd;
  color: #856404;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  border: 1px solid #ffeaa7;
}

mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: bold;
}

.job-category-badge {
  background-color: #007bff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  margin-right: 8px;
  font-weight: normal;
  display: inline-block;
}

.previe_btn {
  background: #007bff;
  color: white;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.previe_btn i {
  margin-right: 4px;
}

.Recruitment_info {
  padding: 120px 0;
}
.Recruitment_info h6 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.Recruitment_info h6 span {
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.Recruitment_info .row {
  margin: 80px 0 0 !important;
}
.Recruitment_info .joblist_Box {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.Recruitment_info .joblist_Box h4 {
  font-size: 1.2rem;
  margin: 16px 0;
}
.Recruitment_info .joblist_Box h4 a {
  color: #272727;
}
.Recruitment_info .joblist_Box ol {
  padding: 0;
}
.Recruitment_info .joblist_Box ol li {
  list-style-type: none;
}
.Recruitment_info .joblist_Box ol li i {
  color: #007bff;
}

.entry_form {
  padding: 80px 0;
}
.entry_form .container {
  max-width: 960px;
  margin: 0 auto;
}
.entry_form .mb-3 {
  margin: 24px 0;
}
.entry_form h3 {
  margin-bottom: 4rem;
}
.entry_form label {
  margin: 24px 0 16px;
}
.entry_form input,
.entry_form select,
.entry_form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 8px 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry_form .half {
  width: 45%;
  display: inline-block;
}
.entry_form .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.entry_form .btn {
  display: block;
  width: 200px;
  margin: 2rem 0;
}

.new_user_form {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .new_user_form {
    min-height: 100vh;
    height: 100%;
    padding: 80px 0;
  }
}
.new_user_form .new_form {
  max-width: 600px;
  background: white;
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .new_user_form .new_form {
    max-width: calc(100% - 32px);
    margin: 32px auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.new_user_form .new_form h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 1rem 0 4rem;
  text-align: center;
}

.contactPage {
  padding: 120px 0;
}
.contactPage h3, .contactPage p {
  text-align: center;
}
.contactPage .row {
  margin: 80px 0 !important;
}
.contactPage .row .col-6 {
  text-align: center;
}
.contactPage .row .col-6 .mtBox {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 6px;
}
.contactPage .row .col-6 .mtBox h6 {
  font-size: 1.3rem;
}
.contactPage .row .col-6 .mtBox p {
  margin: 0 !important;
  font-size: 14px;
}
.contactPage .row .col-6 .mtBox .tel {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  display: block;
}
.contactPage .row .col-6 .mtBox .btn {
  margin-top: 10px;
}
.contactPage .row .col-6 .mtBox .btn i {
  margin-right: 8px;
}
.contactPage .contact-info {
  margin-bottom: 80px;
}
.contactPage .contact-info h4 {
  text-align: center;
  margin-bottom: 3rem;
}
.contactPage .contact-info table {
  max-width: 960px;
  margin: 0 auto;
}
.contactPage .contact-info table th {
  width: 30%;
  text-align: left;
  font-weight: 500;
}
.contactPage .contact-info table td {
  text-align: left;
}
.contactPage .contact-info table th, .contactPage .contact-info table td {
  padding: 8px 0;
}
.contactPage .faq-section {
  max-width: 960px;
  margin: 0 auto;
}
.contactPage .faq-section h4 {
  text-align: center;
  margin-bottom: 3rem;
}
.contactPage .faq-section .faq-accordion {
  padding: 0 16px;
}
.contactPage .faq-section .faq-accordion .faq-item:first-of-type .faq-question {
  border-top: 1px solid #ccc;
}
.contactPage .faq-section .faq-accordion .faq-item .faq-answer {
  padding: 16px;
  border: none;
  background: none;
}
.contactPage .faq-section .faq-question {
  border: none;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px;
}

.news-detail-page {
  padding: 80px 0;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .news-detail-page {
    min-height: 100vh;
    height: 100%;
    padding: 80px 0;
  }
}
.news-detail-page .news-header .news-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}
.news-detail-page .news-header .news-title span {
  font-size: 14px;
  display: block;
  font-weight: normal;
  margin-bottom: 8px;
}
.news-detail-page .btn {
  display: block;
  width: 200px;
  margin: 2rem auto;
  background: #007bff;
  color: white;
  border-radius: 30px;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.recruiter_guide_page {
  padding: 80px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
}
.recruiter_guide_page .guide-header {
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}
.recruiter_guide_page .guide-header h3 {
  font-size: 2rem;
}
.recruiter_guide_page .guide-header p {
  font-size: 1rem;
}
.recruiter_guide_page .guide-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.recruiter_guide_page .guide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}
.recruiter_guide_page .guide-section {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}
.recruiter_guide_page .guide-section .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 80px 0 !important;
}
@media screen and (max-width: 767px) {
  .recruiter_guide_page .guide-section .row .col-3,
  .recruiter_guide_page .guide-section .row .col-4,
  .recruiter_guide_page .guide-section .row .col-6 {
    margin: 16px 0;
  }
}
.recruiter_guide_page .guide-section .contact-info .row {
  margin: 80px 0 !important;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 {
  text-align: center;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 6px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox h6 {
  font-size: 1.3rem;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox p {
  margin: 0 !important;
  font-size: 14px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .tel {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  display: block;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .btn {
  margin-top: 10px;
}
.recruiter_guide_page .guide-section .contact-info .row .col-6 .mtBox .btn i {
  margin-right: 8px;
}
.recruiter_guide_page .section-title {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.recruiter_guide_page .feature-card, .recruiter_guide_page .service-card, .recruiter_guide_page .support-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  position: relative;
  padding: 2rem 1rem;
}
.recruiter_guide_page .feature-card:hover, .recruiter_guide_page .service-card:hover, .recruiter_guide_page .support-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.recruiter_guide_page .feature-card h4, .recruiter_guide_page .service-card h4, .recruiter_guide_page .support-card h4 {
  font-size: 1.2rem;
  text-align: center;
}
.recruiter_guide_page .feature-card p, .recruiter_guide_page .service-card p, .recruiter_guide_page .support-card p {
  line-height: 1.75;
  font-size: 14px;
  text-align: left;
}
.recruiter_guide_page .feature-card img, .recruiter_guide_page .service-card img, .recruiter_guide_page .support-card img {
  width: 60%;
  margin: 0 auto;
}
.recruiter_guide_page .feature-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}
.recruiter_guide_page .feature-icon, .recruiter_guide_page .support-icon {
  color: #3498db;
}
.recruiter_guide_page .step-guide .step-item {
  position: relative;
  margin: 40px 0;
}
.recruiter_guide_page .step-guide .step-number {
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 1rem;
  line-height: 1.5;
  margin-top: -6px;
}
.recruiter_guide_page .pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recruiter_guide_page .pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.recruiter_guide_page .pricing-card.border-primary {
  border-color: #3498db;
}
.recruiter_guide_page .price-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
}
.recruiter_guide_page .price-period {
  font-size: 1rem;
  color: #6c757d;
}
.recruiter_guide_page .service-features {
  list-style: none;
  padding-left: 0;
}
.recruiter_guide_page .service-features li {
  padding: 0.2rem 0;
  text-align: center;
  border-bottom: 1px solid #f8f9fa;
  font-size: 14px;
  list-style-type: none !important;
}
.recruiter_guide_page .service-features li:last-child {
  border-bottom: none;
}
.recruiter_guide_page .faq-accordion .faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.recruiter_guide_page .faq-accordion .faq-item:last-child {
  margin-bottom: 0;
}
.recruiter_guide_page .faq-accordion .faq-header {
  background: none;
  border: none;
  padding: 0;
}
.recruiter_guide_page .faq-accordion .faq-button {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 1rem 1.5rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #2c3e50;
  font-weight: 500;
}
.recruiter_guide_page .faq-accordion .faq-button:hover {
  background: #e9ecef;
  color: #007bff;
}
.recruiter_guide_page .faq-accordion .faq-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.recruiter_guide_page .faq-accordion .faq-button.collapsed .faq-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.recruiter_guide_page .faq-accordion .faq-button:not(.collapsed) {
  background: #007bff;
  color: white;
}
.recruiter_guide_page .faq-accordion .faq-button:not(.collapsed) .faq-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.recruiter_guide_page .faq-accordion .faq-question {
  font-weight: 500;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruiter_guide_page .faq-accordion .faq-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 1.1rem;
  margin-left: 1rem;
}
.recruiter_guide_page .faq-accordion .faq-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: white;
  border-top: 1px solid #e9ecef;
}
.recruiter_guide_page .faq-accordion .faq-content.active {
  max-height: 200px;
}
.recruiter_guide_page .faq-accordion .faq-body {
  padding: 1rem 1.5rem;
}
.recruiter_guide_page .faq-accordion .faq-answer {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}
.recruiter_guide_page .contact-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding: 2rem 1rem;
}
.recruiter_guide_page .contact-card p {
  font-size: 12px;
}
.recruiter_guide_page .contact-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media (max-width: 768px) {
  .recruiter_guide_page .guide-title {
    font-size: 2rem;
  }
  .recruiter_guide_page .guide-header {
    padding: 2rem 1rem;
  }
  .recruiter_guide_page .guide-section {
    padding: 1.5rem;
  }
}

.section-content .pricing-card {
  padding: 2rem 0;
}
.section-content .pricing-card ul {
  list-style-type: none;
  padding: 0;
}
.section-content .pricing-card ul li {
  padding: 4px 0;
}

.registration_guide_page {
  padding: 2rem 0;
  background-color: #f8f9fa;
  min-height: 100vh;
}
.registration_guide_page .guide-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}
.registration_guide_page .guide-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.registration_guide_page .guide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}
.registration_guide_page .guide-section {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .registration_guide_page .guide-section .col-3, .registration_guide_page .guide-section .col-4, .registration_guide_page .guide-section .col-6 {
    margin: 16px 0;
  }
}
.registration_guide_page .section-title {
  color: #2c3e50;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.registration_guide_page .member-card, .registration_guide_page .benefit-card, .registration_guide_page .pricing-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.registration_guide_page .member-card:hover, .registration_guide_page .benefit-card:hover, .registration_guide_page .pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.registration_guide_page .member-icon {
  color: #3498db;
}
.registration_guide_page .step-guide .step-item {
  position: relative;
}
.registration_guide_page .step-guide .step-number {
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.9rem;
}
.registration_guide_page .benefit-list {
  list-style: none;
  padding-left: 0;
}
.registration_guide_page .benefit-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.registration_guide_page .benefit-list li:last-child {
  border-bottom: none;
}
.registration_guide_page .price-display {
  margin: 1rem 0;
}
.registration_guide_page .price-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3498db;
}
.registration_guide_page .faq-question {
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.registration_guide_page .faq-answer {
  color: #6c757d;
  padding-left: 1rem;
  border-left: 3px solid #3498db;
}
@media (max-width: 768px) {
  .registration_guide_page .guide-title {
    font-size: 2rem;
  }
  .registration_guide_page .guide-header {
    padding: 2rem 1rem;
  }
  .registration_guide_page .guide-section {
    padding: 1.5rem;
  }
  .registration_guide_page .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

.error-page {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 80px 0;
  text-align: center;
}
.error-page .col-2 {
  min-height: auto;
}
.error-page .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error-page img {
  margin: 0 auto;
}
.error-page .error-number {
  font-size: 8rem;
  font-weight: bold;
  color: #ffb300;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.error-page .error-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 1rem 0;
}
.error-page .error-message {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.error-page .error-icon {
  font-size: 4rem;
  color: #ffb300;
  margin: 1rem 0;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}
.error-page .btn-home {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}
.error-page .btn-home:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
          box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
  color: white;
  text-decoration: none;
}
.error-page .btn-secondary {
  background: #6c757d;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.error-page .btn-secondary:hover {
  background: #5a6268;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: white;
  text-decoration: none;
}
.error-page .suggestions {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.error-page .suggestions h5 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.error-page .suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-page .suggestions li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}
.error-page .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffb300;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .error-page .error-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  .error-page .error-number {
    font-size: 6rem;
  }
  .error-page .error-title {
    font-size: 1.5rem;
  }
  .error-page .error-message {
    font-size: 1rem;
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.breadcrumb {
  margin: 2rem 0;
}
.breadcrumb ol {
  display: inline-block;
  padding: 0;
}
.breadcrumb ol li {
  display: inline-block;
}

.category-title {
  font-size: 1.5rem !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Zen Kaku Gothic New";
  font-size: 1rem;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  padding: 0;
  background-size: cover;
  position: relative;
  letter-spacing: 0.03em;
  height: 100%;
  font-weight: 500;
  background: #f9f9f9;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #343a40;
  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;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-warning {
  color: #343a40;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  background-color: #138496;
  border-color: #117a8b;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.card-text {
  margin-bottom: 0;
  color: #6c757d;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #343a40;
  background-color: transparent;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: #f8f9fa;
  font-weight: 500;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  color: #343a40;
  background-color: rgba(0, 0, 0, 0.075);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control, .form-select {
  display: block;
  width: 90%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control:focus, .form-select:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

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

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

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
