/* カラー */

:root {
  --main-color: #1D55AE;   /* メインカラー */
  --sub-color: #ebf5fd;    /* サブカラー */
}

/* Base styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family:
    "Noto Sans JP",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

.page-container {
  background-color: #ffffff;
  overflow: hidden;
}

/* Num List */

.numbered-list {
  list-style: none; /* デフォルト番号を消す */
  counter-reset: list-counter;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: list-counter;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px; /* 番号用の余白 */
  font-size: 16px;
  color: #000; /* 本文の色 */
}

.numbered-list li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #1D55AE; /* 青色番号 */
}

/* List */

.highlight-box {
  background-color: var(--sub-color);
  padding: 16px;
  border-radius: 8px;
  width: fit-content;
}

.highlight-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.highlight-box li {
  color: #000;
  margin-bottom: 8px;
}

/* 青色のリストマーカー */
.highlight-box li::marker {
  color: var(--main-color); /* お好みの青に変更可能 */
}

/* ▼ 太字見出し部分 */
.list-heading {
  font-weight: 700; /* 太字 */
  color: var(--main-color); /* メインカラー（青） */
  margin-right: 6px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 722px;
  width: 100%;
  padding: 20px 80px 84px;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-bottom: 40px;
  }
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1000px;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
  }
}

.update-date {
  color: #000000;
  font-size: 14px;
  font-weight: 350;
}

@media (max-width: 991px) {
  .update-date {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .update-date {
    font-size: 12px;
  }
}

.main-title {
  align-items: center;
  background-color: var(--main-color);
  align-self: stretch;
  display: flex;
  margin-top: 20px;
  min-height: 61px;
  padding: 14px 18px;
  gap: 20px;
  font-size: 23px;
  color: #ffffff;
  font-weight: 700;
  justify-content: center;
}

.medical-icon {
  width: 34px;
  height: 26px;
}

.title-text {
  align-self: stretch;
  margin: auto 0;
  font-size: 20px;
  font-weight: normal;
}

@media (max-width: 991px) {
  .title-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .title-text {
    font-size: 16px;
  }
}

.title-normal {
  font-weight: 400;
}

.title-bold {
  font-weight: 800;
}

.hero-description {
  margin-top: 83px;
  width: 100%;
  max-width: 947px;
}

@media (max-width: 991px) {
  .hero-description {
    max-width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-description {
    display: flex;
    flex-direction: column;
  }
}

.description-columns {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .description-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.description-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 76%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .description-left {
    width: 100%;
  }
}

.description-content {
  flex-grow: 1;
}

@media (max-width: 991px) {
  .description-content {
    max-width: 100%;
    margin-top: 40px;
    width: 100%;
    margin-right: auto;
    align-self: center;
  }
}

@media (max-width: 640px) {
  .description-content {
    margin-top: 20px;
  }
}

.description-title {
  border-radius: 0;
  width: 595px;
  max-width: 100%;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .description-title {
    white-space: initial;
    width: auto;
    align-self: start;
  }
}

.title-small {
  color: #000000;
  font-size: 70px;
  font-weight: normal;
}

@media (max-width: 991px) {
  .title-small {
    max-width: 100%;
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .title-small {
    font-size: 20px;
  }
}

.title-large {
  color: var(--main-color);
  font-size: 80px;
  letter-spacing: 1.6px;
}

@media (max-width: 991px) {
  .title-large {
    max-width: 100%;
    margin-right: 6px;
    font-size: 40px;
  }
}

.description-text {
  margin-top: 10px;
  max-width: 100%;
  width: 684px;
  font-size: 38px;
  color: #000000;
  font-weight: 700;
}

@media (max-width: 640px) {
  .description-text {
    font-size: 30px;
  }
}

.text-normal {
  font-weight: 350;
}

@media (max-width: 991px) {
  .text-normal {
    width: auto;
    align-self: center;
  }
}

.text-underlined {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--sub-color);
  text-decoration-thickness: 16px;
  text-underline-offset: -4px;
}

@media (max-width: 991px) {
  .text-underlined {
    width: auto;
    align-self: center;
  }
}

.underline-decoration {
  background-color: var(--sub-color);
  display: flex;
  margin-top: -16px;
  width: 100%;
  flex-shrink: 0;
  height: 16px;
}

@media (max-width: 991px) {
  .underline-decoration {
    margin-right: 3px;
  }
}

.description-paragraph {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .description-paragraph {
    max-width: 100%;
  }
}

.year-badge {
  background-color: #ffee4d;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--main-color);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  width: 200px;
  height: 200px;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.year-text {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}

.badge-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
  .year-badge {
    width: 160px;
    height: 160px;
    font-size: 18px;
  }

  .year-text {
    font-size: 24px;
  }

  .badge-text {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .year-badge {
    width: 140px;
    height: 140px;
    padding: 12px;
    margin: 20px auto;
  }

  .year-text {
    font-size: 20px;
  }

  .badge-text {
    font-size: 14px;
  }
}


/* Intro Banner */
.intro-banner {
  max-width: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 183px;
  background-color: var(--sub-color);
  width: 100%;
  height: 122px;
}

@media (max-width: 991px) {
  .intro-banner {
    max-width: 991px;
    padding: 20px 100px;
  }
}

@media (max-width: 640px) {
  .intro-banner {
    max-width: 640px;
    padding: 20px;
    height: auto;
  }
}

.intro-text {
  font-weight: 700;
  font-size: 24px;
  color: var(--main-color);
  text-align: center;
  letter-spacing: 1.2px;
}

@media (max-width: 991px) {
  .intro-text {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .intro-text {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.br-hide-mobile {
}

@media (max-width: 640px) {
  .br-hide-mobile {
    display: none;
  }
}

/* Features Section */
.features-section {
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 183px;
  background-color: var(--main-color);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .features-section {
    max-width: 991px;
    padding: 40px 20px;
  }
}

@media (max-width: 640px) {
  .features-section {
    max-width: 640px;
    padding: 20px;
  }
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background-color: #fff;
  padding: 40px 100px;
  border-radius: 40px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .features-container {
    padding: 30px 80px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .features-container {
    padding: 20px;
    justify-content: center;
    align-items: flex-start;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

@media (max-width: 640px) {
	.feature-list li {
  font-size: 18px;
}
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="13.5" fill="%23EBF5FD" stroke="%231D55AE" stroke-width="3"/><path d="M8.82352 13.2353L14.1176 18.5294L22.0588 10.5883" stroke="%231D55AE" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 30px;
  height: 30px;
}

.feature-text {
  font-size: 24px;
  color: #000;
}

@media (max-width: 991px) {
  .feature-text {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .feature-text {
    font-size: 18px;
  }
}

.feature-conclusion {
  font-size: 24px;
  color: #000;
  text-align: right;
  width: 100%;
}

@media (max-width: 991px) {
  .feature-conclusion {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .feature-conclusion {
    font-size: 18px;
    width: 100%;
    margin-right: auto;
    align-self: center;
  }
}

.features-summary {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 40px;
  line-height: 40px;
}

@media (max-width: 991px) {
  .features-summary {
    font-size: 18px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .features-summary {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }
}

.summary-highlight {
  font-weight: 800;
}

/* Comparison Table */
.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 991px) {
  .comparison-table {
    max-width: 991px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .comparison-table {
    max-width: 640px;
    width: 100%;
  }
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: var(--main-color);
  margin-top: 60px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 991px) {
  .table-header {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .table-header {
    width: 100%;
  }
}

.table-column-headers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
}

.column-site,
.column-field,
.column-features,
.column-requirements {
  width: 230px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 991px) {
  .column-site,
  .column-field,
  .column-features,
  .column-requirements {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .column-site,
  .column-field,
  .column-features,
  .column-requirements {
    width: 100%;
  }
}

.table-divider {
  height: 2px;
  background-color: var(--main-color);
}

.table-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
}

.table-row.highlight {
  background-color: var(--sub-color);
}

.cell-site,
.cell-field,
.cell-features,
.cell-requirements {
  width: 230px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.cell-site {
  color: var(--main-color);
  font-weight: 700;
  line-height: 24px;
  text-decoration: underline;
}

.cell-site a{
	color: var(--main-color);
}

@media (max-width: 991px) {
  .cell-site,
  .cell-field,
  .cell-features,
  .cell-requirements {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cell-site,
  .cell-field,
  .cell-features,
  .cell-requirements {
    width: 100%;
 	  padding: 0 4px;
  }
}

/* Featured Job Section */
.featured-job {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .featured-job {
    max-width: 991px;
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .featured-job {
    max-width: 640px;
  }
}

.featured-header-image {
  height: auto;
  max-width: 100%;
}

.featured-btn-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .featured-btn-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}

@media (max-width: 640px) {
  .featured-btn-area {
    flex-direction: column;
    align-items: flex-start;
  }

.featured-header-image {
  width: 100%;
  height: auto;
}

}

.featured-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--main-color);
}

.featured-btn {
  padding: 6px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 200px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(29, 85, 174, 0.2);
  text-decoration: none;
  display: inline-block;
}

.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(29, 85, 174, 0.3);
  background-color: var(--main-color);
}

.featured-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(29, 85, 174, 0.2);
}

.featured-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.featured-btn:hover::before {
  left: 100%;
}

@media (max-width: 640px) {
  .featured-btn {
    margin-top: 10px;
  }
}

.featured-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 40px 0;
}

.featured-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 5px;
  margin-bottom: 20px;
}

.company-name {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.service-name {
  font-weight: 700;
  font-size: 28px;
  color: #000;
}

.featured-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
  margin-top: 20px;
}

.featured-section-title {
  width: 100%;
  padding: 14px 10px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.featured-section-text {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 30px;
}


/* Footer */
.page-footer {
  padding: 30px 183px;
  width: 100%;
  margin-top: 60px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  background-color: var(--main-color);
}

@media (max-width: 640px) {
  .page-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/*-- btn --*/

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-color);
  text-decoration: none;
  margin-left: auto;
  margin-right: 0;
	margin-top: 20px;
  transition: all 0.3s ease;
}

.back-to-top .icon {
  width: 32px;
  height: 32px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: translate(-50%, -30%) rotate(45deg);
}

.back-to-top:hover {
  color: var(--main-color);
}

.back-to-top:hover .icon {
  background-color: var(--main-color);
  transform: translateY(-3px) scale(1.1);
}