/*
primary: #005293;
secondary: #4EB7E2 ;
text-color: #2A2A2A;
 */

html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2a2a2a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.top {
  background: url("../img/top-bg@2x.webp") top left / 100% 100% no-repeat;
  background-attachment: fixed;
}

/**************************************** 
*
* util
*
****************************************/
[hidden] {
  display: none !important;
}
.md-none {
  display: block;
}
.relative {
  position: relative;
}
.bold {
  font-weight: 700;
}
.mb-4 {
  margin-bottom: 1.6rem;
}
.mt-1 {
  margin-top: 0.4rem;
}
.mt-2 {
  margin-top: 0.8rem;
}
.mt-4 {
  margin-top: 1.6rem;
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}

/**************************************** 
*
* common
*
****************************************/

.page-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #005293;
  font-size: 4rem;
  line-height: 1.1;
}
.page-title.title-white {
  color: #fff;
}
.sub-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #4eb7e2;
}
.heading-4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/**************************************** 
*
* header
*
****************************************/
.header {
  background-color: #ffffff;
  padding: 1.6rem;
  height: 7.6rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-container {
  position: relative;
  height: 100%;
}
.header h1 {
  max-width: 22rem;
  width: 100%;
}
.nav-btn {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background-color: #005293;
  position: absolute;
  top: 0;
  right: 0;
}
.nav-btn svg {
  fill: #fff;
  width: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.header-nav {
  background: rgba(0, 112, 200, 0.3);
  z-index: 999;
  text-align: center;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 4rem 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.header-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav-close-btn {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background-color: #005293;
  position: relative;
}
.header-nav-close-btn svg {
  fill: #fff;
  width: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.header-nav-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4rem 2.4rem;
  border-radius: 0.8rem;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-header img {
  max-width: 24rem;
  width: 100%;
}
.header-nav ul.top-level-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  margin-top: 2.4rem;
}
.header-nav li.top-level-list:not(:last-child) {
  width: 100%;
  background: rgba(0, 112, 200, 0.15);
  border-radius: 0.8rem;
  text-align: left;
}
.header-nav a,
.top-level-text {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1.2rem;
}
.header-nav a.btn-primary {
  color: #fff;
  justify-content: center;
  font-weight: 700;
}
.header-nav a svg,
.top-level-text svg {
  width: 2rem;
  fill: #005293;
  flex-shrink: 0;
}
.sub-menu-list {
  display: none;
  flex-direction: column;
  gap: 1.2rem 0;
  margin-top: 1.2rem;
}
.sub-menu-list a {
  margin-left: 1.6rem;
}
.js-chevron-up {
  display: none;
}
.js-chevron-up.active {
  display: inline-block;
}
.js-chevron-down.active {
  display: none;
}

/**************************************** 
*
* main
*
****************************************/
main {
  flex: 1;
}
.content-container {
  margin: 0 auto;
  padding: 2.4rem 2rem;
}
.content-header {
  margin-top: 7.6rem;
  padding-top: 4rem;
  background: url("../img/bg-header@2x.webp") top left / cover no-repeat;
}
.content-header-box {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 1.2rem 0 0;
  padding: 3.2rem 2.4rem;
  height: 100%;
  width: 80%;
}
.content-lead-box {
  position: relative;
  width: 100%;
  font-weight: 700;
  margin-top: 2rem;
  padding-top: 2rem;
}
.content-lead-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  content: "";
  height: 4px;
  background: linear-gradient(90deg, #005293 0 50%, #4eb7e2 50% 100%);
}
.content-inner {
  padding: 0 0 4rem;
}
.content-heading {
  font-weight: 700;
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 2rem;
}
.content-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #005293 0 50%, #4eb7e2 50% 100%);
}
.content-lg {
  font-weight: 600;
  margin-top: 2rem;
}
.divide {
  height: 0;
  border: 0;
  border-top: 1px solid #ebebeb;
}
/******************************
*
* FV
*
******************************/
/***************************** FV */
.fv {
  background: url("../img/fv.svg") bottom right / 100% no-repeat;
  height: calc(100vh - 76px);
  margin-top: 76px;
  display: flex;
  flex-direction: column;
}
.catch-container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.8rem 2rem;
  border-radius: 0 0.8rem 0.8rem 0;
  width: fit-content;
  margin-top: 7.2rem;
}
.catch-title {
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 1.6rem;
}
.catch-title span {
  font-size: 2rem;
}
.lead-title {
  font-size: 1.6rem;
  font-weight: bold;
}
/***************************** ABOUT US */
.about-container {
  background: rgba(255, 255, 255, 0.7);
  margin: 0 1.6rem 4rem;
  padding: 4rem 2.4rem;
  border-radius: 2.4rem;
  box-shadow: 0 0 10px rgba(0, 82, 147, 0.15);
}
.about-content-container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
}
.about-lead-text {
  font-weight: 700;
  font-size: 2rem;
  margin: 2rem 0;
  text-wrap: wrap;
}
.about-illust-wrapper {
  width: 100%;
  margin: 0 auto;
}
/***************************** サービス */
.top-service-container {
  margin: 0 0 2rem 1.6rem;
  border-radius: 2.4rem 0 0 2.4rem;
  background: #0070c8;
  padding: 4rem 2.4rem;
}
.service-lead-text {
  margin: 2rem 0 2.4rem;
  color: #fff;
  text-align: left;
}
.service-list-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-list {
  background: #fff;
  border-radius: 0.8rem;
  width: 100%;
}
.service-list a {
  display: block;
  padding: 1.2rem;
}
.service-list img {
  max-width: 100%;
  height: 200px;
  margin: 0 auto 1.6rem;
  padding: 1.2rem 1.6rem;
}
.service-list-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-list-title p {
  font-weight: 700;
  font-size: 1.4rem;
}
.service-list-title svg {
  fill: #4eb7e2;
  width: 2.4rem;
}
/***************************** 事業所紹介 */
.company-container {
  padding: 2rem 1.6rem;
}
.company-inner {
  padding: 4rem 2.4rem;
}
.company-title-block {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.company-illust-wrapper {
  display: flex;
  flex-direction: column;
}
.company-illust-wrapper .illust {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 2.4rem;
}
.company-illust-wrapper .illust img {
  border-radius: 0.8rem;
}
/***************************** サービス */
.service-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  padding: 2rem 0;
}
.service-nav a {
  padding: 2rem 1.2rem;
  background: #fff;
  border-radius: 8px;
  color: #005293;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 82, 147, 0.15);
}
.main-service-container {
  background: rgba(78, 183, 226, 0.1);
  padding: 2.4rem;
  border-radius: 1rem;
  margin-top: 3.2rem;
}
.main-service-title {
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}
.main-service-title svg {
  fill: #005293;
  width: 1.6rem;
}
.main-service-card {
  padding: 1.6rem;
  background: #fff;
  border-radius: 0.8rem;
}
.main-service-card-subtitle {
  font-size: 1.4rem;
  margin-top: 0.8rem;
}
.main-service-card-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem 0;
  margin: 2.4rem 0;
}
.divide-spacing {
  margin: 4.4rem 0;
}
.price-table-container {
  overflow: scroll;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #9c9c9c;
  text-align: center;
}
.price-table tr:not(:last-child) {
  border-bottom: 1px solid #9c9c9c;
}
.price-table th {
  background: rgba(78, 183, 226, 0.15);
  font-weight: 400;
  padding: 1.2rem;
  border-bottom: 1px solid #9c9c9c;
}
.price-table td {
  background: #fff;
  padding: 1.2rem;
}
.price-table th,
.price-table td {
  min-width: 20rem;
}
.price-table th:not(:last-child),
.price-table td:not(:last-child) {
  border-right: 1px solid #9c9c9c;
}
.options-container {
  margin: 4rem 0 0;
}
.simple-list {
  margin-top: 1.6rem;
}
.simple-list li {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(78, 183, 226, 0.3);
}

/***************************** 事務所紹介 */
.history-block {
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
  margin-top: 2rem;
  align-items: center;
}
.history-block .img {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.history-block .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-border-table {
  border-collapse: collapse;
  border: 0;
  width: 100%;
  margin-top: 2.4rem;
}
.simple-border-table th,
.simple-border-table td {
  display: block;
  text-align: left;
  vertical-align: top;
}
.simple-border-table th {
  padding: 2rem 1.2rem 0;
}
.simple-border-table td {
  padding: 0.8rem 1.2rem 2rem;
}
.simple-border-table tr:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.simple-border-table .map {
  margin-top: 1.2rem;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.simple-border-table .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.simple-border-table.secondary tr:not(:last-child) {
  border-bottom: 1px solid rgba(78, 183, 226, 0.3);
}
.simple-border-table.secondary td {
  font-size: 1.4rem;
}

/***************************** お問い合わせ */
.input-border {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  width: 100%;
  padding: 0.8rem 1.2rem;
}
::-webkit-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.required-badge-frame {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}
.required-badge {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #e2145f;
  border-radius: 4px;
  padding: 0.4rem 1.2rem;
}
.submit-box {
  padding: 2.4em 0;
}
.submit-box .btn-primary {
  margin: 2.4rem auto 0;
  min-width: 100%;
  justify-content: center;
}
.privacy-policy-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.8rem;
}

/**************************************** 
*
* contact
*
****************************************/
.contact {
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 8rem,
    #005293 8rem
  );
}
.contact-container {
  padding: 2.4rem;
}
.contact-box {
  background: #fff;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
  padding: 3.2rem 2.4rem;
  box-shadow: 0 0 20px rgba(0, 82, 147, 0.15);
}
.contact .btn-primary,
.submit-box .btn-primary,
.btn-primary.btn-svg {
  display: flex;
  align-items: center;
  gap: 0 4rem;
  width: fit-content;
}
.contact-lead {
  margin-top: 2rem;
}
.form-result:empty {
  display: none;
}
.form-result {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.form-result.is-success {
  color: #005293;
}
.form-result.is-error {
  color: #c0392b;
}

/****************************************
*
* column
*
****************************************/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: #5a5a5a;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.8rem;
  color: #9c9c9c;
}
.breadcrumb a {
  color: #005293;
  text-decoration: underline;
}
.column-group {
  margin-top: 4rem;
}
.column-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.4rem;
}
.column-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.8rem;
  box-shadow: 0 0 10px rgba(0, 82, 147, 0.08);
}
.column-card a {
  display: block;
  padding: 2rem;
  height: 100%;
}
.column-card-theme {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #005293;
  background: rgba(78, 183, 226, 0.15);
  border-radius: 0.4rem;
  padding: 0.2rem 0.8rem;
}
.column-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.2rem;
}
.column-card-excerpt {
  font-size: 1.4rem;
  margin-top: 0.8rem;
}
.column-card-date {
  display: block;
  font-size: 1.2rem;
  color: #9c9c9c;
  margin-top: 1.2rem;
}
.article-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 2rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  font-size: 1.2rem;
  color: #5a5a5a;
  margin-top: 1.2rem;
}
.article-summary {
  background: rgba(78, 183, 226, 0.1);
  border-left: 4px solid #005293;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 2rem;
  margin-top: 2.4rem;
}
.article-summary-title {
  font-weight: 700;
  color: #005293;
}
.article-summary ul {
  margin-top: 0.8rem;
}
.article-summary li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.8rem;
}
.article-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #4eb7e2;
}
.article-body h2 {
  font-weight: 700;
  font-size: 2.2rem;
  position: relative;
  margin-top: 4.8rem;
  padding-bottom: 1.6rem;
}
.article-body h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #005293 0 50%, #4eb7e2 50% 100%);
}
.article-body h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #005293;
  margin-top: 3.2rem;
}
.article-body p {
  margin-top: 1.6rem;
}
.article-body ul,
.article-body ol {
  margin-top: 1.6rem;
  padding-left: 2rem;
}
.article-body ul li {
  list-style: disc;
  margin-top: 0.8rem;
}
.article-body ol li {
  list-style: decimal;
  margin-top: 0.8rem;
}
.article-body a {
  color: #005293;
  text-decoration: underline;
}
.table-scroll {
  overflow-x: auto;
  margin-top: 1.6rem;
}
.article-table {
  width: 100%;
  min-width: 56rem;
  border-collapse: collapse;
  border: 1px solid #9c9c9c;
  font-size: 1.4rem;
}
.article-table th {
  background: rgba(78, 183, 226, 0.15);
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.2rem;
  border: 1px solid #9c9c9c;
}
.article-table td {
  background: #fff;
  padding: 1rem 1.2rem;
  border: 1px solid #9c9c9c;
  vertical-align: top;
}
.faq-item {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-top: 2rem;
}
.faq-item .faq-q {
  font-weight: 700;
  color: #005293;
  margin-top: 0;
}
.faq-item .faq-a {
  margin-top: 0.8rem;
}
.author-box {
  background: rgba(0, 82, 147, 0.05);
  border-radius: 0.8rem;
  padding: 2rem;
  margin-top: 4rem;
  font-size: 1.4rem;
}
.author-box .author-name {
  font-weight: 700;
}
.author-box a {
  color: #005293;
  text-decoration: underline;
}
.article-disclaimer {
  font-size: 1.2rem;
  color: #5a5a5a;
  border-top: 1px solid #ebebeb;
  margin-top: 4rem;
  padding-top: 1.6rem;
}
.article-disclaimer a {
  color: #005293;
  text-decoration: underline;
}

/****************************************
*
* footer
*
****************************************/
.footer {
  background: #005293;
  padding: 4rem 2.4rem 2.4rem;
  color: #fff;
}
.footer-container {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.6rem;
}
.footer-logo {
  max-width: 22rem;
  width: 100%;
  margin: 0 auto 4rem;
}
.sns-promotion-container {
  display: none; /* LINE/Instagramアイコンを一時非表示(再表示は flex に戻す) */
  align-items: center;
  gap: 0 1.6rem;
  justify-content: center;
  margin: 2rem 0 0;
}
.sns-promotion-container svg {
  fill: #fff;
  width: 2.4rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.footer-nav .nav-title {
  font-weight: 700;
}
.footer-sub-menu {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
.footer-copyrights {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
  font-size: 1.2rem;
}

/**************************************** 
*
* button
*
****************************************/
.btn-primary {
  display: inline-block;
  background-color: #005293;
  color: #ffffff;
  font-weight: 700;
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  border: 1px solid #005293;
  transition: all 0.3s ease;
}
.btn-primary svg {
  fill: white;
  width: 2.4rem;
}

/**************************************** 
*
* responsive
*
****************************************/

/* タブレット */
@media (min-width: 768px) {
  .md-none {
    display: none;
  }
  .text-md {
    font-size: 1.8rem;
  }
  .contact {
    margin-top: 4.4rem;
  }
  .contact-lead {
    margin-top: 3.2rem;
  }
  .history-block {
    flex-direction: row;
    gap: 0 2.4rem;
    margin-top: 3.2rem;
    align-items: flex-start;
  }
  .service-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-nav a {
    font-size: 1.4rem;
  }
  .main-service-container {
    padding: 4rem;
  }
  .main-service-card-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
  }
  .heading-4 {
    font-size: 2.4rem;
  }
  .submit-box .btn-primary {
    min-width: 32rem;
  }
  .company-illust-wrapper {
    gap: 0 6.4rem;
    flex-direction: row;
  }
  .company-illust-wrapper .illust {
    max-width: 32rem;
    margin-top: 0;
  }
  .company-title-block {
    width: 100%;
  }
  .fv {
    background: url("../img/fv.svg") center right / 64.8% no-repeat;
    height: calc(100vh - 90px);
  }
  .catch-container {
    padding: 3.2rem 8rem;
    margin-top: 10rem;
  }
  .catch-title {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
  }
  .catch-title span {
    font-size: 3.2rem;
  }
  .lead-title {
    font-size: 2rem;
  }
  .about-container {
    margin: -4rem 4rem 4rem;
    padding: 8rem;
    box-shadow: 0 0 20px rgba(0, 82, 147, 0.15);
  }
  .about-lead-text {
    font-weight: 700;
    font-size: 2rem;
    margin: 3.2rem 0;
  }

  .top-service-container {
    margin: 0 0 0 4rem;
    padding: 8rem 12rem 8rem 8rem;
  }
  .service-lead-text {
    margin: 3.2rem 0 2.4rem;
    text-align: center;
  }
  .service-list-container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.4rem;
  }
  .service-list {
    width: calc(100% / 2 - 2.4rem);
  }
  .column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-title {
    font-size: 3rem;
  }
}
/* PC */
@media (min-width: 1024px) {
  .fv {
    background: url("../img/fv.svg") center right / 64.8% no-repeat;
    height: calc(100vh - 90px);
  }
  .header {
    padding: 2rem 2.4rem;
    height: 9rem;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-btn {
    display: none;
  }
  .header-nav {
    visibility: visible;
    opacity: 1;
    background: none;
    padding-top: 0;
    position: static;
    height: auto;
    width: auto;
    padding: 0;
  }
  .header-nav-container {
    background: none;
    padding: 0;
  }
  .header-nav ul.top-level-menu {
    flex-direction: row;
    align-items: center;
    gap: 0 1.6rem;
    margin-top: 0;
  }
  .header-nav li.top-level-list:not(:last-child) {
    width: auto;
    background: none;
  }
  .header-nav a.btn-primary {
    color: #fff;
    text-align: center;
  }
  .header-nav a svg {
    display: none;
  }
  .top-level-text svg {
    width: 1.6rem;
    fill: #2a2a2a;
  }
  .header-nav a:hover {
    color: #005173;
  }
  .mobile-header {
    display: none;
  }
  .header-nav-close-btn {
    display: none;
  }
  .header h1 {
    max-width: 34rem;
    width: 100%;
  }
  .btn-primary:hover {
    background-color: #fff;
    color: #005293;
    border: 1px solid #005293;
  }
  .btn-primary:hover svg {
    fill: #005293;
  }
  .sub-menu-list {
    position: absolute;
    top: 62px;
    left: 0;
    z-index: 1000;
    min-width: 248px;
    border-radius: 0 0 0.8rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
  }
  .sub-menu-list a {
    margin-left: 0;
  }
  .footer {
    padding: 4rem 12rem;
  }
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .footer-logo {
    margin: 0;
  }
  .footer-nav {
    flex-direction: row;
    gap: 0 4rem;
  }
  .footer-sub-menu {
    gap: 1.2rem 0;
  }
  .footer-copyrights {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 2.4rem;
  }
  .contact-box {
    padding: 8rem 10rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 2.4rem;
  }
  .page-title {
    font-size: 5.2rem;
  }
  .sub-title {
    font-size: 2rem;
  }
  .content-header {
    margin-top: 9rem;
    height: 38rem;
    overflow: hidden;
  }
  .content-header-box {
    padding: 4rem 6rem 3.2rem;
    margin-top: 2.4rem;
  }
  .content-lead-box {
    margin-top: 4rem;
    padding-top: 3.2rem;
  }
  .content-container {
    max-width: 1200px;
    padding: 2rem 4rem;
  }
  .content-inner {
    padding: 4rem 8rem 8rem;
  }
  .content-heading {
    font-size: 3.2rem;
    padding-bottom: 2.4rem;
  }
  .content-lg {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
  .simple-border-table {
    margin-top: 4rem;
  }
  .simple-border-table th,
  .simple-border-table td {
    display: table-cell;
    padding: 2rem 1.2rem;
  }
  .simple-border-table th {
    width: calc(100% / 3);
  }
  .company-container {
    padding: 2rem 4rem;
  }
  .company-inner {
    padding: 8rem;
  }
  .company-title-block {
    gap: 3.2rem 0;
  }
  .about-content-container {
    flex-direction: row;
    gap: 0 3.2rem;
  }
  .about-illust-wrapper {
    max-width: 550px;
  }
  .service-list {
    width: calc(100% / 3 - 2.4rem);
  }
  .article-title {
    font-size: 3.4rem;
  }
  .article-body h2 {
    font-size: 2.6rem;
  }
}
