@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a, input[type=submit] {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  display: block;
}
a:hover, input[type=submit]:hover {
  transition: 0.3s;
}

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

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

html {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #0d2d8d;
  line-height: 1.75;
  letter-spacing: 0.04em;
  scrollbar-gutter: stable;
}

html.is-fixed {
  overflow: hidden;
}

.blue {
  color: #0d2d8d;
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.top-service {
  background-color: #fff;
  padding-top: 4.375rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.top-service.top-service--page {
  padding-top: 3.75rem;
  padding-bottom: 0;
}

.top-service__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .top-service__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.top-service__item {
  border: 1px solid #e1e1e1;
  padding: 1.875rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__item {
    padding: 1.25rem 1.25rem;
  }
}

.top-service__item:nth-child(even) {
  border-left: 0;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-child(even) {
    border: 1px solid #e1e1e1;
  }
}

.top-service__item:nth-child(n+3) {
  border-top: 0;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-child(n+3) {
    border: 1px solid #e1e1e1;
  }
}

.top-service__item-title {
  font-size: 2.1875rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-service__item-title {
    font-size: 1.5rem;
    white-space: initial;
  }
}

.top-service__item-en {
  font-size: 1rem;
  font-weight: 500;
  color: #0d2d8d;
  padding-top: 0.9375rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__item-en {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
    padding-bottom: 0;
  }
}

.top-service__item-text {
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  background: #f1f1f1;
  padding: 0.625rem 1.25rem;
  line-height: 1.7;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top-service__item-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.top-service__item-detail {
  padding-left: 1em;
  text-indent: -1em;
}

.top-service--page .top-service__item-text {
  margin-bottom: 3.75rem;
}

.top-service__item-btn {
  width: fit-content;
  margin-left: auto;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-service__item-btn {
    margin-top: 0.9375rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.btn.top-service__item-btn.top-service__item-btn--wide {
  width: 100%;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  justify-content: center;
}

.btn.top-service__item-btn.top-service__item-btn--wide img {
  transform: rotate(90deg);
}

.sp-nav {
  position: fixed;
  top: 4.375rem;
  left: 0;
  width: 100%;
  display: none;
}

.sp-nav__lists {
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
  height: calc(100vh - 3.125rem);
  overflow: auto;
}

.sp-nav__list {
  position: relative;
}

.sp-nav__list:not(:first-child) {
  margin-top: 1.25rem;
}

.sp-nav__link {
  padding: 0.625rem 1.25rem;
  display: block;
  font-size: 1.125rem;
  position: relative;
  border-bottom: 1px solid #e1e1e1;
}

.sp-nav.active {
  display: block;
}

.sp-nav__submenu-lists {
  padding-left: 3.75rem;
  position: relative;
  transition: 0.3s;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sp-nav__submenu-link {
  display: block;
  padding: 0.625rem;
  font-size: 1rem;
  text-shadow: 0 0.25rem 1rem #d5d5d5;
  position: relative;
}

.sp-nav__submenu-link span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  display: block;
}

.sp-nav__toggle {
  color: #0d2d8d;
  font-size: 2.25rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0rem;
  right: 1.25rem;
}

.sp-nav__list.active .sp-nav__submenu-lists {
  max-height: 31.25rem;
}

.sp-nav--en .sp-nav__toggle {
  top: 1.125rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #121212;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-title:after {
  content: "";
  display: block;
  width: 15.625rem;
  height: 0.125rem;
  background: #0d2d8d;
  position: absolute;
  bottom: -0.4375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title:after {
    width: 12.5rem;
  }
}

.section-title--left {
  text-align: left;
}

.section-title--left:after {
  left: 0;
  transform: initial;
}

.section-title span {
  color: #0d2d8d;
  font-size: 1rem;
  padding-top: 0.625rem;
  display: block;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.625rem;
  }
}

.page-title {
  background: linear-gradient(90deg, rgb(13, 45, 141) 0%, rgb(13, 45, 141) 50%, rgb(18, 99, 167) 100%);
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 2.5rem 0 3.125rem;
  }
}

.page-title__title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-title__title {
    font-size: 1.5rem;
  }
}

.page-title__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-title__subtitle {
    font-size: 0.875rem;
  }
}

.inner {
  width: 100%;
  max-width: calc(1200px + 16%);
  padding-right: 8%;
  padding-left: 8%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 1210px;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0.625rem 0;
  }
}

.header__inner {
  padding-left: 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 75rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    min-width: initial;
    padding-right: 2%;
  }
}

.header__logo {
  width: 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 7.5rem;
  }
}

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

.header__nav-lists {
  display: flex;
  align-items: center;
}

.header__nav-link {
  padding: 1.6875rem 1.5625rem;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  position: relative;
  text-align: center;
}

.header__nav-link span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
}

.header__nav-list:last-child .header__nav-link {
  background: #0d2d8d;
  color: #fff;
  border: 1px solid #0d2d8d;
}

.header__nav-list:not(:last-child) .header__nav-link {
  border-left: 1px solid #e1e1e1;
}

.header__nav-list:not(:last-child) .header__nav-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: calc(100% - 0.125rem);
  height: 0.1875rem;
  background: #0d2d8d;
  bottom: 0.125rem;
  left: 0.0625rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.header__nav-list:not(:last-child) .header__nav-link:hover::after {
  transform: scale(1, 1);
}

.header__nav-list:last-child .header__nav-link:hover {
  opacity: 0.7;
}

.header.active {
  height: 100vh;
}

.header__nav-submenu-lists {
  opacity: 0;
  transition: 0.3s;
  transform: translateY(6px);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(13, 45, 141, 0.98);
  padding: 1.5rem 2.25rem 2rem;
  margin-top: 0.3125rem;
  min-width: 18.75rem;
  z-index: 200;
}

.header__nav-list {
  position: relative;
}

.header__nav-list:hover > .header__nav-submenu-lists {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.header__nav-submenu-lists::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: 0;
  right: 0;
  height: 0.3125rem;
}

.header__nav-submenu-list--title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0.625rem;
}

.header__nav-submenu-link {
  padding: 0.3125rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  text-align: left;
  display: block;
  white-space: nowrap;
  position: relative;
  transition: opacity 0.2s;
}

.header__nav-submenu-link:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    position: relative;
    z-index: 110;
    transition: 0.3s;
  }
}

.hamburger span {
  height: 0.125rem;
  background: #0d2d8d;
  position: absolute;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.hamburger span:first-child {
  top: 0.9375rem;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.hamburger span:last-child {
  bottom: 0.9375rem;
}

.hamburger.active span:first-child {
  transform: rotate(45deg);
  top: 1.375rem;
  left: 0;
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg);
  bottom: initial;
  top: 1.375rem;
  left: 0;
}

.footer {
  background-color: #fff;
  border-top: 0.0625rem solid #e1e1e1;
}

.footer__grid {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__grid {
    flex-direction: column;
  }
}

.footer__brand {
  width: 15rem;
  padding-right: 2rem;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__brand {
    width: 11.25rem;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__nav {
  display: flex;
  width: calc(100% - 15rem);
  border-left: 0.0625rem solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    border: none;
    padding-bottom: 2.5rem;
  }
}

.footer__col {
  padding-top: 1.5625rem;
  width: 50%;
  padding-bottom: 3.125rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__col {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}

.footer__col + .footer__col {
  border-left: 0.0625rem solid #e1e1e1;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__col + .footer__col {
    margin-left: 0;
    border: none;
    padding-left: 0;
  }
}

.footer__main-item:not(:first-child) {
  margin-top: 1.25rem;
}

.footer__main-link {
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.6;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .footer__main-link {
    padding: 0.3125rem 0;
  }
}

.footer__main-link:hover {
  opacity: 0.7;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.3;
}

.footer__sub-list {
  margin-top: 0.5rem;
}

.footer__sub-item {
  margin-top: 0.25rem;
}

.footer__sub-item:first-child {
  margin-top: 0;
}

.footer__sub-link {
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  padding: 0.1875rem 0.625rem 0.1875rem 1.25rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__sub-link {
    font-size: 0.875rem;
  }
}

.footer__sub-link:hover {
  opacity: 0.7;
}

.footer__cta {
  margin-top: 1.5rem;
}

.footer__btn {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer__btn {
    width: 100%;
    justify-content: center;
  }
}

.footer__bottom {
  background: #121212;
  color: #fff;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 0.9375rem 0;
  }
}

.footer__bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__bottom-flex {
    flex-direction: column-reverse;
  }
}

.footer__bottom-company {
  font-size: 0.875rem;
}

.footer__bottom-policy {
  font-size: 0.875rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__bottom-policy {
    font-size: 0.75rem;
  }
}

.footer__bottom-policy:hover {
  opacity: 0.7;
}

.flow {
  background-color: #f1f1f1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.flow.flow--service {
  background-color: initial;
  padding-top: 5rem;
  position: relative;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow.flow--service {
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
    margin-bottom: 1.25rem;
  }
}

.flow.flow--service:before {
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% - 9.375rem);
  background: #f1f1f1;
  position: absolute;
  top: 9.375rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow.flow--service:before {
    height: calc(100% - 6.25rem);
    top: 6.25rem;
  }
}

.flow__items {
  margin-top: 3.4375rem;
  max-width: 36.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .flow__items {
    margin-top: 1.875rem;
  }
}

.flow.flow--service .flow__items {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .flow.flow--service .flow__items {
    margin-top: 1.875rem;
  }
}

.flow__item {
  position: relative;
  border-radius: 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item {
    border-radius: 0.1875rem;
  }
}

.flow__item:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  background: #0d2d8d;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.flow__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.flow__item-title {
  background: #0d2d8d;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.9375rem 0;
  text-align: center;
  display: block;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1rem;
    padding: 0.625rem 0;
  }
}

.flow__item:has(.flow__item-box) .flow__item-title {
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .flow__item:has(.flow__item-box) .flow__item-title {
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.flow__item-text {
  background: #fff;
  padding: 1.0625rem 0;
  font-size: 1rem;
  color: #121212;
  text-align: center;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 0.875rem;
    padding: 0.9375rem 0;
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.cta {
  background-color: #f1f1f1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #e1e1e1;
}

.cta.cta--contact {
  padding-top: 3.75rem;
  background: #fff;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cta.cta--contact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.cta__flex {
  display: flex;
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .cta__flex {
    flex-direction: column;
  }
}

.cta.cta--contact .cta__flex {
  margin-top: 3.125rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .cta.cta--contact .cta__flex {
    margin-top: 1.25rem;
  }
}

.cta__left {
  width: 50%;
  background: #0d2d8d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 0.375rem 0 0 0.375rem;
}
@media screen and (max-width: 767px) {
  .cta__left {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.1875rem 0 0 0.1875rem;
  }
}

.cta__img {
  width: 12.625rem;
}
@media screen and (max-width: 767px) {
  .cta__img {
    width: 6.25rem;
  }
}

.cta__attention {
  font-size: 1rem;
  color: #fff;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .cta__attention {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}

.cta__form {
  padding: 1.875rem 2.5rem 2.5rem;
  background: #fff;
  width: 50%;
  border-radius: 0 0.375rem 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .cta__form {
    padding: 0.9375rem 0.9375rem;
    width: 100%;
    border-radius: 0 0.1875rem 0.1875rem 0;
  }
}

.cta__form-item:not(:first-child) {
  margin-top: 0.9375rem;
}

.cta__form-label {
  font-size: 1rem;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .cta__form-label {
    font-size: 0.875rem;
  }
}

.cta__form-field {
  margin-top: 0.3125rem;
}

.cta__form-required {
  font-size: 1rem;
  font-weight: 400;
  color: #c00;
  vertical-align: middle;
}

.cta__form-input {
  width: 100%;
  border: 1px solid #616161;
  border-radius: 0.375rem;
  padding: 0.4375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  background-color: #fff;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .cta__form-input {
    font-size: 1rem;
    padding: 0.625rem 0.625rem;
    border-radius: 0.1875rem;
  }
}

.cta__form-select-wrap {
  position: relative;
  margin-top: 0.3125rem;
}

.cta__form-select-wrap::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #616161;
  pointer-events: none;
  font-size: 0.6875rem;
  color: #121212;
}

.cta__form-select {
  width: 100%;
  border: 1px solid #616161;
  border-radius: 0.375rem;
  padding: 0.625rem 3.125rem 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  background-color: #fff;
  appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cta__form-select {
    font-size: 0.875rem;
    padding: 0.625rem 3.125rem 0.625rem 0.625rem;
    border-radius: 0.1875rem;
  }
}

.cta__form-select:focus-visible {
  outline: 2px solid #0d2d8d;
  border-color: #0d2d8d;
}

.cta__form-textarea {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #616161;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #121212;
  letter-spacing: 0.04em;
  background-color: #fff;
  height: 15.625rem;
}
@media screen and (max-width: 767px) {
  .cta__form-textarea {
    font-size: 1rem;
    padding: 0.625rem 0.625rem;
    height: 15.625rem;
    border-radius: 0.1875rem;
  }
}

.cta__form-privacy {
  font-size: 1rem;
  color: #121212;
  font-weight: 400;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cta__form-privacy {
    font-size: 0.875rem;
  }
}

.cta__form-privacy a {
  border-bottom: 1px solid #82879a;
  display: inline-block;
  transition: 0.3s;
}

.cta__form-privacy a:hover {
  border-bottom: 1px solid #fff;
}

.cta__submit-wrap {
  background-color: #0d2d8d;
  background: linear-gradient(90deg, rgb(13, 45, 141) 0%, rgb(13, 45, 141) 50%, rgb(18, 99, 167) 100%);
  font-weight: 500;
  color: #fff !important;
  font-size: 1rem;
  width: 100%;
  height: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s;
  border-radius: 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__submit-wrap {
    font-size: 0.875rem;
    padding: 0.9375rem 1.25rem;
    margin-top: 1.25rem;
    width: 100%;
  }
}

.cta__submit-wrap::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/arrow.png") no-repeat center/contain;
  filter: brightness(0) invert(1);
  margin-left: 0.3125rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cta__submit-wrap::after {
    width: 0.9375rem;
    margin-left: 0.9375rem;
  }
}

.cta__submit-wrap:hover {
  opacity: 0.7;
}

.cta__form-btn {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .cta__form-btn {
    font-size: 0.875rem;
  }
}

.cta__form-btn br {
  display: none;
}
@media screen and (max-width: 767px) {
  .cta__form-btn br {
    display: block;
  }
}

.wpcf7-spinner {
  position: absolute !important;
  top: 0;
  left: 0;
}

.btn {
  background: #0d2d8d;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9375rem 1.25rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  border: 1px solid #0d2d8d;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
  }
}

.btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn img {
    width: 0.9375rem;
    margin-left: 0.3125rem;
  }
}

.btn:hover {
  opacity: 0.7;
}

.breadcrumb {
  background-color: #f1f1f1;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.4375rem 0;
  }
}

.breadcrumb__lists {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumb__lists {
    flex-wrap: wrap;
  }
}

.breadcrumb__link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  max-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__link {
    max-width: 18.75rem;
  }
}

.breadcrumb__list + .breadcrumb__list {
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list + .breadcrumb__list {
    margin-left: 0.3125rem;
  }
}

.breadcrumb__list + .breadcrumb__list:before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  transform: rotate(45deg);
  position: relative;
  left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list + .breadcrumb__list:before {
    width: 0.5rem;
    height: 0.5rem;
    left: -0.1875rem;
  }
}

.breadcrumb__link {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border-radius: 1.25rem;
  border: 1px solid #e1e1e1;
  text-decoration: none;
  font-size: 0.875rem;
  color: #8998a2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .breadcrumb__link {
    font-size: 0.75rem;
    padding: 0.1875rem 0.4375rem;
  }
}

.breadcrumb__link:hover {
  background: #8998a2;
  color: #fff;
}

.breadcrumb__current {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border-radius: 1.25rem;
  border: 1px solid #e1e1e1;
  font-size: 0.875rem;
  color: #8998a2;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__current {
    font-size: 0.75rem;
    padding: 0.1875rem 0.4375rem;
    max-width: 18.75rem;
  }
}

/* ========================================
  実績紹介
======================================== */
.achievement {
  padding: 5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding: 3.125rem 0 3.125rem;
  }
}

.achievement__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .achievement__inner {
    padding-inline: 1rem;
  }
}

.achievement__heading {
  margin-top: 0;
}

.achievement__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .achievement__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.achievement__item {
  border: 0.0625rem solid #e1e1e1;
  padding: 1.875rem 1.5rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .achievement__item {
    padding: 1.25rem 1rem;
  }
}

.achievement__num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .achievement__num {
    font-size: 1.125rem;
  }
}

.achievement__num span {
  color: #0d2d8d;
  font-size: 1.625rem;
  display: block;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .achievement__num span {
    font-size: 1.375rem;
  }
}

.achievement__text {
  font-size: 0.875rem;
  color: #121212;
  line-height: 1.9;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .achievement__text {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }
}

.works-interview {
  padding: 5rem 0 6.25rem;
  background: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .works-interview {
    padding: 3.125rem 0 3.75rem;
  }
}

.works-interview__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .works-interview__inner {
    padding-inline: 1rem;
  }
}

.works-interview__heading {
  margin-top: 0;
}

.works-interview__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .works-interview__items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.works-interview__item {
  border: 0.0625rem solid #e1e1e1;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.works-interview__company {
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
  padding: 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .works-interview__company {
    font-size: 0.9375rem;
  }
}

.works-interview__lead {
  font-size: 0.875rem;
  color: #0d2d8d;
  padding: 0.5rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .works-interview__lead {
    font-size: 0.8125rem;
  }
}

.works-interview__fig {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  flex: 1;
}

.works-interview__fig img:first-child {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .works-interview__fig img:first-child {
    height: 11.25rem;
  }
}

.works-interview__logo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 6.25rem;
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.25rem;
}

.works-interview__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d2d8d;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  letter-spacing: 0.1em;
  border: 0.0625rem solid #0d2d8d;
  transition: background-color 0.3s, color 0.3s;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .works-interview__btn {
    font-size: 0.875rem;
  }
}

.works-interview__btn-arrow {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
  margin-left: 0.625rem;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .works-interview__btn:hover {
    background: #fff;
    color: #0d2d8d;
  }
  .works-interview__btn:hover .works-interview__btn-arrow {
    border-color: #0d2d8d;
  }
}
.works-interview__btn:focus-visible {
  outline: 0.125rem solid #0d2d8d;
  outline-offset: 0.125rem;
}

.works-interview__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .works-interview__more {
    margin-top: 1.875rem;
  }
}

.top-news {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 1.875rem;
  }
}

.top-news__items {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    flex-direction: column;
  }
}

.top-news__item {
  padding: 1.25rem;
  width: 50%;
  border-left: 1px solid #e1e1e1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    width: 100%;
    padding: 0.9375rem;
    border: 1px solid #e1e1e1;
  }
}

.top-news__item:last-child {
  border-right: 1px solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .top-news__item:last-child {
    border-top: none;
  }
}

.top-news__article {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top-news__article {
    margin-top: 1.25rem;
  }
}

.top-news__article-img {
  position: relative;
  width: 100%;
}

.top-news__article-img:before {
  content: "";
  display: block;
  padding-top: 39%;
}

.top-news__article-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.top-news__article-date {
  font-size: 0.875rem;
  color: #82879a;
  padding-top: 1.25rem;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-news__article-date {
    font-size: 0.75rem;
    padding-top: 0.625rem;
  }
}

.top-news__article-title {
  font-size: 1rem;
  font-weight: 500;
  padding-top: 0.9375rem;
  color: #0d2d8d;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-news__article-title {
    font-size: 0.875rem;
    padding-top: 0.625rem;
    padding-bottom: 1.25rem;
  }
}

.top-news__article-btn {
  width: 100%;
  background: #0d2d8d;
  display: block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.9375rem 0;
  border: 1px solid #0d2d8d;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .top-news__article-btn {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }
}

.top-news__article-btn img {
  width: 1.25rem;
  filter: brightness(0) invert(1);
  margin-left: 0.625rem;
}

.top-news__article:hover {
  opacity: 0.7;
}

.top-news__article-btn:hover {
  opacity: 0.7;
}

.reason {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-bottom: 2.5rem;
  }
}

.reason--case {
  padding-top: 4.375rem;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .reason--case {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.reason__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .reason__items {
    flex-direction: column;
    gap: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.reason__item {
  background-color: #fff;
  width: calc(33.333% - 1rem);
  padding: 2rem 0.9375rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .reason__item {
    min-width: 100%;
    padding: 1.25rem 0.9375rem;
  }
}

.reason__item-title {
  font-size: 2.1875rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__item-title {
    font-size: 1.5rem;
  }
}

.reason__item-text {
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  line-height: 1.8;
  margin-top: 1.25rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.reason__item-text span {
  font-weight: 500;
  display: block;
}

.mv {
  background-color: #0d2d8d;
  background-image: url(./../images/mv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: relative;
  padding-top: 4.375rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-bottom: 5rem;
    background-position: center right 40%;
  }
}

.mv__title {
  font-size: 1.875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
    text-align: center;
  }
}

.mv__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #1263a7;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 2.25rem;
  margin-top: 2.5rem;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #1263a7;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    padding: 0.75rem 1.75rem;
    margin-top: 1.875rem;
    width: 100%;
    justify-content: center;
  }
}

.mv__btn::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: 0.3s;
}

.mv__btn:hover {
  opacity: 0.7;
}

.intro {
  background-color: #fff;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .intro {
    padding-top: 1.875rem;
  }
}

.intro__content {
  border: 1px solid #e1e1e1;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .intro__content {
    padding-top: 1.25rem;
  }
}

.intro__text {
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  line-height: 1.8;
  text-align: left;
  margin-top: 2.5rem;
  padding-left: 3.75rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 0.875rem;
    margin-top: 1.875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.intro__service-btn {
  color: #fff;
  background: #0d2d8d;
  padding: 0.9375rem;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 1px solid #0d2d8d;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .intro__service-btn {
    padding: 0.625rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.intro__service-btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.intro__service-btn:hover {
  opacity: 0.7;
}

.interview {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.interview__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.interview--client .interview__items {
  margin-top: 0;
}

.interview__item {
  border: 1px solid #e1e1e1;
  overflow: hidden;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .interview__item {
    border-radius: 0.1875rem;
  }
}

.interview__item-body {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .interview__item-body {
    padding: 0.625rem;
  }
}

.interview__item-company {
  font-size: 1.125rem;
  font-weight: 500;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .interview__item-company {
    font-size: 1rem;
  }
}

.interview__item-text {
  font-size: 1rem;
  font-weight: 500;
  color: #0d2d8d;
  line-height: 1.8;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .interview__item-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.interview__item-img-box {
  margin-top: 0.625rem;
  position: relative;
  overflow: hidden;
}

.interview__item-img img {
  transition: 0.3s;
  object-fit: contain;
}

.interview__item-logo {
  background: #fff;
  width: max-content;
  max-width: none;
  min-width: 0;
  position: absolute;
  top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .interview__item-logo {
    top: 1.25rem;
  }
}

.interview__item-logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 3rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .interview__item-logo img {
    height: 1.875rem;
  }
}

.interview__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0d2d8d;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9375rem 0;
  text-align: center;
  border-radius: 0 0 0.375rem 0.375rem;
  margin-top: 0.9375rem;
  transition: 0.3s;
  border: 1px solid #0d2d8d;
}
@media screen and (max-width: 767px) {
  .interview__item-btn {
    font-size: 0.875rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
    margin-top: 0.625rem;
  }
}

.interview__item-btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .interview__item-btn img {
    width: 0.9375rem;
    margin-left: 0.3125rem;
  }
}

.interview__item:hover .interview__item-img img {
  transform: scale(1.1);
}

.interview__item:hover .interview__item-btn {
  opacity: 0.7;
}

.interview__btn {
  width: fit-content;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .interview__btn {
    margin-top: 1.875rem;
  }
}

.concern {
  background-color: #f1f1f1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.concern__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .concern__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.concern__item {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .concern__item {
    border-radius: 0.1875rem;
  }
}

.concern__item-icon {
  object-fit: contain;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .concern__item-icon {
    padding-top: 1.25rem;
  }
}

.concern__item-icon img {
  width: auto;
  height: 8.125rem;
}
@media screen and (max-width: 767px) {
  .concern__item-icon img {
    height: 6.25rem;
  }
}

.concern__item-title {
  font-size: 2.1875rem;
  color: #121212;
  line-height: 1.2;
  padding-top: 2.5rem;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .concern__item-title {
    font-size: 1.125rem;
    padding-top: 1.25rem;
  }
}

.concern__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d2d8d;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.9375rem 1.25rem;
  margin-top: 2.1875rem;
  transition: 0.3s;
  border: 1px solid #0d2d8d;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .concern__item-btn {
    border-radius: 0 0 0.1875rem 0.1875rem;
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.concern__item-btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .concern__item-btn img {
    width: 0.9375rem;
    margin-left: 0.3125rem;
  }
}

.concern__item:hover .concern__item-btn {
  opacity: 0.7;
}

.concern__btn {
  margin-top: 2.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .concern__btn {
    margin-top: 1.875rem;
  }
}

.service-point {
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-point {
    padding-top: 1.25rem;
  }
}

.service-point__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 0.9375rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-point__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.service-point__item {
  padding: 2.5rem 1.25rem 2.1875rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .service-point__item {
    padding: 1.25rem;
    border-radius: 0.1875rem;
  }
}

.service-point__item-number {
  font-size: 1rem;
  color: #fff;
  background: #0d2d8d;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.375rem;
  display: inline-block;
  min-width: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-point__item-number {
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem;
    border-radius: 0.1875rem;
    min-width: 5rem;
  }
}

.service-point__item-title {
  font-size: 2.1875rem;
  padding-top: 1.25rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .service-point__item-title {
    font-size: 1.125rem;
    padding-top: 0.625rem;
  }
}

.service-point__item-text {
  padding-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .service-point__item-text {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.service-point__box {
  background: #f1f1f1;
  margin-top: 2.5rem;
  border-radius: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .service-point__box {
    margin-top: 1.25rem;
    border-radius: 0.1875rem;
    font-size: 0.875rem;
  }
}

.service-point__item-lists {
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-point__item-lists {
    padding-top: 0.625rem;
  }
}

.service-point__item-list {
  font-weight: 400;
  color: #121212;
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .service-point__item-list {
    font-size: 0.875rem;
  }
}

.service-point__item-list:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-point__item-list:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.service-point__item-list span {
  color: #0d2d8d;
  font-weight: 500;
  display: block;
}

.service-lead {
  padding-top: 5.625rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .service-lead {
    padding-top: 2.5rem;
  }
}

.service-lead__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service-lead__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.service-lead__item {
  padding: 2.5rem;
  border: 1px solid #e1e1e1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .service-lead__item {
    padding: 1.25rem;
  }
}

.service-lead__item:nth-child(even) {
  border-left: none;
}
@media screen and (max-width: 767px) {
  .service-lead__item:nth-child(even) {
    border: 1px solid #e1e1e1;
  }
}

.service-lead__item:nth-child(n+3) {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .service-lead__item:nth-child(n+3) {
    border: 1px solid #e1e1e1;
  }
}

@media screen and (max-width: 767px) {
  .service-lead__item:not(:first-child) {
    border-top: none;
  }
}

.service-lead__item-title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #121212;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .service-lead__item-title {
    font-size: 1.5rem;
  }
}

.service-lead__item-text {
  font-size: 1rem;
  color: #121212;
  margin-top: 0.625rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .service-lead__item-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.service-item {
  padding-top: 5rem;
  padding-bottom: 0rem;
  scroll-margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service-item {
    padding-top: 3.75rem;
    scroll-margin-top: 1.25rem;
  }
}

.service-item:has(+ .cta) {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .service-item:has(+ .cta) {
    padding-bottom: 3.75rem;
  }
}

.service-item__top-copy {
  padding-top: 2.5rem;
  height: 16.25rem;
  position: relative;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .service-item__top-copy {
    padding-top: 1.25rem;
    height: 8.75rem;
    margin-top: 1.25rem;
  }
}

.service-item__top-copy:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #0d2d8d;
  background-image: url(./../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service-item__top-copy h3 {
  color: #fff;
  font-weight: 500;
  font-size: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-item__top-copy h3 {
    font-size: 1.125rem;
  }
}

.service-item__top-copy span {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.75;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-item__top-copy span {
    font-size: 0.75rem;
  }
}

.service-item__top-detail {
  padding-top: 1.5625rem;
  font-size: 1rem;
  color: #121212;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .service-item__top-detail {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.service-item__top:after {
  content: "";
  display: block;
  width: 23.125rem;
  height: 3.125rem;
  background: #f1f1f1;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service-item__top:after {
    width: 12.5rem;
    height: 1.875rem;
    margin-top: 0.625rem;
  }
}

.service-item__title {
  font-size: 1.875rem;
  color: #121212;
  font-weight: 500;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service-item__title {
    font-size: 1.25rem;
    padding-left: 1.25rem;
    position: relative;
  }
}

.service-item__title:before {
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #0d2d8d;
  background-image: url(./../images/square.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  margin-right: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .service-item__title:before {
    width: 0.625rem;
    height: 0.625rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.service-item__btn {
  font-size: 1.875rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(90deg, rgb(13, 45, 141) 0%, rgb(13, 45, 141) 50%, rgb(18, 99, 167) 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 5rem;
  box-shadow: 0 0.3125rem 0 #0c2779;
  display: flex;
  align-items: center;
  border-radius: 5rem;
  margin-top: 3.75rem;
  justify-content: center;
  transition: 0.3s;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .service-item__btn {
    font-size: 1.125rem;
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}

.service-item__btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
}

.service-item__btn:hover {
  opacity: 0.7;
}

.service-image {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .service-image {
    padding-top: 2.5rem;
  }
}

.service-image__img {
  padding: 5rem 0;
  position: relative;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-image__img {
    padding: 2.5rem 1.25rem;
    margin-top: 0.9375rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: scroll;
    background: #f1f1f1;
  }
}

.service-image__img:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f1f1f1;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .service-image__img:before {
    display: none;
  }
}

.service-image__img img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-image__img img {
    min-width: 37.5rem;
  }
}

.check-list {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .check-list {
    padding-top: 2.5rem;
  }
}

.check-list__items {
  margin-top: 2.1875rem;
  padding: 1.875rem 2.5rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .check-list__items {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border-radius: 0.1875rem;
  }
}

.check-list__item {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .check-list__item {
    padding-left: 1.25rem;
  }
}

.check-list__item + .check-list__item {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .check-list__item + .check-list__item {
    margin-top: 0.625rem;
  }
}

.check-list__item::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid #0d2d8d;
  border-left: 0.125rem solid #0d2d8d;
  transform: rotate(-45deg);
  margin-right: 0.625rem;
  position: relative;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .check-list__item::before {
    width: 0.9375rem;
    height: 0.3125rem;
    top: 0.625rem;
    position: absolute;
    left: -0.3125rem;
  }
}

.check-list__text {
  font-size: 1.25rem;
  color: #121212;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .check-list__text {
    font-size: 1rem;
  }
}

.check-list__text span {
  font-weight: 500;
  color: #0d2d8d;
  text-decoration: underline;
}

.check-list__box {
  background: #f1f1f1;
  margin-top: 2.5rem;
  border-radius: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .check-list__box {
    margin-top: 1.25rem;
    border-radius: 0.1875rem;
    font-size: 0.875rem;
  }
}

/* ========================================
  プライバシーポリシー
======================================== */
.privacy {
  padding: 3.75rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 2.5rem 0 3.75rem;
  }
}

.privacy__heading {
  margin-top: 0;
}

.privacy__sections {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .privacy__sections {
    margin-top: 1.875rem;
  }
}

.privacy__section:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__section:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.privacy__section-title {
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .privacy__section-title {
    font-size: 0.875rem;
  }
}

.privacy__section-text {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .privacy__section-text {
    font-size: 0.875rem;
  }
}

.privacy__section-text a {
  display: inline-block;
  text-decoration: underline;
}

.privacy__section-list {
  font-size: 1rem;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .privacy__section-list {
    font-size: 0.875rem;
  }
}

.privacy__section-list li {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .privacy__section-list li {
    font-size: 0.875rem;
  }
}

.privacy-update {
  margin-top: 4.375rem;
  overflow: hidden;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .privacy-update {
    margin-top: 2.5rem;
    border-radius: 0.1875rem;
  }
}

.privacy-update__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #616161;
  padding: 0.9375rem 2.5rem;
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .privacy-update__title {
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.privacy-update__items {
  background: #f1f1f1;
  border-top: none;
  padding: 2.1875rem 2.5rem;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .privacy-update__items {
    padding: 0.9375rem 1.25rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.privacy-update__item {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .privacy-update__item {
    font-size: 0.875rem;
  }
}

.news-layout {
  padding: 4.375rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-layout {
    padding: 2.5rem 0 3.75rem;
  }
}

.news-layout__inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-layout__inner {
    flex-direction: column;
  }
}

.news-layout__main {
  flex: 1;
  min-width: 0;
  width: calc(100% - 17.375rem);
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-layout__main {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2.5rem;
  }
}

.news-layout__sidebar {
  width: 17.375rem;
  flex-shrink: 0;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-layout__sidebar {
    width: 100%;
  }
}

.news-layout__items {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news-layout__items {
    margin-top: 1.25rem;
  }
}

.news-layout__item {
  border-bottom: 0.0625rem solid #e1e1e1;
}

.news-layout__category {
  color: #fff;
  background: #0d2d8d;
  font-size: 0.875rem;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-layout__category {
    font-size: 0.75rem;
    margin-top: 0.625rem;
    padding: 0.1875rem 0.4375rem;
  }
}

.news-layout__link {
  display: block;
  padding: 2.1875rem 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .news-layout__link {
    padding: 0.9375rem 0;
  }
}

.news-layout__link:hover {
  opacity: 0.6;
}

.news-layout__date {
  display: block;
  font-size: 0.875rem;
  color: #82879a;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-layout__date {
    font-size: 0.75rem;
  }
}

.news-layout__title {
  font-size: 1rem;
  font-weight: 500;
  color: #0d2d8d;
  margin-top: 0.625rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .news-layout__title {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.news-layout__note {
  font-size: 0.8125rem;
  color: #e05252;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-layout__note {
    font-size: 0.75rem;
  }
}

.news-layout__empty {
  font-size: 0.9375rem;
  color: #616161;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-layout__empty {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.sidebar__widget {
  overflow: hidden;
}

.sidebar__widget + .sidebar__widget {
  margin-top: 1.25rem;
}

.sidebar__widget-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background: #616161;
  border-radius: 0.375rem 0.375rem 0 0;
  border-bottom: 1px solid #e1e1e1;
  padding: 0.9375rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .sidebar__widget-title {
    font-size: 1rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.sidebar__widget-items {
  padding: 0;
}

.sidebar__widget-item {
  border-bottom: 0.0625rem solid #e1e1e1;
}

.sidebar__widget-item:last-child {
  border-bottom: none;
}

.sidebar__widget-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #0d2d8d;
  padding: 0.9375rem 1.125rem;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .sidebar__widget-link {
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
  }
}

.sidebar__widget-link:hover {
  background: #1263a7;
  color: #fff;
}

.news-detail {
  min-height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .news-detail {
    min-height: 9.375rem;
  }
}

.news-detail__date {
  display: block;
  font-size: 0.875rem;
  color: #82879a;
  font-weight: 500;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }
}

.news-detail__body {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-detail__body {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.news-detail__body > * + * {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-detail__body > * + * {
    margin-top: 1.25rem;
  }
}

.news-detail__body a {
  color: #0d2d8d;
  text-decoration: underline;
}

.news-detail__body a:hover {
  opacity: 0.7;
}

.news-detail__body img {
  position: relative;
  width: 100%;
  max-width: 25rem;
  margin-top: 2.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .news-detail__body img {
    margin-top: 1.25rem;
  }
}

.news-detail__img {
  position: relative;
  width: 100%;
  max-width: 25rem;
  margin-top: 6.25rem;
  border: 1px solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .news-detail__img {
    margin-top: 2.5rem;
  }
}

.news-detail__img:before {
  content: "";
  display: block;
  padding-top: 55%;
}

.news-detail__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: 5rem;
  border-top: 1px solid #e1e1e1;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-detail__nav {
    gap: 0.625rem;
    padding-top: 1.25rem;
    flex-wrap: wrap;
  }
}

.news-detail__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  background: #616161;
  border: 0.0625rem solid #616161;
  padding: 0.3125rem 0.625rem;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .news-detail__nav-btn {
    font-size: 0.875rem;
    padding: 0.1875rem 0.5rem;
  }
}

.news-detail__nav-btn:hover {
  opacity: 0.7;
}

/* ========================================
  クライアントインタビュー一覧
======================================== */
.interview-list {
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .interview-list {
    padding: 3.125rem 0 3.75rem;
  }
}

.interview-list__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .interview-list__inner {
    padding-inline: 1rem;
  }
}

.interview-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview-list__items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.interview-list__item {
  border: 0.0625rem solid #e1e1e1;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.interview-list__company {
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
  padding: 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .interview-list__company {
    font-size: 0.9375rem;
  }
}

.interview-list__lead {
  font-size: 0.875rem;
  color: #0d2d8d;
  padding: 0.5rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .interview-list__lead {
    font-size: 0.8125rem;
  }
}

.interview-list__fig {
  position: relative;
  margin-top: 1rem;
  flex: 1;
  overflow: hidden;
}

.interview-list__fig img:first-child {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .interview-list__fig img:first-child {
    height: 12.5rem;
  }
}

.interview-list__logo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 6.25rem;
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.25rem;
}

.interview-list__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d2d8d;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 1.125rem 1.25rem;
  letter-spacing: 0.1em;
  border: 0.0625rem solid #0d2d8d;
  transition: background-color 0.3s, color 0.3s;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .interview-list__btn {
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
  }
}

.interview-list__btn-arrow {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
  margin-left: 0.625rem;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .interview-list__btn:hover {
    background: #fff;
    color: #0d2d8d;
  }
  .interview-list__btn:hover .interview-list__btn-arrow {
    border-color: #0d2d8d;
  }
}
.interview-list__btn:focus-visible {
  outline: 0.125rem solid #0d2d8d;
  outline-offset: 0.125rem;
}

.interview-detail {
  padding: 4.375rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .interview-detail {
    padding: 2.5rem 0 3.125rem;
  }
}

.interview-detail__hero {
  display: flex;
  margin-top: 2.5rem;
  min-height: 17.5rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__hero {
    flex-direction: column;
    min-height: auto;
    margin-top: 1.25rem;
    min-height: initial;
  }
}

.interview-detail__hero-text {
  background: #0c2779;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.5rem;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .interview-detail__hero-text {
    padding: 1.875rem;
    order: 2;
    width: 100%;
  }
}

.interview-detail__hero-quote {
  font-size: 2.1875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .interview-detail__hero-quote {
    font-size: 1.25rem;
  }
}

.interview-detail__hero-img {
  overflow: hidden;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .interview-detail__hero-img {
    order: 1;
    width: 100%;
  }
}

.interview-detail__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 17.5rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__hero-img img {
    min-height: initial;
  }
}

.interview-detail__table {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__table {
    margin-top: 1.875rem;
  }
}

.interview-detail__table-title {
  background: #616161;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .interview-detail__table-title {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.interview-detail__table-items {
  padding: 0.9375rem;
  border-radius: 0 0 0.375rem 0.375rem;
  background: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .interview-detail__table-items {
    padding: 0.625rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.interview-detail__table-item {
  font-size: 1rem;
  color: #121212;
  line-height: 2;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .interview-detail__table-item {
    font-size: 0.875rem;
  }
}

.interview-detail__table-item:hover {
  opacity: 0.7;
}

.interview-detail__profile {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile {
    margin-top: 1.875rem;
  }
}

.interview-detail__profile-body {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2.5rem;
  border: 0.125rem solid #e1e1e1;
  padding: 2.5rem;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-body {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-top: 1.25rem;
    justify-content: center;
    align-items: center;
  }
}

.interview-detail__profile-logo {
  width: 14.375rem;
  height: 14.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.625rem rgb(225, 225, 225);
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-logo {
    width: 12.5rem;
    height: 12.5rem;
  }
}

.interview-detail__profile-logo img {
  width: 8.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-logo img {
    width: 9.375rem;
  }
}

.interview-detail__profile-table {
  width: calc(100% - 14.375rem - 2.5rem);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-table {
    width: 100%;
  }
}

.interview-detail__profile-table th,
.interview-detail__profile-table td {
  font-size: 1rem;
  line-height: 1.75;
  padding: 0.9375rem 0.9375rem;
  border-bottom: 0.0625rem solid #e1e1e1;
  text-align: left;
  vertical-align: top;
  color: #121212;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-table th,
  .interview-detail__profile-table td {
    font-size: 0.875rem;
    padding: 0.625rem 0.625rem;
    display: block;
    width: 100%;
  }
}

.interview-detail__profile-table tr:first-child {
  border-top: 0.0625rem solid #e1e1e1;
}

.interview-detail__profile-table th {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .interview-detail__profile-table th {
    white-space: initial;
    border-bottom: 0;
    padding-bottom: 0;
    width: 100%;
  }
}

.interview-detail__profile-table td a {
  text-decoration: underline;
}

.interview-detail__profile-table td li {
  padding-left: 1em;
  text-indent: -1em;
}

.interview-detail__content {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__content {
    margin-top: 2.5rem;
  }
}

.interview-detail__content-body {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-body {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.interview-detail__content-body--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-body--reverse {
    flex-direction: column;
  }
}

.interview-detail__content-text {
  flex: 1;
  min-width: 0;
}

.interview-detail__content-text p {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-text p {
    font-size: 0.875rem;
  }
}

.interview-detail__content-text p + p {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-text p + p {
    margin-top: 0.625rem;
  }
}

.interview-detail__content-img {
  width: 32.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-img {
    width: 100%;
  }
}

.interview-detail__content-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__content-img img {
    border-radius: 0.1875rem;
  }
}

.interview-detail__comment {
  display: flex;
  align-items: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.interview-detail__comment-ceo {
  width: 14.8125rem;
  background: #0d2d8d;
  border-radius: 0.375rem 0 0 0.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment-ceo {
    width: 100%;
    border-radius: 0.1875rem 0.1875rem 0 0;
    padding: 1.25rem;
  }
}

.interview-detail__comment-ceo-img {
  width: 9.75rem;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment-ceo-img {
    width: 6.25rem;
  }
}

.interview-detail__comment-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-detail__comment-ceo-role {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.75;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment-ceo-role {
    font-size: 0.875rem;
    text-align: center;
  }
}

.interview-detail__comment-text {
  flex: 1;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: stretch;
  padding: 2.5rem;
  border-radius: 0 0.375rem 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment-text {
    font-size: 0.875rem;
    padding: 1.25rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.interview-detail__comment-text p {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.9375rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #121212;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview-detail__comment-text p {
    font-size: 0.875rem;
    border-radius: 0.1875rem;
  }
}

/* ========================================
  会社概要
======================================== */
.company {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.company__table-title {
  background: #616161;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .company__table-title {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.company__table-items {
  padding: 0.625rem 0.9375rem 0.9375rem;
  background: #f1f1f1;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .company__table-items {
    padding: 0.625rem 0.9375rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.company__table-item {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .company__table-item {
    font-size: 0.875rem;
  }
}

.company-info {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .company-info {
    margin-top: 2.5rem;
  }
}

.company-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-info__table {
    margin-top: 1.25rem;
  }
}

.company-info__row {
  border-bottom: 0.0625rem solid #e1e1e1;
}

.company-info__row:first-child {
  border-top: 0.0625rem solid #e1e1e1;
}

.company-info__th, .company-info__td {
  font-size: 1rem;
  color: #121212;
  padding: 0.8125rem 1.25rem;
  vertical-align: top;
  text-align: left;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company-info__th, .company-info__td {
    width: 5.625rem;
    display: block;
    width: 100%;
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

.company-info__th {
  width: 22.5rem;
  white-space: nowrap;
  background: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .company-info__th {
    width: 100%;
  }
}

.company-info__td {
  width: calc(100% - 22.5rem);
}
@media screen and (max-width: 767px) {
  .company-info__td {
    width: 100%;
  }
}

.company-info__td dl {
  display: flex;
}

.company-info__td dt, .company-info__td dd {
  line-height: 1.75;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .company-info__td dt, .company-info__td dd {
    font-size: 0.875rem;
  }
}

.company-info__td dt {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .company-info__td dt {
    width: 5.625rem;
  }
}

.company-info__td dd {
  width: calc(100% - 7.5rem);
}
@media screen and (max-width: 767px) {
  .company-info__td dd {
    width: calc(100% - 5.625rem);
  }
}

.company-greeting {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .company-greeting {
    margin-top: 2.5rem;
  }
}

.company-greeting__content {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company-greeting__content {
    margin-top: 1.25rem;
  }
}

.company-greeting__content:before {
  content: "";
  display: block;
  width: 100vw;
  height: 33.75rem;
  background-image: url(./../images/company-greeting-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: calc(50% - 50vw);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company-greeting__content:before {
    height: 34vw;
    min-height: 9.375rem;
  }
}

.company-greeting__body {
  padding-top: 3.125rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-greeting__body {
    padding-top: 1.875rem;
    padding-left: 0;
  }
}

.company-greeting__copy {
  font-size: 2.1875rem;
  font-weight: 400;
  color: #fff;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .company-greeting__copy {
    font-size: 1.125rem;
    padding-left: 0;
  }
}

.company-greeting__text {
  padding: 1.875rem;
  background: #fff;
  border-radius: 0.375rem;
  max-width: 53.5625rem;
  width: 80%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-greeting__text {
    padding: 1.25rem;
    border-radius: 0.1875rem;
    width: 100%;
    margin-top: 1.875rem;
  }
}

.company-greeting__text-comment {
  line-height: 1.75;
  font-size: 1rem;
  color: #121212;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .company-greeting__text-comment {
    font-size: 0.875rem;
  }
}

.company-greeting__text-name {
  line-height: 1.75;
  font-size: 1rem;
  text-align: right;
  display: block;
  padding-top: 1.875rem;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .company-greeting__text-name {
    font-size: 0.875rem;
    padding-top: 0.9375rem;
  }
}

.concern-case {
  padding: 1.875rem 2.5rem;
  position: relative;
  border: 1px solid #e1e1e1;
  scroll-margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .concern-case {
    margin-top: 2.5rem;
    padding: 1.25rem;
    scroll-margin-top: 5.625rem;
  }
}

.concern-case:not(:first-child) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .concern-case:not(:first-child) {
    margin-top: 3.75rem;
  }
}

.concern-case__badge {
  display: inline-block;
  background: #0d2d8d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.4375rem 0.8125rem;
  border-radius: 0.375rem 0.375rem 0 0;
  letter-spacing: 0;
  position: absolute;
  top: -2.375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .concern-case__badge {
    font-size: 0.875rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
    padding: 0.3125rem 0.625rem;
    top: -2rem;
  }
}

.concern-case__title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #121212;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .concern-case__title {
    font-size: 1.25rem;
  }
}

.concern-case__subtitle {
  font-size: 1rem;
  letter-spacing: 0;
  color: #121212;
  line-height: 1.8;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .concern-case__subtitle {
    font-size: 0.875rem;
  }
}

.concern-case__text-box {
  background: #f1f1f1;
  padding: 0.9375rem 1.25rem;
  margin-top: 1.875rem;
  color: #121212;
  line-height: 1.75;
  letter-spacing: 0;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .concern-case__text-box {
    padding: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.concern-case__text {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .concern-case__text {
    font-size: 0.875rem;
  }
}

.concern-case__text:not(:first-child) {
  margin-top: 0.5rem;
}

.concern-case__flex {
  display: flex;
  gap: 4.6875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .concern-case__flex {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.concern-case__flex-item {
  flex: 1;
}

.concern-case__flex-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #0d2d8d;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .concern-case__flex-heading {
    font-size: 0.875rem;
    padding: 0.4375rem 0.9375rem;
  }
}

.concern-case__flex-lists {
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .concern-case__flex-lists {
    padding-top: 0.3125rem;
  }
}

.concern-case__flex-list {
  font-size: 1rem;
  color: #121212;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .concern-case__flex-list {
    font-size: 0.875rem;
  }
}

.concern-case__btn {
  font-size: 1.875rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(90deg, rgb(13, 45, 141) 0%, rgb(13, 45, 141) 50%, rgb(18, 99, 167) 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0.9375rem 5rem;
  box-shadow: 0 0.3125rem 0 #0c2779;
  display: flex;
  align-items: center;
  border-radius: 5rem;
  margin-top: 2.1875rem;
  justify-content: center;
  transition: 0.3s;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .concern-case__btn {
    font-size: 1.125rem;
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}

.concern-case__btn img {
  width: 1.25rem;
  margin-left: 0.625rem;
  filter: brightness(0) invert(1);
}

.concern-case__btn:hover {
  opacity: 0.7;
}

/* ========================================
  お悩み別解決策
======================================== */
.case-top {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .case-top {
    padding-top: 2.5rem;
  }
}

.case-top__intro-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #82879a;
  display: block;
  padding: 0.9375rem 1.25rem;
  margin-top: 0;
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .case-top__intro-title {
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
}

.case-top__intro-items {
  padding: 0.9375rem;
  background: #f1f1f1;
  padding-bottom: 1.25rem;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .case-top__intro-items {
    border-radius: 0 0 0.1875rem 0.1875rem;
  }
}

.case-top__intro-item {
  font-size: 1rem;
  text-decoration: underline;
  line-height: 1.55;
  color: #121212;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .case-top__intro-item {
    font-size: 0.875rem;
  }
}

.case-top__intro-item + .case-top__intro-item {
  margin-top: 0.1875rem;
}

.case-top__heading {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .case-top__heading {
    margin-top: 3.125rem;
  }
}

.case-title {
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .case-title {
    padding-top: 2.5rem;
  }
}

.case-list {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .case-list {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.blog-search {
  margin-top: 2.5rem;
  background: #e1e1e1;
  padding: 1.875rem 2.5rem;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .blog-search {
    margin-top: 1.5rem;
    padding: 0.875rem;
  }
}

.blog-search__form {
  display: flex;
}

.blog-search__input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #121212;
  background: #fff;
  outline: none;
  border: 1px solid #616161;
  border-radius: 0.375rem 0 0 0.375rem;
  width: calc(100% - 6.25rem);
}
@media screen and (max-width: 767px) {
  .blog-search__input {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
    width: calc(100% - 5.125rem);
  }
}

.blog-search__btn {
  background: #616161;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9375rem 1.25rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  border-radius: 0 0.375rem 0.375rem 0;
  width: 6.25rem;
}
.blog-search__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .blog-search__btn {
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
    width: 5.125rem;
  }
}

.blog-nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .blog-nav {
    margin-top: 1.5rem;
  }
}

.blog-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  background: #616161;
  border: 0.0625rem solid #616161;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .blog-nav__btn {
    font-size: 0.875rem;
    padding: 0.1875rem 0.5rem;
  }
}

.blog-nav__btn:hover {
  opacity: 0.7;
}

/* ========================================
  安全保障貿易管理News 記事詳細
======================================== */
.blog-detail {
  min-height: 12.5rem;
}

.blog-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 0.125rem solid #0d2d8d;
}
@media screen and (max-width: 767px) {
  .blog-detail__title {
    font-size: 1.1875rem;
  }
}

.blog-detail__date {
  display: block;
  font-size: 0.8125rem;
  color: #82879a;
  font-family: "Didact Gothic", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .blog-detail__date {
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }
}

.blog-detail__category {
  display: inline-block;
  background: #0d2d8d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.1875rem 0.75rem;
  margin-top: 0.5rem;
  transition: background-color 0.2s;
}
@media screen and (max-width: 767px) {
  .blog-detail__category {
    font-size: 0.6875rem;
  }
}

@media (any-hover: hover) {
  .blog-detail__category:hover {
    background: #1263a7;
  }
}
.blog-detail__body {
  font-size: 0.9375rem;
  color: #121212;
  line-height: 1.9;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .blog-detail__body {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.blog-detail__body a {
  color: #0d2d8d;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .blog-detail__body a:hover {
    opacity: 0.7;
  }
}
.blog-detail__img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .blog-detail__img {
    margin-top: 1.25rem;
  }
}

.blog-detail__img img {
  max-width: 21.875rem;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog-detail__img img {
    max-width: 100%;
  }
}

.news-nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-nav {
    margin-top: 1.5rem;
  }
}

.news-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  background: #82879a;
  border: 0.0625rem solid #82879a;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .news-nav__btn {
    font-size: 0.875rem;
    padding: 0.1875rem 0.5rem;
  }
}

.news-nav__btn:hover {
  opacity: 0.7;
}

.blog-detail__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .blog-detail__nav {
    gap: 0.375rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
  }
}

.blog-detail__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: #0d2d8d;
  border: 0.0625rem solid #0d2d8d;
  padding: 0.5rem 1.375rem;
  min-width: 5rem;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .blog-detail__nav-btn {
    font-size: 0.8125rem;
    padding: 0.4375rem 1rem;
    min-width: 4rem;
  }
}

@media (any-hover: hover) {
  .blog-detail__nav-btn:hover {
    opacity: 0.7;
  }
}
.blog-detail__nav-btn:focus-visible {
  outline: 0.125rem solid #0d2d8d;
  outline-offset: 0.125rem;
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5rem 0;
}

.error-404__text {
  color: #0d2d8d;
  font-size: 12.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .error-404__text {
    font-size: 7.5rem;
  }
}

.error-404__message {
  color: #0d2d8d;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .error-404__message {
    font-size: 0.875rem;
  }
}