@charset "UTF-8";
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 1em;
}
.mt-15 {
  margin-top: 1.5em;
}
.mt-20 {
  margin-top: 2em;
}
.mt-sm {
  margin-top: 3rem;
}
.mt-md {
  margin-top: 5rem;
}
.mt-lg {
  margin-top: 10rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem;
}
.mb-md {
  margin-bottom: 5rem;
}
.mb-lg {
  margin-bottom: 10rem;
}

.ms-auto {
  margin-left: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg-01 {
  background-color: #f3f3f5;
}
.bg-dark {
  background-color: #333;
}
.bg-white {
  background-color: #fff;
}

.js-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--background-color, #f3f3f5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.js-background.is-active {
  opacity: 1;
  visibility: visible;
}

.w-100 {
  width: 100%;
}
.w-fit {
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 64rem;
}
.w-md {
  max-width: 90rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

* {
  color: var(--text-color, #333);
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  line-height: 1.875;
}

em, address {
  font-style: normal;
}

.text-serif {
  font-family: "Noto Serif JP", serif;
}
.text-en {
  font-family: "Inter", sans-serif;
}
.text-unset {
  font-family: initial;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-primary {
  color: #18357a;
}
.text-red {
  color: #e61519;
}
.text-white {
  --text-color: #fff;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-lg {
  font-size: 2rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-sm {
  letter-spacing: 0.025em;
}
.ls-md {
  letter-spacing: 0.1em;
}
.ls-lg {
  letter-spacing: 0.2em;
}

figure, picture {
  margin-bottom: 0;
  display: block;
}

img, svg, iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-border {
  border: 1px solid #ccc;
}
.img-fluid {
  width: var(--width-pc) !important;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video video {
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

a {
  color: var(--text-color, #0e1346);
  text-decoration: none;
}
a * {
  color: var(--text-color, #0e1346);
}
a:not([class]) {
  transition: opacity 0.3s;
}
a:not([class]):hover {
  opacity: 0.5;
}

[data-link=image] {
  display: block;
  overflow: hidden;
}
[data-link=image] .image {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}
[data-link=image] img, [data-link=image] svg {
  transition: transform 0.3s;
}
[data-link=image]:hover {
  opacity: 1 !important;
}
[data-link=image]:hover img, [data-link=image]:hover svg {
  transform: scale(1.1);
}

.link-underline {
  text-decoration: underline;
}
.link-external {
  display: inline-flex;
  gap: 0 0.25em;
  align-items: center;
}
.link-external::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M2 0h12v10H2Zm11 1H3v8h10Z"/><path d="M9.5 12H0V4.5h1V11h8.5Z"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

ul, ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

dl, dt, dd {
  margin-bottom: 0;
}

.list-dot li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-dot li::before {
  content: "・";
}
.list-circle li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.875;
}
.list-circle li::before {
  content: "●";
  margin-right: 0.25em;
}
.list-note {
  list-style-type: none;
}
.list-note li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-note li::before {
  content: "※";
}
.list-number {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.list-number li {
  line-height: 1.875;
}
.list-numzero {
  counter-reset: count;
}
.list-numzero li {
  margin-left: 1.75em;
  text-indent: -1.75em;
  line-height: 1.875;
}
.list-numzero li::before {
  content: counter(count, decimal-leading-zero) ".";
  margin-right: 0.25em;
  counter-increment: count;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}

.gap-sm {
  gap: 1.2rem;
}
.gap-md {
  gap: 1.6rem;
}
.gap-lg {
  gap: 2rem;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .tabOnly {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .text-md-center {
    text-align: center;
  }
  .mx-pc-auto {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.4rem;
  }
  .img-fluid {
    width: var(--width-sp) !important;
  }
  .mt-lg {
    margin-top: 6rem !important;
  }
  .mt-md {
    margin-top: 4rem !important;
  }
  .mt-sm {
    margin-top: 3rem !important;
  }
  .mb-lg {
    margin-bottom: 6rem !important;
  }
  .mb-md {
    margin-bottom: 4rem !important;
  }
  .mb-sm {
    margin-bottom: 3rem !important;
  }
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .text-sp-center {
    text-align: center;
  }
}
.header {
  width: 100%;
  padding: 0 4.8rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.header.is-active {
  background-color: #fff;
  box-shadow: 0 0.4rem 3.2rem 0 rgba(0, 0, 0, 0.1);
}
.header.is-active .header__inner::after {
  opacity: 0;
}
.header__inner {
  height: 11.2rem;
  padding: 3.2rem 0;
  position: relative;
  display: flex;
  gap: 0 2rem;
  align-items: center;
  justify-content: space-between;
}
.header__inner::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #c1c1c1;
  transition: opacity 0.3s;
}
.header__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}
.header__title--logo {
  width: 10.4rem;
  display: block;
}
.header__title--logo img, .header__title--logo svg {
  width: 100%;
}
.header__navi {
  font-weight: 700;
  font-size: 1.4rem;
}
.header__navi--child {
  display: none;
}
.header__buttons {
  display: flex;
  gap: 1em;
}
.header__button {
  width: 16rem;
  height: 4.4rem;
  position: relative;
  display: flex;
  gap: 0 0.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 2.25rem;
  background-color: #18357a;
  font-weight: 700;
  font-size: 1.4rem;
}
.header__hamburger {
  width: 4rem;
  height: 4rem;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.6rem 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
  border-radius: 50%;
  background-color: #18357a;
}
.header__hamburger .inner {
  width: 1.6rem;
  height: 0.8rem;
  margin: 0 auto;
  position: relative;
  display: block;
}
.header__hamburger .inner > span {
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  background-color: #fff;
  transition: all 0.3s;
}
.header__hamburger .inner > span:nth-child(1) {
  top: 0;
}
.header__hamburger .inner > span:nth-child(2) {
  top: calc(50% - 1px);
  display: none;
}
.header__hamburger .inner > span:nth-child(3) {
  top: calc(100% - 2px);
}
.header__hamburger .label {
  display: inline-block;
  color: #18357a;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}
.header__hamburger.is-open .inner > span:nth-child(1) {
  width: 100%;
  top: 50%;
  transform: rotate(45deg);
}
.header__hamburger.is-open .inner > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header__hamburger.is-open .inner > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
.header.light:not(.is-active) {
  --text-color: #fff;
}
.header.light:not(.is-active) .header__title--logo svg .path02 {
  fill: #fff;
}

@media screen and (min-width: 769px) {
  .header__navi {
    display: flex;
    gap: 4rem;
    align-items: center;
  }
  .header__navi--menu {
    display: flex;
    gap: 3.2rem;
    align-items: center;
  }
  .header__navi .parent {
    margin-bottom: -3.2rem;
    padding-bottom: 3.2rem;
    position: relative;
  }
  .header__navi .parent > a {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }
  .header__navi .parent > a::after {
    content: "";
    width: 0.8rem;
    height: 0.7rem;
    margin-bottom: -0.2em;
    display: inline-block;
    background-color: var(--text-color, #333);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .header__navi .parent .js-menu-toggle {
    display: none;
  }
  .header__navi .parent:hover .header__navi--child {
    opacity: 1;
    visibility: visible;
  }
  .header__navi--child {
    min-width: 20.8rem;
    padding: 2.8rem;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 9;
    display: block;
    border-radius: 0.8rem;
    background-color: #fff;
    box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    transform: translateX(-50%);
  }
  .header__navi--child ul li {
    display: flex;
    gap: 0 0.5em;
    align-items: center;
  }
  .header__navi--child ul li + li {
    margin-top: 0.75em;
  }
  .header__navi--child ul a {
    width: 100%;
    padding-right: 1.5em;
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  .header__navi--child ul a::after {
    content: "";
    width: 0.75em;
    position: absolute;
    top: 50%;
    right: 0;
    background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.5 7.36'><path fill='%23333' d='M7.35 3.33h0L4.17.15c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l2.33 2.33H0v1h5.79L3.46 6.52c-.2.2-.2.51 0 .71.2.2.51.2.71 0l3.18-3.18c.2-.2.2-.51 0-.71Z'/></svg>");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    aspect-ratio: 1;
  }
  .header__button {
    transition: background-color 0.3s;
  }
  .header__button:hover {
    background-color: rgba(24, 53, 122, 0.5);
  }
  .header.is-active .header__navi .parent {
    margin-bottom: -5.8rem;
    padding-bottom: 5.8rem;
  }
  .header.light:not(.is-active) .header__navi--child {
    --text-color: #333;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 2rem;
  }
  .header__inner {
    height: 8rem;
  }
  .header__title--logo {
    width: 8rem;
  }
  .header__navi {
    width: 100%;
    height: 100dvh;
    padding: 12rem 2rem 3.2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
    overflow: auto;
    background-color: #000;
    --text-color: #fff;
  }
  .header__navi .parent {
    position: relative;
  }
  .header__navi .parent .js-menu-toggle {
    width: 3.125em;
    position: absolute;
    top: 0.5em;
    right: 0;
    display: block;
    aspect-ratio: 1;
  }
  .header__navi .parent .js-menu-toggle::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .header__navi .parent .js-menu-toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .header__navi--menu {
    border-top: 1px solid #c1c1c1;
  }
  .header__navi--menu > li {
    padding: 2rem 0;
    border-bottom: 1px solid #c1c1c1;
  }
  .header__navi--child {
    padding: 2.4rem 2rem 1.2rem;
  }
  .header__navi--child li + li {
    margin-top: 1.25em;
  }
  .header__buttons {
    margin-top: 3.2rem;
    align-items: center;
    flex-direction: column;
  }
  .header__button {
    width: 100%;
    height: 4.8rem;
    border-radius: 2.4rem;
  }
  .header__info {
    margin-top: 6.4rem;
  }
  .header__info--company {
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
    border-bottom: 1px solid #c1c1c1;
  }
  .header__info--company dt {
    font-size: 1.4rem;
  }
  .header__info--company dd {
    margin-top: 1em;
    font-size: 1rem;
  }
  .header__info--link {
    margin-top: 3.2rem;
    font-size: 1rem;
  }
  .header__info--copyright {
    margin-top: 3.2rem;
    font-size: 1rem;
  }
  .header.is-open .header__inner::after {
    display: none;
  }
}
.footer {
  padding-top: 12rem;
  padding-bottom: 6.4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #000;
}
.footer__contact {
  width: 100%;
  height: 24rem;
  padding: 0 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #18357a 0%, #2c61e0 100%);
}
.footer__contact--text {
  display: flex;
  gap: 0 4rem;
  align-items: center;
}
.footer__contact .label {
  font-size: 4rem;
}
.footer__contact .title {
  font-size: 2rem;
}
.footer__contact--icon {
  width: 6.4rem;
}
.footer__bg {
  width: 100%;
  height: 64rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer__bg::before {
  content: "";
  width: 100%;
  height: 36rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.footer__column {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
}
.footer__column--main {
  padding-bottom: 8rem;
}
.footer__column--sub {
  margin-top: 16rem;
  padding-top: 3.6rem;
  border-top: 1px solid #c1c1c1;
}
.footer__title {
  margin-bottom: 3.2rem;
}
.footer__info--address dt {
  font-size: 1.8rem;
}
.footer__info--address dd {
  margin-top: 1em;
}
.footer__info--address .global-link {
  margin-top: 5.8rem;
  display: inline-flex;
  gap: 0 0.8rem;
  align-items: center;
  letter-spacing: 0;
  font-size: 1.4rem;
}
.footer__navi ul {
  display: flex;
  gap: 2em;
  font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
  .footer__contact {
    transition: opacity 0.3s;
  }
  .footer__contact .arrow {
    transition: fill 0.3s;
  }
  .footer__contact .circle {
    transition: opacity 0.3s, fill 0.3s;
  }
  .footer__contact:hover {
    opacity: 0.8;
  }
  .footer__contact:hover .footer__contact--icon .arrow {
    fill: #18357a;
  }
  .footer__contact:hover .footer__contact--icon .circle {
    opacity: 1;
    fill: #fff;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 6.4rem;
    padding-bottom: 4rem;
  }
  .footer__contact {
    height: 13.4rem;
    padding: 0 2.8rem;
  }
  .footer__contact--text {
    gap: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer__contact .label {
    font-size: 2.8rem;
    line-height: 1;
  }
  .footer__contact .title {
    font-size: 1.2rem;
  }
  .footer__contact--icon {
    width: 2.8rem;
  }
  .footer__column--main {
    padding-bottom: 0;
  }
  .footer__column--sub {
    margin-top: 3.6rem;
    gap: 2rem;
    flex-direction: column;
    font-size: 1rem;
  }
  .footer__title--logo {
    width: 7.2rem;
  }
  .footer__info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer__info--address dt {
    font-size: 1.4rem;
  }
  .footer__info--address dd {
    font-size: 1rem;
  }
  .footer__info--address .global-link {
    margin-top: 3.2rem;
    font-size: 1rem;
  }
  .footer__navi {
    margin-bottom: 15rem;
  }
  .footer__navi ul {
    gap: 1.4em;
    align-items: flex-end;
    flex-direction: column;
  }
  .footer__bg {
    height: 58rem;
    opacity: 0.8;
  }
  .footer__bg::before {
    height: 16rem;
  }
}
.main {
  padding-top: 11.2rem;
  position: relative;
}
.main__block {
  margin-bottom: 20rem;
}
.main__block[class*=bg-] {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.main__container {
  max-width: 130rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
.main__container + .main__container {
  margin-top: 12rem;
}

.common__headline {
  margin-top: 8rem;
  margin-bottom: 12rem;
}
.common__headline--inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.common__headline--lead {
  max-width: 52.5rem;
}
.common__headline--lead p {
  line-height: 2;
}
.common__headline .heading__01 {
  margin-bottom: 0;
}
.common__headline .heading__01--label {
  font-size: 9.6rem;
}
.common__headline .heading__01--title {
  margin-top: 1.25em;
}
.common__headline .breadcrumbs {
  position: absolute;
  top: 0;
  right: 0;
}
.common__headline--image {
  width: 100%;
  height: 50rem;
  margin-top: 12rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 8rem;
  }
  .main__block {
    margin-bottom: 12rem;
  }
  .main__block[class*=bg-] {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .main__container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .common__headline {
    margin-top: 2rem;
    margin-bottom: 6.4rem;
  }
  .common__headline--inner {
    padding-top: 4.4rem;
    flex-wrap: wrap;
  }
  .common__headline .heading__01 {
    margin-bottom: 0;
  }
  .common__headline .heading__01--label {
    font-size: 4rem;
  }
  .common__headline .heading__01--title {
    margin-top: 0.5em;
  }
  .common__headline--lead {
    margin-top: 3.2rem;
  }
  .common__headline--image {
    height: 28rem;
    margin-top: 6.4rem;
  }
}
.heading__01 {
  margin-bottom: 8rem;
}
.heading__01::before {
  content: "";
  width: 10rem;
  height: 1.2rem;
  margin-bottom: 2rem;
  display: block;
  background: linear-gradient(to right, #18357a 0%, #18357a 50%, #7bd64d 50%, #7bd64d 100%);
}
.heading__01 > span {
  display: block;
}
.heading__01--label {
  letter-spacing: 0;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1;
}
.heading__01--title {
  margin-top: 0.75em;
  color: var(--text-color, #18357a);
  font-size: 2rem;
}
.heading__02 {
  margin-bottom: 8rem;
}
.heading__02 > span {
  display: block;
}
.heading__02--label {
  letter-spacing: 0;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1;
}
.heading__02--title {
  margin-top: 1.25em;
  letter-spacing: 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .heading__01 {
    margin-bottom: 4.8rem;
  }
  .heading__01::before {
    width: 4rem;
    height: 0.6rem;
    margin-bottom: 1.2rem;
  }
  .heading__01--label {
    font-size: 4rem;
  }
  .heading__01--title {
    margin-top: 0.5em;
    font-size: 1.2rem;
  }
  .heading__02 {
    margin-bottom: 4.8rem;
  }
  .heading__02--label {
    font-size: 3.2rem;
  }
  .heading__02--title {
    font-size: 1.2rem;
  }
}
.btn__01 {
  width: 24rem;
  min-width: fit-content;
  height: 6rem;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  background-color: var(--btn-bg, #18357a);
  color: var(--btn-text, #fff);
}
.btn__01 * {
  color: var(--btn-text, #fff);
}
.btn__01.arrow {
  padding-right: 2.75em;
  position: relative;
}
.btn__01.arrow::after {
  content: "";
  width: 0.75em;
  position: absolute;
  top: 50%;
  right: 1em;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.5 7.36'><path fill='%23fff' d='M7.35 3.33h0L4.17.15c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l2.33 2.33H0v1h5.79L3.46 6.52c-.2.2-.2.51 0 .71.2.2.51.2.71 0l3.18-3.18c.2-.2.2-.51 0-.71Z'/></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  aspect-ratio: 1;
}
.btn__02 {
  display: inline-flex;
  gap: 1.4rem;
  align-items: center;
}
.btn__02 .text-en {
  letter-spacing: 0;
  font-weight: 600;
}
.btn__03 {
  width: 22rem;
  min-width: fit-content;
  max-width: 100%;
  height: 5.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.8rem;
  background-color: #18357a;
  color: #fff;
  font-weight: 600;
  --text-color: #fff;
}
.btn__03.next {
  padding: 0 6.2rem;
}
.btn__03.next::after {
  content: "";
  width: 1.2rem;
  height: 1rem;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 2rem;
  background-image: url("data: image/svg+xml,<svg width='11' height='8' viewBox='0 0 11 8' xmlns='http://www.w3.org/2000/svg'><path fill='%23FFF' d='M10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0 4.5H10V3.5H0V4.5Z'/></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn__03.extarnal {
  padding: 0 6.2rem;
}
.btn__03.extarnal::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 2rem;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='%23FFF'><path d='M1.5 2.5h11v9h-11Zm10 1h-9v7h9Z'/><path d='M14.5 13.5H4v-1h9.5V5h1Z'/></g></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn__03.wide {
  width: 37.6rem;
}

.icon-plus {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: black;
  transform: translate(-50%, -50%);
}
.icon-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.icon-cross {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.icon-cross::before, .icon-cross::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
.icon-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.arrow-01 {
  width: 4rem;
  position: relative;
  border: 1px solid rgba(24, 53, 122, 0.2);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%2318357a' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
  background-position: center;
  background-size: 25%;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.arrow-01.white {
  border-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%23fff' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
}
.arrow-01.bottom {
  transform: rotate(90deg);
}

#pageTop {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #18357a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#pageTop::before {
  content: "";
  width: 1rem;
  height: 0.9rem;
  background-color: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
#pageTop.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 769px) {
  .btn__03 {
    transition: background-color 0.3s;
  }
  .btn__03:hover {
    background-color: rgba(24, 53, 122, 0.5);
  }
  a .arrow-01 {
    transition: border-color 0.3s, background-color 0.3s, background-image 0.3s;
  }
  a:hover .arrow-01 {
    border-color: #18357a;
    background-color: #18357a;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%23fff' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
  }
}
@media screen and (max-width: 768px) {
  .arrow-01 {
    width: 2.8rem;
  }
}
.column {
  display: flex;
  gap: var(--gap-size, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}
.column.col2 > * {
  width: calc((100% - var(--gap-size, 2rem)) / 2);
}
.column.col3 {
  gap: var(--gap-size, 4rem);
}
.column.col3 > * {
  width: calc((100% - var(--gap-size, 4rem) * 2) / 3);
}
.column.col4 > * {
  width: calc((100% - var(--gap-size, 2rem) * 3) / 4);
}

.grid {
  display: grid;
  gap: var(--gap-size, 2rem);
}
.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.col5 {
  grid-template-columns: repeat(5, 1fr);
}

.toc__list {
  max-width: 27.2rem;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 2rem;
  border-left: 1px solid #c1c1c1;
}
.toc__list li {
  padding-left: 2.4rem;
}
.toc__list li + li {
  margin-top: 3.6rem;
}
.toc__list a {
  position: relative;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
}
.toc__list a::before {
  content: "";
  width: 1.2rem;
  position: absolute;
  top: 0.35em;
  left: -2.4rem;
  border-radius: 50%;
  background-color: #18357a;
  aspect-ratio: 1;
}

@media screen and (min-width: 769px) {
  .toc__list a {
    --text-color: #c1c1c1;
  }
  .toc__list a::before {
    opacity: 0;
  }
  .toc__list a.is-active {
    --text-color: #18357a;
  }
  .toc__list a.is-active::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .toc {
    margin: 6.4rem -2rem;
    padding: 6.4rem 2rem;
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
  }
  .toc:before {
    content: "Index";
    margin-bottom: 3.2rem;
    display: block;
    color: #333;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
  }
  .toc__list {
    max-width: none;
    padding: 0;
    border-left: none;
  }
  .toc__list li + li {
    margin-top: 3.2rem;
  }
}
.breadcrumbs {
  font-size: 1.2rem;
}
.breadcrumbs__inner {
  display: flex;
  gap: 0.25em 0.8rem;
  flex-wrap: wrap;
}
.breadcrumbs__inner > span {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
}
.breadcrumbs__inner > span:not(:last-child)::after {
  content: "";
  width: 0.8rem;
  height: 1px;
  margin-top: 2px;
  display: inline-block;
  background-color: #000;
}
.breadcrumbs__inner * {
  letter-spacing: 0;
}
.breadcrumbs__inner .current-item {
  color: rgba(65, 65, 76, 0.5);
}
.breadcrumbs-single {
  margin-top: 8rem;
}
.breadcrumbs-single .breadcrumbs__inner {
  margin-bottom: 4.8rem;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs .current-item {
    max-width: 15rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .breadcrumbs-single {
    margin-top: 2rem;
  }
}
.pager__archive {
  margin-top: 12rem;
}
.pager__archive--inner {
  display: flex;
  gap: 0 1.2rem;
  align-items: center;
  justify-content: center;
}
.pager__archive .page-numbers {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #18357a;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.pager__archive .page-numbers.dots {
  margin: 0 -0.5rem;
}
.pager__archive .page-numbers.current {
  background-color: var(--theme-color, #18357a);
  color: #fff;
}
.pager__archive .page-numbers.prev, .pager__archive .page-numbers.next {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%2318357a' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
  background-position: center;
  background-size: 25%;
  background-size: 1rem auto;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.pager__archive .page-numbers.prev {
  transform: scaleX(-1);
}

.slider__01 {
  position: relative;
}
.slider__01 .swiper-slide {
  width: 30rem;
}
.slider__01--image {
  display: block;
  aspect-ratio: 1;
}
.slider__01--image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination.type01 {
  margin-top: 2rem;
  position: relative;
  bottom: auto !important;
  line-height: 0;
  --swiper-pagination-bullet-height: 1.0rem;
  --swiper-pagination-bullet-inactive-color: #ccc;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 1.0rem;
  --swiper-pagination-color: #29318a;
}

.table__01 {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.table__01 th, .table__01 td {
  padding: 1em 1.25em;
  border: 1px solid #dde1e6;
}
.table__01 thead th {
  background-color: #18357a;
  --text-color: #fff;
}
.table__01 tbody th {
  background-color: #f5f6f9;
  font-weight: 500;
}
.table__dl01 {
  display: grid;
  grid-template-columns: max(30%, 20rem) 1fr;
}

@media screen and (max-width: 768px) {
  .table__scroll {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    overflow-x: scroll;
  }
  .table__scroll table {
    width: 100rem;
  }
}
*:focus {
  outline: none;
}

input {
  width: 100%;
}
input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.p-country-name {
  display: none;
}

.form {
  --form-border: #ccc;
}
.form__box + .form__box {
  margin-top: 4.8rem;
}
.form__row .form__box {
  display: grid;
  gap: 0 3.2rem;
  grid-template-columns: 24rem 1fr;
  align-items: start;
}
.form__row .form__label {
  padding-top: 1em;
  justify-content: space-between;
}
.form__column .form__label {
  margin-bottom: 1.2rem;
}
.form__label {
  display: flex;
  gap: 0.75em;
  align-items: center;
  letter-spacing: 0;
  font-weight: 700;
  --text-color: #18357a;
}
.form__required::after {
  content: "必 須";
  margin-left: auto;
  padding: 0 1em;
  display: inline-block;
  flex: none;
  border-radius: 1.2rem;
  background-color: rgba(24, 53, 122, 0.2);
  color: #18357a;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.form__optional::after {
  content: "任意";
  padding: 0.25em 1em;
  display: inline-block;
  flex: none;
  background-color: #ccc;
  color: #fff;
  font-size: 87.5%;
}
.form__control {
  width: 100%;
  padding: 1em 1.25em;
  border: 1px solid #f3f3f5;
  background-color: #f3f3f5;
  font-size: max(1.6rem, 16px);
  line-height: 1.5;
}
.form__group {
  display: grid;
  gap: 1em;
}
.form__group + .form__group {
  margin-top: 2rem;
}
.form__group.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.form__group.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.form__group.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.form__content--item {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.form__content--unit {
  flex: none;
}
.form__footer {
  margin-top: 6.4rem;
}
.form__footer .btn__03 {
  width: 27.2rem;
  margin-top: 6.4rem;
}
.form .error {
  margin-top: 0.5em;
  color: #f00;
}
.form__textarea {
  height: 24rem;
}
.form__select {
  background-image: url("data: image/svg+xml,<svg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M8 1.09131L6.87779 0L4.00008 2.79808L1.12225 0L4.1008e-05 1.09131L4.00008 4.98061L8 1.09131Z' fill='%2329318A'/></svg>");
  background-position: right 1.5rem center;
  background-size: 0.8rem auto;
  background-repeat: no-repeat;
}
.form__file {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 1.4rem;
}
.form__file input::-webkit-file-upload-button {
  width: 27.2rem;
  height: 5.6rem;
  margin-right: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 2.8rem;
  background-color: #888d9c;
  color: #fff;
  font-weight: 700;
}
.form__checkbox {
  --form-size: 1.6rem;
}
.form__checkbox--row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.form__checkbox--row .mwform-checkbox-field {
  margin-top: 0 !important;
}
.form__checkbox--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__checkbox--column .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 0.75em !important;
}
.form__checkbox--column .error {
  margin-top: 0.75em;
}
.form__checkbox [type=checkbox] {
  display: none;
}
.form__checkbox .mwform-checkbox-field {
  line-height: 1;
}
.form__checkbox .mwform-checkbox-field-text {
  position: relative;
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 700;
  --text-color: #18357a;
}
.form__checkbox .mwform-checkbox-field-text::before {
  content: "";
  width: 2.8rem;
  display: block;
  border: 1px solid var(--form-border, #ccc);
  background-color: #fff;
  aspect-ratio: 1;
}
.form__checkbox .mwform-checkbox-field-text::after {
  content: "";
  width: 0.8rem;
  height: 1.2rem;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  transform: translateY(-50%) rotate(40deg);
}
.form__checkbox .mwform-checkbox-field-text a {
  text-decoration: underline;
}
.form__checkbox .mwform-checkbox-field [type=checkbox]:checked + .mwform-checkbox-field-text::before {
  border-color: #18357a;
  background-color: #18357a;
}
.form__checkbox .mwform-checkbox-field [type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  visibility: visible;
}
.form__radio {
  --form-size: 1.6rem;
}
.form__radio--row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.form__radio--row .mwform-radio-field {
  margin-top: 0 !important;
}
.form__radio--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__radio--column .mwform-radio-field + .mwform-radio-field {
  margin-top: 0.75em !important;
}
.form__radio--column .error {
  margin-top: 0.75em;
}
.form__radio [type=radio] {
  display: none;
}
.form__radio .mwform-radio-field {
  line-height: 1;
}
.form__radio .mwform-radio-field-text {
  position: relative;
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
.form__radio .mwform-radio-field-text::before {
  content: "";
  width: calc(var(--form-size) * 1.5);
  display: block;
  overflow: hidden;
  border: 1px solid var(--form-border, #ccc);
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.form__radio .mwform-radio-field [type=radio]:checked + .mwform-radio-field-text::before {
  outline: calc(var(--form-size) * 0.4 - 1px) solid #fff;
  outline-offset: calc(var(--form-size) * -0.4);
  border-color: #18357a;
  background-color: #18357a;
}
.form__policy {
  padding-top: 5rem;
}
.form__policy p {
  margin-bottom: 1rem;
}
.form__policy .row {
  display: flex;
  gap: 6.5rem;
  align-items: center;
  justify-content: center;
}
.form__policy .item {
  position: relative;
}
.form__policy .item::after {
  content: "";
  width: 1.5rem;
  height: 2rem;
  position: absolute;
  top: 1px;
  right: -3rem;
  background-image: url("data: image/svg+xml,<svg width='12' height='12' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13.3 19.0016H2.85C1.235 19.0016 0 17.7666 0 16.1516V5.70156C0 4.08656 1.235 2.85156 2.85 2.85156H8.55C9.12 2.85156 9.5 3.23156 9.5 3.80156C9.5 4.37156 9.12 4.75156 8.55 4.75156H2.85C2.28 4.75156 1.9 5.13156 1.9 5.70156V16.1516C1.9 16.7216 2.28 17.1016 2.85 17.1016H13.3C13.87 17.1016 14.25 16.7216 14.25 16.1516V10.4516C14.25 9.88156 14.63 9.50156 15.2 9.50156C15.77 9.50156 16.15 9.88156 16.15 10.4516V16.1516C16.15 17.7666 14.915 19.0016 13.3 19.0016Z' fill='%23333333'/><path d='M18.0504 7.6C17.4804 7.6 17.1004 7.22 17.1004 6.65V1.9H12.3504C11.7804 1.9 11.4004 1.52 11.4004 0.95C11.4004 0.38 11.7804 0 12.3504 0H18.0504C18.6204 0 19.0004 0.38 19.0004 0.95V6.65C19.0004 7.22 18.6204 7.6 18.0504 7.6Z' fill='%23333333'/><path d='M7.60039 12.35C7.31539 12.35 7.12539 12.255 6.93539 12.065C6.55539 11.685 6.55539 11.115 6.93539 10.735L17.3854 0.285C17.7654 -0.095 18.3354 -0.095 18.7154 0.285C19.0954 0.665 19.0954 1.235 18.7154 1.615L8.26539 12.065C8.07539 12.255 7.88539 12.35 7.60039 12.35Z' fill='%23333333'/></svg>");
  background-position: center;
}
.form__policy label {
  font-weight: 600;
}
.form__policy label a {
  text-decoration: underline;
}
.form__button {
  margin-top: 5.5rem;
}
.form__button.btn__grid {
  gap: 5rem;
}
.form__confirm .form__box {
  padding-bottom: 1em;
  border-bottom: 1px solid #c1c1c1;
}
.form__confirm .input-only {
  display: none;
}
.form__complete .title {
  margin-bottom: 1.5em;
  font-size: 2.4rem;
}
.form__complete .btn__03 {
  margin-top: 6.4rem;
}

@media screen and (max-width: 768px) {
  .form__file input::-webkit-file-upload-button {
    margin-right: 0;
    margin-bottom: 0.5em;
    display: flex;
  }
  .form__footer .form__checkbox--column {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .form__footer .btn__03 {
    margin-right: auto;
    margin-left: auto;
  }
}
.modal__content {
  width: 100rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  background-color: #fff;
  transform: translateX(-50%) translateY(-50%);
}
.modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 6rem 5rem 4rem;
  overflow-y: auto;
}
.modal__close {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 2px;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #18357a;
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .modal__content--inner {
    padding: 5rem 3rem 4rem;
  }
}
.grid {
  display: grid;
}
.grid.col2 {
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
.grid-card.col2 {
  gap: 4rem 4rem;
}
.grid-card.col3 {
  gap: 10rem 4rem;
}

.card__01--image {
  margin-bottom: 3.2rem;
  overflow: hidden;
  aspect-ratio: 376/240;
}
.card__01--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__01--title {
  margin-bottom: 1em;
  font-size: 2rem;
  line-height: 1.6;
}
.card__01--body {
  font-size: 1.4rem;
}
.card__01--body p {
  letter-spacing: 0;
  line-height: 1.6;
}
.card__01--footer {
  margin-top: 3.6rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.card__01 .category {
  padding: 0.25em 1em;
  border-radius: 1em;
  background-color: rgba(24, 53, 122, 0.2);
  font-size: 1.2rem;
  line-height: 1.5;
  --text-color: $primary;
}
.card__01 .date {
  color: #888d9c;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.card__01 .arrow {
  margin-left: auto;
}

.dl-table__01 {
  border-top: 1px solid #ccc;
}
.dl-table__01 .inner {
  padding: 3.2rem 0;
  display: grid;
  gap: 0 4rem;
  grid-template-columns: 17.6rem 1fr;
  border-bottom: 1px solid #ccc;
}
.dl-table__01 .inner.border-0 {
  padding-bottom: 0;
  border-bottom: none;
}
.dl-table__01 dt {
  font-weight: 700;
  line-height: 2;
  --text-color: #18357a;
}
.dl-table__01 dt.column {
  display: flex;
  gap: 2.4rem;
}
.dl-table__01 .col1 {
  width: 100%;
  margin-top: 3.2rem;
  grid-column: 1/-1;
}
.dl-table__01 p {
  word-break: break-all;
}
.dl-table__01 ul + p {
  margin-top: 0.4em;
}
.dl-table__01 .text-note {
  margin-top: 0.4em;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.3rem;
}

.page__grid {
  position: relative;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1fr 79.2rem;
}
.page__grid .btn__01 {
  position: fixed;
  bottom: 4rem;
  left: 4rem;
  z-index: 100;
}
.page__grid--side .page__navi {
  position: sticky;
  top: 17.2rem;
  left: 0;
}
.page__navi a, .page__navi span {
  position: relative;
  font-weight: 700;
  font-size: 1.4rem;
}
.page__navi a::before, .page__navi span::before {
  content: "";
  width: 1.2rem;
  display: block;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: opacity 0.3s, visibility 0.3s;
  aspect-ratio: 1;
}
.page__navi a.is-current, .page__navi span.is-current {
  pointer-events: none;
  --text-color: #18357a;
}
.page__navi a.is-current::before, .page__navi span.is-current::before {
  background-color: #18357a;
  opacity: 1;
  visibility: visible;
}
.page__block + .page__block {
  margin-top: 20rem;
}

.post__header {
  margin-bottom: 12rem;
}
.post__header--inner {
  display: flex;
  gap: 2.4rem 2.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.post__header--name {
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
}
.post__header--date {
  color: #888d9c;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.post__header--category {
  padding: 0.25em 1em;
  border-radius: 1em;
  background-color: rgba(24, 53, 122, 0.2);
  font-size: 1.2rem;
  line-height: 1.5;
  --text-color: $primary;
}
.post__header--title {
  width: 100%;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.6;
}
.post__lead {
  max-width: 79.2rem;
  margin-top: 12rem;
  margin-left: auto;
}
.post__grid {
  position: relative;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1fr 79.2rem;
}
.post__grid .btn__01 {
  position: fixed;
  bottom: 4rem;
  left: 4rem;
  z-index: 100;
}
.post__grid--side .news__navi, .post__grid--side .toc {
  position: sticky;
  top: 17.2rem;
  left: 0;
}
.post__detail--eyecatch {
  margin-bottom: 8rem;
  display: block;
}
.post__body h2 {
  margin-bottom: 4.8rem;
  border-top: 1px solid #c1c1c1;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6;
}
.post__body h2:not(:first-child) {
  margin-top: 12rem;
}
.post__body h2::before {
  content: "";
  width: 10rem;
  margin-bottom: 3.2rem;
  display: block;
  border-bottom: 4px solid #18357a;
}
.post__body h2 small {
  display: block;
  text-align: right;
  font-size: 1.4rem;
}
.post__body h3 {
  margin-bottom: 4.8rem;
  font-size: 2rem;
}
.post__body h3:not(:first-child) {
  margin-top: 10rem;
}
.post__body p {
  line-height: 2;
}
.post__body p:not(:last-child) {
  margin-bottom: 2em;
}
.post__body p a {
  text-decoration: underline;
  font-weight: 700;
  --text-color: #18357a;
}
.post__body ul:not(:last-child), .post__body ol:not(:last-child) {
  margin-bottom: 2em;
}
.post__body ul li, .post__body ol li {
  line-height: 2;
}
.post__body ul li + li, .post__body ol li + li {
  margin-top: 0.75em;
}
.post__body ul li {
  padding-left: 1em;
  position: relative;
}
.post__body ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.post__body ol {
  list-style-type: decimal;
}
.post__body ol li {
  margin-left: 1.5em;
}
.post__body .wp-block-image {
  margin-bottom: 4.8rem;
}
.post__body .wp-block-image:not(:first-child) {
  margin-top: 10rem;
}
.post__body .wp-element-caption {
  margin-top: 1em;
  margin-bottom: 0;
  display: block;
  color: #888d9c;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
}
.post__body .wp-block-columns .wp-block-image {
  margin-bottom: 0;
}
.post__body .wp-block-lazyblock-custom-text-block:not(:first-child) {
  margin-top: 10rem;
}
.post__body .custom-text-block {
  padding: 5.4rem 4.8rem;
  border-radius: 1.6rem;
  background-color: #f3f3f5;
}
.post__body .custom-text-block h4 {
  margin-top: 3.6rem;
  margin-bottom: 1em;
  padding-top: 3.6rem;
  padding-left: 1.25em;
  border-top: 1px solid #c1c1c1;
  text-indent: -1.25em;
  line-height: 1.6;
  --text-color: #18357a;
}
.post__body .custom-text-block h4::before {
  content: "";
  width: 0.75em;
  margin-right: 0.5em;
  display: inline-block;
  border-radius: 50%;
  background-color: #18357a;
  aspect-ratio: 1;
}
.post__body .wp-block-lazyblock-custom-link-card:not(:first-child) {
  margin-top: 5.6rem;
}
.post__body .custom-link-card {
  display: block;
  overflow: hidden;
  border: 1px solid #c1c1c1;
  border-radius: 1.6rem;
}
.post__body .custom-link-card .inner {
  display: flex;
}
.post__body .custom-link-card .image {
  width: 20.8rem;
}
.post__body .custom-link-card .text {
  padding: 4rem;
  flex: 1;
}
.post__body .custom-link-card .text dt {
  font-weight: 700;
  --text-color: #18357a;
}
.post__body .custom-link-card .text dd {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.6;
  --text-color: #888d9c;
}
.post__footer {
  margin-top: 12rem;
}

.no-post {
  grid-column: 1/3;
}
.no-post .title {
  margin-bottom: 6.4rem;
  font-size: 2.8rem;
  line-height: 1.6;
}
.no-post .btn__03 {
  margin: 6.4rem auto 0;
}

@media screen and (min-width: 769px) {
  .card__01[href] .card__01--image img {
    transition: transform 0.3s ease-in-out;
  }
  .card__01[href] .card__01--body, .card__01[href] .card__01--footer {
    transition: opacity 0.3s;
  }
  .card__01[href]:hover .card__01--image img {
    transform: scale(1.1);
  }
  .card__01[href]:hover .card__01--body, .card__01[href]:hover .card__01--footer {
    opacity: 0.5;
  }
  .dl-table__01 dt {
    padding: 0 0.8rem;
  }
  .page__navi {
    padding: 1.6rem 2rem;
    border-left: 1px solid #c1c1c1;
  }
  .page__navi li {
    padding-left: 2.4rem;
  }
  .page__navi li + li {
    margin-top: 2.4rem;
  }
  .page__navi a, .page__navi span {
    --text-color: #c1c1c1;
  }
  .page__navi a::before, .page__navi span::before {
    position: absolute;
    top: 0.3em;
    left: -2.4rem;
    background-color: #c1c1c1;
    opacity: 0;
    visibility: hidden;
  }
  .page__navi--form {
    padding: 0;
    border-left: none;
  }
  .page__navi--form a, .page__navi--form span {
    --text-color: #333;
  }
  .page__navi--form a::before, .page__navi--form span::before {
    opacity: 1;
    visibility: visible;
  }
  .post__footer .btn__03 {
    width: 37.6rem;
  }
}
@media screen and (max-width: 768px) {
  .grid.col3 {
    gap: 6.4rem 0;
    grid-template-columns: 1fr;
  }
  .card__01--image {
    margin-bottom: 2.4rem;
  }
  .card__01--title {
    margin-bottom: 1.2em;
    font-size: 1.4rem;
  }
  .card__01--body {
    font-size: 1rem;
  }
  .card__01--footer {
    margin-top: 2.4rem;
  }
  .card__01 .category {
    font-size: 1rem;
  }
  .card__01 .date {
    font-size: 1.2rem;
  }
  .card__01 .arrow {
    width: 1rem;
  }
  .dl-table__01 .inner {
    gap: 0 2rem;
    grid-template-columns: 8.8rem 1fr;
  }
  .dl-table__01 dt {
    letter-spacing: 0;
  }
  .dl-table__01 .text-note {
    font-size: 1.2rem;
  }
  .page__grid {
    display: block;
  }
  .page__grid--side {
    margin-bottom: 6.4rem;
  }
  .page__navi {
    display: flex;
  }
  .page__navi li {
    width: 100%;
    text-align: center;
  }
  .page__navi a::before, .page__navi span::before {
    margin: 0 auto 1.2rem;
  }
  .post__header {
    margin-bottom: 6.4rem;
  }
  .post__header--inner {
    gap: 3.2rem 1.6rem;
  }
  .post__header--category {
    font-size: 1rem;
  }
  .post__header--date {
    font-size: 1.2rem;
  }
  .post__header--title {
    font-size: 1.8rem;
  }
  .post__lead {
    margin-top: 6.4rem;
  }
  .post__grid {
    display: block;
  }
  .post__body h2 {
    font-size: 2rem;
  }
  .post__body h2::before {
    width: 6.4rem;
  }
  .post__body h3 {
    font-size: 1.6rem;
  }
  .post__body h3:not(:first-child) {
    margin-top: 8rem;
  }
  .post__body .wp-block-image {
    margin-right: -2rem;
    margin-left: -2rem;
  }
  .post__body .wp-element-caption {
    padding: 0 2rem;
    font-size: 1.2rem;
  }
  .post__body .custom-text-block {
    padding: 4.8rem 2rem;
    border-radius: 0.8rem;
  }
  .post__body .custom-link-card {
    border-radius: 0.8rem;
  }
  .post__body .custom-link-card .image {
    width: 12rem;
  }
  .post__body .custom-link-card .text {
    padding: 2rem;
  }
  .post__body .custom-link-card .text dd {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 1rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .post__footer {
    margin-top: 8rem;
  }
  .post__footer .btn__03 {
    margin-right: auto;
    margin-left: auto;
  }
  .no-post .title {
    margin-bottom: 4.8rem;
    font-size: 2rem;
  }
  .no-post .btn__03 {
    margin-top: 4.8rem;
  }
}
.tab__panel--item {
  display: none;
  visibility: hidden;
}
.tab__panel--item.is-active {
  display: block;
  visibility: visible;
}

.home .main {
  padding-top: 0;
}
.home .header:not(.is-active) .header__inner::after {
  opacity: 0;
}
.home__hero {
  width: 100%;
  height: 100dvh;
  margin-bottom: 16rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #000;
}
.home__hero--visual {
  width: 96vh;
  position: absolute;
  top: calc(50% - 48vh);
  left: calc(50% - 44vh);
  z-index: -1;
  overflow: hidden;
  border-radius: 50%;
  background-color: #000;
  aspect-ratio: 1;
}
.home__hero--visual::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  box-shadow: inset -6rem -12rem 10rem 6rem rgba(0, 0, 0, 0.88);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.home__hero .swiper, .home__hero .swiper-wrapper, .home__hero .swiper-slide, .home__hero .slide-image {
  height: 100%;
}
.home__hero .slide-image {
  display: block;
  overflow: hidden;
  border-radius: 50%;
}
.home__hero .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__hero--jupiter {
  width: 96vh;
  position: absolute;
  top: calc(50% - 48vh);
  left: calc(50% - 48vh);
  z-index: -2;
  aspect-ratio: 1;
}
.home__hero--catch {
  position: absolute;
  bottom: 9.6rem;
  left: 4.8rem;
}
.home__hero--catch .catch01 {
  margin-bottom: 0.5em;
  font-size: 8rem;
  line-height: 1;
}
.home__hero--catch .catch01 * {
  display: inline-block;
  letter-spacing: 0;
}
.home__hero--catch .catch02 {
  font-size: 2.8rem;
}
.home__hero--catch .catch03 {
  letter-spacing: 0.1em;
}
.home__hero--scroll {
  position: absolute;
  right: 4.8rem;
  bottom: 9.6rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.home__features {
  padding-bottom: 20rem;
  position: relative;
  z-index: 2;
}
.home__features::before {
  content: "";
  width: 100%;
  height: 58rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #f3f3f5;
}
.home__features--grid {
  display: flex;
  gap: 6.4rem 16rem;
  flex-wrap: wrap;
}
.home__features--item .image {
  margin-bottom: 5.8rem;
}
.home__features--item .title {
  margin-bottom: 1.2em;
  text-align: center;
  font-weight: 500;
  font-size: 2.8rem;
}
.home__features--item .sentence {
  max-width: 44.6rem;
  margin: 0 auto;
}
.home__features--item .sentence p {
  letter-spacing: 0;
}
.home__about--grid {
  display: flex;
  gap: 10.4rem;
}
.home__about--content {
  flex: 1;
}
.home__about--visual {
  width: 52rem;
}
.home__services--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.home__services--item {
  width: 100%;
  height: 80rem;
  padding: 8rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.home__services--item .number {
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 8rem;
  line-height: 1;
}
.home__services--item .title {
  margin-bottom: 1em;
}
.home__services--item .title > span {
  display: block;
}
.home__services--item .title .text01 {
  margin-bottom: 0.25em;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.home__services--item .title .text02 {
  font-weight: 500;
  font-size: 2.8rem;
}
.home__services--item .sentence p {
  letter-spacing: 0;
}
.home__services--item .btn__02 {
  margin-top: 3.6rem;
}
.home__services--item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.home__services--item .bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.home__journal--slider {
  position: relative;
}
.home__journal--slider .swiper {
  overflow: visible;
}
.home__journal--slider.no-slide .swiper-slide {
  width: 37.6rem;
}
.home__journal--slider .swiper-controls {
  margin-bottom: 8rem;
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
.home__journal--slider .swiper-pagination {
  position: relative;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-family: "Inter", sans-serif;
}
.home__journal--slider .swiper-pagination * {
  letter-spacing: 0;
}
.home__journal--slider .swiper-pagination .bar {
  width: 3.2rem;
  height: 1px;
  background-color: #333;
}
.home__journal--slider .swiper-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.home__journal--slider .swiper-button {
  width: 4rem;
  height: 4rem;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  flex: none;
  border: 1px solid rgba(24, 53, 122, 0.2);
  border-radius: 50%;
}
.home__journal--slider .swiper-button::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #18357a;
  border-right: 1px solid #18357a;
  transform: translate(-50%, -50%) rotate(45deg);
}
.home__journal--slider .swiper-button::after {
  content: none;
}
.home__journal--slider .swiper-button-prev {
  transform: scaleX(-1);
}
.home__journal .btn__03 {
  margin-top: 10rem;
}
.home__company {
  padding-top: 16rem;
  padding-bottom: 16rem;
  position: relative;
  z-index: 2;
}
.home__company--list {
  border-top: 1px solid #c1c1c1;
}
.home__company--list li {
  padding: 4rem 0 4rem 1.6rem;
  border-bottom: 1px solid #c1c1c1;
}
.home__company--list a {
  display: flex;
  gap: 6.4rem;
  align-items: center;
}
.home__company--list .label {
  font-weight: 600;
  font-size: 3.2rem;
}
.home__company--list .name {
  margin-left: auto;
  font-weight: 700;
}
.home__company--list .arrow {
  width: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%23fff' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
  background-position: center;
  background-size: 25%;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.home__company--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.home__company--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(24, 53, 122, 0.6);
  mix-blend-mode: multiply;
}

@media screen and (min-width: 769px) {
  .home__features--grid > * {
    width: calc((100% - 16rem) / 2);
  }
  .home__features--item:nth-child(even) {
    position: relative;
  }
  .home__features--item:nth-child(even)::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -8rem;
    background-color: #888d9c;
  }
  .home__services--item .bg {
    overflow: hidden;
  }
  .home__services--item .bg::before {
    transition: background-color 0.3s ease-in-out;
  }
  .home__services--item .bg img {
    transition: transform 0.3s ease-in-out;
  }
  .home__services--item:hover .bg::before {
    background-color: rgba(0, 0, 0, 0.65);
  }
  .home__services--item:hover .bg img {
    transform: scale(1.05);
  }
  .home__journal--slider .swiper-controls {
    position: absolute;
    right: 0;
    bottom: 100%;
  }
  .home__company--grid {
    display: grid;
    gap: 6rem 14.4rem;
    grid-template-columns: 27.2rem 1fr;
  }
  .home__company--list a .arrow {
    transition: border-color 0.3s, background-color 0.3s, background-image 0.3s;
  }
  .home__company--list a:hover .arrow {
    border-color: #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 8'><path fill='%2318357a' d='M10.354 4.354a.5.5 0 0 0 0-.708L7.172.464a.5.5 0 1 0-.708.708L9.293 4 6.464 6.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h10v-1H0v1Z'/></svg>");
  }
  .home__news--grid {
    position: relative;
    display: grid;
    gap: 14.4rem;
    grid-template-columns: 27.2rem 1fr;
  }
  .home__news .btn__03 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .home__hero {
    margin-bottom: 12rem;
  }
  .home__hero--visual {
    width: 38rem;
    top: 8rem;
    left: calc(50% - 15.4rem);
  }
  .home__hero--visual::before {
    box-shadow: inset -2rem -4rem 4rem 2rem rgba(0, 0, 0, 0.88);
  }
  .home__hero--jupiter {
    width: 38rem;
    top: 8rem;
    left: calc(50% - 19rem);
  }
  .home__hero--catch {
    width: 100%;
    padding: 0 2rem;
    bottom: 2rem;
    left: 0;
  }
  .home__hero--catch .catch01 {
    font-size: 4.4rem;
    line-height: 1.1;
  }
  .home__hero--catch .catch02 {
    font-size: 2rem;
  }
  .home__hero--catch .catch03 {
    font-size: 1rem;
  }
  .home__hero--scroll {
    right: 2rem;
    bottom: 15.2rem;
  }
  .home__hero--scroll .text-en {
    display: none;
  }
  .home__features {
    padding-bottom: 12rem;
  }
  .home__features--grid > * {
    width: 100%;
  }
  .home__features--item .image {
    margin-bottom: 3.2rem;
  }
  .home__features--item .title {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .home__features--item .sentence {
    width: 100%;
    max-width: 100%;
  }
  .home__about--grid {
    display: block;
  }
  .home__about--visual {
    width: 100%;
    margin-bottom: 4.8rem;
  }
  .home__services--list {
    grid-template-columns: 1fr;
  }
  .home__services--item {
    height: auto;
    padding: 3.2rem 2rem;
  }
  .home__services--item .number {
    margin-bottom: 12rem;
    font-size: 4.8rem;
  }
  .home__services--item .title .text01 {
    font-size: 1.2rem;
  }
  .home__services--item .title .text02 {
    font-size: 2rem;
  }
  .home__services--item .btn__02 {
    margin-top: 2.4rem;
  }
  .home__journal--slider.no-slide .swiper-slide {
    width: 100%;
  }
  .home__journal--slider .swiper-controls {
    margin-bottom: 3.2rem;
  }
  .home__journal--slider .swiper-slide {
    width: 24.7rem;
  }
  .home__journal--slider .swiper-pagination {
    font-size: 1.2rem;
  }
  .home__journal--slider .swiper-button {
    width: 2.8rem;
    height: 2.8rem;
  }
  .home__journal .btn__03 {
    margin: 6.4rem auto 0;
  }
  .home__company {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .home__company--lead {
    margin-bottom: 6rem;
  }
  .home__company--list li {
    padding: 3.2rem 0;
  }
  .home__company--list a {
    position: relative;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .home__company--list .label {
    font-size: 2.4rem;
    line-height: 1;
  }
  .home__company--list .name {
    margin-left: 0;
    font-size: 1.2rem;
  }
  .home__company--list .arrow, .home__company--list .arrow-01 {
    width: 2.8rem;
    position: absolute;
    top: calc(50% - 1.4rem);
    right: 0;
  }
  .home__news .btn__03 {
    margin: 4.8rem auto 0;
  }
}
.about__lead {
  margin-top: -3.2rem;
  padding-bottom: 20rem;
  position: relative;
  z-index: -1;
}
.about__lead--title {
  margin-bottom: 14rem;
}
.about__lead--title > span {
  display: block;
}
.about__lead--title .label {
  letter-spacing: 0;
  font-weight: 500;
  font-size: 8rem;
  line-height: 1.1;
}
.about__lead--title .title {
  margin-top: 0.75em;
  font-size: 2.8rem;
}
.about__lead--text {
  max-width: 68.8rem;
  margin-left: auto;
}
.about__lead--text p {
  letter-spacing: 0;
  line-height: 2;
}
.about__lead--text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.about__lead--bg {
  width: 100%;
  height: 53.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.about__lead--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.about__lead--bg.is-substance {
  margin-top: 12rem;
  margin-bottom: -20rem;
  position: unset;
}
.about__lead--bg.is-substance::before {
  content: none;
}
.about__message--image {
  width: 44rem;
  z-index: 3;
}
.about__message--text {
  padding: 8rem;
  position: relative;
  z-index: 2;
  flex: 1;
}
.about__message--text::before {
  content: "";
  width: calc(100% + 15.2rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #f3f3f5;
}
.about__message--text * {
  letter-spacing: 0;
}
.about__message .namecard {
  margin-top: 4.8rem;
}
.about__message .namecard dt {
  line-height: 1.8;
}
.about__message .namecard dd {
  margin-top: 0.25em;
  font-size: 2.4rem;
}
.about__company--visual {
  height: 50rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.about__company--list {
  margin-top: -15.8rem;
}
.about__company--item {
  height: 100%;
  padding: 4.8rem 3.2rem 8rem;
  position: relative;
  display: block;
  background-color: #f3f3f5;
}
.about__company--item * {
  letter-spacing: 0;
}
.about__company--item .heading__02 {
  margin-bottom: 6.4rem;
}
.about__company--item .heading__02--label {
  font-size: 2.4rem;
}
.about__company--item .heading__02--title {
  margin-top: 0.5em;
  font-size: 1.6rem;
}
.about__company--item .sentence {
  font-size: 1.4rem;
}
.about__company--item .arrow-01 {
  position: absolute;
  right: 3.2rem;
  bottom: 2.4rem;
}

@media screen and (min-width: 769px) {
  .about__message--content {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-direction: row-reverse;
  }
  .about__company--list {
    display: flex;
    justify-content: center;
  }
  .about__company--list > * {
    width: 25%;
  }
  .about__company--list > * + * {
    border-left: 1px solid #c1c1c1;
  }
}
@media screen and (max-width: 768px) {
  .about__lead {
    padding-top: 3.6rem;
    padding-bottom: 12rem;
  }
  .about__lead--title {
    margin-bottom: 8rem;
  }
  .about__lead--title .label {
    font-size: 4.4rem;
  }
  .about__lead--title .title {
    margin-top: 1.5em;
    font-size: 2rem;
  }
  .about__lead--bg {
    height: 50.9rem;
  }
  .about__lead--bg.is-substance {
    width: 100%;
    height: auto;
    margin-top: 8rem;
    margin-bottom: -12rem;
  }
  .about__message--image {
    width: 25.6rem;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .about__message--text {
    padding: 4.8rem 0 12rem;
  }
  .about__message--text::before {
    width: calc(100% + 4rem);
    height: calc(100% + 12rem);
    top: -12rem;
    left: -2rem;
  }
  .about__message .namecard {
    text-align: right;
  }
  .about__message .namecard dd {
    font-size: 2rem;
  }
  .about__company--visual {
    height: 28rem;
  }
  .about__company--list {
    margin-top: -6.4rem;
  }
  .about__company--list > li:not(:last-child) {
    border-bottom: 1px solid #c1c1c1;
  }
  .about__company--item {
    padding: 4rem 2rem;
  }
  .about__company--item .heading__02 {
    margin-bottom: 0;
  }
  .about__company--item .heading__02--title {
    font-size: 1.2rem;
  }
  .about__company--item .arrow-01 {
    top: 50%;
    right: 2rem;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.service__message {
  margin-bottom: 5.8rem;
}
.service__info {
  margin-bottom: 10rem;
  padding: 3.2rem 4rem;
  border: 1px solid #c1c1c1;
}
.service__info dt {
  margin-bottom: 0.75em;
  font-size: 2rem;
}
.service__info dt::before {
  content: "■";
  margin-right: 0.5em;
}
.service__block {
  padding-bottom: 20rem;
  position: relative;
}
.service__block::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 12rem;
  bottom: 0;
  left: 0;
  background-color: #f3f3f5;
}
.service__block--inner + .service__block--inner {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid #c1c1c1;
}
.service__block--title .btn__03 {
  margin-top: 4.8rem;
}
.service__point--title {
  margin-bottom: 2.5em;
  font-size: 2.8rem;
  line-height: 1.6;
}
.service__point--list li {
  background-color: #fff;
}
.service__point--list .text {
  padding: 2.4rem 2.4rem;
  flex: 1;
}
.service__point--list .title {
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 2rem;
}
.service__point--list .sentence p {
  letter-spacing: 0;
}
.service__description .title {
  margin-bottom: 2.5em;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .service__lead--column {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 68.8rem;
  }
  .service__lead .title {
    font-size: 3.2rem;
  }
  .service__lead .sentence p {
    line-height: 2;
  }
  .service__block--title {
    display: flex;
    gap: 0 14.4rem;
    align-items: flex-end;
  }
  .service__block--title .text {
    width: 37.6rem;
  }
  .service__block--title .visual {
    margin-right: calc(50% - 50vw);
    flex: 1;
  }
  .service__point--list.is-grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service__point--list li {
    display: flex;
  }
  .service__point--list .visual {
    width: 18rem;
    aspect-ratio: 382/280;
  }
  .service__point--list .text {
    flex: 1;
  }
  .service__point--list .sentence {
    font-size: 1.4rem;
  }
  .service__description--column {
    display: flex;
    gap: 0 12.4rem;
  }
  .service__description--column .visual {
    width: 58.4rem;
  }
  .service__description--column .text {
    flex: 1;
  }
  .service__description--column .text p:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .service__lead--column .title {
    margin-bottom: 1em;
    text-align: center;
    font-size: 2.4rem;
  }
  .service__block {
    padding-bottom: 12rem;
  }
  .service__block--title {
    display: flex;
    flex-direction: column-reverse;
  }
  .service__block--title .visual {
    margin: 0 -2rem 6.4rem;
  }
  .service__block--title .text {
    text-align: center;
  }
  .service__block--title .btn__03 {
    margin-right: auto;
    margin-left: auto;
  }
  .service__block--inner + .service__block--inner {
    margin-top: 6.4rem;
    padding-top: 6.4rem;
  }
  .service__point--title {
    margin-bottom: 1.5em;
    font-size: 2rem;
  }
  .service__point--list li + li {
    margin-top: 2.4rem;
  }
  .service__point--list .text {
    padding: 4rem 2rem;
  }
  .service__point--list .title {
    font-size: 2rem;
  }
  .service__description--column {
    position: relative;
  }
  .service__description .visual {
    margin-bottom: 4.8rem;
  }
  .service__description .title {
    font-size: 2rem;
  }
  .service__description .sentence p {
    letter-spacing: 0;
  }
  .service__description .btn__03 {
    margin: 4.8rem auto 0;
  }
}
.journal__archive {
  padding-bottom: 20rem;
  position: relative;
  z-index: 2;
}
.journal__archive::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 28.7rem;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #f3f3f5;
}
.journal__archive--headline {
  margin-bottom: 16rem;
  background-color: #18357a;
}
.journal__archive--headline .text {
  padding: 6.4rem 4.8rem;
}
.journal__archive--headline .text * {
  letter-spacing: 0;
}
.journal__archive--list {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
.journal__archive--item {
  padding: 4.8rem 6.4rem;
  background-color: #fff;
}
.journal__archive--item .icon {
  width: 6.4rem;
  margin-bottom: 2.4rem;
}
.journal__archive--item .title {
  margin-bottom: 0.75em;
  font-weight: 500;
  font-size: 2.8rem;
}
.journal__archive--item .sentence p {
  letter-spacing: 0;
}
.journal__archive--item .btn__03 {
  margin-top: 3.2rem;
}
.journal__taxonomy--headline {
  margin-bottom: 10rem;
  padding: 4.8rem 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.journal__taxonomy--headline .title {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  flex: 1;
  font-weight: 500;
  font-size: 3.2rem;
}
.journal__taxonomy--headline .icon {
  width: 6.4rem;
}
.journal__taxonomy--headline .sentence {
  max-width: 68.8rem;
}
.journal__taxonomy--headline .sentence p {
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .journal__archive--headline {
    display: flex;
    flex-direction: row-reverse;
  }
  .journal__archive--headline .text {
    width: 41.6rem;
    min-height: 48.7rem;
  }
  .journal__archive--headline .visual {
    margin-right: calc(50% - 50vw);
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .journal__archive {
    padding-bottom: 6.4rem;
  }
  .journal__archive:not(:last-child) {
    margin-bottom: 6.4rem;
  }
  .journal__archive--headline {
    margin: 0 -2rem 6.4rem;
  }
  .journal__archive--headline .visual {
    aspect-ratio: 376/242;
  }
  .journal__archive--headline .text {
    padding: 6.4rem 2rem;
    text-align: center;
  }
  .journal__archive--list {
    display: block;
  }
  .journal__archive--item {
    padding: 3.2rem 2rem;
    display: flex;
    gap: 0 1.6rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .journal__archive--item + .journal__archive--item {
    margin-top: 1.6rem;
  }
  .journal__archive--item .icon {
    width: 4rem;
    margin-bottom: 0;
  }
  .journal__archive--item .title {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .journal__archive--item .sentence {
    width: 100%;
    margin-top: 3.2rem;
  }
  .journal__archive--item .btn__03 {
    margin: 3.2rem auto 0;
  }
  .journal__taxonomy--headline {
    margin-bottom: 6.4rem;
    padding: 3.2rem 0;
    display: block;
  }
  .journal__taxonomy--headline .title {
    gap: 0 1.6rem;
    font-size: 2rem;
  }
  .journal__taxonomy--headline .icon {
    width: 4rem;
  }
  .journal__taxonomy--headline .sentence {
    margin-top: 2.8rem;
  }
  .post__related {
    overflow: hidden;
  }
  .post__related--slider .swiper {
    overflow: visible;
  }
  .post__related--slider .swiper-slide {
    width: 24.7rem;
  }
  .post__related--slider .swiper-controls {
    margin-bottom: 3.2rem;
    display: flex;
    gap: 3.2rem;
    align-items: center;
  }
  .post__related--slider .swiper-pagination {
    position: relative;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
  }
  .post__related--slider .swiper-pagination * {
    letter-spacing: 0;
  }
  .post__related--slider .swiper-pagination .bar {
    width: 3.2rem;
    height: 1px;
    background-color: #333;
  }
  .post__related--slider .swiper-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }
  .post__related--slider .swiper-button {
    width: 2.8rem;
    height: 2.8rem;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: none;
    border: 1px solid rgba(24, 53, 122, 0.2);
    border-radius: 50%;
  }
  .post__related--slider .swiper-button::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 1px solid #18357a;
    border-right: 1px solid #18357a;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .post__related--slider .swiper-button::after {
    content: none;
  }
  .post__related--slider .swiper-button-prev {
    transform: scaleX(-1);
  }
}
.company__navi {
  margin-top: -11.8rem;
}
.company__navi--item {
  height: 100%;
  padding: 4.8rem 3.2rem 8rem;
  position: relative;
  display: block;
  background-color: #f3f3f5;
}
.company__navi--item * {
  letter-spacing: 0;
}
.company__navi--item .heading__02 {
  margin-bottom: 6.4rem;
}
.company__navi--item .heading__02--label {
  font-size: 2.4rem;
}
.company__navi--item .heading__02--title {
  margin-top: 0.5em;
  font-size: 1.6rem;
}
.company__navi--item .sentence {
  font-size: 1.4rem;
}
.company__navi--item .arrow-01 {
  position: absolute;
  right: 3.2rem;
  bottom: 2.4rem;
}
.company__overview--lead {
  margin-bottom: 8rem;
}
.company__history .history__table .inner {
  gap: 0 2.4rem;
  grid-template-columns: 7.2rem 1fr;
}
.company__history .history__table .year {
  letter-spacing: 0;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}
.company__history .history__table--item {
  display: grid;
  gap: 2rem 2rem;
  grid-template-columns: 10.4rem 1fr;
}
.company__history .history__table--item .date {
  margin-top: 0.25em;
  letter-spacing: 0;
  font-weight: 700;
  --text-color: #18357a;
}
.company__location--item + .company__location--item {
  margin-top: 8rem;
}
.company__location--item .name {
  margin-bottom: 1em;
  font-size: 2.4rem;
}
.company__location--item .sentence {
  border-top: 1px solid #c1c1c1;
}
.company__location--item .sentence * {
  letter-spacing: 0;
}
.company__location--item .sentence .inner {
  padding: 2rem 0;
  border-bottom: 1px solid #c1c1c1;
}
.company__location--item .sentence dt {
  font-weight: 700;
}
.company__location--item .sentence dt::after {
  content: " : ";
}
.company__location--item .map {
  margin-top: 3.2rem;
  aspect-ratio: 792/400;
}
.company__location--item .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company__location--footer {
  padding: 4.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.company__location--footer p {
  letter-spacing: 0;
}
.company__location--footer .btn__03 {
  width: 37.6rem;
  max-width: 100%;
  letter-spacing: 0;
  font-weight: 600;
}
.company__base--navi {
  margin-bottom: 5.6rem;
  padding: 0.8rem;
  display: flex;
  gap: 0.8rem;
  border-radius: 2.8rem;
  background-color: #fff;
}
.company__base--navi li {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  font-weight: 700;
  opacity: 0.2;
  transition: opacity 0.3s;
  --text-color: #18357a;
}
.company__base--navi li.is-active {
  background-color: #18357a;
  opacity: 1;
  pointer-events: none;
  --text-color: #fff;
}
.company__base--navi li:hover {
  opacity: 1;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .company__navi {
    display: flex;
    justify-content: center;
  }
  .company__navi > * {
    width: 25%;
  }
  .company__navi > * + * {
    border-left: 1px solid #c1c1c1;
  }
  .company__location--item .sentence .inner {
    display: grid;
    grid-template-columns: 9.2rem 1fr;
  }
  .company__location--item .sentence dt {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .company__navi {
    margin-top: -6.4rem;
  }
  .company__navi > li:not(:last-child) {
    border-bottom: 1px solid #c1c1c1;
  }
  .company__navi--item {
    padding: 4rem 2rem;
  }
  .company__navi--item .heading__02 {
    margin-bottom: 0;
  }
  .company__navi--item .heading__02--title {
    font-size: 1.2rem;
  }
  .company__navi--item .arrow-01 {
    top: 50%;
    right: 2rem;
    bottom: auto;
    transform: translateY(-50%);
  }
  .company__history .history__table .inner {
    gap: 0 3rem;
    grid-template-columns: 6rem 1fr;
  }
  .company__history .history__table .year {
    font-size: 2rem;
  }
  .company__history .history__table--item {
    display: block;
  }
  .company__history .history__table--item .date {
    margin-top: 0;
    margin-bottom: 0.5em;
    display: inline-block;
  }
  .company__history .history__table--item .sentence + .date {
    margin-top: 2rem;
  }
  .company__location--item {
    padding: 3.2rem 0;
    border-top: 1px solid #c1c1c1;
  }
  .company__location--item + .company__location--item {
    margin-top: 0;
  }
  .company__location--item .name {
    margin-bottom: 0;
    position: relative;
    font-size: 1.6rem;
  }
  .company__location--item .name::after {
    content: "";
    width: 2.8rem;
    position: absolute;
    top: calc(50% - 1.4rem);
    right: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none'><circle cx='14' cy='14' r='13.5' stroke='%2318357A' opacity='.2' transform='rotate(-90 14 14)'/><path stroke='%2318357A' d='m10 16 4-4 4 4'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
    transform: rotate(-180deg);
    aspect-ratio: 1;
  }
  .company__location--item .name.is-open::after {
    transform: rotate(0deg);
  }
  .company__location--item .sentence dt {
    margin-bottom: 0.5em;
  }
  .company__location--item .map {
    aspect-ratio: 336/240;
  }
  .company__location--content {
    margin-top: 3.2rem;
    display: none;
  }
  .company__location--footer {
    display: block;
    text-align: center;
  }
  .company__location--footer .btn__03 {
    margin-top: 3.2rem;
  }
  .company__base--navi {
    padding: 0.4rem;
    gap: 0.4rem;
    border-radius: 0.4rem;
  }
  .company__base--navi li {
    height: 5.6rem;
    border-radius: 0.4rem;
    text-align: center;
    letter-spacing: 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.news__navi {
  font-weight: 700;
}
.news__navi li {
  padding-left: 4.4rem;
}
.news__navi li + li {
  margin-top: 1.5em;
}
.news__navi li a {
  position: relative;
}
.news__navi li a::before {
  content: "";
  width: 0.75em;
  position: absolute;
  top: 0.35em;
  left: -2.125em;
  border-radius: 50%;
  background-color: #c1c1c1;
  aspect-ratio: 1;
}
.news__navi li a.is-active::before {
  background-color: #fff;
  box-shadow: 0 0 0 0.625em #18357a;
}
.news__list {
  border-top: 1px solid #ccc;
}
.news__list li {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  border-bottom: 1px solid #ccc;
}
.news__list a {
  padding-right: 6.4rem;
  position: relative;
  display: flex;
  gap: 2rem 2.8rem;
  align-items: center;
  flex-wrap: wrap;
}
.news__list .title {
  width: 100%;
}
.news__list .date {
  color: rgba(121, 131, 137, 0.5);
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.news__list .category {
  padding: 0.25em 1em;
  border-radius: 1em;
  background-color: rgba(24, 53, 122, 0.2);
  font-size: 1.2rem;
  line-height: 1.5;
  --text-color: $primary;
}
.news__list .arrow-01 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .news__navi {
    min-height: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .news__navi {
    margin-bottom: 3.2rem;
  }
  .news__navi select {
    width: 100%;
    height: 4.8rem;
    padding: 0 4.4rem 0 2.8rem;
    border: 1px solid #c1c1c1;
    border-radius: 2.4rem;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 6L7.4641 0H0.535898L4 6Z' fill='%23333333'/></svg>");
    background-position: right 2rem center;
    background-size: 0.8rem;
    background-repeat: no-repeat;
  }
  .news__list li {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .news__list a {
    padding-right: 5.6rem;
    gap: 1.6rem 1.6rem;
  }
  .news__list .date {
    font-size: 1.2rem;
  }
  .news__list .category {
    font-size: 1rem;
  }
}
.recruit__block {
  padding-top: 4.8rem;
  border-top: 1px solid #c1c1c1;
}
.recruit__block + .recruit__block {
  margin-top: 12rem;
}
.recruit__title {
  margin-bottom: 2.5em;
  font-size: 2.8rem;
  line-height: 1.6;
}
.recruit__content--text .title {
  margin-bottom: 2em;
  font-size: 2rem;
  line-height: 1.6;
}
.recruit__content--text .btn__03 {
  margin-top: 4.8rem;
}
.recruit__content--image {
  aspect-ratio: 310/243;
}
.recruit__content--image img {
  width: 100%;
}
.recruit__single--block + .recruit__single--block {
  margin-top: 12rem;
}
.recruit__single--side .toc__list li + li {
  margin-top: 0.5em;
}
.recruit__single--side .btn__03 {
  margin-top: 4rem;
}
.recruit__entry {
  width: 100%;
  height: 16rem;
  margin-bottom: 12rem;
  padding: 0 8.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid;
  --text-color: #18357a;
}
.recruit__entry--text {
  margin-bottom: 0 !important;
  display: flex;
  gap: 0 4rem;
  align-items: center;
}
.recruit__entry .label {
  font-size: 4rem;
}
.recruit__entry .title {
  font-size: 2rem;
}
.recruit__entry .arrow-01 {
  width: 6.4rem;
}

@media screen and (min-width: 769px) {
  .recruit__content {
    display: flex;
    gap: 0 10.4rem;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  .recruit__content--image {
    width: 31rem;
  }
  .recruit__content--text {
    flex: 1;
  }
  .recruit__entry {
    transition: opacity 0.3s;
  }
  .recruit__entry:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .recruit__block {
    padding-top: 3.8rem;
  }
  .recruit__title {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .recruit__content--image {
    margin-bottom: 4.8rem;
  }
  .recruit__content--text .title {
    font-size: 1.6rem;
  }
  .recruit__content--text .btn__03 {
    margin-right: auto;
    margin-left: auto;
  }
  .recruit__single--side .btn__03 {
    width: 100%;
  }
  .recruit__single--main .post__detail--eyecatch {
    margin-right: -2rem;
    margin-left: -2rem;
  }
  .recruit__single--block + .recruit__single--block {
    margin-top: 8rem;
  }
  .recruit__single--block .dl-table__01 .inner {
    display: block;
  }
  .recruit__single--block .dl-table__01 dt {
    margin-bottom: 0.5em;
  }
  .recruit__entry {
    height: 13.4rem;
    margin-bottom: 10rem;
    padding: 0 2.8rem;
  }
  .recruit__entry--text {
    gap: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .recruit__entry .label {
    font-size: 2.8rem;
    line-height: 1;
  }
  .recruit__entry .title {
    font-size: 1.2rem;
  }
  .recruit__entry .arrow-01 {
    width: 2.8rem;
  }
}
.contact__message {
  margin-bottom: 5.8rem;
}
.contact__message * {
  letter-spacing: 0;
}
.contact__info {
  margin-bottom: 10rem;
  padding: 3.2rem 4rem;
  border: 1px solid #c1c1c1;
}
.contact__info dt {
  margin-bottom: 0.75em;
  font-size: 2rem;
}
.contact__info dt::before {
  content: "■";
  margin-right: 0.5em;
}
.contact__info dd * {
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .contact__info {
    padding: 2.4rem 2rem;
  }
  .contact__info dt {
    margin-bottom: 0.25em;
    font-size: 1.6rem;
  }
}
/*# sourceMappingURL=style.css.map */
