@charset "UTF-8";
/*
Theme Name: ringhr
Description: ringhr オリジナルWordPressテーマ
Version: 1.0.0
Author: ringhr
*/
/* =======================================================
  Liquid Pixel
  widthの比率で拡大縮小
========================================================= */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #181c24;
  line-height: 1.6;
  font-synthesis: none;
}

body {
  width: 100%;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: calc(1440px / 1920 * 100vw);
  margin: 0 auto;
  padding: 0 calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .container {
    padding: 0 calc(20 / 393 * 100vw);
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
}
.header__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.92);
  background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .header__bg {
    background: #fff;
  }
}
.header__inner {
  position: relative;
  z-index: 1;
}
.header__container {
  position: relative;
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  padding: calc(24 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .header__container {
    padding: calc(16 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo .header__logo-img {
  display: block;
  height: calc(44 / 1920 * 100vw);
  width: auto;
  max-width: calc(320 / 1920 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo .header__logo-img {
    height: calc(28 / 393 * 100vw);
    max-width: calc(200 / 393 * 100vw);
  }
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: calc(64 / 1920 * 100vw);
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: calc(40 / 1920 * 100vw);
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__nav-item {
  margin: 0;
  padding: 0;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(8 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.9 / 1920 * 100vw);
  color: #181c24;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.header__nav-link:hover, .header__nav-link:focus-visible {
  color: #235493;
  outline: none;
}
.header__nav-link--current {
  color: #235493;
}
.header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: calc(16 / 1920 * 100vw);
}
.header__contact-btn {
  flex-shrink: 0;
}
.header__hamburger {
  flex-shrink: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(5 / 393 * 100vw);
  width: calc(45 / 393 * 100vw);
  height: calc(45 / 393 * 100vw);
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #181c24;
}
@media (min-width: 769px) {
  .header__hamburger {
    display: none !important;
  }
}
.header__hamburger-line {
  display: block;
  width: calc(24 / 393 * 100vw);
  height: calc(3.5 / 393 * 100vw);
  border-radius: calc(2 / 393 * 100vw);
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.is-menu-open .header__hamburger-line:nth-child(1) {
  transform: translateY(calc(5 / 393 * 100vw)) rotate(45deg);
}
body.is-menu-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
body.is-menu-open .header__hamburger-line:nth-child(3) {
  transform: translateY(calc(-5 / 393 * 100vw)) rotate(-45deg);
}
.header__drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(24, 28, 36, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
body.is-menu-open .header__drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  width: calc(320 / 393 * 100vw);
  max-width: 100%;
  height: 70%;
  min-height: 70dvh;
  background: #fff;
  border-radius: 0 0 0 calc(12 / 393 * 100vw);
  box-shadow: calc(-8 / 393 * 100vw) 0 calc(24 / 393 * 100vw) rgba(24, 28, 36, 0.12);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
body.is-menu-open .header__drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: calc(16 / 393 * 100vw) calc(16 / 393 * 100vw) calc(16 / 393 * 100vw) calc(20 / 393 * 100vw);
  border-bottom: 1px solid #eaeef9;
}
.header__drawer-logo {
  display: flex;
  align-items: center;
  max-width: calc(200 / 393 * 100vw);
}
.header__drawer-logo .header__logo-img {
  height: calc(28 / 393 * 100vw);
  max-width: calc(200 / 393 * 100vw);
}
.header__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(45 / 393 * 100vw);
  height: calc(45 / 393 * 100vw);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #181c24;
}
.header__drawer-close-icon {
  position: relative;
  display: block;
  width: calc(22 / 393 * 100vw);
  height: calc(22 / 393 * 100vw);
}
.header__drawer-close-icon::before, .header__drawer-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(22 / 393 * 100vw);
  height: calc(2 / 393 * 100vw);
  border-radius: 1px;
  background: currentColor;
}
.header__drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__drawer-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  padding: calc(32 / 393 * 100vw);
  padding-bottom: calc(64 / 393 * 100vw);
  gap: calc(80 / 393 * 100vw);
  overflow-y: auto;
}
.header__drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.header__drawer-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d9deee;
}
.header__drawer-item:last-child {
  border-bottom: none;
}
.header__drawer-link {
  display: block;
  padding: calc(30 / 393 * 100vw) calc(8 / 393 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / 393 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.8 / 393 * 100vw);
  color: #181c24;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__drawer-link:hover, .header__drawer-link:focus-visible {
  color: #235493;
  outline: none;
}
.header__drawer-link--current {
  color: #235493;
}
.header__drawer-cta {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.header__drawer-cta .btn--contact {
  width: 100%;
  max-width: calc(200 / 393 * 100vw);
  justify-content: flex-start;
}

body.is-menu-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(8 / 1920 * 100vw) calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .btn {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.btn:hover {
  opacity: 0.9;
}
.btn--contact, .btn--primary {
  background: #e22538;
  color: #fff;
  height: calc(50 / 1920 * 100vw);
  padding: calc(4 / 1920 * 100vw) calc(12 / 1920 * 100vw);
  min-width: calc(200 / 1920 * 100vw);
  position: relative;
  padding-right: calc(56 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .btn--contact, .btn--primary {
    height: calc(44 / 393 * 100vw);
    min-width: auto;
    padding: calc(10 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.btn--secondary {
  background: #00326c;
  color: #fff;
  height: calc(50 / 1920 * 100vw);
  padding: calc(4 / 1920 * 100vw) calc(12 / 1920 * 100vw);
  min-width: calc(200 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .btn--secondary {
    height: calc(44 / 393 * 100vw);
    min-width: auto;
    padding: calc(10 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.btn--outline {
  background: #fff;
  color: #181c24;
  border: 2px solid #d9deee;
  height: calc(76 / 1920 * 100vw);
  padding: calc(8 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  max-width: calc(343 / 1920 * 100vw);
  text-decoration: none;
}
@media (max-width: 768px) {
  .btn--outline {
    height: calc(56 / 393 * 100vw);
    max-width: 100%;
  }
}
.btn--submit {
  position: relative;
  background: #00326c;
  color: #fff;
  height: calc(76 / 1920 * 100vw);
  padding: calc(8 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  padding-right: calc(56 / 1920 * 100vw);
  width: 100%;
  max-width: calc(343 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .btn--submit {
    height: calc(56 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    max-width: 100%;
  }
}

.btn--contact::after,
.btn--submit::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  width: calc(32 / 1920 * 100vw);
  height: calc(32 / 1920 * 100vw);
  border-radius: 999px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 768px) {
  .btn--contact::after,
  .btn--submit::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}

.btn--contact::after {
  background-image: url("src/images/right-arrow-contact.png");
}

.btn--submit::after {
  background-image: url("src/images/right-arrow-blue.png");
}

@media (max-width: 768px) {
  .btn--contact::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}
.hero {
  position: relative;
  padding: calc(200 / 1920 * 100vw) 0 calc(120 / 1920 * 100vw);
  margin-top: calc(-90 / 1920 * 100vw);
  display: block;
}
@media (max-width: 768px) {
  .hero {
    padding: calc(100 / 393 * 100vw) 0;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("src/images/617ae35ca4984e7212d401a7315bf4c2892a98de.png") center/cover no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__bg {
    background: url("src/images/hero-bg-sp.png") center/cover no-repeat;
  }
}
.hero__inner {
  position: relative;
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(120 / 1920 * 100vw);
  padding: 0 calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 0 calc(20 / 393 * 100vw);
    gap: calc(40 / 393 * 100vw);
  }
}
.hero__images {
  display: flex;
  gap: calc(56 / 1920 * 100vw);
  align-items: center;
  justify-content: center;
}
.hero__images.pc-only {
  display: flex !important;
}
@media (max-width: 768px) {
  .hero__images.pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero__images {
    gap: calc(16 / 393 * 100vw);
    flex-wrap: nowrap;
    overflow: hidden;
    padding-bottom: calc(8 / 393 * 100vw);
  }
}
.hero__track {
  display: flex;
  gap: calc(56 / 1920 * 100vw);
  padding-right: calc(56 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__track {
    gap: calc(16 / 393 * 100vw);
    padding-right: calc(16 / 393 * 100vw);
  }
}
.hero__image {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .hero__image {
    width: calc(209 / 393 * 100vw);
    height: calc(105 / 393 * 100vw);
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.hero__image--lg {
  width: calc(508 / 1920 * 100vw);
  height: calc(254 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__image--lg {
    width: calc(260 / 393 * 100vw);
    height: calc(150 / 393 * 100vw);
  }
}
.hero__image--sm {
  width: calc(406.4 / 1920 * 100vw);
  height: calc(203.2 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__image--sm {
    width: calc(220 / 393 * 100vw);
    height: calc(130 / 393 * 100vw);
  }
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(32 / 1920 * 100vw);
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .hero__content {
    gap: calc(20 / 393 * 100vw);
    max-width: 100%;
    align-items: start;
  }
}
.hero__headline-wrap {
  transform: skewX(-4deg);
}
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: calc(8 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__headline {
    gap: calc(8 / 393 * 100vw);
  }
}
.hero__line {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
  text-align: left;
}
.hero__line--brand {
  font-size: calc(86 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__line--brand {
    font-size: calc(30 / 393 * 100vw);
  }
}
.hero__line--jp {
  font-size: calc(86 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__line--jp {
    font-size: calc(32 / 393 * 100vw);
  }
}
.hero__quote {
  color: #235493;
}
.hero__brand-text {
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-weight: 700;
  color: #235493;
  margin: 0 calc(-20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__brand-text {
    margin: 0 calc(-8 / 393 * 100vw);
  }
}
.hero__line-text {
  display: inline-block;
}
.hero__chips {
  display: flex;
  gap: calc(20 / 1920 * 100vw);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__chips {
    padding-left: 0;
    flex-direction: column;
    align-items: start;
    gap: calc(12 / 393 * 100vw);
  }
}
.hero__sub-en {
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(12 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #235493;
  padding-right: 0;
  margin-top: calc(-30 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .hero__sub-en {
    justify-content: flex-end;
    padding-right: 0;
    margin-left: auto;
    margin-top: calc(8 / 393 * 100vw);
    font-size: calc(10 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .hero__images--top .hero__track:first-child {
    animation: hero-loop 40s -20s linear infinite;
  }
  .hero__images--top .hero__track:last-child {
    animation: hero-loop2 40s linear infinite;
  }
  .hero__images--bottom .hero__track:first-child {
    animation: hero-loop 50s -25s linear infinite;
  }
  .hero__images--bottom .hero__track:last-child {
    animation: hero-loop2 50s linear infinite;
  }
}
@keyframes hero-loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes hero-loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.infinite-scroll {
  display: none;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .infinite-scroll {
    display: flex;
  }
}
.infinite-scroll.bottom {
  margin-top: calc(40 / 1920 * 100vw);
}

.infinite-scroll__container {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .infinite-scroll__container {
    gap: 0.8rem;
    padding-right: 0.8rem;
  }
}

.infinite-scroll__img-wrap {
  flex-shrink: 0;
  width: calc(210 / 393 * 100vw);
  height: calc(105 / 393 * 100vw);
  margin: 0 calc(4 / 393 * 100vw);
  border-radius: calc(4 / 393 * 100vw);
}
.infinite-scroll__img-wrap img {
  border-radius: calc(4 / 393 * 100vw);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.infinite-scroll__container:first-child {
  animation: loop 80s -40s linear infinite;
}

.infinite-scroll__container:last-child {
  animation: loop2 80s linear infinite;
}

@keyframes loop-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop2-right {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
.infinite-scroll.bottom .infinite-scroll__container:first-child {
  animation: loop-right 80s -40s linear infinite;
}

.infinite-scroll.bottom .infinite-scroll__container:last-child {
  animation: loop2-right 80s linear infinite;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(8 / 1920 * 100vw) calc(12 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(28 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-chip {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw) calc(12 / 393 * 100vw);
  }
}
.hero-chip--accent {
  background: #e22538;
}
.hero-chip--primary {
  background: #00326c;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section-title {
    gap: calc(8 / 393 * 100vw);
  }
}
.section-title--center {
  align-items: center;
  text-align: center;
}
.section-title--left {
  align-items: flex-start;
}
.section-title__main {
  font-size: calc(68 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #181c24;
}
@media (max-width: 768px) {
  .section-title__main {
    font-size: calc(28 / 393 * 100vw);
  }
}
.section-title__en {
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-weight: 700;
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #d12f3a;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title__en {
    font-size: calc(14 / 393 * 100vw);
  }
}

.cta-box {
  position: static;
  width: 100%;
  max-width: calc(330 / 1920 * 100vw);
  margin: calc(40 / 1920 * 100vw) auto 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 16px -4px rgba(24, 28, 36, 0.08), 0 4px 6px -2px rgba(24, 28, 36, 0.03);
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-box {
    max-width: none;
    margin: calc(32 / 393 * 100vw) 0 0;
  }
}
@media (min-width: 769px) {
  .cta-box {
    position: fixed;
    bottom: calc(50 / 1920 * 100vw);
    right: calc(10 / 1920 * 100vw);
    z-index: 100;
    width: calc(330 / 1920 * 100vw);
    margin: 0;
  }
}

.cta-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 / 1920 * 100vw);
  padding: calc(20 / 1920 * 100vw);
  background: #466ca8;
  color: #fff;
}
@media (max-width: 768px) {
  .cta-box__head {
    padding: calc(16 / 393 * 100vw);
  }
}

.cta-box__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 768px) {
  .cta-box__title {
    font-size: calc(16 / 393 * 100vw);
  }
}

.cta-box__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  background: #fff;
  color: #235493;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-box__badge {
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}

.cta-box__body {
  display: flex;
  flex-direction: column;
  padding: calc(8 / 1920 * 100vw) calc(20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .cta-box__body {
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
}

.cta-box__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(70 / 1920 * 100vw);
  gap: calc(20 / 1920 * 100vw);
  width: 100%;
  color: #181c24;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-box__item:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .cta-box__item {
    min-height: calc(60 / 393 * 100vw);
    gap: calc(16 / 393 * 100vw);
  }
}

.cta-box__item-left {
  display: flex;
  align-items: center;
  gap: calc(20 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-box__item-left {
    gap: calc(12 / 393 * 100vw);
  }
}

.cta-box__item--tel .cta-box__item-left {
  align-items: flex-start;
  padding-top: calc(8 / 1920 * 100vw);
}

.cta-box__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .cta-box__label {
    font-size: calc(14 / 393 * 100vw);
  }
}

.cta-box__item-spacer {
  flex: 1 0 0;
  min-width: calc(8 / 1920 * 100vw);
}

.cta-box__arrow {
  flex-shrink: 0;
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
  background: url("src/images/right.png") center/contain no-repeat;
}

.cta-box__divider {
  height: 1px;
  background: #d9deee;
}

.cta-box__tel-block {
  display: flex;
  flex-direction: column;
  gap: calc(6 / 1920 * 100vw);
}

.cta-box__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.cta-box__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #4f525c;
}

.cta-box__boundary {
  height: 1px;
  background: #eaeef9;
}

.cta-box__icon {
  width: calc(30 / 1920 * 100vw);
  height: calc(30 / 1920 * 100vw);
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-box__icon--mail {
  background-image: url("src/images/send.png");
}
.cta-box__icon--line {
  background-image: url("src/images/dbbfecaddf4cf1a4c1d9607527db2818b5912462.png");
}
.cta-box__icon--tel {
  background-image: url("src/images/tel.png");
}

.cta-bar {
  position: relative;
  display: none;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  margin-top: calc(-70 / 393 * 100vw);
  z-index: 100;
}
.cta-bar.sp-only {
  align-items: center;
  justify-content: space-between;
  padding: calc(10 / 393 * 100vw) calc(20 / 393 * 100vw);
  gap: calc(16 / 393 * 100vw);
}
@media (max-width: 768px) {
  .cta-bar.sp-only {
    display: flex !important;
  }
}

.cta-bar__tel {
  display: flex;
  align-items: center;
  gap: calc(12 / 393 * 100vw);
}

.cta-bar__tel-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-bar__number {
  font-weight: 700;
  font-size: calc(16 / 393 * 100vw);
  color: #181c24;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cta-bar__number img {
  width: calc(16 / 393 * 100vw);
  height: calc(16 / 393 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  margin-right: calc(4 / 393 * 100vw);
  transform: translateZ(0) scaleX(-1);
}

.cta-bar__time {
  font-size: calc(12 / 393 * 100vw);
  color: #4f525c;
  font-weight: 500;
}

.cta-bar__icons {
  display: flex;
  gap: calc(20 / 393 * 100vw);
  align-items: center;
}

.cta-bar__icon {
  width: calc(65 / 393 * 100vw);
  height: calc(65 / 393 * 100vw);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-bar__icon--mail {
  background-color: #007bad;
  border-radius: 100px;
  background-size: 60%;
  background-image: url("src/images/send-white.png");
}
.cta-bar__icon--line {
  background-image: url("src/images/c6642fceefcc394be9f3d90467adadb7b76eaf27.png");
}
.cta-bar__icon--tel {
  background-image: url("src/images/tel.png");
}

.section {
  position: relative;
  padding: calc(160 / 1920 * 100vw) calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section {
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.section--service .section__bg {
  background-image: url("src/images/80499fa9d361814e2ef671cc5a385d68fd14e32c.png");
  border-radius: 0 0 40px 40px;
}
.section--strength {
  padding: calc(200 / 1920 * 100vw) 0;
}
@media (max-width: 768px) {
  .section--strength {
    padding: calc(80 / 393 * 100vw) 0;
  }
}
.section--strength .section__bg--strength {
  background-image: url("src/images/61efb7b5d8eb59dc114bbdec8f97fa47b727ec17.png");
}

.section--service {
  padding-top: calc(380 / 1920 * 100vw);
  padding-bottom: calc(400 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--service {
    padding-top: calc(80 / 393 * 100vw);
  }
}

.section--service__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  padding: 0 calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--service__inner {
    gap: calc(40 / 393 * 100vw);
    padding: 0;
  }
}

.service-cards {
  display: flex;
  gap: calc(80 / 1920 * 100vw);
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: calc(1280 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: stretch;
    gap: calc(40 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-card {
  width: 100%;
  max-width: calc(600 / 1920 * 100vw);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -2px rgba(24, 28, 36, 0.03), 0 12px 16px -4px rgba(24, 28, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: calc(40 / 1920 * 100vw);
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-card {
    max-width: 100%;
    padding: calc(24 / 393 * 100vw);
    gap: calc(24 / 393 * 100vw);
  }
}
.service-card:nth-child(2) {
  margin-top: calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-card:nth-child(2) {
    margin-top: 0;
  }
}
.service-card__img {
  width: 100%;
  aspect-ratio: 520/234;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(32 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .service-card__body {
    gap: calc(20 / 393 * 100vw);
  }
}
.service-card__heading {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}
.service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  padding: calc(4 / 1920 * 100vw) calc(8 / 1920 * 100vw);
  background: #e22538;
  color: #fff;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-weight: 700;
  font-size: calc(16 / 1920 * 100vw);
  letter-spacing: 0.05em;
  border-radius: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-card__num {
    width: calc(48 / 393 * 100vw);
    height: calc(22 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}
.service-card__title {
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-card__title {
    font-size: calc(22 / 393 * 100vw);
  }
}
.service-card__copy {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .service-card__copy {
    gap: calc(16 / 393 * 100vw);
  }
}
.service-card__text {
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  margin: 0;
}
@media (max-width: 768px) {
  .service-card__text {
    font-size: calc(16 / 393 * 100vw);
  }
}
.service-card__btn.btn--outline {
  position: relative;
  align-self: flex-start;
  width: 100%;
  max-width: calc(343 / 1920 * 100vw);
  padding-right: calc(56 / 1920 * 100vw);
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .service-card__btn.btn--outline {
    padding-right: calc(52 / 393 * 100vw);
    max-width: calc(200 / 393 * 100vw);
    padding-left: calc(20 / 393 * 100vw);
  }
}
.service-card__btn.btn--outline::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  width: calc(32 / 1920 * 100vw);
  height: calc(32 / 1920 * 100vw);
  border-radius: 999px;
  background-color: #00326c;
  background-image: url("src/images/right-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 768px) {
  .service-card__btn.btn--outline::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}

.strength__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .strength__inner {
    max-width: 100%;
    padding: calc(40 / 393 * 100vw) calc(0 / 393 * 100vw);
    margin: 0 calc(20 / 393 * 100vw);
  }
}

.strength__overlay {
  position: absolute;
  inset: 0;
  background-image: url("src/images/f8b042e39d26a0209c2c24896eb6c59f4ad95b1e.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  border-radius: 12px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .strength__overlay {
    opacity: 0.4;
    border-radius: calc(4 / 393 * 100vw);
  }
}

.strength__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: calc(80 / 1920 * 100vw);
  margin-bottom: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .strength__head {
    flex-direction: column;
    padding-right: 0;
    gap: calc(24 / 393 * 100vw);
    margin-bottom: calc(40 / 393 * 100vw);
  }
}

.strength__visual-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(16 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strength__visual-wrap {
    align-items: center;
    width: 100%;
  }
}

.strength__visual {
  width: calc(397 / 1920 * 100vw);
  height: calc(384 / 1920 * 100vw);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strength__visual {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: calc(4 / 393 * 100vw);
    aspect-ratio: 397/384;
  }
}
.strength__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.strength__name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .strength__name {
    justify-content: center;
    font-size: calc(14 / 393 * 100vw);
    white-space: normal;
    text-align: right;
    margin-left: auto;
  }
}

.strength__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.strength__item {
  padding: calc(40 / 1920 * 100vw);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .strength__item {
    padding: calc(0 / 393 * 100vw);
  }
}
.strength__item--right {
  padding: calc(40 / 1920 * 100vw) calc(60 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .strength__item--right {
    padding: calc(0 / 393 * 100vw);
    margin-top: calc(50 / 393 * 100vw);
    justify-content: flex-start;
  }
}
.strength__item--left {
  padding: calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .strength__item--left {
    margin-top: calc(50 / 393 * 100vw);
    padding: calc(0 / 393 * 100vw);
  }
}

.strength__item-inner {
  display: flex;
  flex-direction: column;
  gap: calc(32 / 1920 * 100vw);
  max-width: calc(600 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .strength__item-inner {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .strength__item--right .strength__item-inner {
    margin-left: auto;
  }
}

.strength__heading {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}

.strength__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  background: #e22538;
  color: #fff;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-weight: 700;
  font-size: calc(16 / 1920 * 100vw);
  letter-spacing: 0.05em;
  border-radius: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strength__num {
    width: calc(48 / 393 * 100vw);
    height: calc(22 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}

.strength__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .strength__title {
    font-size: calc(22 / 393 * 100vw);
  }
}

.strength__title-line {
  display: block;
}
.strength__title-line:first-child {
  margin-bottom: calc(9 / 1920 * 100vw);
}

.strength__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .strength__text {
    font-size: calc(16 / 393 * 100vw);
  }
}

.section--problem {
  background: #f3f6ff;
  border-radius: calc(40 / 1920 * 100vw);
  padding: calc(120 / 1920 * 100vw) calc(160 / 1920 * 100vw);
  margin: 0 calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--problem {
    border-radius: calc(40 / 393 * 100vw);
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw);
    margin: 0;
  }
}

.problem__bg {
  position: absolute;
  inset: 0;
  background-image: url("src/images/problem-container.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  border-radius: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__bg {
    border-radius: calc(40 / 393 * 100vw);
    opacity: 0.35;
  }
}

.problem__container {
  position: relative;
  z-index: 1;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__container {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.problem__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .problem__lead {
    font-size: calc(20 / 393 * 100vw);
    font-weight: 700;
    line-height: 1.5;
  }
}

.problem__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(10 / 393 * 100vw);
  }
}

.problem-card {
  background: #fff;
  border-radius: calc(12 / 1920 * 100vw);
  padding: calc(20 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(32 / 1920 * 100vw);
  min-width: 0;
}
@media (max-width: 768px) {
  .problem-card {
    border-radius: calc(12 / 393 * 100vw);
    padding: calc(16 / 393 * 100vw);
    gap: calc(16 / 393 * 100vw);
    min-height: calc(240 / 393 * 100vw);
  }
}

.problem-card__img {
  width: calc(200 / 1920 * 100vw);
  height: calc(200 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .problem-card__img {
    width: calc(120 / 393 * 100vw);
    height: calc(120 / 393 * 100vw);
  }
}
.problem-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.problem-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  min-height: calc(96 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .problem-card__text {
    font-size: calc(14 / 393 * 100vw);
    line-height: 1.5;
    min-height: calc(63 / 393 * 100vw);
  }
}

.problem__bottom {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__bottom {
    flex-direction: column;
    gap: calc(40 / 393 * 100vw);
  }
}

.problem__middle-arrow {
  width: calc(40 / 1920 * 100vw);
  height: calc(160 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-20 / 1920 * 100vw);
  margin-bottom: calc(-20 / 1920 * 100vw);
}
.problem__middle-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .problem__middle-arrow {
    width: calc(20 / 393 * 100vw);
    height: calc(80 / 393 * 100vw);
    margin-top: 0;
    margin-bottom: 0;
  }
}

.problem__bottom-left {
  flex: 0 0 auto;
  width: calc(600 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__bottom-left {
    width: 100%;
    gap: calc(24 / 393 * 100vw);
  }
}

.problem__solve-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
  margin: 0;
}
@media (max-width: 768px) {
  .problem__solve-title {
    font-size: calc(22 / 393 * 100vw);
    text-align: center;
  }
}

.problem__solve-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  display: flex;
  flex-direction: column;
  gap: calc(18 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .problem__solve-text {
    font-size: calc(16 / 393 * 100vw);
    gap: calc(16 / 393 * 100vw);
  }
}
.problem__solve-text p {
  margin: 0;
}

.problem__cta {
  margin-top: 0;
  min-width: calc(300 / 1920 * 100vw);
  padding-left: calc(30 / 1920 * 100vw);
  justify-content: unset;
}
@media (max-width: 768px) {
  .problem__cta {
    width: 100%;
    max-width: calc(200 / 393 * 100vw);
    min-width: 0;
    height: calc(56 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
    padding-right: calc(44 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    justify-content: space-between;
  }
}

.problem__image {
  flex: 0 0 auto;
  width: calc(460 / 1920 * 100vw);
  border-radius: calc(14 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .problem__image {
    width: 100%;
    max-width: 100%;
    border-radius: calc(14 / 393 * 100vw);
  }
}
.problem__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.problem__image {
  aspect-ratio: 460/576;
}

.problem__solve-head {
  display: flex;
  align-items: center;
  gap: calc(20 / 393 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .problem__solve-head {
    display: flex !important;
  }
}

.problem__solve-image-sp {
  width: calc(120 / 393 * 100vw);
  height: calc(151 / 393 * 100vw);
  flex-shrink: 0;
}
.problem__solve-image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.section--policy {
  position: relative;
  overflow: hidden;
  padding: calc(455 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(500 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--policy {
    padding: calc(160 / 393 * 100vw) 0 calc(120 / 393 * 100vw);
    overflow: visible;
  }
}

.policy__sp-bg-base {
  display: none;
}
@media (max-width: 768px) {
  .policy__sp-bg-base {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url("src/images/policy-sp-bg-base.png") center center/cover no-repeat;
  }
}

.policy__sp-bg-overlay {
  display: none;
}
@media (max-width: 768px) {
  .policy__sp-bg-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url("src/images/policy-sp-bg-overlay.png") center center/cover no-repeat;
  }
}

.policy__ellipse {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .policy__ellipse {
    display: none;
  }
}
.policy__ellipse--1 {
  width: calc(1349 / 1920 * 100vw);
  height: calc(1349 / 1920 * 100vw);
  left: calc(128 / 1920 * 100vw);
  top: calc(752 / 1920 * 100vw);
  background-image: url("src/images/policy-ellipse-1.svg");
}
.policy__ellipse--2 {
  width: calc(1877 / 1920 * 100vw);
  height: calc(1877 / 1920 * 100vw);
  right: calc(-490 / 1920 * 100vw);
  top: calc(-14 / 1920 * 100vw);
  background-image: url("src/images/policy-ellipse-2.svg");
}

.policy__objects {
  position: absolute;
  width: calc(1580 / 1920 * 100vw);
  height: calc(1400 / 1920 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  top: calc(490 / 1920 * 100vw);
  background: url("src/images/policy-objects.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .policy__objects {
    display: none;
  }
}

.policy__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .policy__inner {
    max-width: 100%;
    gap: calc(64 / 393 * 100vw);
    padding: 0 calc(20 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .policy__inner > .section-title,
  .policy__inner > .policy__list {
    position: relative;
    z-index: 1;
  }
}

.policy__sp-decor {
  display: none;
}
@media (max-width: 768px) {
  .policy__sp-decor {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    max-width: none;
    margin-top: calc(40 / 393 * 100vw);
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
}

.policy__sp-decor-track {
  display: none;
}
@media (max-width: 768px) {
  .policy__sp-decor-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(21.72 / 393 * 100vw);
    width: -moz-max-content;
    width: max-content;
    max-width: none;
    flex-shrink: 0;
    box-sizing: border-box;
  }
}

.policy__sp-decor-item {
  flex: 0 0 auto;
  width: calc(108.71 / 393 * 100vw);
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.policy__sp-decor-item__inner {
  position: relative;
  width: calc(108.71 / 393 * 100vw);
  flex-shrink: 0;
  border-radius: calc(1.042 / 393 * 100vw);
  overflow: hidden;
}
.policy__sp-decor-item__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 1;
}
.policy__sp-decor-item__inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.policy__sp-decor-item__inner--crop-left img {
  position: absolute;
  top: 0;
  left: -53.14%;
  width: 223.96%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}
.policy__sp-decor-item__inner--crop-wide img {
  position: absolute;
  top: 0;
  left: 0.09%;
  width: 119.87%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}
.policy__sp-decor-item--1 {
  align-self: stretch;
  justify-content: center;
}
.policy__sp-decor-item--1 .policy__sp-decor-item__inner {
  width: calc(108.71 / 393 * 100vw);
  height: calc(81.532 / 393 * 100vw);
}
.policy__sp-decor-item--1 img {
  position: absolute;
  inset: 0;
}
.policy__sp-decor-item--2 {
  align-self: flex-start;
}
.policy__sp-decor-item--2 .policy__sp-decor-item__inner {
  width: calc(108.71 / 393 * 100vw);
  height: calc(135.887 / 393 * 100vw);
}
.policy__sp-decor-item--3 {
  align-self: flex-start;
  padding-top: calc(25.679 / 393 * 100vw);
}
.policy__sp-decor-item--3 .policy__sp-decor-item__inner {
  width: calc(108.71 / 393 * 100vw);
  height: calc(135.887 / 393 * 100vw);
}
.policy__sp-decor-item--3 img {
  position: absolute;
  inset: 0;
}
.policy__sp-decor-item--4 {
  align-self: stretch;
  justify-content: center;
}
.policy__sp-decor-item--4 .policy__sp-decor-item__inner {
  width: calc(108.71 / 393 * 100vw);
  height: calc(86.882 / 393 * 100vw);
}

.policy__list {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .policy__list {
    gap: calc(16 / 393 * 100vw);
  }
}

.policy-card {
  display: flex;
  align-items: stretch;
  gap: calc(80 / 1920 * 100vw);
  padding: calc(40 / 1920 * 100vw);
  background: #fff;
  border-radius: calc(12 / 1920 * 100vw);
  min-height: calc(462 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .policy-card {
    flex-direction: column-reverse;
    gap: calc(20 / 393 * 100vw);
    padding: calc(20 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    min-height: 0;
  }
}

.policy-card__image {
  width: calc(382 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .policy-card__image {
    width: 100%;
    border-radius: calc(8 / 393 * 100vw);
  }
}
.policy-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.policy-card__content {
  width: calc(620 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .policy-card__content {
    width: 100%;
    gap: calc(20 / 393 * 100vw);
  }
}

.policy-card__header {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .policy-card__header {
    gap: calc(12 / 393 * 100vw);
  }
}

.policy-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  border-radius: 999px;
  background: #e22538;
  color: #fff;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 768px) {
  .policy-card__num {
    width: calc(52 / 393 * 100vw);
    height: calc(22 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}

.policy-card__title {
  display: flex;
  flex-direction: column;
  gap: calc(4 / 1920 * 100vw);
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .policy-card__title {
    font-size: calc(24 / 393 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
  }
}

.policy-card__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .policy-card__text {
    font-size: calc(16 / 393 * 100vw);
    line-height: 1.8;
  }
}

.section--img-gallery {
  background: #fff;
  padding: calc(400 / 1920 * 100vw) calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--img-gallery {
    display: none !important;
  }
}

.img-gallery__inner {
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
}

.img-gallery__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: calc(24 / 1920 * 100vw);
}

.img-gallery__col {
  flex: 0 0 auto;
  width: calc(417 / 1920 * 100vw);
}
.img-gallery__col--1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-gallery__col--2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.img-gallery__col--3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(99 / 1920 * 100vw);
}
.img-gallery__col--4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.img-gallery__frame {
  position: relative;
  width: 100%;
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
.img-gallery__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 1;
}
.img-gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-gallery__frame--h313 {
  height: calc(313 / 1920 * 100vw);
}

.img-gallery__frame--h522 {
  height: calc(522 / 1920 * 100vw);
}

.img-gallery__frame--h334 {
  height: calc(334 / 1920 * 100vw);
}

.img-gallery__frame--crop-left img {
  position: absolute;
  top: 0;
  left: -53.14%;
  width: 223.96%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-gallery__frame--crop-wide img {
  position: absolute;
  top: 0;
  left: 0.09%;
  width: 119.87%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.section--talent {
  position: relative;
  overflow: hidden;
  border-radius: calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw) 0 0;
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(320 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--talent {
    border-radius: calc(40 / 393 * 100vw) calc(40 / 393 * 100vw) 0 0;
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(160 / 393 * 100vw);
  }
}

.talent__bg {
  position: absolute;
  inset: 0;
  background-image: url("src/images/talent-section-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.talent__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .talent__inner {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.talent__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .talent__intro {
    gap: calc(32 / 393 * 100vw);
  }
}

.section-title--talent .section-title__main {
  color: #fff;
}
.section-title--talent .section-title__en {
  color: #ffbfb3;
  text-transform: uppercase;
}

.talent__lead {
  margin: 0;
  max-width: calc(1000 / 1920 * 100vw);
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .talent__lead {
    max-width: 100%;
    font-size: calc(16 / 393 * 100vw);
    text-align: left;
  }
}

.talent__charts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .talent__charts {
    flex-direction: column;
    gap: calc(24 / 393 * 100vw);
  }
}

.talent__chart-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(400 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .talent__chart-col {
    width: 100%;
    max-width: 100%;
  }
}

.talent__chart-note {
  margin: calc(16 / 1920 * 100vw) 0 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
}
@media (max-width: 768px) {
  .talent__chart-note {
    margin-top: calc(12 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
  }
}

.talent-card {
  width: 100%;
  flex-shrink: 0;
  padding: calc(40 / 1920 * 100vw);
  background: #fff;
  border-radius: calc(12 / 1920 * 100vw);
  box-shadow: 0 4px 6px -2px rgba(24, 28, 36, 0.03), 0 12px 16px -4px rgba(24, 28, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .talent-card {
    width: 100%;
    max-width: 100%;
    padding: calc(24 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    gap: calc(10 / 393 * 100vw);
  }
}

.talent__charts > .talent-card {
  width: calc(400 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .talent__charts > .talent-card {
    width: 100%;
  }
}

.talent-card__title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.talent-card__title--primary {
  color: #235493;
}
.talent-card__title--accent {
  color: #d12f3a;
}
@media (max-width: 768px) {
  .talent-card__title {
    font-size: calc(18 / 393 * 100vw);
  }
}

.talent-card__chart {
  position: relative;
  width: calc(320 / 1920 * 100vw);
  height: calc(320 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .talent-card__chart {
    width: 100%;
    max-width: calc(280 / 393 * 100vw);
    height: auto;
    margin: 0 auto;
    aspect-ratio: 1;
  }
}
.talent-card__chart img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.section--industries {
  position: relative;
  overflow: hidden;
  border-radius: calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw) 0 0;
  padding: calc(200 / 1920 * 100vw) calc(300 / 1920 * 100vw) calc(320 / 1920 * 100vw);
  margin-top: calc(-60 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--industries {
    border-radius: calc(40 / 393 * 100vw) calc(40 / 393 * 100vw) 0 0;
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(160 / 393 * 100vw);
    margin-top: calc(-60 / 393 * 100vw);
  }
}

.industries__bg {
  position: absolute;
  inset: 0;
  background-image: url("src/images/industries-section-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.industries__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .industries__inner {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.industries__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .industries__intro {
    gap: calc(32 / 393 * 100vw);
  }
}

.industries__lead {
  margin: 0;
  max-width: calc(1000 / 1920 * 100vw);
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .industries__lead {
    max-width: 100%;
    font-size: calc(16 / 393 * 100vw);
    text-align: left;
  }
}

.industries__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .industries__cards {
    flex-direction: column;
    gap: calc(24 / 393 * 100vw);
  }
}

.industry-card {
  width: calc(580 / 1920 * 100vw);
  flex-shrink: 0;
  padding: calc(40 / 1920 * 100vw);
  background: #fff;
  border-radius: calc(12 / 1920 * 100vw);
  box-shadow: 0 4px 6px -2px rgba(24, 28, 36, 0.03), 0 12px 16px -4px rgba(24, 28, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .industry-card {
    width: 100%;
    max-width: 100%;
    padding: calc(24 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    gap: calc(24 / 393 * 100vw);
  }
}

.industry-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 520/234;
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .industry-card__image {
    border-radius: calc(8 / 393 * 100vw);
  }
}
.industry-card__image img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 187.56%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.industry-card__image--lodging img {
  top: -39.57%;
}
.industry-card__image--care img {
  top: -14.24%;
}

.industry-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .industry-card__body {
    gap: calc(16 / 393 * 100vw);
  }
}

.industry-card__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .industry-card__title {
    font-size: calc(22 / 393 * 100vw);
  }
}

.industry-card__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .industry-card__text {
    font-size: calc(16 / 393 * 100vw);
  }
}

.industries__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(12 / 1920 * 100vw);
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
  padding: calc(8 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  background: #d4efff;
  border-radius: calc(4 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .industries__note {
    padding: calc(12 / 393 * 100vw) calc(20 / 393 * 100vw);
    border-radius: calc(4 / 393 * 100vw);
    gap: calc(10 / 393 * 100vw);
    justify-content: flex-start;
    max-width: 100%;
  }
}

.industries__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50 / 1920 * 100vw);
  height: calc(50 / 1920 * 100vw);
  flex-shrink: 0;
}
.industries__note-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .industries__note-icon {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
}

.industries__note-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
  text-align: center;
}
@media (max-width: 768px) {
  .industries__note-text {
    font-size: calc(16 / 393 * 100vw);
    text-align: left;
    flex: 1;
    min-width: 0;
  }
}

.section--voices {
  position: relative;
  overflow: hidden;
  border-radius: calc(40 / 1920 * 100vw);
  padding: calc(200 / 1920 * 100vw) 0;
  margin-top: calc(-60 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--voices {
    border-radius: calc(40 / 393 * 100vw);
    padding: calc(80 / 393 * 100vw) calc(0 / 393 * 100vw);
    margin-top: calc(-60 / 393 * 100vw);
    overflow-x: visible;
    overflow-y: visible;
  }
}

.voices__bg {
  position: absolute;
  inset: 0;
  background-image: url("src/images/voices-section-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.voices__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .voices__inner {
    gap: calc(40 / 393 * 100vw);
    max-width: 100%;
  }
}

.section-title--voices .section-title__main {
  color: #fff;
}
.section-title--voices .section-title__en {
  color: #ff9e95;
  text-transform: uppercase;
}

.voices__carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voices__viewport {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .voices__viewport {
    position: relative;
    gap: 0;
    align-items: stretch;
  }
}

.voices-swiper {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0 calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .voices-swiper {
    padding: 0 calc(20 / 393 * 100vw);
    overflow: visible;
  }
}
.voices-swiper .swiper-wrapper {
  align-items: stretch;
}
.voices-swiper .swiper-slide {
  width: calc(800 / 1920 * 100vw);
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .voices-swiper .swiper-slide {
    width: calc(313 / 393 * 100vw);
    max-width: calc(313 / 393 * 100vw);
  }
}

.voices-card {
  min-height: calc(500 / 1920 * 100vw);
  padding: calc(40 / 1920 * 100vw);
  background: #fff;
  border-radius: calc(12 / 1920 * 100vw);
  box-shadow: 0 4px 6px -2px rgba(24, 28, 36, 0.03), 0 12px 16px -4px rgba(24, 28, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  height: 100%;
}
@media (max-width: 768px) {
  .voices-card {
    min-height: 0;
    padding: calc(20 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    gap: calc(20 / 393 * 100vw);
  }
}

.voices-card__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .voices-card__head {
    flex-direction: column;
    gap: calc(20 / 393 * 100vw);
    align-items: stretch;
  }
}

.voices-card__photo {
  position: relative;
  width: calc(240 / 1920 * 100vw);
  height: calc(160 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .voices-card__photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.voices-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.voices-card__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .voices-card__meta {
    gap: calc(8 / 393 * 100vw);
  }
}

.voices-card__company {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .voices-card__company {
    font-size: calc(22 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
}

.voices-card__talent {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #235493;
}
@media (max-width: 768px) {
  .voices-card__talent {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: 0.05em;
    white-space: normal;
  }
}

.voices-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 1920 * 100vw);
  width: 100%;
}

.voices-card__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .voices-card__text {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.voices__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(8 / 1920 * 100vw);
  width: 100%;
  max-width: calc(600 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .voices__nav {
    position: absolute;
    inset: 0;
    display: block;
    max-width: none;
    width: 100%;
    padding: 0;
    gap: 0;
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .voices__btn--prev {
    position: absolute;
    top: 50%;
    left: 0;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .voices__btn--next {
    position: absolute;
    top: 50%;
    right: 0;
    pointer-events: auto;
  }
}

.voices__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  padding: 0;
  border: 1px solid #eaeef9;
  border-radius: calc(4 / 1920 * 100vw);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .voices__btn {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
    border-radius: calc(4 / 393 * 100vw);
  }
}
.voices__btn img {
  display: block;
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .voices__btn img {
    width: calc(22 / 393 * 100vw);
    height: calc(22 / 393 * 100vw);
  }
}
.voices__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.voices__btn:hover:not(.swiper-button-disabled) {
  border-color: #466ca8;
}
@media (max-width: 768px) {
  .voices__btn {
    box-shadow: 0 2px 8px rgba(24, 28, 36, 0.12);
  }
}

.voices__pagination {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  pointer-events: none;
}
.voices__pagination.swiper-pagination-fraction {
  bottom: auto;
  left: auto;
  width: auto;
}
@media (max-width: 768px) {
  .voices__pagination {
    display: none;
  }
}

.voices__frac {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.voices__frac-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .voices__frac-cell {
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
    border-radius: calc(8 / 393 * 100vw);
  }
}
.voices__frac-cell .swiper-pagination-current,
.voices__frac-cell .swiper-pagination-total {
  display: block;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .voices__frac-cell .swiper-pagination-current,
  .voices__frac-cell .swiper-pagination-total {
    font-size: calc(14 / 393 * 100vw);
  }
}

.voices__frac-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: calc(12 / 1920 * 100vw) calc(8 / 1920 * 100vw);
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  white-space: pre;
}
@media (max-width: 768px) {
  .voices__frac-sep {
    padding: calc(10 / 393 * 100vw) calc(6 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}

.section--step {
  background: #fff;
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--step {
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.step__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step__inner {
    gap: calc(40 / 393 * 100vw);
    max-width: 100%;
  }
}

.step__title {
  width: 100%;
  align-items: center;
}

.step__body {
  display: flex;
  flex-direction: column;
  gap: calc(200 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step__body {
    gap: calc(64 / 393 * 100vw);
  }
}

.step__block {
  display: flex;
  flex-direction: column;
  gap: calc(80 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step__block {
    gap: calc(32 / 393 * 100vw);
  }
}

.step__support-lower {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step__support-lower {
    gap: 0;
  }
}

.step-support-layout {
  width: 100%;
}
@media (max-width: 768px) {
  .step-support-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: calc(32 / 393 * 100vw);
  }
}

.step-support-rail {
  display: none;
}
@media (max-width: 768px) {
  .step-support-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(40 / 393 * 100vw);
    flex-shrink: 0;
    align-self: stretch;
  }
}

.step-support-rail__track {
  flex: 1 1 auto;
  width: 100%;
  min-height: calc(120 / 393 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80 / 393 * 100vw) calc(16 / 393 * 100vw);
  box-sizing: border-box;
  background-image: linear-gradient(180deg, #bbdeff 0%, #466ca8 23.558%, #007bad 56.251%, #235493 100%);
}

.step-support-rail__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 393 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "vert" 1;
}

.step-support-rail__tip {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  line-height: 0;
}
.step-support-rail__tip img {
  display: block;
  width: calc(40 / 393 * 100vw);
  height: calc(16 / 393 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
  transform: scaleY(-1);
}

.step__block-label {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #222;
}
@media (max-width: 768px) {
  .step__block-label {
    font-size: calc(22 / 393 * 100vw);
    line-height: 1.5;
  }
}
.step__block-label--center {
  text-align: center;
}
@media (max-width: 768px) {
  .step__block-label--support {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .step__block--support {
    gap: calc(40 / 393 * 100vw);
  }
}

.step-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-card--flow {
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
  min-height: calc(229 / 1920 * 100vw);
  margin: 0;
  padding: calc(40 / 1920 * 100vw);
  background: #eaeef9;
  border-radius: calc(12 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .step-card--flow {
    min-height: 0;
    padding: calc(24 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    max-width: 100%;
  }
}

.step-card__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step-card__row {
    flex-direction: column;
    align-items: stretch;
    gap: calc(20 / 393 * 100vw);
  }
}

.step-card__media {
  position: relative;
  width: calc(220 / 1920 * 100vw);
  height: calc(147 / 1920 * 100vw);
  flex-shrink: 0;
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .step-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 220/147;
    max-height: none;
  }
}
.step-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .step-card__media img {
    position: absolute;
  }
}

.step-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step-card__content {
    gap: calc(16 / 393 * 100vw);
  }
}

.step-card__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(16 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step-card__heading {
    gap: calc(12 / 393 * 100vw);
    flex-wrap: wrap;
  }
}
.step-card__heading--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: calc(12 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step-card__heading--stack {
    gap: calc(10 / 393 * 100vw);
  }
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  padding: calc(4 / 1920 * 100vw) calc(8 / 1920 * 100vw);
  box-sizing: border-box;
  background: #e22538;
  border-radius: 100px;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .step-card__num {
    width: calc(64 / 393 * 100vw);
    height: calc(26 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(8 / 393 * 100vw);
  }
}

.step-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .step-card__title {
    flex: none;
    width: 100%;
    font-size: calc(18 / 393 * 100vw);
    line-height: 1.5;
  }
}

.step-card__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .step-card__text {
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.8;
  }
}

.step-flow__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(60 / 1920 * 100vw);
  height: calc(60 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .step-flow__connector {
    width: calc(48 / 393 * 100vw);
    height: calc(48 / 393 * 100vw);
  }
}
.step-flow__connector img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.step-support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .step-support {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: calc(64 / 393 * 100vw);
  }
}

.step-card--support {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(32 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step-card--support {
    gap: calc(20 / 393 * 100vw);
  }
}
@media (max-width: 768px) {
  .step-card--support .step-card__heading--stack {
    gap: calc(8 / 393 * 100vw);
  }
}
@media (max-width: 768px) {
  .step-card--support .step-card__text {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
}

.step-card__media--support {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 285/145.109;
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .step-card__media--support {
    border-radius: calc(4 / 393 * 100vw);
  }
}
.step-card__media--support img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.step-card__content--support {
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step-card__content--support {
    gap: calc(16 / 393 * 100vw);
  }
}

.step-banner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .step-banner {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .step__support-lower .step-banner {
    display: none;
  }
}

.step-banner__text {
  margin: 0;
  flex: 1;
  min-height: calc(55 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(12 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(90deg, #bbdeff 0%, #466ca8 23.558%, #007bad 56.251%, #235493 100%);
}
@media (max-width: 768px) {
  .step-banner__text {
    min-height: calc(48 / 393 * 100vw);
    padding: calc(16 / 393 * 100vw) calc(20 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    line-height: 1.7;
  }
}

.step-banner__tip {
  flex-shrink: 0;
  width: calc(22 / 1920 * 100vw);
  min-height: calc(55 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .step-banner__tip {
    width: 100%;
    min-height: 0;
    height: calc(18 / 393 * 100vw);
  }
}
.step-banner__tip img {
  display: block;
  width: calc(55 / 1920 * 100vw);
  height: calc(22 / 1920 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
  transform: rotate(90deg);
  transform-origin: center center;
}
@media (max-width: 768px) {
  .step-banner__tip img {
    width: calc(40 / 393 * 100vw);
    height: calc(16 / 393 * 100vw);
    transform: rotate(90deg);
  }
}

.section--column {
  background: #fff;
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw);
  overflow-x: visible;
}
@media (max-width: 768px) {
  .section--column {
    padding: calc(64 / 393 * 100vw) calc(0 / 393 * 100vw);
    overflow-x: visible;
  }
}

.column__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column__inner {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.column-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: calc(8 / 1920 * 100vw);
  margin: 0;
}
@media (max-width: 768px) {
  .column-heading {
    gap: calc(6 / 393 * 100vw);
  }
}

.column-heading__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(48 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #00326c;
}
@media (max-width: 768px) {
  .column-heading__title {
    font-size: calc(28 / 393 * 100vw);
  }
}

.column-heading__en {
  margin: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #d12f3a;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .column-heading__en {
    font-size: calc(14 / 393 * 100vw);
  }
}

.column-heading__lead {
  margin: calc(16 / 1920 * 100vw) 0 0;
  max-width: calc(720 / 1920 * 100vw);
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .column-heading__lead {
    margin-top: calc(12 / 393 * 100vw);
    max-width: 100%;
    font-size: calc(16 / 393 * 100vw);
    padding: 0 calc(20 / 393 * 100vw);
  }
}

.column__carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column__viewport {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column__viewport {
    gap: calc(24 / 393 * 100vw);
  }
}

.column-swiper {
  width: 100%;
  max-width: 100%;
  padding: 5px 0 !important;
}
@media (max-width: 768px) {
  .column-swiper {
    padding: 0 calc(8 / 393 * 100vw);
    overflow: visible;
  }
}
.column-swiper .swiper-wrapper {
  align-items: stretch;
}
.column-swiper .swiper-slide {
  width: calc(360 / 1920 * 100vw);
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-swiper .swiper-slide {
    width: calc(280 / 393 * 100vw);
    max-width: calc(280 / 393 * 100vw);
  }
}

.column-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: calc(24 / 1920 * 100vw);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d9deee;
  border-radius: calc(12 / 1920 * 100vw);
  box-shadow: 0 2px 8px rgba(24, 28, 36, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  gap: calc(16 / 1920 * 100vw);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}
@media (max-width: 768px) {
  .column-card {
    padding: calc(20 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    gap: calc(14 / 393 * 100vw);
  }
}
.column-card:hover {
  box-shadow: 0 6px 16px rgba(24, 28, 36, 0.1);
  border-color: #d9deee;
}
.column-card:hover .column-card__media img {
  transform: scale(1.04);
}
.column-card:focus-visible {
  outline: 2px solid #466ca8;
  outline-offset: calc(4 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-card:focus-visible {
    outline-offset: calc(3 / 393 * 100vw);
  }
}

.column-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: calc(8 / 1920 * 100vw);
  background: #eaeef9;
}
@media (max-width: 768px) {
  .column-card__media {
    border-radius: calc(8 / 393 * 100vw);
  }
}
.column-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.column-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: calc(12 / 1920 * 100vw);
  min-height: 0;
}
@media (max-width: 768px) {
  .column-card__body {
    gap: calc(10 / 393 * 100vw);
  }
}

.column-card__date {
  margin: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(14 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #666;
}
@media (max-width: 768px) {
  .column-card__date {
    font-size: calc(12 / 393 * 100vw);
  }
}

.column-card__title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #181c24;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
@media (max-width: 768px) {
  .column-card__title {
    font-size: calc(16 / 393 * 100vw);
  }
}

.column-card__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
  margin-top: auto;
  padding-top: calc(2 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-card__cats {
    gap: calc(8 / 393 * 100vw);
    padding-top: calc(2 / 393 * 100vw);
  }
}

.column-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(6 / 1920 * 100vw) calc(12 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(11 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .column-card__tag {
    padding: calc(5 / 393 * 100vw) calc(10 / 393 * 100vw);
    font-size: calc(10 / 393 * 100vw);
  }
}
.column-card__tag--overseas {
  background: #003a67;
}
.column-card__tag--support {
  background: #007bad;
}

.column__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(8 / 1920 * 100vw);
  width: 100%;
  max-width: calc(520 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column__nav {
    max-width: 100%;
    padding: 0 calc(4 / 393 * 100vw);
  }
}

.column__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(44 / 1920 * 100vw);
  height: calc(44 / 1920 * 100vw);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d4efff;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s, filter 0.2s;
}
@media (max-width: 768px) {
  .column__btn {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
}
.column__btn img {
  display: block;
  width: calc(22 / 1920 * 100vw);
  height: calc(22 / 1920 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .column__btn img {
    width: calc(20 / 393 * 100vw);
    height: calc(20 / 393 * 100vw);
  }
}
.column__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.column__btn:hover:not(.swiper-button-disabled) {
  filter: brightness(0.96);
}

.column__pagination {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  line-height: 1;
  color: #4f525c;
  font-weight: normal !important;
}
.column__pagination.swiper-pagination-fraction {
  font-size: calc(16 / 1920 * 100vw);
  bottom: 0;
  top: 0;
}
@media (max-width: 768px) {
  .column__pagination.swiper-pagination-fraction {
    font-size: calc(14 / 393 * 100vw);
  }
}

.column__frac {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
  vertical-align: middle;
}
.column__frac .swiper-pagination-current,
.column__frac .swiper-pagination-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1em;
  font-size: inherit;
  line-height: 1;
  color: #181c24;
}

.column__frac-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 calc(20 / 1920 * 100vw);
  font-weight: 500;
  font-size: inherit;
  line-height: 1;
  color: #c3c7d1;
}
@media (max-width: 768px) {
  .column__frac-sep {
    padding: 0 calc(5 / 393 * 100vw);
  }
}

.column__footer {
  display: flex;
  justify-content: center;
}

.column-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 / 1920 * 100vw);
  min-width: calc(320 / 1920 * 100vw);
  padding: calc(14 / 1920 * 100vw) calc(28 / 1920 * 100vw) calc(14 / 1920 * 100vw) calc(36 / 1920 * 100vw);
  box-sizing: border-box;
  border: 2px solid #d9deee;
  border-radius: 100px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #00326c;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .column-view-more {
    min-width: 0;
    width: 100%;
    max-width: calc(340 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(24 / 393 * 100vw) calc(12 / 393 * 100vw) calc(28 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    gap: calc(12 / 393 * 100vw);
  }
}
.column-view-more:hover {
  background: #00326c;
  color: #fff;
}
.column-view-more:hover .column-view-more__icon {
  background-color: #fff;
  background-image: url("src/images/right-arrow-blue.png");
}
.column-view-more:focus-visible {
  outline: 2px solid #466ca8;
  outline-offset: calc(4 / 1920 * 100vw);
}

.column-view-more__text {
  flex: 1;
  text-align: center;
}

.column-view-more__icon {
  flex-shrink: 0;
  width: calc(36 / 1920 * 100vw);
  height: calc(36 / 1920 * 100vw);
  border-radius: 50%;
  background-color: #00326c;
  background-image: url("src/images/right-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}
@media (max-width: 768px) {
  .column-view-more__icon {
    width: calc(32 / 393 * 100vw);
    height: calc(32 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .column-archive__cta .cta-bar.sp-only,
  .column-single__cta .cta-bar.sp-only,
  .service-overseas__cta .cta-bar.sp-only,
  .service-support__cta .cta-bar.sp-only {
    display: none !important;
  }
}

.column-page-heading {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.column-page-heading__bg {
  position: absolute;
  inset: 0;
  background-color: #00326c;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.column-page-heading__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 50, 108, 0.88) 0%, rgba(0, 50, 108, 0.55) 45%, rgba(0, 50, 108, 0.72) 100%);
  pointer-events: none;
}

.column-page-heading__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(160 / 1920 * 100vw);
  max-width: calc(1920 / 1920 * 100vw);
  margin: 0 auto;
  padding: calc(20 / 1920 * 100vw) calc(120 / 1920 * 100vw) calc(80 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-page-heading__inner {
    gap: calc(48 / 393 * 100vw);
    padding: calc(16 / 393 * 100vw) calc(20 / 393 * 100vw) calc(48 / 393 * 100vw);
  }
}

.column-page-heading__breadcrumbs {
  width: 100%;
}

.column-page-heading__breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-page-heading__breadcrumbs-item {
  display: flex;
  align-items: center;
  min-height: calc(40 / 1920 * 100vw);
  padding: calc(8 / 1920 * 100vw);
  border-radius: calc(4 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-page-heading__breadcrumbs-item {
    min-height: calc(36 / 393 * 100vw);
    padding: calc(6 / 393 * 100vw);
  }
}

.column-page-heading__breadcrumbs-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: calc(0.75 / 1920 * 100vw);
  color: #d4efff;
  text-decoration: none;
  border-bottom: 1px solid #d4efff;
  padding-bottom: 0;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .column-page-heading__breadcrumbs-link {
    font-size: calc(13 / 393 * 100vw);
    letter-spacing: calc(0.5 / 393 * 100vw);
  }
}
.column-page-heading__breadcrumbs-link:hover, .column-page-heading__breadcrumbs-link:focus-visible {
  opacity: 0.85;
  outline: none;
}

.column-page-heading__breadcrumbs-sep {
  flex-shrink: 0;
  width: calc(20 / 1920 * 100vw);
  height: calc(20 / 1920 * 100vw);
  margin: 0 calc(2 / 1920 * 100vw);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23d4efff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 768px) {
  .column-page-heading__breadcrumbs-sep {
    width: calc(18 / 393 * 100vw);
    height: calc(18 / 393 * 100vw);
  }
}

.column-page-heading__breadcrumbs-current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: calc(0.75 / 1920 * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .column-page-heading__breadcrumbs-current {
    font-size: calc(13 / 393 * 100vw);
  }
}

.column-page-heading__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .column-page-heading__titles {
    gap: calc(12 / 393 * 100vw);
  }
}

.column-page-heading__title, .column-page-heading__title--section {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(86 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: calc(4.3 / 1920 * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .column-page-heading__title, .column-page-heading__title--section {
    font-size: calc(32 / 393 * 100vw);
    letter-spacing: calc(1.6 / 393 * 100vw);
  }
}

.column-page-heading__en {
  margin: 0;
  padding-left: calc(6 / 1920 * 100vw);
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(25 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: calc(1.25 / 1920 * 100vw);
  text-transform: uppercase;
  color: #ffbfb3;
}
@media (max-width: 768px) {
  .column-page-heading__en {
    padding-left: calc(4 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: calc(0.8 / 393 * 100vw);
  }
}

.column-page-heading__breadcrumbs-current--truncate {
  display: inline-block;
  max-width: min(calc(560 / 1920 * 100vw), 50vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .column-page-heading__breadcrumbs-current--truncate {
    max-width: min(calc(200 / 393 * 100vw), 42vw);
  }
}

.single-post {
  padding: calc(80 / 1920 * 100vw) 0 calc(120 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .single-post {
    padding: calc(40 / 393 * 100vw) 0 calc(64 / 393 * 100vw);
  }
}

.single-post__inner {
  width: 100%;
  max-width: calc(880 / 1920 * 100vw);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.single-post__header {
  margin-bottom: calc(48 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .single-post__header {
    margin-bottom: calc(32 / 393 * 100vw);
  }
}

.single-post__title {
  margin: 0 0 calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(44 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: calc(2.2 / 1920 * 100vw);
  color: #181c24;
  word-break: break-word;
}
@media (max-width: 768px) {
  .single-post__title {
    margin-bottom: calc(12 / 393 * 100vw);
    font-size: calc(24 / 393 * 100vw);
    letter-spacing: calc(1.2 / 393 * 100vw);
  }
}

.single-post__meta {
  margin: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(0.8 / 1920 * 100vw);
  color: #4f525c;
}
@media (max-width: 768px) {
  .single-post__meta {
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: calc(0.6 / 393 * 100vw);
  }
}

.section--column-single {
  padding: calc(80 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(120 / 1920 * 100vw);
  background: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .section--column-single {
    padding: calc(40 / 393 * 100vw) calc(20 / 393 * 100vw) calc(64 / 393 * 100vw);
  }
}

.column-single__inner {
  width: 100%;
  max-width: calc(880 / 1920 * 100vw);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.column-single__article {
  width: 100%;
}

.column-single__header {
  margin-bottom: calc(48 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__header {
    margin-bottom: calc(32 / 393 * 100vw);
  }
}

.column-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 / 1920 * 100vw);
  margin-bottom: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__meta {
    gap: calc(12 / 393 * 100vw);
    margin-bottom: calc(20 / 393 * 100vw);
  }
}

.column-single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__tags {
    gap: calc(8 / 393 * 100vw);
  }
}

.column-single__date {
  margin: 0;
  margin-left: auto;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(0.8 / 1920 * 100vw);
  color: #4f525c;
}
@media (max-width: 768px) {
  .column-single__date {
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: calc(0.6 / 393 * 100vw);
  }
}

.column-single__title {
  margin: 0 0 calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(44 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: calc(2.2 / 1920 * 100vw);
  color: #181c24;
  word-break: break-word;
}
@media (max-width: 768px) {
  .column-single__title {
    margin-bottom: calc(12 / 393 * 100vw);
    font-size: calc(24 / 393 * 100vw);
    letter-spacing: calc(1.2 / 393 * 100vw);
  }
}

.column-single__subtitle {
  margin: 0 0 calc(32 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: calc(1.05 / 1920 * 100vw);
  color: #4f525c;
  word-break: break-word;
}
@media (max-width: 768px) {
  .column-single__subtitle {
    margin-bottom: calc(24 / 393 * 100vw);
    font-size: calc(18 / 393 * 100vw);
    letter-spacing: calc(0.54 / 393 * 100vw);
  }
}

.column-single__thumb {
  margin: 0;
  width: 100%;
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f3f6ff;
}
@media (max-width: 768px) {
  .column-single__thumb {
    border-radius: calc(8 / 393 * 100vw);
  }
}

.column-single__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column-single__entry,
.single-post__entry {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: calc(0.54 / 1920 * 100vw);
  color: #181c24;
  word-break: break-word;
}
@media (max-width: 768px) {
  .column-single__entry,
  .single-post__entry {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: calc(0.48 / 393 * 100vw);
  }
}
.column-single__entry > *:first-child,
.single-post__entry > *:first-child {
  margin-top: 0;
}
.column-single__entry > *:last-child,
.single-post__entry > *:last-child {
  margin-bottom: 0;
}
.column-single__entry > p:first-child,
.single-post__entry > p:first-child {
  font-weight: 700;
  letter-spacing: calc(0.9 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__entry > p:first-child,
  .single-post__entry > p:first-child {
    letter-spacing: calc(0.8 / 393 * 100vw);
  }
}
.column-single__entry p,
.single-post__entry p {
  margin: 0 0 calc(24 / 1920 * 100vw);
  font-weight: 500;
}
@media (max-width: 768px) {
  .column-single__entry p,
  .single-post__entry p {
    margin-bottom: calc(20 / 393 * 100vw);
  }
}
.column-single__entry h2,
.column-single__entry h3,
.single-post__entry h2,
.single-post__entry h3 {
  margin: calc(64 / 1920 * 100vw) 0 calc(20 / 1920 * 100vw);
  padding-bottom: calc(8 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(28 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: calc(1.4 / 1920 * 100vw);
  color: #181c24;
  border-bottom: 1px solid #d9deee;
}
@media (max-width: 768px) {
  .column-single__entry h2,
  .column-single__entry h3,
  .single-post__entry h2,
  .single-post__entry h3 {
    margin: calc(40 / 393 * 100vw) 0 calc(16 / 393 * 100vw);
    padding-bottom: calc(8 / 393 * 100vw);
    font-size: calc(22 / 393 * 100vw);
    letter-spacing: calc(1.1 / 393 * 100vw);
  }
}
.column-single__entry > h2:first-child,
.column-single__entry > h3:first-child,
.single-post__entry > h2:first-child,
.single-post__entry > h3:first-child {
  margin-top: 0;
}
.column-single__entry h4,
.single-post__entry h4 {
  margin: calc(40 / 1920 * 100vw) 0 calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: calc(1.1 / 1920 * 100vw);
  color: #181c24;
}
@media (max-width: 768px) {
  .column-single__entry h4,
  .single-post__entry h4 {
    margin: calc(28 / 393 * 100vw) 0 calc(12 / 393 * 100vw);
    font-size: calc(18 / 393 * 100vw);
    letter-spacing: calc(0.9 / 393 * 100vw);
  }
}
.column-single__entry ul,
.column-single__entry ol,
.single-post__entry ul,
.single-post__entry ol {
  margin: calc(20 / 1920 * 100vw) 0 calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__entry ul,
  .column-single__entry ol,
  .single-post__entry ul,
  .single-post__entry ol {
    margin: calc(16 / 393 * 100vw) 0 calc(20 / 393 * 100vw);
  }
}
.column-single__entry ol,
.single-post__entry ol {
  padding-left: calc(28 / 1920 * 100vw);
  list-style-position: outside;
}
@media (max-width: 768px) {
  .column-single__entry ol,
  .single-post__entry ol {
    padding-left: calc(24 / 393 * 100vw);
  }
}
.column-single__entry ul,
.single-post__entry ul {
  list-style: none;
  padding: calc(20 / 1920 * 100vw) 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .column-single__entry ul,
  .single-post__entry ul {
    padding: calc(16 / 393 * 100vw) 0;
  }
}
.column-single__entry ul ul,
.single-post__entry ul ul {
  margin-top: calc(8 / 1920 * 100vw);
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .column-single__entry ul ul,
  .single-post__entry ul ul {
    margin-top: calc(6 / 393 * 100vw);
  }
}
.column-single__entry ul > li,
.single-post__entry ul > li {
  position: relative;
  padding-left: calc(30 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__entry ul > li,
  .single-post__entry ul > li {
    padding-left: calc(26 / 393 * 100vw);
  }
}
.column-single__entry ul > li::before,
.single-post__entry ul > li::before {
  content: "";
  position: absolute;
  left: calc(8 / 1920 * 100vw);
  top: calc(11 / 1920 * 100vw);
  width: calc(10 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
  border-radius: 50%;
  background: #181c24;
}
@media (max-width: 768px) {
  .column-single__entry ul > li::before,
  .single-post__entry ul > li::before {
    left: calc(6 / 393 * 100vw);
    top: calc(9 / 393 * 100vw);
    width: calc(8 / 393 * 100vw);
    height: calc(8 / 393 * 100vw);
  }
}
.column-single__entry li + li,
.single-post__entry li + li {
  margin-top: calc(8 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__entry li + li,
  .single-post__entry li + li {
    margin-top: calc(8 / 393 * 100vw);
  }
}
.column-single__entry a,
.single-post__entry a {
  color: #466ca8;
  text-decoration: underline;
  text-underline-offset: calc(3 / 1920 * 100vw);
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .column-single__entry a,
  .single-post__entry a {
    text-underline-offset: calc(2 / 393 * 100vw);
  }
}
.column-single__entry a:hover, .column-single__entry a:focus-visible,
.single-post__entry a:hover,
.single-post__entry a:focus-visible {
  color: #00326c;
  outline: none;
}
.column-single__entry img,
.single-post__entry img {
  max-width: 100%;
  height: auto;
  border-radius: calc(4 / 1920 * 100vw);
}
.column-single__entry blockquote,
.single-post__entry blockquote {
  margin: calc(32 / 1920 * 100vw) 0;
  padding: calc(20 / 1920 * 100vw) calc(24 / 1920 * 100vw);
  border-left: calc(4 / 1920 * 100vw) solid #d4efff;
  background: #fafcff;
}
@media (max-width: 768px) {
  .column-single__entry blockquote,
  .single-post__entry blockquote {
    margin: calc(24 / 393 * 100vw) 0;
    padding: calc(16 / 393 * 100vw) calc(18 / 393 * 100vw);
  }
}

.column-single__pager {
  margin-top: calc(64 / 1920 * 100vw);
  padding-top: calc(24 / 1920 * 100vw);
  border-top: 1px solid #eaeef9;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-single__pager {
    margin-top: calc(40 / 393 * 100vw);
    padding-top: calc(20 / 393 * 100vw);
  }
}

.column-single__pager-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-single__pager-row {
    flex-direction: column;
    gap: calc(20 / 393 * 100vw);
  }
}

.column-single__pager-col {
  flex: 1 1 0;
  min-width: 0;
}
.column-single__pager-col--prev {
  display: flex;
  justify-content: flex-start;
}
.column-single__pager-col--next {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .column-single__pager-col--next {
    align-items: flex-start;
    text-align: left;
  }
}

.column-single__pager-link {
  display: inline-flex;
  align-items: center;
  gap: calc(10 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: calc(0.48 / 1920 * 100vw);
  color: #00326c;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .column-single__pager-link {
    gap: calc(8 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: calc(0.45 / 393 * 100vw);
  }
}
.column-single__pager-link:hover, .column-single__pager-link:focus-visible {
  opacity: 0.85;
  outline: none;
}
.column-single__pager-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.column-single__pager-icon {
  flex-shrink: 0;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(24 / 1920 * 100vw) calc(24 / 1920 * 100vw);
  border: 1px solid #d9deee;
}
@media (max-width: 768px) {
  .column-single__pager-icon {
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
    background-size: calc(20 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.column-single__pager-icon--prev {
  order: -1;
  background-color: #fafcff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 6l-6 6 6 6' stroke='%234f525c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.column-single__pager-icon--next {
  background-color: #d4efff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23235493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.column-single__pager-link--next .column-single__pager-icon--next {
  order: 1;
}

.column-single__pager-next-title {
  margin: calc(12 / 1920 * 100vw) 0 0;
  max-width: calc(400 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: calc(0.42 / 1920 * 100vw);
  color: #4f525c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
@media (max-width: 768px) {
  .column-single__pager-next-title {
    margin-top: calc(8 / 393 * 100vw);
    max-width: 100%;
    font-size: calc(13 / 393 * 100vw);
  }
}

.column-archive-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
  padding-bottom: calc(20 / 1920 * 100vw);
  border-bottom: 1px solid #d9deee;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-archive-filter {
    flex-direction: column;
    gap: calc(16 / 393 * 100vw);
    padding-bottom: calc(16 / 393 * 100vw);
  }
}

.column-archive-filter__label {
  margin: 0;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: calc(1.1 / 1920 * 100vw);
  color: #181c24;
}
@media (max-width: 768px) {
  .column-archive-filter__label {
    font-size: calc(18 / 393 * 100vw);
    letter-spacing: calc(0.9 / 393 * 100vw);
  }
}

.column-archive-filter__list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(80 / 1920 * 100vw);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
@media (max-width: 768px) {
  .column-archive-filter__list {
    justify-content: flex-start;
    gap: calc(16 / 393 * 100vw) calc(24 / 393 * 100vw);
    width: 100%;
  }
}

.column-archive-filter__item {
  margin: 0;
  padding: 0;
}

.column-archive-filter__option {
  display: inline-flex;
  align-items: center;
  gap: calc(16 / 1920 * 100vw);
  padding: calc(8 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: calc(0.9 / 1920 * 100vw);
  color: #181c24;
  text-decoration: none;
  border-radius: calc(4 / 1920 * 100vw);
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .column-archive-filter__option {
    gap: calc(12 / 393 * 100vw);
    padding: calc(6 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: calc(0.6 / 393 * 100vw);
  }
}
.column-archive-filter__option:hover, .column-archive-filter__option:focus-visible {
  opacity: 0.85;
  outline: 2px solid #466ca8;
  outline-offset: calc(2 / 1920 * 100vw);
}

.column-archive-filter__radio {
  position: relative;
  flex-shrink: 0;
  width: calc(20 / 1920 * 100vw);
  height: calc(20 / 1920 * 100vw);
  border: 2px solid #466ca8;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
}
@media (max-width: 768px) {
  .column-archive-filter__radio {
    width: calc(18 / 393 * 100vw);
    height: calc(18 / 393 * 100vw);
  }
}

.column-archive-filter__option.is-active .column-archive-filter__radio {
  background: #466ca8;
  border-color: #466ca8;
  box-shadow: inset 0 0 0 calc(4 / 1920 * 100vw) #fff;
}
@media (max-width: 768px) {
  .column-archive-filter__option.is-active .column-archive-filter__radio {
    box-shadow: inset 0 0 0 calc(3 / 393 * 100vw) #fff;
  }
}

.column-archive-filter__text {
  white-space: nowrap;
}

.section--column-archive {
  background: #fff;
  padding: calc(120 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--column-archive {
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(64 / 393 * 100vw);
  }
}

.column-archive__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-archive__inner {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.column-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(32 / 1920 * 100vw);
  width: 100%;
  align-items: stretch;
}
@media (max-width: 768px) {
  .column-archive__grid {
    grid-template-columns: 1fr;
    gap: calc(24 / 393 * 100vw);
  }
}

.section--column-archive .column-card {
  padding: calc(32 / 1920 * 100vw);
  gap: calc(32 / 1920 * 100vw);
  box-shadow: 0 calc(4 / 1920 * 100vw) calc(16 / 1920 * 100vw) rgba(24, 28, 36, 0.08), 0 calc(4 / 1920 * 100vw) calc(6 / 1920 * 100vw) rgba(24, 28, 36, 0.03);
}
@media (max-width: 768px) {
  .section--column-archive .column-card {
    padding: calc(24 / 393 * 100vw);
    gap: calc(24 / 393 * 100vw);
  }
}
.section--column-archive .column-card:hover {
  box-shadow: 0 calc(6 / 1920 * 100vw) calc(20 / 1920 * 100vw) rgba(24, 28, 36, 0.1), 0 calc(4 / 1920 * 100vw) calc(8 / 1920 * 100vw) rgba(24, 28, 36, 0.04);
}
.section--column-archive .column-card__media {
  aspect-ratio: 16/9;
}
.section--column-archive .column-card__body {
  gap: 0;
}
.section--column-archive .column-card__date {
  margin: 0 0 calc(8 / 1920 * 100vw) 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: calc(0.75 / 1920 * 100vw);
  color: #4f525c;
}
@media (max-width: 768px) {
  .section--column-archive .column-card__date {
    margin-bottom: calc(6 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}
.section--column-archive .column-card__title {
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: calc(1.1 / 1920 * 100vw);
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
@media (max-width: 768px) {
  .section--column-archive .column-card__title {
    font-size: calc(18 / 393 * 100vw);
    letter-spacing: calc(0.8 / 393 * 100vw);
  }
}
.section--column-archive .column-card__cats {
  margin-top: calc(32 / 1920 * 100vw);
  padding-top: 0;
}
@media (max-width: 768px) {
  .section--column-archive .column-card__cats {
    margin-top: calc(24 / 393 * 100vw);
  }
}
.section--column-archive .column-card__tag {
  padding: calc(2 / 1920 * 100vw) calc(12 / 1920 * 100vw);
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: calc(0.75 / 1920 * 100vw);
  border-radius: calc(16 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--column-archive .column-card__tag {
    padding: calc(2 / 393 * 100vw) calc(10 / 393 * 100vw);
    font-size: calc(13 / 393 * 100vw);
    border-radius: calc(14 / 393 * 100vw);
  }
}
.section--column-archive .column-card__tag--overseas {
  background: #003a67;
}
.section--column-archive .column-card__tag--support {
  background: #007bad;
}

.column-archive__empty {
  margin: 0;
  padding: calc(40 / 1920 * 100vw) 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  color: #4f525c;
}
@media (max-width: 768px) {
  .column-archive__empty {
    padding: calc(32 / 393 * 100vw) 0;
    font-size: calc(15 / 393 * 100vw);
  }
}

.column-archive__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  padding-top: calc(24 / 1920 * 100vw);
  border-top: 1px solid #eaeef9;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .column-archive__pagination {
    padding-top: calc(20 / 393 * 100vw);
  }
}
.column-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(40 / 1920 * 100vw);
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  margin: 0;
  padding: calc(12 / 1920 * 100vw);
  box-sizing: border-box;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1;
  color: #4f525c;
  text-decoration: none;
  border: none;
  border-radius: calc(8 / 1920 * 100vw);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .column-archive__pagination .page-numbers {
    min-width: calc(36 / 393 * 100vw);
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}
.column-archive__pagination .page-numbers:hover, .column-archive__pagination .page-numbers:focus-visible {
  background: rgba(212, 239, 255, 0.5);
  color: #00326c;
  outline: none;
}
.column-archive__pagination .page-numbers.current {
  padding: 0;
  background: #466ca8;
  border-radius: 50%;
  color: #fff;
  pointer-events: none;
}
.column-archive__pagination .page-numbers.dots {
  min-width: calc(40 / 1920 * 100vw);
  width: auto;
  border: none;
  background: transparent;
  pointer-events: none;
  font-family: "Noto Sans", "Barlow", sans-serif;
}
.column-archive__pagination .prev.page-numbers,
.column-archive__pagination .next.page-numbers {
  flex-shrink: 0;
  width: calc(40 / 1920 * 100vw);
  min-width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(24 / 1920 * 100vw) calc(24 / 1920 * 100vw);
  border: 1px solid #d9deee;
}
@media (max-width: 768px) {
  .column-archive__pagination .prev.page-numbers,
  .column-archive__pagination .next.page-numbers {
    width: calc(36 / 393 * 100vw);
    min-width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
    background-size: calc(20 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.column-archive__pagination .prev.page-numbers {
  background-color: #fafcff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 6l-6 6 6 6' stroke='%234f525c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.column-archive__pagination .next.page-numbers {
  background-color: #d4efff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23235493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.column-archive__pagination span.page-numbers.prev,
.column-archive__pagination span.page-numbers.next {
  pointer-events: none;
  opacity: 0.55;
}
.column-archive__pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: calc(8 / 1920 * 100vw);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .column-archive__pagination ul {
    gap: calc(6 / 393 * 100vw);
  }
}
.column-archive__pagination ul > li:first-child {
  margin-right: calc(32 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-archive__pagination ul > li:first-child {
    margin-right: calc(12 / 393 * 100vw);
  }
}
.column-archive__pagination ul > li:last-child {
  margin-left: calc(32 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .column-archive__pagination ul > li:last-child {
    margin-left: calc(12 / 393 * 100vw);
  }
}
.column-archive__pagination li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.column-archive__pagination .navigation, .column-archive__pagination.navigation {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section--company {
  background: #f3f6ff;
  border-radius: 40px;
  padding: calc(160 / 1920 * 100vw) calc(360 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--company {
    border-radius: calc(40 / 393 * 100vw);
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.company__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .company__inner {
    max-width: 100%;
    gap: calc(40 / 393 * 100vw);
  }
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .company-list {
    gap: calc(20 / 393 * 100vw);
  }
}

.company-list__row {
  display: flex;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  padding: calc(24 / 1920 * 100vw) calc(8 / 1920 * 100vw) 0;
  border-top: 1px solid #d9deee;
  font-size: calc(18 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .company-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 / 393 * 100vw);
    padding: calc(16 / 393 * 100vw) 0 0;
    font-size: calc(16 / 393 * 100vw);
  }
}
.company-list__row:first-child {
  padding-top: calc(24 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .company-list__row:first-child {
    padding-top: calc(16 / 393 * 100vw);
  }
}
.company-list__row dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181c24;
  width: calc(400 / 1920 * 100vw);
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .company-list__row dt {
    width: 100%;
  }
}
.company-list__row dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
  flex: 1;
  min-width: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .company-list__row dd {
    padding-left: 0;
  }
}

.section--contact {
  background: #fff;
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .section--contact {
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.contact__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__inner {
    max-width: 100%;
  }
}

.contact__grid {
  display: flex;
  gap: calc(120 / 1920 * 100vw);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact__grid {
    flex-direction: column;
    gap: calc(40 / 393 * 100vw);
  }
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  width: calc(440 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact__left {
    width: 100%;
  }
}

.contact__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  margin: 0;
}
@media (max-width: 768px) {
  .contact__lead {
    font-size: calc(16 / 393 * 100vw);
  }
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact__channels {
    gap: calc(20 / 393 * 100vw);
  }
}

.contact-channel {
  display: flex;
  align-items: center;
  min-height: calc(114 / 1920 * 100vw);
  padding: calc(32 / 1920 * 100vw);
  background: #fff;
  border: 2px solid #d9deee;
  border-radius: 12px;
  text-decoration: none;
  color: #181c24;
  transition: border-color 0.2s;
}
@media (max-width: 768px) {
  .contact-channel {
    padding: calc(20 / 393 * 100vw);
    min-height: auto;
  }
}
.contact-channel:hover {
  border-color: #466ca8;
}
.contact-channel--tel {
  align-items: center;
}

.contact-channel__icon {
  width: calc(50 / 1920 * 100vw);
  height: calc(50 / 1920 * 100vw);
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: calc(20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-channel__icon {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
}
.contact-channel__icon--line {
  background-image: url("src/images/dbbfecaddf4cf1a4c1d9607527db2818b5912462.png");
}
.contact-channel__icon--tel {
  background-image: url("src/images/tel.png");
}

.contact-channel__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-channel__label {
    font-size: calc(18 / 393 * 100vw);
  }
}

.contact-channel__tel {
  display: flex;
  flex-direction: column;
  gap: calc(4 / 1920 * 100vw);
}

.contact-channel__number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-channel__number {
    font-size: calc(18 / 393 * 100vw);
  }
}

.contact-channel__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .contact-channel__time {
    font-size: calc(14 / 393 * 100vw);
  }
}

.contact-channel__spacer {
  flex: 1 0 0;
  min-width: calc(16 / 1920 * 100vw);
}

.contact-channel__arrow {
  flex-shrink: 0;
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
  margin-left: auto;
  background: url("src/images/right.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  .contact-channel__arrow {
    width: calc(20 / 393 * 100vw);
    height: calc(20 / 393 * 100vw);
  }
}

.contact-channel--tel .contact-channel__arrow {
  display: none;
}

.contact__form-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  background: #fafcff;
  border: 1.333px solid #eaeef9;
  border-radius: 12px;
  padding: calc(64 / 1920 * 100vw) calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact__form-wrap {
    padding: calc(32 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.contact__form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 / 1920 * 100vw);
}

.contact__form-icon {
  width: calc(50 / 1920 * 100vw);
  height: calc(50 / 1920 * 100vw);
  flex-shrink: 0;
  background: url("src/images/send.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  .contact__form-icon {
    width: calc(50 / 393 * 100vw);
    height: calc(50 / 393 * 100vw);
  }
}

.contact__form-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #181c24;
  margin: 0;
}
@media (max-width: 768px) {
  .contact__form-title {
    font-size: calc(18 / 393 * 100vw);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: calc(40 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-form {
    gap: calc(20 / 393 * 100vw);
  }
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-form__row {
    gap: calc(12 / 393 * 100vw);
  }
}
.contact-form__row--address .contact-form__address-fields {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-form__row--address .contact-form__address-fields {
    gap: calc(12 / 393 * 100vw);
  }
}

.contact-form__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .contact-form__label {
    font-size: calc(16 / 393 * 100vw);
  }
}

.contact-form__input {
  width: 100%;
  padding: calc(12 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  border: 1px solid #d9deee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(24, 28, 36, 0.05);
}
@media (max-width: 768px) {
  .contact-form__input {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
}
.contact-form__input::-moz-placeholder {
  color: #c3c7d1;
}
.contact-form__input::placeholder {
  color: #c3c7d1;
}
.contact-form__input--zip {
  border-width: 2px;
}
.contact-form__input.contact-form__textarea {
  resize: vertical;
  min-height: calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-form__input.contact-form__textarea {
    min-height: calc(100 / 393 * 100vw);
  }
}

.contact-form .btn--submit {
  margin: 0 auto;
}

.contact-form--cf7 {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  width: 100%;
}
.contact-form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
}
.contact-form--cf7 .wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 1920 * 100vw);
  margin: 0;
}
.contact-form--cf7 .wpcf7-form label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-form label {
    font-size: calc(16 / 393 * 100vw);
  }
}
.contact-form--cf7 .wpcf7-form label br {
  display: none;
}
.contact-form--cf7 .wpcf7-form input[type=text],
.contact-form--cf7 .wpcf7-form input[type=email],
.contact-form--cf7 .wpcf7-form input[type=tel],
.contact-form--cf7 .wpcf7-form textarea {
  width: 100%;
  position: relative;
  padding: calc(12 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  margin-top: calc(8 / 1920 * 100vw);
  border: 1px solid #d9deee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(24, 28, 36, 0.05);
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-form input[type=text],
  .contact-form--cf7 .wpcf7-form input[type=email],
  .contact-form--cf7 .wpcf7-form input[type=tel],
  .contact-form--cf7 .wpcf7-form textarea {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
}
.contact-form--cf7 .wpcf7-form input[type=text]::-moz-placeholder, .contact-form--cf7 .wpcf7-form input[type=email]::-moz-placeholder, .contact-form--cf7 .wpcf7-form input[type=tel]::-moz-placeholder, .contact-form--cf7 .wpcf7-form textarea::-moz-placeholder {
  color: #c3c7d1;
}
.contact-form--cf7 .wpcf7-form input[type=text]::placeholder,
.contact-form--cf7 .wpcf7-form input[type=email]::placeholder,
.contact-form--cf7 .wpcf7-form input[type=tel]::placeholder,
.contact-form--cf7 .wpcf7-form textarea::placeholder {
  color: #c3c7d1;
}
.contact-form--cf7 .wpcf7-form textarea {
  resize: vertical;
  min-height: calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-form textarea {
    min-height: calc(100 / 393 * 100vw);
  }
}
.contact-form--cf7 .wpcf7-submit-wrap, .contact-form--cf7 .wpcf7-back-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: calc(343 / 1920 * 100vw);
  height: calc(76 / 1920 * 100vw);
  margin: 0 auto;
  background: #00326c;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-submit-wrap, .contact-form--cf7 .wpcf7-back-wrap {
    height: calc(56 / 393 * 100vw);
    max-width: 100%;
  }
}
.contact-form--cf7 .wpcf7-submit-wrap::after, .contact-form--cf7 .wpcf7-back-wrap::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  width: calc(32 / 1920 * 100vw);
  height: calc(32 / 1920 * 100vw);
  border-radius: 999px;
  background-color: #fff;
  background-image: url("src/images/right-arrow-blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-submit-wrap::after, .contact-form--cf7 .wpcf7-back-wrap::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}
.contact-form--cf7 .wpcf7-back-wrap {
  background: transparent;
}
.contact-form--cf7 .wpcf7-back-wrap::after {
  background-color: #00326c;
  background-image: url("src/images/right-arrow-white.png");
}
.contact-form--cf7 .wpcf7-form .wpcf7-submit {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  padding: calc(8 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  padding-right: calc(70 / 1920 * 100vw);
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  .contact-form--cf7 .wpcf7-form .wpcf7-submit {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
}
.contact-form--cf7 .wpcf7-response-output {
  margin: calc(16 / 1920 * 100vw) 0 0;
  padding: calc(12 / 1920 * 100vw);
  border: none;
  border-radius: 4px;
  font-size: calc(14 / 1920 * 100vw);
}
.contact-form--cf7 .wpcf7-not-valid-tip {
  font-size: calc(14 / 1920 * 100vw);
  color: #e22538;
}

.contact-confirm__list.contact-form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-confirm__list.contact-form--cf7 .wpcf7-form > p {
  margin: 0;
}
.contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n+1) {
  padding: calc(24 / 1920 * 100vw) calc(8 / 1920 * 100vw) 0;
  border-top: 1px solid #d9deee;
}
@media (max-width: 768px) {
  .contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n+1) {
    padding: calc(16 / 393 * 100vw) 0 0;
  }
}
.contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n+1) br {
  display: none;
}
.contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n+1) strong {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n+1) strong {
    font-size: calc(16 / 393 * 100vw);
  }
}
.contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n) {
  padding: 0 calc(8 / 1920 * 100vw) calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .contact-confirm__list.contact-form--cf7 .wpcf7-form > p:nth-of-type(2n) {
    font-size: calc(16 / 393 * 100vw);
    padding: 0 0 calc(16 / 393 * 100vw);
  }
}

.contact-confirm,
.contact-thankyou {
  padding: calc(80 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(120 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-confirm,
  .contact-thankyou {
    padding: calc(40 / 393 * 100vw) calc(10 / 393 * 100vw) calc(64 / 393 * 100vw);
  }
}

.contact-confirm__inner,
.contact-thankyou__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  background: #fafcff;
  border: 1px solid #eaeef9;
  border-radius: 12px;
  padding: calc(64 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-confirm__inner,
  .contact-thankyou__inner {
    max-width: 100%;
    padding: calc(16 / 393 * 100vw);
    gap: calc(40 / 393 * 100vw);
  }
}

.contact-confirm__title,
.contact-thankyou__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(44 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-confirm__title,
  .contact-thankyou__title {
    font-size: calc(24 / 393 * 100vw);
  }
}

.contact-confirm__list {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-confirm__row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-confirm__divider {
  height: 1px;
  background: #d9deee;
  width: 100%;
}

.contact-confirm__content {
  display: flex;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  padding: calc(40 / 1920 * 100vw) calc(8 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .contact-confirm__content {
    flex-direction: column;
    gap: calc(12 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) 0;
    align-items: flex-start;
  }
}

.contact-confirm__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181c24;
  width: calc(200 / 1920 * 100vw);
  flex-shrink: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-confirm__label {
    font-size: calc(16 / 393 * 100vw);
    width: 100%;
  }
}

.contact-confirm__value {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4f525c;
  margin: 0;
  flex: 1;
  min-width: 0;
}
.contact-confirm__value.pre-wrap {
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .contact-confirm__value {
    font-size: calc(16 / 393 * 100vw);
    line-height: 1.6;
  }
}

.contact-confirm__actions,
.contact-thankyou__actions {
  display: flex;
  gap: calc(80 / 1920 * 100vw);
  width: 100%;
  justify-content: center;
  margin-top: calc(40 / 1920 * 100vw);
}
.contact-confirm__actions p,
.contact-thankyou__actions p {
  max-width: calc(343 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .contact-confirm__actions p,
  .contact-thankyou__actions p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-confirm__actions,
  .contact-thankyou__actions {
    flex-direction: column;
    gap: calc(24 / 393 * 100vw);
  }
}

.contact-confirm__submit-form {
  max-width: calc(343 / 1920 * 100vw);
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-confirm__submit-form {
    max-width: 100%;
  }
}

.contact-confirm .btn--outline,
.contact-thankyou .btn--outline,
.error-404 .btn--outline,
.wpcf7-back {
  position: relative;
  height: calc(76 / 1920 * 100vw);
  max-width: calc(343 / 1920 * 100vw);
  width: 100%;
  padding: calc(8 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  padding-right: calc(56 / 1920 * 100vw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d9deee;
  border-radius: 100px;
  background: #fff;
  color: #181c24;
  text-decoration: none;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #181c24;
  cursor: pointer;
  margin-top: 0;
}
@media (max-width: 768px) {
  .contact-confirm .btn--outline,
  .contact-thankyou .btn--outline,
  .error-404 .btn--outline,
  .wpcf7-back {
    height: calc(56 / 393 * 100vw);
    max-width: 100%;
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #181c24;
    background: #fff;
    max-width: 100%;
  }
}
.contact-confirm .btn--outline::after,
.contact-thankyou .btn--outline::after,
.error-404 .btn--outline::after,
.wpcf7-back::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  width: calc(32 / 1920 * 100vw);
  height: calc(32 / 1920 * 100vw);
  border-radius: 999px;
  background-color: #00326c;
  background-image: url("src/images/right-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 768px) {
  .contact-confirm .btn--outline::after,
  .contact-thankyou .btn--outline::after,
  .error-404 .btn--outline::after,
  .wpcf7-back::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}

.error-404 {
  position: relative;
  width: 100%;
  min-height: calc(900 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .error-404 {
    min-height: calc(640 / 393 * 100vw);
  }
}

.error-404__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: url("src/images/617ae35ca4984e7212d401a7315bf4c2892a98de.png") center/cover no-repeat;
}
@media (max-width: 768px) {
  .error-404__decor {
    background: url("src/images/hero-bg-sp.png") center/cover no-repeat;
  }
}

.error-404__decor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.error-404__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: calc(120 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(120 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .error-404__container {
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(64 / 393 * 100vw);
  }
}

.error-404__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
  max-width: calc(1000 / 1920 * 100vw);
  margin: 0 auto;
  padding: calc(64 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  border: 1px solid #eaeef9;
  background: #fafcff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .error-404__card {
    gap: calc(32 / 393 * 100vw);
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw);
    border-radius: calc(12 / 393 * 100vw);
    max-width: 100%;
  }
}

.error-404__intro {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1920 * 100vw);
  width: 100%;
  max-width: calc(753 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .error-404__intro {
    gap: calc(24 / 393 * 100vw);
    max-width: 100%;
  }
}

.error-404__code-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(20 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .error-404__code-row {
    gap: calc(12 / 393 * 100vw);
  }
}

.error-404__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(56 / 1920 * 100vw);
  height: calc(56 / 1920 * 100vw);
  border-radius: 50%;
  background: #00326c;
  color: #fff;
}
@media (max-width: 768px) {
  .error-404__badge {
    width: calc(35 / 393 * 100vw);
    height: calc(35 / 393 * 100vw);
  }
}

.error-404__badge-icon {
  display: block;
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .error-404__badge-icon {
    width: calc(20 / 393 * 100vw);
    height: calc(20 / 393 * 100vw);
  }
}

.error-404__code {
  margin: 0;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(50 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .error-404__code {
    font-size: calc(30 / 393 * 100vw);
  }
}

.error-404__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: calc(22 / 393 * 100vw);
  }
}

.error-404__text {
  margin: 0;
  width: 100%;
  max-width: calc(753 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .error-404__text {
    max-width: 100%;
    font-size: calc(16 / 393 * 100vw);
  }
}

body.error404 .main {
  padding-top: 0;
}
body.error404 .header__bg {
  background: transparent;
  background-image: none;
}
body.error404 .error-404__container {
  padding-top: calc(228 / 1920 * 100vw);
}
@media (max-width: 768px) {
  body.error404 .error-404__container {
    padding-top: calc(140 / 393 * 100vw);
  }
}

.contact-confirm .btn--secondary,
.contact-thankyou .btn--secondary {
  position: relative;
  height: calc(76 / 1920 * 100vw);
  max-width: calc(343 / 1920 * 100vw);
  width: 100%;
  padding: calc(8 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  padding-right: calc(56 / 1920 * 100vw);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-confirm .btn--secondary,
  .contact-thankyou .btn--secondary {
    height: calc(56 / 393 * 100vw);
    max-width: 100%;
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
}
.contact-confirm .btn--secondary::after,
.contact-thankyou .btn--secondary::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  width: calc(32 / 1920 * 100vw);
  height: calc(32 / 1920 * 100vw);
  border-radius: 999px;
  background: #fff;
  background-image: url("src/images/right-arrow-blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 768px) {
  .contact-confirm .btn--secondary::after,
  .contact-thankyou .btn--secondary::after {
    right: calc(12 / 393 * 100vw);
    width: calc(28 / 393 * 100vw);
    height: calc(28 / 393 * 100vw);
  }
}

.contact-thankyou__message {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-thankyou__message {
    font-size: calc(16 / 393 * 100vw);
  }
}

.footer {
  margin-top: auto;
}

.footer__top {
  background: #f3f6ff;
  padding: calc(100 / 1920 * 100vw) calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .footer__top {
    padding: calc(48 / 393 * 100vw) calc(20 / 393 * 100vw) calc(40 / 393 * 100vw);
  }
}

.footer__inner {
  width: 100%;
  max-width: calc(1440px / 1920 * 100vw);
  margin: 0 auto;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24 / 1920 * 100vw);
  width: 100%;
}
@media (max-width: 768px) {
  .footer__brand-row {
    flex-direction: column;
    align-items: stretch;
    gap: calc(24 / 393 * 100vw);
  }
}

.footer__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
@media (max-width: 768px) {
  .footer__nav {
    width: 100%;
    justify-content: flex-start;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: calc(40 / 1920 * 100vw);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(16 / 393 * 100vw);
  }
}
.footer__nav-list .menu-item {
  margin: 0;
  padding: 0;
}
.footer__nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
  color: #000;
}
@media (max-width: 768px) {
  .footer__nav-list a {
    font-size: calc(16 / 393 * 100vw);
    white-space: normal;
  }
}
.footer__nav-list a:hover, .footer__nav-list a:focus-visible {
  opacity: 0.92;
  outline: none;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: calc(64 / 1920 * 100vw);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer__left {
    gap: calc(32 / 393 * 100vw);
  }
}

.footer__brand-row .footer__logo {
  flex-shrink: 0;
}

.footer__logo {
  padding-left: calc(30 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .footer__logo {
    padding-left: 0;
  }
}
.footer__logo a {
  display: block;
}
.footer__logo img,
.footer__logo .header__logo-img {
  display: block;
  height: calc(41 / 1920 * 100vw);
  width: auto;
  max-width: calc(300 / 1920 * 100vw);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}
@media (max-width: 768px) {
  .footer__logo img,
  .footer__logo .header__logo-img {
    height: calc(36 / 393 * 100vw);
    max-width: calc(240 / 393 * 100vw);
  }
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: calc(18 / 1920 * 100vw);
  padding-left: calc(30 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .footer__main {
    padding-left: 0;
    gap: calc(16 / 393 * 100vw);
  }
}

.footer__tagline-wrap {
  transform: skewX(-4deg);
}

.footer__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.footer__tagline--1 {
  font-size: calc(55 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .footer__tagline--1 {
    font-size: calc(30 / 393 * 100vw);
  }
}
.footer__tagline--2 {
  font-size: calc(55 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #181c24;
  padding-left: calc(30 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .footer__tagline--2 {
    font-size: calc(28 / 393 * 100vw);
    padding-left: 0;
  }
}
.footer__tagline-brand {
  color: #235493;
}
.footer__tagline-quote {
  font-family: "Noto Sans JP", sans-serif;
  color: #235493;
}

.footer__chips {
  display: flex;
  gap: calc(16 / 1920 * 100vw);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__chips {
    flex-direction: column;
    align-items: start;
    gap: calc(12 / 393 * 100vw);
  }
}

.footer__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(8 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .footer__chip {
    display: inline-block;
    font-size: calc(16 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
}
.footer__chip:hover {
  opacity: 0.9;
}
.footer__chip--accent {
  background: #e22538;
}
.footer__chip--primary {
  background: #00326c;
}

.footer__bottom {
  background: #00326c;
  padding: calc(24 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  text-align: center;
}

.footer__copy {
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: calc(12 / 393 * 100vw);
  }
}

.service-overseas {
  background: #fff;
  color: #181c24;
}

.service-overseas__section {
  padding: calc(100 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(80 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__section {
    padding: calc(48 / 393 * 100vw) calc(20 / 393 * 100vw) calc(48 / 393 * 100vw);
  }
}

.service-overseas__section--01 {
  padding-top: calc(200 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__section--01 {
    padding-top: calc(48 / 393 * 100vw);
  }
}

.service-overseas__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service-overseas__inner {
    max-width: 100%;
  }
}

.service-overseas__inner--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: calc(80 / 1920 * 100vw);
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__inner--split {
    flex-direction: column;
    align-items: stretch;
    gap: calc(40 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-overseas__inner--s02 {
  display: grid;
  grid-template-columns: minmax(0, calc(655 / 1920 * 100vw)) calc(320 / 1920 * 100vw);
  grid-template-rows: auto auto;
  -moz-column-gap: calc(225 / 1920 * 100vw);
  column-gap: calc(225 / 1920 * 100vw);
  row-gap: calc(64 / 1920 * 100vw);
  align-items: start;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__inner--s02 {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    min-width: 0;
  }
}

.service-overseas__s02-text-col {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.service-overseas__s02-charts {
  grid-column: 2;
  grid-row: 1/span 2;
  align-self: end;
}
@media (max-width: 768px) {
  .service-overseas__s02-charts {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    margin-top: calc(64 / 393 * 100vw);
  }
}

.service-overseas__inner--s02 > .service-overseas__jlpt {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}
@media (max-width: 768px) {
  .service-overseas__inner--s02 > .service-overseas__jlpt {
    grid-column: auto;
    grid-row: auto;
    margin-top: calc(40 / 393 * 100vw);
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__s02-text-col {
    display: flex;
    flex-direction: column;
    gap: calc(32 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__point-head {
    margin-bottom: 0;
    gap: calc(16 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__point-badge {
    width: calc(64 / 393 * 100vw);
    height: calc(26 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__point-title {
    font-size: calc(25 / 393 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.25 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__s02-text {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: calc(0.8 / 393 * 100vw);
  }
  .service-overseas__section--02 .service-overseas__s02-text p {
    margin-bottom: calc(16 / 393 * 100vw);
  }
}

.service-overseas__split-col--charts {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
  width: calc(320 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__split-col--charts {
    width: 100%;
    max-width: calc(320 / 393 * 100vw);
    margin: 0 auto;
    gap: calc(32 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__s02-charts.service-overseas__split-col--charts {
    gap: calc(64 / 393 * 100vw);
  }
}

.service-overseas__point-head {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1920 * 100vw);
  margin-bottom: calc(56 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__point-head {
    gap: calc(12 / 393 * 100vw);
    margin-bottom: calc(32 / 393 * 100vw);
  }
}

.service-overseas__section--01 .service-overseas__point-head {
  margin-bottom: 0;
}

.service-overseas__section--01 .service-overseas__card-row {
  margin-top: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__section--01 .service-overseas__card-row {
    margin-top: calc(32 / 393 * 100vw);
  }
}

.service-overseas__point-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  margin: 0;
  padding: calc(4 / 1920 * 100vw) calc(8 / 1920 * 100vw);
  border-radius: 100px;
  background: #e22538;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__point-badge {
    width: calc(56 / 393 * 100vw);
    height: calc(24 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
}

.service-overseas__point-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(44 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-overseas__point-title {
    font-size: calc(24 / 393 * 100vw);
  }
}

.service-overseas__point-lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-overseas__point-lead {
    font-size: calc(16 / 393 * 100vw);
  }
}

.service-overseas__prose, .service-overseas__highlight-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
.service-overseas__prose p, .service-overseas__highlight-text p {
  margin: 0 0 calc(18 / 1920 * 100vw);
}
.service-overseas__prose p:last-child, .service-overseas__highlight-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-overseas__prose, .service-overseas__highlight-text {
    font-size: calc(15 / 393 * 100vw);
  }
  .service-overseas__prose p, .service-overseas__highlight-text p {
    margin-bottom: calc(12 / 393 * 100vw);
  }
}

.service-overseas__card-row {
  display: flex;
  gap: calc(64 / 1920 * 100vw);
  align-items: flex-start;
  padding: calc(40 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  background: #f3f6ff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__card-row {
    flex-direction: column;
    gap: calc(32 / 393 * 100vw);
    padding: calc(20 / 393 * 100vw);
  }
}

.service-overseas__media-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(32 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__media-card {
    gap: calc(20 / 393 * 100vw);
  }
}

.service-overseas__media-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 285/145.11;
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  background: #eaeef9;
}

.service-overseas__media-card-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-overseas__media-card-title {
  align-self: stretch;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-overseas__media-card-title {
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-overseas__media-card-text {
  align-self: stretch;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-overseas__media-card-text {
    font-size: calc(15 / 393 * 100vw);
  }
}

.service-overseas__divider {
  padding: calc(100 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__divider {
    padding: calc(48 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.service-overseas__divider::after {
  content: "";
  display: block;
  height: 1px;
  border-radius: 100px;
  background: #eaeef9;
}

.service-overseas__jlpt {
  margin-top: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__jlpt {
    margin-top: calc(32 / 393 * 100vw);
  }
}

.service-overseas__jlpt-caption {
  margin: 0 0 calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-overseas__jlpt-caption {
    font-size: calc(11 / 393 * 100vw);
    margin-bottom: calc(12 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__jlpt-caption {
    margin-bottom: calc(16 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  .service-overseas__table-scroll {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(8 / 393 * 100vw);
    outline: none;
    overscroll-behavior-x: contain;
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__table-scroll {
    scrollbar-width: thin;
    scrollbar-color: #00326c #e8f7ff;
  }
  .service-overseas__section--02 .service-overseas__table-scroll::-webkit-scrollbar {
    height: calc(12 / 393 * 100vw);
  }
  .service-overseas__section--02 .service-overseas__table-scroll::-webkit-scrollbar-track {
    background: #e8f7ff;
    border-radius: 100px;
  }
  .service-overseas__section--02 .service-overseas__table-scroll::-webkit-scrollbar-thumb {
    background: #00326c;
    border-radius: 100px;
  }
}

.service-overseas__table-wrap {
  border: 0.5px solid #c3c7d1;
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-overseas__table-wrap {
    border-radius: calc(4 / 393 * 100vw);
    display: inline-block;
    width: -moz-max-content;
    width: max-content;
    max-width: none;
    vertical-align: top;
  }
}

.service-overseas__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.service-overseas__table th,
.service-overseas__table td {
  padding: calc(10 / 1920 * 100vw) calc(16 / 1920 * 100vw);
  border-top: 1px solid #d9deee;
  vertical-align: middle;
  text-align: left;
}
.service-overseas__table thead th {
  background: #eaeef9;
  border-top: none;
  border-right: 1px solid #d9deee;
  font-weight: 400;
  text-align: center;
}
.service-overseas__table thead th:last-child {
  border-right: none;
}
.service-overseas__table tbody th {
  width: calc(84 / 1920 * 100vw);
  border-right: 1px solid #d9deee;
  font-weight: 400;
  text-align: center;
  color: #235493;
}
.service-overseas__table tbody td:nth-child(2) {
  width: calc(84 / 1920 * 100vw);
  border-right: 1px solid #d9deee;
  color: #4f525c;
  text-align: center;
}
.service-overseas__table tbody td:last-child {
  color: #686d7b;
}
@media (max-width: 768px) {
  .service-overseas__table {
    width: calc(600 / 393 * 100vw);
    min-width: calc(600 / 393 * 100vw);
    max-width: none;
    font-size: calc(13 / 393 * 100vw);
  }
  .service-overseas__table th,
  .service-overseas__table td {
    padding: calc(10 / 393 * 100vw) calc(12 / 393 * 100vw);
  }
  .service-overseas__table tbody th {
    width: calc(84 / 393 * 100vw);
  }
  .service-overseas__table tbody td:nth-child(2) {
    width: calc(84 / 393 * 100vw);
  }
}

.service-overseas__section--02 .service-overseas__table thead th {
  background: #e8f7ff;
}
@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__table tbody th {
    text-decoration: underline;
    text-underline-offset: calc(2 / 393 * 100vw);
  }
}

.service-overseas__table-progress {
  display: none;
}
@media (max-width: 768px) {
  .service-overseas__table-progress {
    display: block;
    width: 100%;
    height: calc(17 / 393 * 100vw);
    position: relative;
    margin-top: calc(12 / 393 * 100vw);
    border-radius: 100px;
    background: #e8f7ff;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__table-progress {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-overseas__table-progress-fill {
    display: block;
    height: calc(12 / 393 * 100vw);
    border-radius: 100px;
    background: #00326c;
    width: 22.0963172805%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.service-overseas__jlpt-ref {
  margin: calc(16 / 1920 * 100vw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
.service-overseas__jlpt-ref a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .service-overseas__jlpt-ref {
    font-size: calc(11 / 393 * 100vw);
    margin-top: calc(12 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__jlpt-ref {
    margin-top: calc(16 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__chart-label {
    letter-spacing: calc(0.9 / 393 * 100vw);
  }
}

.service-overseas__chart-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12 / 1920 * 100vw);
  width: 100%;
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__chart-block {
    gap: calc(8 / 393 * 100vw);
  }
}

.service-overseas__chart-label {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.service-overseas__chart-label--age {
  color: #d12f3a;
}
.service-overseas__chart-label--lang {
  color: #235493;
}
@media (max-width: 768px) {
  .service-overseas__chart-label {
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-overseas__chart-img-wrap {
  width: calc(320 / 1920 * 100vw);
  height: calc(320 / 1920 * 100vw);
  position: relative;
}
.service-overseas__chart-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-overseas__chart-img-wrap {
    width: min(100%, calc(280 / 393 * 100vw));
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .service-overseas__section--02 .service-overseas__chart-img-wrap {
    width: calc(320 / 393 * 100vw);
    height: calc(320 / 393 * 100vw);
    max-width: 100%;
    aspect-ratio: 1;
  }
}

.service-overseas__block {
  display: flex;
  flex-direction: column;
  gap: calc(64 / 1920 * 100vw);
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service-overseas__block {
    gap: calc(40 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-overseas__section--03 .service-overseas__point-head {
  margin-bottom: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__section--03 .service-overseas__point-head {
    margin-bottom: calc(32 / 393 * 100vw);
  }
}

.service-overseas__num-list {
  list-style: none;
  margin: 0;
  padding: 0 calc(40 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .service-overseas__num-list {
    padding: 0;
  }
}

.service-overseas__num-list-item {
  display: flex;
  gap: calc(40 / 1920 * 100vw);
  align-items: flex-start;
  padding: calc(24 / 1920 * 100vw) 0;
  border-bottom: 1px solid #d9deee;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.service-overseas__num-list-item:first-child {
  padding-top: 0;
}
.service-overseas__num-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .service-overseas__num-list-item {
    font-size: calc(15 / 393 * 100vw);
    gap: calc(16 / 393 * 100vw);
    padding: calc(16 / 393 * 100vw) 0;
  }
}

.service-overseas__num-list-no {
  flex-shrink: 0;
  color: #181c24;
}

.service-overseas__num-list-text {
  flex: 1;
  color: #4f525c;
}

.service-overseas__highlight-row {
  display: flex;
  gap: calc(40 / 1920 * 100vw);
  align-items: center;
  padding: calc(40 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  background: #f3f6ff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__highlight-row {
    flex-direction: column;
    padding: calc(24 / 393 * 100vw);
    gap: calc(24 / 393 * 100vw);
  }
}

.service-overseas__highlight-img-wrap {
  flex-shrink: 0;
  width: calc(300 / 1920 * 100vw);
  height: calc(200 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
  background: #eaeef9;
}
.service-overseas__highlight-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-overseas__highlight-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}

.service-overseas__highlight-text {
  flex: 1;
  min-width: 0;
}

.service-overseas__note {
  max-width: calc(800 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__note {
    max-width: 100%;
  }
}

.service-overseas__note-title {
  margin: 0 0 calc(12 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-overseas__note-title {
    font-size: calc(14 / 393 * 100vw);
  }
}

.service-overseas__note-body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-overseas__note-body {
    font-size: calc(14 / 393 * 100vw);
  }
}

.service-overseas__support-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__support-box {
    gap: calc(40 / 393 * 100vw);
  }
}

.service-overseas__label-list {
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
  padding: calc(80 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  background: #f3f6ff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: calc(58 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-overseas__label-list {
    padding: calc(24 / 393 * 100vw);
    gap: calc(32 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-overseas__label-list-row {
  display: flex;
  gap: calc(64 / 1920 * 100vw);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .service-overseas__label-list-row {
    flex-direction: column;
    gap: calc(12 / 393 * 100vw);
  }
}

.service-overseas__label-list-label {
  flex: 0 0 calc(296 / 1920 * 100vw);
  margin: calc(16 / 1920 * 100vw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-overseas__label-list-label {
    flex: none;
    margin: 0;
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-overseas__label-list-body {
  flex: 1;
  min-width: 0;
  padding: calc(24 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  background: #fff;
}
.service-overseas__label-list-body p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-overseas__label-list-body {
    padding: calc(16 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .service-overseas__label-list-body p {
    font-size: calc(15 / 393 * 100vw);
  }
}

.service-overseas__support-cta {
  margin: 0;
}

.service-overseas__outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10 / 1920 * 100vw);
  min-height: calc(72 / 1920 * 100vw);
  padding: calc(16 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  border: 2px solid #d9deee;
  border-radius: 100px;
  background: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s;
}
.service-overseas__outline-btn:hover {
  opacity: 0.92;
}
@media (max-width: 768px) {
  .service-overseas__outline-btn {
    width: 100%;
    min-height: calc(50 / 393 * 100vw);
    border-radius: calc(40 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(12 / 393 * 100vw) calc(4 / 393 * 100vw) calc(12 / 393 * 100vw);
  }
}

.service-overseas__outline-btn-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-overseas__outline-btn-label {
    font-size: calc(16 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
}

.service-overseas__outline-btn-icon {
  flex-shrink: 0;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-radius: 50%;
  background-color: #00326c;
  background-image: url("src/images/right-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}
@media (max-width: 768px) {
  .service-overseas__outline-btn-icon {
    width: calc(23 / 393 * 100vw);
    height: calc(23 / 393 * 100vw);
  }
}

.service-overseas__fee-row {
  display: flex;
  gap: calc(80 / 1920 * 100vw);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .service-overseas__fee-row {
    flex-direction: column;
    gap: calc(24 / 393 * 100vw);
  }
}

.service-overseas__fee-img-wrap {
  flex: 0 0 calc(550 / 1920 * 100vw);
  max-width: 100%;
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
  background: #eaeef9;
}
.service-overseas__fee-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
@media (max-width: 768px) {
  .service-overseas__fee-img-wrap {
    flex: none;
    width: 100%;
  }
}

.service-overseas__fee-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
.service-overseas__fee-text p {
  margin: 0;
}
@media (max-width: 768px) {
  .service-overseas__fee-text {
    font-size: calc(15 / 393 * 100vw);
    gap: calc(24 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta {
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta {
    padding: calc(48 / 393 * 100vw) calc(20 / 393 * 100vw) calc(32 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-inner {
  position: relative;
  margin: 0 auto;
  border-radius: calc(20 / 1920 * 100vw);
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-inner {
    border-radius: calc(12 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-bg {
  position: absolute;
  inset: 0;
  border-radius: calc(20 / 1920 * 100vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-bg {
    border-radius: calc(12 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  padding: calc(80 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-content {
    gap: calc(24 / 393 * 100vw);
    padding: calc(40 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(12 / 1920 * 100vw);
}

.service-overseas__bottom-cta-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-title {
    font-size: calc(22 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(56 / 1920 * 100vw);
  height: calc(56 / 1920 * 100vw);
  border-radius: 100px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #001e53;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-badge {
    width: calc(48 / 393 * 100vw);
    height: calc(48 / 393 * 100vw);
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta-lead {
  margin: 0;
  max-width: calc(900 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta-lead {
    font-size: calc(15 / 393 * 100vw);
    max-width: calc(310 / 393 * 100vw);
  }
}

.service-overseas__bottom-cta .service-overseas__bottom-cta-btn.btn {
  min-width: calc(350 / 1920 * 100vw);
  min-height: calc(72 / 1920 * 100vw);
  padding: calc(16 / 1920 * 100vw) calc(56 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  justify-content: flex-start;
  position: relative;
}
.service-overseas__bottom-cta .service-overseas__bottom-cta-btn.btn::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-radius: 50%;
  background: #fff url("src/images/right-arrow-contact.png") no-repeat center/45%;
}
@media (max-width: 768px) {
  .service-overseas__bottom-cta .service-overseas__bottom-cta-btn.btn {
    min-width: calc(200 / 393 * 100vw);
    min-height: calc(56 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(52 / 393 * 100vw) calc(12 / 393 * 100vw) calc(24 / 393 * 100vw);
  }
  .service-overseas__bottom-cta .service-overseas__bottom-cta-btn.btn::after {
    right: calc(12 / 393 * 100vw);
    width: calc(23 / 393 * 100vw);
    height: calc(23 / 393 * 100vw);
  }
}

.service-support {
  background: #fff;
  color: #181c24;
}

.service-support__intro {
  padding: calc(200 / 1920 * 100vw) calc(360 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__intro {
    padding: calc(120 / 393 * 100vw) calc(20 / 393 * 100vw) 0;
  }
}

.service-support__intro-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  gap: calc(80 / 1920 * 100vw);
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__intro-inner {
    flex-direction: column;
    align-items: stretch;
    gap: calc(56 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-support__intro-visual {
  flex-shrink: 0;
  width: calc(380 / 1920 * 100vw);
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-support__intro-visual {
    width: 100%;
    order: 1;
    border-radius: calc(3.29 / 393 * 100vw);
  }
}

.service-support__intro-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.service-support__intro-copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__intro-copy {
    align-items: stretch;
    gap: calc(56 / 393 * 100vw);
    order: 0;
  }
}

.service-support__intro-kicker {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-support__intro-kicker {
    font-size: calc(22 / 393 * 100vw);
  }
}

.service-support__intro-lead {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-support__intro-lead {
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-support__section {
  padding: calc(100 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(80 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__section {
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(80 / 393 * 100vw);
  }
}

.service-support__section--about {
  padding-top: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__section--about {
    padding-top: calc(48 / 393 * 100vw);
  }
}

.service-support__inner {
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__inner {
    max-width: 100%;
  }
}

.service-support__about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(549 / 1920 * 100vw);
  grid-template-rows: auto auto;
  grid-template-areas: "head visual" "prose visual";
  gap: calc(56 / 1920 * 100vw) calc(80 / 1920 * 100vw);
  align-items: start;
}
@media (max-width: 768px) {
  .service-support__about-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "head" "visual" "prose";
    gap: calc(40 / 393 * 100vw);
  }
}

.service-support__about-head {
  grid-area: head;
}

.service-support__about-visual {
  grid-area: visual;
  align-self: end;
  border-radius: calc(4 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-support__about-visual {
    align-self: stretch;
    width: 100%;
    max-width: calc(352 / 393 * 100vw);
    margin: 0 auto;
  }
}

.service-support__about-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.service-support__about-prose {
  grid-area: prose;
}

.service-support__point-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 / 1920 * 100vw);
  margin: 0 0 calc(56 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__point-head {
    gap: calc(16 / 393 * 100vw);
    margin-bottom: 0;
  }
}

.service-support__section--about .service-support__point-head {
  margin-bottom: 0;
}

.service-support__point-head--tasks {
  margin-bottom: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__point-head--tasks {
    margin-bottom: calc(64 / 393 * 100vw);
  }
}

.service-support__section--reasons .service-support__point-head {
  margin-bottom: calc(80 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__section--reasons .service-support__point-head {
    margin-bottom: calc(64 / 393 * 100vw);
  }
}

.service-support__point-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(64 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
  margin: 0;
  padding: calc(4 / 1920 * 100vw) calc(8 / 1920 * 100vw);
  border-radius: 100px;
  background: #e22538;
  font-family: "Noto Sans", "Barlow", sans-serif;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__point-badge {
    min-width: calc(64 / 393 * 100vw);
    height: calc(26 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
}

.service-support__point-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(44 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-support__point-title {
    font-size: calc(25 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
}

.service-support__point-lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-support__point-lead {
    font-size: calc(18 / 393 * 100vw);
  }
}

@media (max-width: 768px) {
  .service-support__tasks-lead-br {
    display: none;
  }
}

.service-support__prose {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #181c24;
}
.service-support__prose p {
  margin: 0 0 calc(18 / 1920 * 100vw);
}
.service-support__prose p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-support__prose {
    font-size: calc(16 / 393 * 100vw);
  }
  .service-support__prose p {
    margin-bottom: calc(16 / 393 * 100vw);
  }
}

.service-support__divider {
  padding: calc(100 / 1920 * 100vw) calc(360 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__divider {
    padding: calc(60 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.service-support__divider::after {
  content: "";
  display: block;
  height: 1px;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  border-radius: 100px;
  background: #eaeef9;
}
@media (max-width: 768px) {
  .service-support__divider::after {
    max-width: 100%;
  }
}

.service-support__inner--tasks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.service-support__task-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(58 / 1920 * 100vw);
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0;
  padding: calc(80 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  background: #f3f6ff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__task-list {
    gap: calc(80 / 393 * 100vw);
    padding: calc(40 / 393 * 100vw) calc(20 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-support__task-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: calc(64 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__task-row {
    flex-direction: column;
    gap: calc(20 / 393 * 100vw);
  }
}

.service-support__task-label {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding-top: calc(16 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-support__task-label {
    padding-top: 0;
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-support__task-body {
  flex: 0 0 calc(800 / 1920 * 100vw);
  max-width: 100%;
  padding: calc(24 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  border-radius: calc(8 / 1920 * 100vw);
  background: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__task-body {
    flex: 1 1 auto;
    width: 100%;
    padding: calc(16 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}
.service-support__task-body p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-support__task-body p {
    font-size: calc(16 / 393 * 100vw);
  }
}

.service-support__inner--reasons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-support__reasons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: calc(64 / 1920 * 100vw);
  width: 100%;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0;
  padding: calc(40 / 1920 * 100vw);
  border-radius: calc(12 / 1920 * 100vw);
  background: #f3f6ff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__reasons {
    flex-direction: column;
    gap: calc(56 / 393 * 100vw);
    padding: calc(20 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-support__reason-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(32 / 1920 * 100vw);
}
@media (max-width: 768px) {
  .service-support__reason-card {
    gap: calc(20 / 393 * 100vw);
  }
}

.service-support__reason-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 285/145.109;
  border-radius: calc(8 / 1920 * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-support__reason-visual {
    border-radius: calc(8 / 393 * 100vw);
  }
}

.service-support__reason-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-support__reason-visual--crop .service-support__reason-img {
  top: -36.48%;
  height: 147.3%;
}
@media (max-width: 768px) {
  .service-support__reason-visual--crop .service-support__reason-img {
    top: -30.8%;
  }
}

.service-support__reason-title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #181c24;
}
@media (max-width: 768px) {
  .service-support__reason-title {
    font-size: calc(18 / 393 * 100vw);
  }
}

.service-support__reason-body {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f525c;
}
@media (max-width: 768px) {
  .service-support__reason-body {
    font-size: calc(16 / 393 * 100vw);
  }
}

.service-support__bottom-cta {
  padding: calc(120 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__bottom-cta {
    padding: calc(64 / 393 * 100vw) calc(20 / 393 * 100vw) calc(32 / 393 * 100vw);
  }
}

.service-support__bottom-cta-inner {
  position: relative;
  max-width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  border-radius: calc(20 / 1920 * 100vw);
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-inner {
    border-radius: calc(12 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-support__bottom-cta-bg {
  position: absolute;
  inset: 0;
  border-radius: calc(20 / 1920 * 100vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-bg {
    border-radius: calc(12 / 393 * 100vw);
  }
}

.service-support__bottom-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
  padding: calc(80 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-content {
    gap: calc(20 / 393 * 100vw);
    padding: calc(40 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
}

.service-support__bottom-cta-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(12 / 1920 * 100vw);
}

.service-support__bottom-cta-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(35 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-title {
    font-size: calc(22 / 393 * 100vw);
  }
}

.service-support__bottom-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(56 / 1920 * 100vw);
  height: calc(56 / 1920 * 100vw);
  border-radius: 100px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #001e53;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-badge {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
    font-weight: 500;
  }
}

.service-support__bottom-cta-lead {
  margin: 0;
  max-width: calc(900 / 1920 * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(18 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .service-support__bottom-cta-lead {
    font-size: calc(16 / 393 * 100vw);
    max-width: 100%;
  }
}

.service-support__bottom-cta .service-support__bottom-cta-btn.btn {
  min-width: calc(350 / 1920 * 100vw);
  min-height: calc(72 / 1920 * 100vw);
  padding: calc(16 / 1920 * 100vw) calc(56 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  justify-content: flex-start;
  position: relative;
}
.service-support__bottom-cta .service-support__bottom-cta-btn.btn::after {
  content: "";
  position: absolute;
  right: calc(16 / 1920 * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-radius: 50%;
  background: #fff url("src/images/right-arrow-contact.png") no-repeat center/45%;
}
@media (max-width: 768px) {
  .service-support__bottom-cta .service-support__bottom-cta-btn.btn {
    min-width: calc(200 / 393 * 100vw);
    min-height: calc(56 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw) calc(52 / 393 * 100vw) calc(12 / 393 * 100vw) calc(24 / 393 * 100vw);
  }
  .service-support__bottom-cta .service-support__bottom-cta-btn.btn::after {
    right: calc(12 / 393 * 100vw);
    width: calc(23 / 393 * 100vw);
    height: calc(23 / 393 * 100vw);
  }
}

.main {
  padding: 0;
  padding-top: calc(108 / 1920 * 100vw);
  min-height: 0;
}
@media (max-width: 768px) {
  .main {
    padding-top: calc(60 / 393 * 100vw);
    overflow-x: visible;
  }
}
/*# sourceMappingURL=style.css.map */
