:root {
  --color_white: #ffffff;
  --color_text: #1c2533;
  --color_blue: #1d489b;
  --color_blue_dark: #1d489b;
  --color_blue_light: #f3f7ff;
  --color_border: #1d489b;
  --color_title_sub: #A6B6D2;
  --color_bg_section: rgba(234, 241, 255, 0.4);
  --color_line: #d2daea;
  --section_space: 144px;
  --section_space_sm: 96px;
  --margin_xl: 100px;
  --margin_l: 80px;
  --margin_m: 60px;
  --margin_s: 40px;
  --margin_xs: 26px;
  --margin_xxs: 16px;
  --header_height: 130px;
  --gap_lg: 72px;
  --gap_md: 40px;
  --gap_sm: 20px;
  --button_w: clamp(270px, calc((270 / 1440) * 100vw), 360px);
  --button_h: clamp(56px, calc((56 / 1440) * 100vw), 74px);
}

@media (max-width: 980px) {
  :root {
    --margin_xl: 60px;
    --margin_l: 48px;
    --margin_m: 36px;
    --margin_s: 24px;
    --margin_xs: 16px;
  }
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: var(--color_text);
  background: var(--color_white);
  line-height: 1.7;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  letter-spacing: 0.06em;
}

.wrapper {
  overflow: clip;
}

.br_sp_468 {
  display: none;
}

.br_sp_768 {
  display: none;
}

.br_pc {
  display: inline;
}

.frontpage_sp {
  display: none;
}

@media (max-width: 980px) {
  .frontpage_pc {
    display: none;
  }

  .frontpage_sp {
    display: block;
  }
}

@media (max-width: 468px) {
  .br_sp_468 {
    display: inline;
  }
}

@media (max-width: 768px) {
  .br_sp_768 {
    display: inline;
  }
}

@media (max-width: 980px) {
  .br_pc {
    display: none;
  }
}

.container {
  width: 73.44%;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .container {
    width: 90%;
  }
}

/* ====================
common_parts
==================== */

.main {
  padding-bottom: 0;
}

/* --- common_title --- */
.section_header {
  margin-bottom: var(--margin_m);
}

.section_title {
  color: var(--color_title_sub);
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(26px, calc((54 / 1440) * 100vw), 60px);
}

.section_subtitle {
  margin-top: var(--margin_xxs);
  color: var(--color_title_sub);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(16px, calc((32 / 1440) * 100vw), 32px);
}

.common_text {
  font-size: clamp(12px, calc((16 / 1440) * 100vw), 16px);
  font-weight: 500;
  line-height: 1.9;
}

/* --- button --- */
.common_button {
  position: relative;
  width: var(--button_w);
  height: var(--button_h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_blue_dark);
  color: var(--color_blue_dark);
  background: transparent;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 26px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.common_button::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  width: 46px;
  height: 1px;
  background: var(--color_blue_dark);
  transition:
    background-color 0.25s ease,
    width 0.25s ease,
    right 0.25s ease;
}

.common_button::before {
  content: "";
  position: absolute;
  right: -38px;
  top: 42%;
  width: 11px;
  height: 1px;
  background: transparent;
  transform: translateY(-50%) rotate(28deg);
  transform-origin: left center;
  transition: background-color 0.25s ease;
}

.common_button:hover {
  background: var(--color_blue_dark);
  color: #ffffff;
}

.common_button:hover::after {
  background: linear-gradient(
    to right,
    #ffffff 0 20px,
    var(--color_blue_dark) 20px 100%
  );
  width: 56px;
  right: -36px;
}

.common_button:hover::before {
  background: var(--color_blue_dark);
}

@media (max-width: 980px) {
  .common_button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ====================
header
==================== */
.header {
  padding: 36px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef2fb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--color_white);
  transition: padding 0.3s ease;
}

.header_inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 20px;
}

.header_logo img {
  width: 270px;
  height: auto;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: clamp(25px, calc((25 / 1440) * 100vw), 40px);
  justify-content: center;
}

.nav {
  width: 100%;
}

.nav_item {
  position: relative;
}

.nav_link {
  color: var(--color_blue_dark);
  font-weight: 500;
  white-space: nowrap;
  font-size: clamp(16px, calc((16 / 1440) * 100vw), 21px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.nav_link:hover {
  opacity: 0.5;
}

.nav_triangle {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transition: transform 0.25s ease;
  transform-origin: center;
}

.nav_expand {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sub_nav {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-8px);
  padding:
    clamp(24px, calc((32 / 1440) * 100vw), 44px)
    clamp(16px, calc((24 / 1440) * 100vw), 32px);
  background: #ffffff;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}

.sub_nav li + li {
  margin-top: 8px;
}

.sub_nav a {
  display: inline-flex;
  align-items: center;
  color: var(--color_blue_dark);
  font-size: clamp(14px, calc((14 / 1440) * 100vw), 18px);
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sub_nav a:hover {
  opacity: 0.5;
}

.sub_nav a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: url("../images/nav-arrow.svg") no-repeat center center / contain;
}

.nav_item.has_child:hover .sub_nav,
.nav_item.has_child:focus-within .sub_nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s;
}

.nav_item.has_child:hover .nav_triangle,
.nav_item.has_child:focus-within .nav_triangle {
  transform: rotate(180deg);
}

.nav_toggle {
  display: none;
  width: 40px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.nav_toggle_line {
  width: 30px;
  height: 3px;
  background: var(--color_blue_dark);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header.nav_open .nav_toggle_line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header.nav_open .nav_toggle_line:nth-child(2) {
  opacity: 0;
}

.header.nav_open .nav_toggle_line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (min-width: 1181px) {
  .header.is_scrolled {
    padding: 14px 0;
  }
}

@media (max-width: 1180px) {
  body.nav_open {
    overflow: hidden;
  }

  .header {
    padding: 20px 0;
  }

  .header_inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .header_logo img {
    width: 210px;
  }

  .nav_toggle {
    display: inline-flex;
    justify-self: end;
    position: relative;
    z-index: 50;
  }

  .header_logo {
    position: relative;
    z-index: 50;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: 110px 24px 24px;
    z-index: 45;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    overflow-y: auto;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.35s;
  }

  .header.nav_open .nav,
  body.nav_open .header .nav {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0s;
  }

  .nav_list {
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav_item {
    border-bottom: 1px solid #e8edf7;
  }

  .nav_link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
  }

  .nav_item.has_child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav_item.has_child .nav_link {
    width: calc(100% - 24px);
  }

  .nav_expand {
    display: inline-flex;
    width: 24px;
    height: 24px;
  }

  .sub_nav {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 0 10px 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .sub_nav li + li {
    margin-top: 0;
  }

  .sub_nav a {
    padding: 6px 0;
  }

  .nav_item.has_child:hover .sub_nav,
  .nav_item.has_child:focus-within .sub_nav {
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav_item.has_child:hover .nav_triangle,
  .nav_item.has_child:focus-within .nav_triangle {
    transform: none;
  }

  .nav_item.has_child.is_open .sub_nav {
    display: block;
  }

  .nav_item.has_child.is_open .nav_triangle {
    transform: rotate(180deg);
  }
}

@media (max-width: 980px) {
  .header_logo img {
    width: 180px;
  }

  .nav_toggle {
    width: 34px;
    height: 28px;
    gap: 6px;
  }

  .nav_toggle_line {
    width: 26px;
    height: 2px;
  }

  .header.nav_open .nav_toggle_line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header.nav_open .nav_toggle_line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header.nav_open .nav,
  body.nav_open .header .nav {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ====================
hero
==================== */
.hero {
  padding: 0;
}

.hero_visual {
  --hero_cut1_top: 44.2%;
  --hero_cut1_bottom: 20.2%;
  --hero_cut2_top: 78.6%;
  --hero_cut2_bottom: 54.6%;
  --hero_separator_width: 28px;
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 597;
  margin: 0 auto;
  overflow: hidden;
}

.hero_visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 136, 0.3);
  z-index: 2;
}

.hero_panels {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero_panels_set {
  position: absolute;
  inset: 0;
}

.hero_panels::before,
.hero_panels::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
}

.hero_panels::before {
  clip-path: polygon(
    calc(var(--hero_cut1_top) - (var(--hero_separator_width) / 2)) 0,
    calc(var(--hero_cut1_top) + (var(--hero_separator_width) / 2)) 0,
    calc(var(--hero_cut1_bottom) + (var(--hero_separator_width) / 2)) 100%,
    calc(var(--hero_cut1_bottom) - (var(--hero_separator_width) / 2)) 100%
  );
}

.hero_panels::after {
  clip-path: polygon(
    calc(var(--hero_cut2_top) - (var(--hero_separator_width) / 2)) 0,
    calc(var(--hero_cut2_top) + (var(--hero_separator_width) / 2)) 0,
    calc(var(--hero_cut2_bottom) + (var(--hero_separator_width) / 2)) 100%,
    calc(var(--hero_cut2_bottom) - (var(--hero_separator_width) / 2)) 100%
  );
}

.hero_panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--color_bg_section);
}

.hero_panel img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.hero_panel_01 {
  clip-path: polygon(
    0 0,
    var(--hero_cut1_top) 0,
    var(--hero_cut1_bottom) 100%,
    0 100%
  );
}

.hero_panel_02 {
  clip-path: polygon(
    var(--hero_cut1_top) 0,
    var(--hero_cut2_top) 0,
    var(--hero_cut2_bottom) 100%,
    var(--hero_cut1_bottom) 100%
  );
}

.hero_panel_03 {
  clip-path: polygon(
    var(--hero_cut2_top) 0,
    100% 0,
    100% 100%,
    var(--hero_cut2_bottom) 100%
  );
}

.hero_panel_01 img {
  left: 0;
  width: var(--hero_cut1_top);
  animation: hero_drift_up_right 20s linear infinite;
}

.hero_panel_02 img {
  left: var(--hero_cut1_bottom);
  width: calc(var(--hero_cut2_top) - var(--hero_cut1_bottom));
  animation: hero_drift_down_left 20s linear infinite;
  animation-delay: -10s;
}

.hero_panel_03 img {
  right: 0;
  width: calc(100% - var(--hero_cut2_bottom));
  animation: hero_drift_up_right 20s linear infinite;
  animation-delay: -7s;
}

@keyframes hero_drift_up_right {
  0%   { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
  3%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
}

@keyframes hero_drift_down_left {
  0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
  3%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
}

.hero--single-stop .hero_panel_01 img {
  animation: hero_drift_up_right_once 11s ease-out forwards;
}

.hero--single-stop .hero_panel_02 img {
  animation: hero_drift_down_left_once 11s ease-out forwards;
  animation-delay: 0.2s;
}

.hero--single-stop .hero_panel_03 img {
  animation: hero_drift_up_right_once 11s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes hero_drift_up_right_once {
  0%   { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
  100% { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
}

@keyframes hero_drift_down_left_once {
  0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
  100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
}

.hero--double-loop .hero_panels_set--primary {
  animation: hero_set_primary_visibility 10s linear infinite;
}

.hero--double-loop .hero_panels_set--secondary {
  animation: hero_set_secondary_visibility 10s linear infinite;
  opacity: 0;
}

.hero--double-loop .hero_panels_set--primary .hero_panel_01 img {
  animation: hero_cycle_primary_up_right 10s linear infinite;
}

.hero--double-loop .hero_panels_set--primary .hero_panel_02 img {
  animation: hero_cycle_primary_down_left 10s linear infinite;
}

.hero--double-loop .hero_panels_set--primary .hero_panel_03 img {
  animation: hero_cycle_primary_up_right 10s linear infinite;
}

.hero--double-loop .hero_panels_set--secondary .hero_panel_01 img {
  animation: hero_cycle_secondary_up_right 10s linear infinite;
}

.hero--double-loop .hero_panels_set--secondary .hero_panel_02 img {
  animation: hero_cycle_secondary_down_left 10s linear infinite;
}

.hero--double-loop .hero_panels_set--secondary .hero_panel_03 img {
  animation: hero_cycle_secondary_up_right 10s linear infinite;
}

@keyframes hero_set_primary_visibility {
  0%, 44% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes hero_set_secondary_visibility {
  0%, 44% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@keyframes hero_cycle_primary_up_right {
  0%   { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
  50%  { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
  100% { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
}

@keyframes hero_cycle_primary_down_left {
  0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
  50%  { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
  100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
}

@keyframes hero_cycle_secondary_up_right {
  0%, 44% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
  50%     { transform: translate3d(-5.3%, 5.3%, 0) scale(1.22); opacity: 1; }
  95%     { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
  100%    { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
}

@keyframes hero_cycle_secondary_down_left {
  0%, 44% { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
  50%     { transform: translate3d(5.3%, -5.3%, 0) scale(1.22); opacity: 1; }
  95%     { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
  100%    { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
}

@keyframes hero_fade_in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero_content {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 3;
}

@media (max-width: 1440px) {
  .hero_content {
    left: 8%;
  }
}

.hero_title {
  width: 31.25vw;
}

@media (max-width: 768px) {
  .hero_title {
    width: 70vw;
  }
}

.hero_title img {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: hero_fade_in 1s ease-out both;
}

.hero_text br {
  display: none;
}

.hero_text {
  margin-top: 7.81vw;
  text-align: right;
  line-height: 1.7;
  font-weight: 500;
  font-size: clamp(20px, calc((29 / 1440) * 100vw), 39px);
  white-space: nowrap;
  opacity: 0;
  animation: hero_fade_in 1s ease-out both;
}


@media (max-width: 980px) {
  .hero_visual {
    aspect-ratio: 393 / 602;
    --hero_cut1_top: 96%;
    --hero_cut1_bottom: -70%;
    --hero_cut2_top: 162%;
    --hero_cut2_bottom: 3%;
  }

  .hero_panels::before,
  .hero_panels::after {
    --hero_separator_width: 16px;
  }

  .hero_content {
    left: 6%;
    right: 6%;
  }

  .hero_text {
    white-space: normal;
    text-align: left;
  }

  .hero_text br {
    display: inline;
  }

  /* SP: 各パネル画像を全幅に戻し、可視中心に合わせてアニメーション */
  .hero_panel_01 img,
  .hero_panel_02 img,
  .hero_panel_03 img {
    width: 100%;
    left: 0;
    right: auto;
  }

  /* Panel 01: 可視中心 y≈14% → -36% オフセット */
  .hero_panel_01 img { animation-name: hero_sp_drift_01; }

  /* Panel 02: 可視中心 y≈49% → ほぼ中心のまま */
  .hero_panel_02 img { animation-name: hero_sp_drift_02; }

  /* Panel 03: 可視中心 y≈85% → +35% オフセット */
  .hero_panel_03 img { animation-name: hero_sp_drift_03; }

  @keyframes hero_sp_drift_01 {
    0%   { transform: translate3d(-7%, -29%, 0) scale(1.22); opacity: 0; }
    3%   { opacity: 1; }
    94%  { opacity: 1; }
    100% { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_sp_drift_02 {
    0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
    3%   { opacity: 1; }
    94%  { opacity: 1; }
    100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_sp_drift_03 {
    0%   { transform: translate3d(-7%, 42%, 0) scale(1.22); opacity: 0; }
    3%   { opacity: 1; }
    94%  { opacity: 1; }
    100% { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 0; }
  }

  .hero--single-stop .hero_panel_01 img { animation: hero_sp_drift_01_once 11s ease-out forwards; }
  .hero--single-stop .hero_panel_02 img { animation: hero_sp_drift_02_once 11s ease-out forwards 0.2s; }
  .hero--single-stop .hero_panel_03 img { animation: hero_sp_drift_03_once 11s ease-out forwards 0.4s; }

  @keyframes hero_sp_drift_01_once {
    0%   { transform: translate3d(-7%, -29%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 1; }
  }

  @keyframes hero_sp_drift_02_once {
    0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
  }

  @keyframes hero_sp_drift_03_once {
    0%   { transform: translate3d(-7%, 42%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 1; }
  }

  .hero--double-loop .hero_panels_set--primary .hero_panel_01 img { animation: hero_cycle_primary_sp_01 10s linear infinite; }
  .hero--double-loop .hero_panels_set--primary .hero_panel_02 img { animation: hero_cycle_primary_sp_02 10s linear infinite; }
  .hero--double-loop .hero_panels_set--primary .hero_panel_03 img { animation: hero_cycle_primary_sp_03 10s linear infinite; }
  .hero--double-loop .hero_panels_set--secondary .hero_panel_01 img { animation: hero_cycle_secondary_sp_01 10s linear infinite; }
  .hero--double-loop .hero_panels_set--secondary .hero_panel_02 img { animation: hero_cycle_secondary_sp_02 10s linear infinite; }
  .hero--double-loop .hero_panels_set--secondary .hero_panel_03 img { animation: hero_cycle_secondary_sp_03 10s linear infinite; }

  @keyframes hero_cycle_primary_sp_01 {
    0%   { transform: translate3d(-7%, -29%, 0) scale(1.22); opacity: 1; }
    50%  { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_cycle_primary_sp_02 {
    0%   { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 1; }
    50%  { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_cycle_primary_sp_03 {
    0%   { transform: translate3d(-7%, 42%, 0) scale(1.22); opacity: 1; }
    50%  { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 1; }
    100% { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_cycle_secondary_sp_01 {
    0%, 44% { transform: translate3d(-7%, -29%, 0) scale(1.22); opacity: 0; }
    50%     { transform: translate3d(-5.3%, -30.68%, 0) scale(1.22); opacity: 1; }
    95%     { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 1; }
    100%    { transform: translate3d(7%, -43%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_cycle_secondary_sp_02 {
    0%, 44% { transform: translate3d(7%, -7%, 0) scale(1.22); opacity: 0; }
    50%     { transform: translate3d(5.3%, -5.3%, 0) scale(1.22); opacity: 1; }
    95%     { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 1; }
    100%    { transform: translate3d(-7%, 7%, 0) scale(1.22); opacity: 0; }
  }

  @keyframes hero_cycle_secondary_sp_03 {
    0%, 44% { transform: translate3d(-7%, 42%, 0) scale(1.22); opacity: 0; }
    50%     { transform: translate3d(-5.3%, 40.32%, 0) scale(1.22); opacity: 1; }
    95%     { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 1; }
    100%    { transform: translate3d(7%, 28%, 0) scale(1.22); opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero_panels_set {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero_panel_01 img,
  .hero_panel_02 img,
  .hero_panel_03 img,
  .hero_title img,
  .hero_text {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .about_visual_infograph,
  .about_visual_logo {
    animation: none !important;
    opacity: 1;
  }

  .about_visual_infograph {
    transform: rotate(0deg);
  }
}

/* ====================
company
==================== */
.company {
  position: relative;
  padding: var(--section_space) 0 170px;
}

.company .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: calc((100vw - min(73.44vw, 1440px)) / 2);
}

.company .section_header {
  margin-bottom: var(--margin_xl);
}

.company_layout {
  display: grid;
  grid-template-columns: 1fr 35.47vw;
  grid-template-areas: "text image";
  gap: 56px;
  align-items: start;
}

.company_text_wrap {
  grid-area: text;
}

.side_stripe {
  width: 6%;
  max-width: 86px;
  aspect-ratio: 114 / 617;
  background: url("../images/deco.png") no-repeat center left / contain;
  z-index: 1;
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.company_side {
  position: absolute;
  left: 0;
  bottom: var(--section_space);
  transform: translateY(16px);
}

.company_layout.is_visible .company_side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.company_catch {
  color: var(--color_blue_dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 34px;
  font-size: clamp(20px, calc((28 / 1440) * 100vw), 38px);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.company_layout.is_visible .company_catch {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .company_catch {
    font-size: clamp(19px, calc((20 / 1440) * 100vw), 20px);
  }
}

.company_text {
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.company_layout.is_visible .company_text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.company_button_wrap {
  width: 100vw;
  margin-left: calc((100vw - min(73.44vw, 1440px)) / -2);
  margin-top: var(--margin_xl);
  text-align: center;
}

.company_image {
  grid-area: image;
  align-self: end;
  width: 35.47vw;
  aspect-ratio: 454 / 301;
  position: relative;
  z-index: 2;
}

.company_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .company {
    padding: 80px 0;
  }

  .company .container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 0;
  }

  .company_layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image";
  }

  .company_side {
    left: 0;
    bottom: 80px;
    width: 10%;
    max-width: none;
  }

  .company_image {
    width: calc(100% + 5vw);
    aspect-ratio: auto;
    margin-right: -5vw;
  }

  .company_button_wrap {
    width: auto;
    margin-left: 0;
  }

  .company_image img {
    height: auto;
  }
}

/* ====================
about
==================== */
.about {
  padding: 51px 0 150px;
  background: url("../images/aboutus_bg.jpg") no-repeat center center / cover;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 72, 155, 0.03);
  pointer-events: none;
}

.about_layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header visual"
    "text   visual";
  align-items: center;
  gap: 0;
}

.about_header_wrap {
  grid-area: header;
}

.about_visual_wrap {
  grid-area: visual;
}

.about_text_wrap {
  grid-area: text;
  padding-top: var(--margin_s);
}

.about_text {
  margin-bottom: var(--margin_m);
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
}

.about_lead {
  margin-bottom: var(--margin_s);
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(24px, calc((34 / 1440) * 100vw), 44px);
}

.about_visual {
  width: 100%;
  position: relative;
  display: block;
  transition: opacity 0.3s ease;
}

.about_visual:hover {
  opacity: 0.8;
}

.about_visual_infograph {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: rotate(-8deg);
  transform-origin: center;
}

.about_visual_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 27.87%;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.about_visual.is_visible .about_visual_infograph {
  animation: about_infograph_in 0.5s linear 0.3s forwards;
}

.about_visual.is_visible .about_visual_logo {
  animation: about_logo_in 0.7s ease-out 0.25s forwards;
}

@keyframes about_infograph_in {
  0% {
    opacity: 0;
    transform: rotate(-8deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes about_logo_in {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 981px) {
  .about .about_text,
  .about .about_lead {
    padding-left: 48px;
  }

  .about .common_button {
    margin-left: 48px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0 80px;
  }

  .about_layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .about_layout > div {
    width: 100%;
  }

  .about_header_wrap {
    order: 1;
  }

  .about_visual_wrap {
    order: 2;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--margin_m);
  }

  .about_text_wrap {
    order: 3;
  }
}

/* ====================
results
==================== */
.results {
  padding-top: var(--margin_xl);
}

.results_intro {
  width: 73.44%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 48px;
  padding-left: 50px;
}

.results_intro_title {
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 18px;
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 36px);
}

.results_intro_text {
  max-width: 900px;
  line-height: 1.6;
  font-weight: 400;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
}

.results_container {
  position: relative;
  padding: 0 0 var(--margin_xl);
  background: linear-gradient(0deg, rgba(211, 223, 255, 0.5) 0%, #fff 100%);
}

.results_container::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 100%;
  height: 90%;
  background: url(../images/project-bg-map.png) no-repeat center / contain;
  pointer-events: none;
  background-position: bottom;
  z-index: 0;
}

.results_container > * {
  position: relative;
  z-index: 1;
}

.results_cards {
  width: 73.44%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 40px;
  max-width: 760px;
}

.results_button {
  width: 73.44%;
  max-width: 1440px;
  margin: 54px auto 0;
  text-align: center;
}

.results_card {
  display: block;
  overflow: hidden;
}

.results_card img {
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .results_container::before {
    height: 30%;
    bottom: unset;
    top: 0;
    background-position: top;
  }

  .results_intro {
    padding-left: 0;
  }

  .results_intro,
  .results_cards,
  .results_button {
    width: 90%;
  }

  .results_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* ====================
news
==================== */
.news {
  position: relative;
  padding: var(--margin_m) 0 var(--section_space_sm);
  scroll-margin-top: var(--header_height);
}

.news .section_subtitle {
  margin-top: 8px;
}

.news_layout {
  position: relative;
}

.news_body {
  position: relative;
}

.news_side {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% + 24px));
  pointer-events: none;
}

.news_side.is_visible {
  opacity: 1;
  transform: translateY(-50%);
}

.news_list {
  width: 100%;
  display: grid;
  gap: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}

.news_item {
  padding:
    clamp(14px, calc((20 / 1440) * 100vw), 28px)
    clamp(56px, calc((80 / 1440) * 100vw), 112px);
}

.news_item:nth-child(odd) {
  background: var(--color_bg_section);
}

.news_item_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news_item_text {
  min-width: 0;
}

.news_meta {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c7c7c7;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
}

.news_meta span + span {
  padding-left: 24px;
  border-left: 1px solid #d8e0ee;
}

.news_title {
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 24px);
  text-decoration: none;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.28s ease;
}

.news_arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.news_arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--color_blue);
  border-right: 4px solid var(--color_blue);
  transform: rotate(45deg);
  transition: left 0.28s ease;
}

.news_item:hover .news_title {
  text-decoration: underline;
}

.news_item:hover .news_arrow::before {
  left: 4px;
}

.news_more {
  position: absolute;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 40px;
  height: 72px;
}

.news_more_button {
  width: 40px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.news_more_button:disabled {
  cursor: default;
}

.news_more_icon {
  position: relative;
  display: block;
  width: 16px;
  height: 10px;
}

.news_more_icon::before,
.news_more_icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 11px;
  height: 3px;
  background: var(--color_blue);
}

.news_more_button:disabled .news_more_icon::before,
.news_more_button:disabled .news_more_icon::after {
  background: #b4c0d6;
}

.news_more_icon_up::before {
  left: -1px;
  transform: rotate(-45deg);
}

.news_more_icon_up::after {
  right: -1px;
  transform: rotate(45deg);
}

.news_more_icon_down::before {
  left: -1px;
  transform: rotate(45deg);
}

.news_more_icon_down::after {
  right: -1px;
  transform: rotate(-45deg);
}

.news_button_wrap {
  margin-top: var(--margin_m);
  text-align: center;
}

.news_page_initiatives {
  padding-bottom: var(--section_space_sm);
  scroll-margin-top: var(--header_height);
}

.news_page_initiatives_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.news_page_initiatives_card {
  padding: 32px 16px;
  background: var(--color_bg_section);
  border-radius: 20px;
}

.news_page_initiatives_card h3 {
  color: #1d489b;
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 32px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.news_page_initiatives_card figure {
  margin-top: 10px;
  height: clamp(130px, calc((160 / 1440) * 100vw), 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_page_initiatives_card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.news_page_initiatives_card p {
  margin-top: 10px;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
  line-height: 1.6;
  min-height: 4.8em;
  text-align: center;
}

@media (max-width: 980px) {
  .news_page_initiatives_cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news_page_initiatives_card {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }

  .news_page_initiatives_card p {
    min-height: 0;
  }

  .news_page_initiatives_card figure {
    height: 150px;
  }
}

.news_page_calendar {
  padding-bottom: var(--section_space_sm);
  scroll-margin-top: var(--header_height);
}

.news_page_calendar_panel {
  background: var(--color_bg_section);
  padding: 40px 44px 36px;
}

.news_page_calendar_head {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 32px;
}

.news_page_calendar_badge {
  background: var(--color_blue);
  color: #ffffff;
  text-align: center;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 27px);
  font-weight: 500;
  line-height: 1.2;
  padding: 17px 12px;
}

.news_page_calendar_note {
  color: #000;
  font-size: clamp(12px, calc((18 / 1440) * 100vw), 24px);
  line-height: 1.6;
}

.news_page_calendar_image img,
.news_page_calendar_image iframe {
  width: 100%;
  display: block;
}

.news_page_calendar_image iframe {
  aspect-ratio: 4 / 3;
  height: auto;
}

.news_page_calendar_button_wrap {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 1180px) {
  .news,
  .news_page_initiatives,
  .news_page_calendar {
    scroll-margin-top: 72px;
  }
}

#aboutus-services,
#voice {
  scroll-margin-top: var(--header_height);
}

@media (max-width: 1180px) {
  #aboutus-services,
  #voice {
    scroll-margin-top: 72px;
  }

  .recruit_page_message_card {
    scroll-margin-top: 72px;
  }
}

@media (max-width: 980px) {
  .news_page_calendar_panel {
    padding: 24px 20px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .news_page_calendar_image iframe {
    aspect-ratio: 4 / 4;
  }

  .news_page_calendar_head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .news_page_calendar_badge {
    width: 260px;
    margin: 0 auto;
    padding: 12px 10px;
  }

  .news_page_calendar_note {
    text-align: center;
    font-size: 14px;
  }

  .news_page_calendar_button_wrap {
    margin-top: 24px;
  }
}

@media (max-width: 468px) {
  .news_page_calendar_image {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.news_single_main {
  padding-bottom: var(--section_space_sm);
}

.news_single_article {
  padding: var(--margin_m) 0 var(--section_space_sm);
}

.news_single_container {
  max-width: 980px;
}

.news_single_meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #9fb0cf;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.news_single_meta span + span {
  padding-left: 18px;
  border-left: 1px solid #d8e0ee;
  color: #1d489b;
}

.news_single_title {
  color: #222;
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 32px);
  line-height: 1.45;
  font-weight: 500;
}

.news_single_content {
  margin-top: 24px;
  color: #222;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.9;
}

.news_single_content p {
  margin-bottom: var(--margin_s);
}

.news_single_content .wp-block-column .wp-block-column figure.wp-block-image img {
  width: 100%;
  height: auto;
}

.wp-block-image img{
  width: 100%;
  height: auto;
}
.news_single_content h3 {
  color: var(--color_blue_dark);
  font-weight: 500;
  line-height: 1.5;
}

.news_single_content h2 {
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.6em;
  margin-bottom: 0.7em;
  padding-bottom: 0.32em;
  border-bottom: 2px solid #b4c0d6;
  font-size: clamp(20px, calc((30 / 1440) * 100vw), 30px);
}

.news_single_content h3 {
  margin-top: 1.35em;
  margin-bottom: 0.55em;
  padding-left: 0.55em;
  border-left: 4px solid var(--color_blue_dark);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
}

.news_single_content a {
  color: var(--color_blue_dark);
  text-decoration: underline;
}

.news_single_content ul,
.news_single_content ol {
  padding-left: 1.5em;
  margin-bottom: var(--margin_s);
}

.news_single_content ul li,
.news_single_content ol li {
  line-height: 1.9;
  margin-top: 0.4em;
}

.news_single_content ul {
  list-style-type: disc;
}

.news_single_content ol {
  list-style-type: decimal;
}

.news_single_related {
  margin-top: var(--margin_m);
  padding-top: var(--margin_m);
  border-top: 1px solid #1D489B;
}

.news_single_related_title {
  color: #9fb0cf;
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 36px);
  line-height: 1.2;
  font-weight: 500;
}

.news_single_related_list {
  margin-top: var(--margin_s);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--margin_m);
}

@media (min-width: 981px) {
  .news_single_related_list {
    padding: 0 var(--margin_m);
  }
}

.news_single_related_link {
  display: block;
}

.news_single_related_thumb {
  border: 4px solid #b4c0d6;
  background: #ffffff;
}

.news_single_related_thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 342 / 195;
  object-fit: cover;
}

.news_single_related_placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 305 / 140;
  background: #e5e9f2;
}

.news_single_related_name {
  margin-top: 16px;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 20px);
  line-height: 1.5;
  color: #333;
}

.news_single_back {
  margin-top: var(--margin_m);
  text-align: center;
}

/* ====================
recruit page
==================== */
.recruit_page_main .section_header {
  margin-bottom: 34px;
}

.recruit_page_mv {
  padding: 96px 0 56px;
}

.recruit_page_mv_layout {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 46.4vw);
  align-items: center;
  gap: 0;
  padding-right: 6.09vw;
  padding-left: 6.09vw;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.recruit_page_mv_lead {
  justify-self: center;
  margin-top: 0;
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 46px);
  line-height: 1.5;
  padding-left: 45px;
  font-weight: 500;
  color: #000;
}

.recruit_page_mv_image{
  max-width: 600px;
}

.recruit_page_mv_image img {
  width: 100%;
  display: block;
}

.recruit_page_message {
  position: relative;
  padding: 20px 0 0;
}

.recruit_page_side {
  position: absolute;
  left: calc(50% - 50vw);
  top: 0;
  transform: translateY(16px);
}

.recruit_page_message_layout.is_visible .recruit_page_side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.recruit_page_deco {
  position: absolute;
  left: 0;
  top: 30px;
  width: 86px;
  max-width: 10vw;
  aspect-ratio: 114 / 617;
  background: url(\"../images/deco.png\") no-repeat left center / contain;
}

.recruit_page_message_layout {
  position: relative;
  display: block;
}

.recruit_page_message_text {
  width: 100%;
  max-width: 100%;
  margin-bottom: 36px;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.95;
}

.recruit_page_message_text p + p {
  margin-top: var(--margin_xs);
}

.recruit_page_message_card {
  position: relative;
  scroll-margin-top: calc(var(--header_height) + clamp(140px, 12vw, 220px));
}

.recruit_page_message_card_text {
  --message-bg-extend: 180px;
  position: relative;
  z-index: 1;
  width: min(73.44%, 1440px);
  margin: 0 auto;
  min-width: 0;
  padding-top: var(--section_space_sm);
  padding-right: clamp(24px, 3.3vw, 48px);
  padding-bottom: 46px;
  padding-left: 0;
}

.recruit_page_message_card_text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: calc(100% + var(--message-bg-extend));
  transform: translateX(-50%);
  background: var(--color_bg_section);
  z-index: -1;
}

.recruit_page_message_card h2 {
  color: #b4c0d6;
  font-size: clamp(26px, calc((32 / 1440) * 100vw), 43px);
  line-height: 1.2;
  font-weight: 500;
}

p.recruit_page_message_heading {
  margin-top: var(--margin_xs);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.5;
  color: #222;
  font-weight: 500;
}

.recruit_page_message_card p:not(.recruit_page_message_heading) {
  margin-top: var(--margin_xs);
  line-height: 1.85;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
}

.recruit_page_message_president {
  margin-top: 14px;
  display: inline-flex;
  align-items: end;
  gap: 10px;
  color: var(--color_text);
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.4;
}

.recruit_page_message_president img {
  width: min(100%, 150px);
  height: auto;
  display: block;
}

.recruit_page_message_photo {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-8%, -50%);
  width: 36.64vw;
  min-width: 400px;
  max-width: 600px;
  z-index: 2;
}

@media (min-width: 1440px) {
  .recruit_page_message_photo {
    max-width: 530px;
    transform: translate(-8%, -40%);
  }
}

.recruit_page_message_photo img {
  width: 100%;
  display: block;
}

.recruit_page_gallery {
  margin-top: var(--margin_m);
}

.recruit_page_gallery_stage {
  --gallery-base-width: 1280;
  --gallery-base-height: 602;
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 602;
  background: linear-gradient(90deg, rgba(29, 72, 155, 0.70) 0%, rgba(117, 143, 192, 0.70) 47.12%, #F5F5F5 100%);
}

.gallery_sp_only {
  display: none;
}

.recruit_page_gallery_item {
  position: absolute;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.recruit_page_gallery_item img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.recruit_page_gallery_item.item01 {
  left: calc(0 / var(--gallery-base-width) * 100%);
  top: calc(25 / var(--gallery-base-height) * 100%);
  width: calc(338 / var(--gallery-base-width) * 100%);
  aspect-ratio: 338 / 191;
}

.recruit_page_gallery_item.item02 {
  left: calc(476 / var(--gallery-base-width) * 100%);
  top: calc(95 / var(--gallery-base-height) * 100%);
  width: calc(328 / var(--gallery-base-width) * 100%);
  aspect-ratio: 328 / 219;
}

.recruit_page_gallery_item.item03 {
  right: calc(107 / var(--gallery-base-width) * 100%);
  top: calc(25 / var(--gallery-base-height) * 100%);
  width: calc(276 / var(--gallery-base-width) * 100%);
  aspect-ratio: 276 / 207;
}

.recruit_page_gallery_item.item04 {
  left: calc(70 / var(--gallery-base-width) * 100%);
  bottom: calc(30 / var(--gallery-base-height) * 100%);
  width: calc(383 / var(--gallery-base-width) * 100%);
  aspect-ratio: 383 / 299;
}

.recruit_page_gallery_item.item05 {
  right: calc(213 / var(--gallery-base-width) * 100%);
  bottom: calc(43 / var(--gallery-base-height) * 100%);
  width: calc(431 / var(--gallery-base-width) * 100%);
  aspect-ratio: 431 / 288;
}

.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item {
  opacity: 1;
  transform: translateY(0);
}

.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item.item01 { transition-delay: 0.05s; }
.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item.item02 { transition-delay: 0.2s; }
.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item.item03 { transition-delay: 0.35s; }
.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item.item04 { transition-delay: 0.5s; }
.recruit_page_gallery_stage.is_visible .recruit_page_gallery_item.item05 { transition-delay: 0.65s; }

.recruit_page_jobs {
  padding: var(--section_space_sm) 0;
}

@media (max-width: 980px) {
  .recruit_page_jobs {
    padding: var(--margin_l) 0;
  }
}

.recruit_page_jobs .section_title {
  text-align: center;
}

.recruit_page_jobs_list {
  display: grid;
  gap: 0;
}

.recruit_page_job_item {
  display: grid;
  grid-template-columns: clamp(220px, 15.28vw, 300px) 1fr;
  gap: 26px;
  align-items: center;
  padding: var(--margin_s) 0;
}

.recruit_page_job_item.is_alt {
  position: relative;
  background: transparent;
  padding: 28px 20px;
  z-index: 0;
}

.recruit_page_job_item.is_alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--color_bg_section);
  z-index: -1;
}

.recruit_page_job_item > img {
  width: 100%;
  display: block;
}

.recruit_page_job_body h3 {
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.4;
  font-weight: 500;
}

.recruit_page_job_body p {
  margin-top: 10px;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  line-height: 1.8;
}

.recruit_page_job_buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.recruit_page_job_button_icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  justify-self: start;
}

.recruit_page_job_button {
  width: 230px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color_blue_dark);
  border-radius: 100vmax;
  color: var(--color_blue_dark);
  background: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 8px;
  transition: background-color 0.25s ease;
}

.recruit_page_job_button_label {
  text-align: center;
  line-height: 1;
}

.recruit_page_job_button_arrow {
  width: 10px;
  height: auto;
  display: block;
  justify-self: end;
  text-align: right;
  transition: transform 0.25s ease;
}

.recruit_page_job_button:hover {
  background: var(--color_title_sub);
}

.recruit_page_job_button:hover .recruit_page_job_button_arrow {
  transform: translateX(4px);
}

.recruit_page_voice {
  position: relative;
}

.recruit_voice_stripe {
  top: 0;
  right: 0;
  aspect-ratio: 361 / 77;
  background: url("../images/conpany_outline_deco.svg") no-repeat center /
    contain;
}

.recruit_page_voice .section_title,
.recruit_page_voice .section_subtitle {
  text-align: left;
}

.recruit_page_voice_grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 60px 40px;
}

@media (min-width: 768px) {
  .recruit_page_voice_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .recruit_page_voice_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 40px;
  }
}

@media (min-width: 140px) {
  .recruit_page_voice_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 32px;
  }
}

.recruit_page_voice_grid .voice_image_wrap,
.recruit_page_voice_grid .voice_shadow,
.recruit_page_voice_grid .voice_image {
  width: 100%;
}

.recruit_voice_card {
  cursor: pointer;
}

.recruit_voice_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.recruit_voice_modal.is_open {
  opacity: 1;
  pointer-events: auto;
}

body.recruit_modal_open {
  overflow: hidden;
}

.recruit_voice_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.recruit_voice_modal_dialog {
  position: relative;
  width: min(92%, 960px);
  max-height: min(86vh, 920px);
  overflow: auto;
  background: #f6f9ff;
  padding: 44px 36px 36px;
}

.recruit_voice_modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  z-index: 10;
}

.recruit_voice_modal_close::before,
.recruit_voice_modal_close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1px;
  background: #1d489b;
}

.recruit_voice_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.recruit_voice_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.recruit_voice_modal_head {
  display: grid;
  grid-template-columns: minmax(250px, 37%) 1fr;
  gap: 60px;
  align-items: start;
}

.recruit_voice_modal_image img {
  width: 100%;
  display: block;
}

.recruit_voice_modal_image {
  position: relative;
}

#recruit-voice-modal-meta {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #ffffff;
  text-align: right;
  font-weight: 700;
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1.4;
}

#recruit-voice-modal-caption {
  margin-top: 0;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 27px);
  line-height: 1.4;
  font-weight: 500;
  color:#1D489B;
  text-align: center;
}

#recruit-voice-modal-tags {
  margin-top: 10px;
  line-height: 1.7;
}

.recruit_voice_modal_message_box {
  margin-top: 14px;
  background: #ffffff;
  border-radius: 30px;
  padding: 18px 20px;
}

.recruit_voice_modal_body {
  margin-top: 30px;
}

.recruit_voice_modal_body_title {
  color: #1d489b;
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 24px);
  font-weight: 500;
}

#recruit-voice-modal-job {
  margin-top: 10px;
  line-height: 1.9;
}

.recruit_voice_modal_qa {
  margin-top: 26px;
}

.recruit_voice_modal_qa_item {
  background: #ffffff;
}

.recruit_voice_modal_qa_button {
  --qa-icon-size: 24px;
  --qa-icon-stroke: 3px;
  --qa-icon-offset: 32px;
  --qa-icon-center-right: calc(
    var(--qa-icon-offset) + (var(--qa-icon-size) / 2)
  );
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0 calc(var(--qa-icon-offset) + var(--qa-icon-size) + 10px) 0 34px;
  position: relative;
  border: 0;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  font: inherit;
  text-align: left;
  color: #1d489b;
  font-size: 17px;
  line-height: 1.5;
  cursor: pointer;
  border-bottom: 0;
  font-weight: 500;
}

@media (max-width: 980px) {
  .recruit_voice_modal_qa_button {
    --qa-icon-size: 20px;
    --qa-icon-stroke: 2px;
    --qa-icon-offset: 16px;
    padding-left: 16px;
  }
}

.recruit_voice_modal_qa_button::after {
  content: "";
  position: absolute;
  right: calc(var(--qa-icon-center-right) - (var(--qa-icon-size) / 2));
  top: 50%;
  width: var(--qa-icon-size);
  height: var(--qa-icon-stroke);
  background: #1d489b;
  transform: translateY(-50%);
}

.recruit_voice_modal_qa_button::before {
  content: "";
  position: absolute;
  right: calc(var(--qa-icon-center-right) - (var(--qa-icon-stroke) / 2));
  top: 50%;
  width: var(--qa-icon-stroke);
  height: var(--qa-icon-size);
  background: #1d489b;
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.recruit_voice_modal_qa_item{
  margin-bottom: 16px;
}

.recruit_voice_modal_qa_item.is_open .recruit_voice_modal_qa_button::before {
  transform: translateY(-50%) rotate(90deg);
}

.recruit_voice_modal_qa_panel {
  display: none;
  padding: 18px 32px;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .recruit_voice_modal_qa_panel {
    padding: 18px 16px;
  }
}

.recruit_voice_modal_qa_q {
  color: #1d489b;
  font-weight: 500;
}

.recruit_voice_modal_qa_label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: 100%;
  /* Extend underline into icon area so it reaches under the + icon. */
  margin-right: calc(
    -1 * (var(--qa-icon-offset) + var(--qa-icon-size) + 10px)
  );
  border-bottom: 1px solid transparent;
  padding: 16px 0;
  padding-right: calc(var(--qa-icon-offset) + var(--qa-icon-size) + 10px);
}

.recruit_voice_modal_qa_item.is_open .recruit_voice_modal_qa_label {
  border-bottom-color: #1d489b;
}

.recruit_voice_modal_qa_item.is_open .recruit_voice_modal_qa_panel {
  display: block;
}

.recruit_page_requirements {
  position: relative;
  padding: var(--section_space_sm) 0;
}

.recruit_page_requirements .section_title {
  text-align: center;
}

.recruit_page_requirements_note {
  text-align: center;
  color: #4d4d4d;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  line-height: 1.8;
  margin-bottom: 30px;
}

.recruit_page_requirements_grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.recruit_page_requirements_grid .recruit_page_requirement_card {
  grid-column: span 2;
}

.recruit_page_requirements_grid .recruit_page_requirement_card:nth-child(4) {
  grid-column: 2 / 4;
}

.recruit_page_requirements_grid .recruit_page_requirement_card:nth-child(5) {
  grid-column: 4 / 6;
}

@media (max-width: 1180px) {
  .recruit_page_requirements_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit_page_requirements_grid .recruit_page_requirement_card,
  .recruit_page_requirements_grid .recruit_page_requirement_card:nth-child(4),
  .recruit_page_requirements_grid .recruit_page_requirement_card:nth-child(5) {
    grid-column: auto;
  }
}

.recruit_page_requirement_card {
  position: relative;
  background: var(--color_bg_section);
  padding: 22px;
  border-radius: 20px;
}

.recruit_page_requirement_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(
    1.4 * clamp(20px, calc((24 / 1440) * 100vw), 32px) +
    1.5 * clamp(12px, calc((14 / 1440) * 100vw), 19px) +
    4px
  );
  margin-top: 8px;
}

.recruit_page_requirement_header.has_subtitle {
  justify-content: flex-start;
}

.recruit_page_requirement_card h3 {
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.4;
  margin-top: 0;
  text-align: center;
  font-weight: 500;
}

.recruit_page_requirement_subtitle {
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  color: #666;
  text-align: center;
  margin-top: 4px;
}

.recruit_page_requirement_status {
  position: absolute;
  top: 24px;
  left: 16px;
  min-width: 70px;
  padding: 11px 12px;
  border-radius: 2px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.recruit_page_requirement_status.is_open {
  background: #1D489B;
}

.recruit_page_requirement_status.is_closed {
  background: #B4C0D6;
}

.recruit_page_requirement_card img:not(.recruit_page_requirement_button_arrow) {
  margin-top: 14px;
  width: 100%;
  display: block;
}

.recruit_page_requirement_summary {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.recruit_page_requirement_summary div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  align-items: start;
}

.recruit_page_requirement_detail dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  align-items: start;
}

.recruit_page_requirement_summary dt {
  font-size: clamp(14px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.7;
}

.recruit_page_requirement_summary dd {
  font-size: clamp(14px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.7;
}

.recruit_page_requirement_detail dt {
  font-size: clamp(14px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.7;
}

.recruit_page_requirement_detail dd {
  font-size: clamp(14px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.7;
}

.recruit_page_requirement_summary_note {
  margin-top: 6px;
  font-size: clamp(12px, calc((13 / 1440) * 100vw), 17px);
  line-height: 1.6;
}

.recruit_page_requirement_detail dd ul {
  margin: 0;
  padding-left: 1.1em;
  list-style: disc;
}

.recruit_page_requirement_detail {
  display: none;
  margin-top: 12px;
}

.recruit_page_requirement_card.is_open .recruit_page_requirement_detail {
  display: block;
}

.recruit_page_requirement_detail dl {
  display: grid;
  gap: 6px;
}

.recruit_page_requirement_actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.recruit_page_requirement_toggle,
.recruit_page_requirement_apply {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #1d489b;
  background: #ffffff;
  color: #1d489b;
  height: 48px;
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  transition: background-color 0.25s ease, color 0.25s ease;
  padding: 0 16px;
}

.recruit_page_requirement_apply {
  background: #ffffff;
  color: #1d489b;
}

.recruit_page_requirement_apply.is_disabled {
  background: #b4c0d6;
  border-color: #b4c0d6;
  color: #ffffff;
  pointer-events: none;
}

.recruit_page_requirement_toggle:hover,
.recruit_page_requirement_apply:hover {
  background: var(--color_title_sub);
}

.recruit_page_requirement_button_label {
  width: 100%;
  text-align: center;
  line-height: 1;
}

.recruit_page_requirement_button_arrow {
  width: 10px;
  height: auto;
  display: block;
  position: absolute;
  right: 16px;
  transition: transform 0.25s ease;
}

.recruit_page_requirement_toggle .recruit_page_requirement_button_arrow {
  transform: rotate(90deg);
}

.recruit_page_requirement_card.is_open .recruit_page_requirement_toggle .recruit_page_requirement_button_arrow {
  transform: rotate(-90deg);
}

.recruit_page_requirement_card.is_closed {
  opacity: 0.96;
}

.recruit_page_requirement_card p {
  margin-top: 0;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .recruit_page_mv_layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-right: 0;
    padding-left: 5%;
    margin-top: var(--margin_l);
  }


  .recruit_page_mv_image{
   margin-right:0;
   margin-left:auto; 
  }

  .recruit_page_mv_lead {
    margin-top: 0;
    justify-self: start;
    font-size: 30px;
    padding-left: 0;
  }

  .recruit_page_message{
    padding-top: 0;
  }

  .recruit_page_message_card {
    width: 100%;
  }

  .recruit_page_message_text {
    margin-bottom: var(--margin_l);
    padding-right: 0;
  }

  .recruit_page_message_photo {
    position: static;
    transform: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 0;
  }

  .recruit_page_message_card_text {
    --message-bg-extend: 0px;
    width: 90%;
    margin: 0 auto;
    max-width: none;
    padding: var(--margin_m) 0;
  }

  .recruit_page_message_card_text::before {
    width: 100vw;
  }

  .recruit_page_side {
    display: none;
  }

  .company_outline_stripe,
  .recruit_voice_stripe {
    display: block;
    width: 220px;
    top: 24px;
    right: 0;
    aspect-ratio: 361 / 77;
  }

  .recruit_voice_stripe{
    top: -24px!important;
  }

  .recruit_page_gallery_stage {
    --gallery-base-width: 390;
    --gallery-base-height: 330;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 390 / 330;
  }

  .recruit_page_gallery_item {
    position: absolute;
  }

  .recruit_page_gallery_item.item01 {
    left: calc(0 / var(--gallery-base-width) * 100%);
    top: calc(12 / var(--gallery-base-height) * 100%);
    width: calc(190 / var(--gallery-base-width) * 100%);
  }

  .recruit_page_gallery_item.item02 {
    left:unset;
    right: 0;
    top: calc(100 / var(--gallery-base-height) * 100%);
    width: calc(160 / var(--gallery-base-width) * 100%);
  }

  .recruit_page_gallery_item.item03 {
    right: calc(150 / var(--gallery-base-width) * 100%);
    top: unset;
    bottom: calc(18 / var(--gallery-base-height) * 100%);
    width: calc(202 / var(--gallery-base-width) * 100%);
  }

  .gallery_pc_only {
    display: none;
  }

  .gallery_sp_only {
    display: block;
  }

  .recruit_page_job_item,
  .recruit_page_job_item.is_alt {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .recruit_page_job_item > img {
    max-width: 360px;
    margin: 0 auto;
  }

  .recruit_page_job_buttons {
    justify-content: center;
  }

  .recruit_page_voice .section_title{
    padding-top: 60px;
  }

  .recruit_page_voice_grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    gap: 24px;
  }

  .recruit_page_voice_grid .voice_card {
    max-width: 279px;
    margin: 0 auto;
  }

  .recruit_voice_modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px 0;
  }

  .recruit_voice_modal_dialog {
    width: calc(100% - 24px);
    max-height: none;
    padding: 40px 18px 22px;
  }

  .recruit_voice_modal_head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit_page_requirements_grid {
    grid-template-columns: 1fr;
  }

  .recruit_page_requirement_card {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .recruit_page_requirement_detail dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .recruit_page_requirement_detail dl {
    gap: 12px;
  }

  .recruit_page_requirement_summary dt,
  .recruit_page_requirement_detail dt {
    font-weight: 500;
  }

}

@media (max-width: 980px) {
  .news_single_meta {
    font-size: 14px;
  }

  .news_single_title {
    font-size: 28px;
  }

  .news_single_content {
    font-size: 16px;
  }

  .news_single_related {
    margin-top: 32px;
    padding-top: 14px;
  }

  .news_single_related_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 980px) {
  .news_side,
  .news_more {
    display: none;
  }

  .news_body {
    position: static;
  }

  .news_list {
    height: auto !important;
    overflow: visible;
  }

  .news_item {
    padding: 28px 20px;
  }

  .news_item:nth-child(n + 4) {
    display: none;
  }

  .news_title {
    word-break: break-all;
  }
}

/* ====================
calendar
==================== */
.calendar {
  background: var(--color_bg_section);
  padding: 33px 0 49px;
}

.calendar_head {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 14px 70px;
  background: var(--color_blue);
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 27px);
}

.calendar_layout {
  display: grid;
  grid-template-columns: 560px auto;
  gap: 62px;
  align-items: center;
  justify-content: center;
}

.calendar_visual {
  text-align: center;
}

.calendar_image {
  width: 100%;
  max-width: 840px;
}

.calendar_visual iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
}

.calendar_info {
  padding-top: 10px;
}

.calendar_title {
  margin-bottom: 43px;
}

.calendar_text {
  line-height: 1.8;
  font-weight: 400;
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 27px);
}

@media (max-width: 980px) {
  .calendar {
    padding: 40px 0;
  }

  .calendar_head {
    width: auto;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 12px 18px;
    font-size: clamp(14px, calc((20 / 1440) * 100vw), 27px);
  }

  .calendar_layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calendar_info {
    padding-top: 0;
  }

  .calendar_text {
    text-align: center;
  }
}

/* ====================
initiative
==================== */
.initiative {
  padding: var(--margin_l) 0;
}

.initiative_frame {
  border: 18px solid var(--color_blue);
  padding: 40px 80px 30px;
  max-width: 1260px;
  margin-inline: auto;
}

.initiative_head {
  text-align: center;
  color: var(--color_blue_dark);
  font-weight: 500;
  margin-bottom: 40px;
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
}

.initiative_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.initiative_images {
  display: grid;
  gap: 0;
  max-width: 300px;
  margin: 0 auto;
}

.initiative_image {
  width: 100%;
  aspect-ratio: 269 / 153;
  object-fit: cover;
}

.initiative_text {
  text-align: center;
}

.initiative_text p {
  margin-top: 50px;
  line-height: 1.8;
  font-weight: 400;
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 24px);
}

@media (max-width: 980px) {
  .initiative_frame {
    padding: 32px 20px;
    border-width: 10px;
  }

  .initiative_layout {
    grid-template-columns: 1fr;
  }

  .initiative_text p {
    margin-top: 30px;
    white-space: nowrap;
  }
}

/* ====================
recruit
==================== */
.recruit {
  padding: var(--margin_m) 0 0;
}

.recruit_visual {
  position: relative;
  margin-top: 54px;
}

.recruit_images {
  position: relative;
  overflow: hidden;
}

.recruit_swiper .swiper-wrapper {
  transition-timing-function: linear;
  z-index: 1;
}

.recruit_swiper .swiper-slide {
  height: auto;
}

.recruit_image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.section_stripe {
  position: absolute;
  right: 0;
  top: -77px;
  width: 414px;
  aspect-ratio: 414 / 77;
  background: url("../images/recruit_deco.png") no-repeat center / contain;
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  z-index: 2;
}

.section_stripe.is_visible {
  opacity: 1;
  transform: translateX(0);
}

.recruit_label {
  position: absolute;
  right: 69px;
  bottom: 48px;
  background: #ffffff;
  padding: 12px 30px;
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 36px);
  z-index: 3;
}

.recruit_label_br_sp {
  display: none;
}

.recruit_text {
  margin: 46px 0 0;
  max-width: 1180px;
  line-height: 1.6;
  font-weight: 400;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
}

@media (max-width: 980px) {
  .recruit_image {
    height: 300px;
  }

  .recruit_visual .section_stripe {
    display: block;
    width: 220px;
    top: -41px;
    right: 0;
  }

  .recruit_label {
    right: 0;
    bottom: 20px;
    padding: 10px 16px;
    font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
    max-width: calc(100% - 32px);
    white-space: normal;
    line-height: 1.35;
    text-align: left;
  }

  .recruit_label_br_sp {
    display: inline;
  }
}

/* ====================
voice
==================== */
.voice {
  padding: var(--margin_m) 0;
}

.voice_cards {
  overflow: hidden;
  padding: 0 60px;
}

.voice_swiper .swiper-wrapper {
  align-items: flex-start;
  transition-timing-function: linear;
}

.voice_swiper .swiper-slide {
  width: clamp(279px, calc((320 / 1440) * 100vw), 380px);
}

.voice_image_wrap {
  position: relative;
  width: 100%;
}

.voice_shadow {
  position: absolute;
  right: -10px;
  top: 10px;
  width: 100%;
  aspect-ratio: 267 / 302;
  height: auto;
  background: #dbe2ef;
  z-index: -1;
}

.voice_image {
  width: 100%;
  aspect-ratio: 267 / 302;
  height: auto;
  object-fit: cover;
}

.voice_image_meta {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #ffffff;
  text-align: right;
  line-height: 1.3;
  font-weight: 700;
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 32px);
}

.voice_caption {
  margin-top: 28px;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 26px);
  color: #1D489B;
}

.voice_tags {
  margin-top: 8px;
  line-height: 1.7;
  font-weight: 500;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
}

.voice_button {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 980px) {
  .voice_cards {
    padding: 0 16px;
  }

  .voice_swiper .swiper-slide {
    width: 279px;
  }
}

/* ====================
contact
==================== */
.contact {
  background: var(--color_bg_section);
  padding: var(--margin_m) 0 var(--margin_l);
  text-align: left;
}

.contact .section_header {
  margin-bottom: 35px;
}

.contact_button {
  display: flex;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.contact_button::before,
.contact_button::after {
  display: none;
}

@media (max-width: 980px) {
  .contact {
    padding: 70px 0;
  }
}

/* ====================
footer
==================== */
.footer {
  background: #f1f5fc;
  padding: var(--margin_l) var(--margin_l) 40px 40px;
}

.footer_layout {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(300px, calc((368 / 1440) * 100vw), 500px) 1fr;
  align-items: end;
}

.footer_right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 26px;
}

.footer_logo img {
  width: 270px;
  height: auto;
}

.footer_address {
  margin-top: var(--margin_s);
  line-height: 1.9;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, calc((16 / 1440) * 100vw), 21px);
}

.footer_nav {
  display: grid;
  grid-template-columns:
    clamp(80px,  calc((100 / 1440) * 100vw), 140px)
    clamp(130px, calc((160 / 1440) * 100vw), 220px)
    clamp(140px, calc((173 / 1440) * 100vw), 240px)
    clamp(140px, calc((173 / 1440) * 100vw), 240px)
    clamp(130px, calc((160 / 1440) * 100vw), 220px);
}

.footer_col {
  padding: 0 25px 0 25px;
  border-left: 1px solid #c7d1e6;
}

.footer_col:first-child {
  border-left: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 981px) {
  .footer_col:nth-child(2) {
    border-left: none;
  }
}

.footer_col_title {
  color: var(--color_blue_dark);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
}

.footer_col_title_sub {
  margin-top: 20px;
}

.footer_links {
  display: block;
}

.footer_links a {
  display: block;
  color: var(--color_blue_dark);
  font-weight: 400;
  line-height: 1.4;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  margin-left: 6px;
  margin-bottom: 6px;
  letter-spacing: 0;
}

.footer_links a:last-child {
  margin-bottom: 0;
}

.footer_policy {
  margin-top: 0;
  text-align: right;
  color: var(--color_blue_dark);
  font-weight: 400;
  font-size: clamp(12px, calc((16 / 1440) * 100vw), 21px);
}

.footer_meta {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1280px) {
  .footer_layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer_left {
    order: 2;
    border-top: 1px solid #d9deea;
    padding-top: 24px;
  }

  .footer_right {
    order: 1;
  }

  .footer_nav {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .footer {
    padding: 40px 16px;
  }

  .footer_layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer_right {
    min-height: auto;
    display: block;
  }

  .footer_nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer_col {
    border-left: 0;
    padding: 0;
  }

  .footer_address {
    font-size: clamp(12px, calc((16 / 1440) * 100vw), 21px);
  }

  .footer_col_title {
    font-size: clamp(14px, calc((17 / 1440) * 100vw), 23px);
    border-bottom: 1px solid #c7d1e6;
    padding-bottom: 8px;
  }

  .footer_links a {
    font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  }

  .footer_policy {
    margin-top: 28px;
    text-align: left;
    font-size: clamp(12px, calc((16 / 1440) * 100vw), 21px);
  }
}

.page_top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  background: url("../images/pagetop.svg") no-repeat center / contain;
  cursor: pointer;
  z-index: 80;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}

.page_top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pagetop_hover.svg") no-repeat center / contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page_top:hover::after {
  opacity: 1;
}

.page_top.is_visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s;
}

/* ====================
company page
==================== */
.company_page_main {
  background: #ffffff;
}

.company_page_mv {
  padding: 88px 0 120px;
  background: url("../images/company_ph_bg.jpg") no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}


.company_page_mv_inner {
  position: relative;
  z-index: 1;
}

.company_page_mv_lead {
  color: #ffffff;
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
  font-weight: 600;
  line-height: 1.4;
}

.company_page_mv_lead .em {
  font-size: 1.3em;
}

.company_page_mv_text {
  margin-top: 44px;
  color: #ffffff;
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.62;
  font-weight: 500;
}

.company_page_message,
.company_page_outline,
.company_page_access {
  padding-top: var(--section_space_sm);
}

.company_page_outline {
  position: relative;
}

.company_outline_stripe {
  top: var(--section_space_sm);
  right: 0;
  aspect-ratio: 361 / 77;
  background: url("../images/conpany_outline_deco.svg") no-repeat center /
    contain;
}

.company_access_stripe {
  top: 0;
  right: 0;
}

.company_page_philosophy,
.company_page_history {
  padding-top: var(--section_space_sm);
  background: #ffffff;
}

.company_page_history {
  padding-bottom: var(--section_space_sm);
}

.company_page_message_card {
  background: var(--color_bg_section);
  width: calc(100vw - 5.47vw);
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  padding: var(--section_space_sm) 0
    calc(clamp(30px, calc((70 / 1440) * 100vw), 70px) + var(--section_space_sm))
    calc((100vw - min(73.44vw, 1440px)) / 2 - 5.47vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, min(31.484375vw, 480px));
  gap: clamp(40px, calc((80 / 1440) * 100vw), 80px);
  align-items: end;
}

.company_page_message_body {
  min-width: 0;
  max-width: none;
}

.company_page_message_heading {
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 43px);
  line-height: 1.35;
  color: var(--color_text);
  font-weight: 600;
}

.company_page_message_subheading {
  margin-top: 16px;
  color: var(--color_blue_dark);
  line-height: 1.6;
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 32px);
  font-weight: 500;
}

.company_page_message_body p {
  margin-top: var(--margin_s);
  color: var(--color_text);
  line-height: 1.9;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
}

.company_page_message_body .company_page_message_subheading {
  color: var(--color_blue_dark);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 32px);
}

.company_page_message_fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1.15s ease-out,
    transform 1.15s ease-out;
}

.company_page_message_fade.is_visible {
  opacity: 1;
  transform: translateY(0);
}

.company_page_president img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.company_page_president {
  width: min(31.484375vw, 480px);
  max-width: 100%;
  align-self: end;
  justify-self: end;
  margin-top: 0;
  transform: translateY(var(--section_space_sm));
}

.company_page_president figcaption {
  margin-top: 14px;
  display: inline-flex;
  align-items: end;
  gap: 10px;
  color: var(--color_text);
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
  line-height: 1.4;
}

.company_page_president figcaption img {
  width: min(100%, 150px);
  height: auto;
  display: block;
}

.company_page_philosophy_list {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 70px;
}

.company_page_philosophy_item {
  text-align: center;
}

.company_page_philosophy_item h3 {
  color: var(--color_blue_dark);
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 43px);
  line-height: 1.45;
  font-weight: 700;
}

.company_page_philosophy_item h3::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("../images/company_philosophy_head.svg") no-repeat center /
    contain;
  vertical-align: middle;
}

.company_page_philosophy_item p {
  margin-top: 12px;
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.85;
}

.company_page_outline_table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.company_page_outline_table th,
.company_page_outline_table td {
  border-bottom: 1px solid #1d489b;
  padding: 16px 0;
  vertical-align: top;
  color: var(--color_text);
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 26px);
  line-height: 1.8;
}

.company_page_outline_table td p {
  margin-top: var(--margin_xs);
}

.company_page_outline_table td p:first-child {
  margin-top: 0;
}

.company_page_outline_table th {
  width: 200px;
  font-weight: 500;
  text-align: left;
}

.company_page_outline_table td {
  font-weight: 400;
}

.company_page_outline_address_row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 6px;
}

.company_page_outline_map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #b4c0d6;
  border-radius: 3px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.company_page_outline_map img {
  width: 16px;
  height: 16px;
}

.company_page_outline_map span {
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 26px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.company_page_org {
  margin-top: var(--section_space_sm);
}

.company_page_block_title {
  color: var(--color_title_sub);
  margin-bottom: 22px;
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 43px);
  font-weight: 500;
  line-height: 1.3;
}

.company_page_org img {
  width: 100%;
  display: block;
}

.company_page_org_wrap {
  background: rgba(217, 223, 235, 0.32);
  padding: 24px;
}

.company_page_info_grid {
  margin-top: var(--section_space);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 42px;
}

.company_page_info_row {
  display: grid;
  grid-template-columns: clamp(220px, calc((280 / 1440) * 100vw), 340px) 1fr;
  gap: var(--margin_s);
  align-items: flex-start;
}

.company_page_info_row h3 {
  color: var(--color_title_sub);
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 48px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.company_page_info_subheading {
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  line-height: 1.4;
}

.company_page_info_row p {
  color: var(--color_text);
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  line-height: 1.9;
}

@media (min-width: 981px) {
  .company_page_info_row:first-child > p {
    padding-top: 60px;
  }
}

.company_page_info_content p {
  color: var(--color_text);
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  line-height: 1.9;
}

.company_page_info_list {
  margin: 2px 0;
}

.company_page_info_list li {
  color: var(--color_text);
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  line-height: 1.9;
}

.company_page_info_list li::before {
  content: "・";
}

.company_page_timeline {
  --timeline_gap_to_center: 38px;
  --timeline_center_width: 30px;
  --timeline_separator_width: calc(var(--timeline_center_width) + 3px);
  --timeline_separator_height: calc(var(--timeline_separator_width) * 0.5);
  --timeline_dot_size: 13px;
  --timeline_dot_half: 6.5px;
  --timeline_row_gap: 30px;
  width: 90%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: var(--timeline_row_gap);
  overflow: visible;
}

.company_page_timeline_center {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: var(--timeline_center_width);
  transform: translateX(-50%);
  background: linear-gradient(180deg, #1e5464 0%, #b1dde9 100%);
  z-index: 1;
}

.company_page_timeline_center::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: var(--timeline_center_width);
  height: 11px;
  background: url("../images/history_timeline_mask01.svg") no-repeat center /
    contain;
  z-index: 1;
}

.company_page_timeline_center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: var(--timeline_center_width);
  height: 20px;
  transform: translateX(-50%);
  background: url("../images/timeline_bottom.svg") no-repeat center / contain;
  z-index: 2;
}

.company_page_timeline_item {
  width: calc(50% - var(--timeline_gap_to_center));
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.company_page_timeline_item:first-child {
  padding-top: 24px;
}

.company_page_timeline_item:last-child {
  padding-bottom: 24px;
}

.company_page_timeline_item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: calc(
    -1 * ((var(--timeline_row_gap) + var(--timeline_separator_height)) / 2)
  );
  width: var(--timeline_separator_width);
  aspect-ratio: 38 / 19;
  background: url("../images/timeline_separate.svg") no-repeat center / contain;
  z-index: 5;
  display: block;
}

.company_page_timeline_item.left:not(:last-child)::before {
  right: calc(var(--timeline_gap_to_center) * -1);
  transform: translateX(50%);
}

.company_page_timeline_item.right:not(:last-child)::before {
  left: calc(var(--timeline_gap_to_center) * -1);
  transform: translateX(-50%);
}

.company_page_timeline_item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--timeline_dot_size);
  height: var(--timeline_dot_size);
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
  z-index: 3;
}

.company_page_timeline_item.left {
  margin-right: auto;
  text-align: right;
}

.company_page_timeline_item.right {
  margin-left: auto;
  text-align: left;
}

.company_page_timeline_item.left::after {
  right: calc(var(--timeline_gap_to_center) * -1 - var(--timeline_dot_half));
}

.company_page_timeline_item.right::after {
  left: calc(var(--timeline_gap_to_center) * -1 - var(--timeline_dot_half));
}

.company_page_timeline_item_inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
}

.company_page_timeline_item.left .company_page_timeline_item_inner {
  margin-left: auto;
}

.company_page_timeline_item.right .company_page_timeline_item_inner {
  margin-right: auto;
}

.company_page_timeline_item h3 {
  color: #1e5464;
  font-family: "Akshar", "Roboto", sans-serif;
  font-size: clamp(28px, calc((46 / 1440) * 100vw), 61px);
  font-weight: 500;
  line-height: 1.1;
  margin-top: 2px;
  flex-shrink: 0;
}

.company_page_timeline_content {
  flex: 0 1 auto;
  max-width: none;
  min-width: 0;
}

.company_page_timeline_item.right .company_page_timeline_content {
  text-align: left;
}

.company_page_timeline_item.left .company_page_timeline_content {
  text-align: left;
}

.company_page_timeline_item p {
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 24px);
  line-height: 1.65;
}

.company_page_timeline_item p + p {
  margin-top: 2px;
}

.company_page_timeline_line {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.45em;
  align-items: start;
}

.company_page_timeline_month {
  white-space: nowrap;
}

.company_page_timeline_line_text {
  min-width: 0;
}

.timeline_persons {
  display: block;
  margin-top: 2px;
}

.timeline_person {
  display: grid;
  grid-template-columns: 5em 3.5em auto;
  gap: 0 0.3em;
}

.company_page_timeline_item figure {
  margin-bottom: 10px;
}

.company_page_timeline_item figure img {
  width: clamp(130px, calc((130 / 1440) * 100vw), 173px);
  object-fit: cover;
  object-position: center top;
}

.company_page_timeline_item figure.is_landscape img {
  width: clamp(195px, calc((195 / 1440) * 100vw), 260px);
}

.company_page_timeline_item.left figure {
  display: inline-block;
}

.company_page_timeline_item.right figure {
  display: inline-block;
}

.company_page_access {
  position: relative;
  padding-bottom: var(--section_space_sm);
}

.company_page_access_layout {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 48px;
  align-items: start;
  padding-top: 10px;
}

.company_page_access .section_header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 3px solid #d9dfeb;
}

.company_page_access_text p,
.company_page_access_nagoya p {
  margin-top: var(--margin_xxs);
  line-height: 1.9;
  font-size: clamp(16px, calc((22 / 1440) * 100vw), 22px);
}

.access_company_name,
.access_location_title {
  margin-top: 0;
  font-weight: 500;
}

.company_page_access_col {
  display: flex;
  flex-direction: column;
  gap: var(--margin_m);
}

.company_page_access_layout {
  margin-bottom: clamp(24px, calc((40 / 1440) * 100vw), 40px);
  padding-bottom: clamp(24px, calc((40 / 1440) * 100vw), 40px);
  border-bottom: 1px solid #d9deea;
}

.company_page_access_nagoya {
  max-width: 600px;
}

.company_page_access_map iframe {
  width: 470px;
  height: 469px;
  max-width: 100%;
  display: block;
}

@media (max-width: 1085px) {
  .company_page_message_card {
    grid-template-columns: 1fr;
    width: 95vw;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
    padding-top: var(--section_space_sm);
    padding-right: 5%;
    padding-left: 5%;
  }

  .company_page_message_body {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .company_page_president {
    width: 100%;
    max-width: 480px;
    transform: none;
    margin-top: var(--section_space_sm);
  }
}

@media (max-width: 980px) {
  .company_page_mv {
    padding: 48px 0 70px;
    background-image: url("../images/company_ph_bg_sp.jpg");
  }

  .company_page_message,
  .company_page_philosophy,
  .company_page_outline,
  .company_page_history,
  .company_page_access {
    padding: 76px 0;
  }

  .company_page_access_text p.access_company_name {
    font-size: 18px;
  }

  .company_page_message_card {
    grid-template-columns: 1fr;
    width: 95vw;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
    padding: 34px 5% 26px;
  }

  .company_page_president {
    width: 100%;
    margin-top: 18px;
    margin-left: auto;
    margin-right: 0;
    transform: none;
  }

  .company_page_philosophy_list {
    gap: 50px;
  }

  .company_page_philosophy_item {
    text-align: left;
  }

  .company_page_outline_table th,
  .company_page_outline_table td {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  .company_page_outline_table th {
    border-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
  }

  .section_stripe.company_outline_stripe,
  .section_stripe.company_access_stripe,
  .section_stripe.recruit_voice_stripe {
    display: block;
    width: 220px;
    top: 24px;
    right: 0;
  }

  .company_page_outline_address_row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .company_page_info_row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company_page_timeline {
    --timeline_center_width: 16px;
    --timeline_separator_width: calc(var(--timeline_center_width) + 3px);
    --timeline_separator_height: calc(var(--timeline_separator_width) * 0.5);
    --timeline_dot_size: 10px;
    --timeline_dot_half: 5px;
    --timeline_row_gap: 30px;
  }

  .company_page_timeline_center {
    left: 10px;
    width: var(--timeline_center_width);
  }

  .company_page_timeline_center::before {
    display: block;
    width: var(--timeline_center_width);
    height: 6px;
    left: 0;
    top: -1px;
  }

  .company_page_timeline_center::after {
    display: block;
    width: var(--timeline_center_width);
    height: 10px;
    left: 50%;
    bottom: -1px;
  }

  .company_page_timeline_item {
    width: 100%;
    margin: 0;
    padding-left: 46px;
    text-align: left;
  }

  .company_page_timeline_item.left,
  .company_page_timeline_item.right {
    text-align: left;
  }

  .company_page_timeline_item_inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .company_page_timeline_item h3 {
    margin-bottom: 0;
  }

  .company_page_timeline_item.left .company_page_timeline_content {
    text-align: left;
  }

  .company_page_timeline_item.left .company_page_timeline_item_inner,
  .company_page_timeline_item.right .company_page_timeline_item_inner {
    margin-left: 0;
    margin-right: 0;
  }

  .company_page_timeline_item.left h3,
  .company_page_timeline_item.right h3 {
    order: 1;
  }

  .company_page_timeline_item.left .company_page_timeline_content,
  .company_page_timeline_item.right .company_page_timeline_content {
    order: 2;
    flex: 1 1 auto;
  }

  .company_page_timeline_item::after,
  .company_page_timeline_item.left::after,
  .company_page_timeline_item.right::after {
    left: calc(10px - var(--timeline_dot_half));
    right: auto;
    top: 18px;
    transform: none;
  }

  .company_page_timeline_item::before,
  .company_page_timeline_item.left::before,
  .company_page_timeline_item.right::before {
    display: block;
    width: var(--timeline_separator_width);
    aspect-ratio: 38 / 19;
    left: calc(10px - (var(--timeline_separator_width) / 2));
    right: auto;
    bottom: -19px;
    transform: none;
  }

  .company_page_timeline_item.left:not(:last-child)::before,
  .company_page_timeline_item.right:not(:last-child)::before {
    left: calc(10px - (var(--timeline_separator_width) / 2));
    right: auto;
    transform: none;
  }

  .company_page_timeline_item figure,
  .company_page_timeline_item.left figure,
  .company_page_timeline_item.right figure {
    display: block;
    position: static !important;
    left: auto !important;
    margin-bottom: 10px;
  }

  .company_page_access_layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

/* ====================
aboutus page
==================== */
.aboutus_page_main {
  background: #ffffff;
  --aboutus_intro_overlap: clamp(40px, 9.921875vw, 127px);
}

.aboutus_page_header {
  width: 100%;
  height: 268px;
  display: flex;
  align-items: center;
  background: var(--color_bg_section);
}

.aboutus_page_header_inner {
  width: 100%;
}

.aboutus_page_title {
  color: var(--color_title_sub);
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(36px, calc((48 / 1440) * 100vw), 64px);
}

.aboutus_page_subtitle {
  margin-top: var(--margin_xxs);
  color: var(--color_title_sub);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 43px);
}

.aboutus_intro {
  padding-top: 0;
  padding-bottom: var(--section_space_sm);
  margin-top: calc(-1 * var(--aboutus_intro_overlap));
  position: relative;
  z-index: 1;
}

.aboutus_intro_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 503px);
  gap: 28px;
  align-items: center;
}

.aboutus_intro_lead {
  color: var(--color_text);
  font-size: clamp(22px, calc((36 / 1440) * 100vw), 48px);
  line-height: 1.7;
  font-weight: 600;
}

.aboutus_intro_graph {
  width: min(39.3vw, 503px);
  max-width: 100%;
  justify-self: end;
  margin-left: auto;
}

.aboutus_intro_graph img {
  width: 100%;
  height: auto;
  aspect-ratio: 503 / 454;
  display: block;
}

.aboutus_services {
  padding-bottom: var(--section_space_sm);
}

.aboutus_service_list {
  display: grid;
  gap: var(--margin_m);
}

.aboutus_service_item {
  display: grid;
  grid-template-columns: minmax(0, 500fr) minmax(0, 533fr);
  gap: 24px;
  align-items: center;
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 1.35s ease, transform 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.aboutus_service_item .aboutus_service_visual {
  order: 2;
}

.aboutus_service_item .aboutus_service_content {
  order: 1;
}

.aboutus_service_item.is_reverse {
  grid-template-columns: minmax(0, 533fr) minmax(0, 500fr);
  transform: translateX(56px);
}

.aboutus_service_item.is_visible {
  opacity: 1;
  transform: translateX(0);
}

.aboutus_service_item.is_reverse .aboutus_service_visual {
  order: 1;
}

.aboutus_service_item.is_reverse .aboutus_service_content {
  order: 2;
}

.aboutus_service_visual {
  --aboutus_panel_slant: 7.9%;
  --aboutus_panel_separator: 10px;
  --aboutus_panel_split_top: calc(50% + (var(--aboutus_panel_slant) / 2));
  --aboutus_panel_split_bottom: calc(var(--aboutus_panel_split_top) - var(--aboutus_panel_slant));
  position: relative;
  width: 100%;
  aspect-ratio: 579 / 320;
  overflow: hidden;
}

.aboutus_service_item .aboutus_service_visual {
  width: calc(100% + 100px);
  margin-right: -100px;
}

.aboutus_service_item.is_reverse .aboutus_service_visual {
  width: calc(100% + 100px);
  margin-left: -100px;
  margin-right: 0;
}

.aboutus_service_visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: polygon(
    calc(var(--aboutus_panel_split_top) - (var(--aboutus_panel_separator) / 2)) 0,
    calc(var(--aboutus_panel_split_top) + (var(--aboutus_panel_separator) / 2)) 0,
    calc(var(--aboutus_panel_split_bottom) + (var(--aboutus_panel_separator) / 2)) 100%,
    calc(var(--aboutus_panel_split_bottom) - (var(--aboutus_panel_separator) / 2)) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.aboutus_service_panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.aboutus_service_panel_primary {
  clip-path: polygon(
    var(--aboutus_panel_slant) 0,
    calc(var(--aboutus_panel_split_top) - (var(--aboutus_panel_separator) / 2)) 0,
    calc(var(--aboutus_panel_split_bottom) - (var(--aboutus_panel_separator) / 2)) 100%,
    0 100%
  );
}

.aboutus_service_panel_primary img {
  width: var(--aboutus_panel_split_top);
}

.aboutus_service_panel_secondary {
  clip-path: polygon(
    calc(var(--aboutus_panel_split_top) + (var(--aboutus_panel_separator) / 2)) 0,
    100% 0,
    calc(100% - var(--aboutus_panel_slant)) 100%,
    calc(var(--aboutus_panel_split_bottom) + (var(--aboutus_panel_separator) / 2)) 100%
  );
}

.aboutus_service_panel_secondary img {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - var(--aboutus_panel_split_bottom));
  height: 100%;
}

.aboutus_service_content {
  position: relative;
}

.aboutus_service_heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aboutus_service_no {
  color: var(--color_title_sub);
  font-family: "Roboto", sans-serif;
  font-size: clamp(52px, calc((96 / 1440) * 100vw), 128px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.aboutus_service_heading_text {
  padding-top: 0;
}

.aboutus_service_title {
  color: var(--color_title_sub);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
}

.aboutus_service_sub {
  margin-top: 4px;
  color: var(--color_title_sub);
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 32px);
  line-height: 1.4;
  font-weight: 500;
}

.aboutus_service_text {
  margin-top: 14px;
  color: #000000;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .aboutus_page_header {
    height: 200px;
    background: var(--color_bg_section);
  }

  .aboutus_intro {
    padding-top: 0;
    padding-bottom: 44px;
    margin-top: calc(-1 * var(--aboutus_intro_overlap));
  }

  .aboutus_service_list {
    gap: var(--margin_l);
  }

  .aboutus_service_item,
  .aboutus_service_item.is_reverse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: none;
    transition: opacity 1.2s ease;
  }

  .aboutus_service_item .aboutus_service_content,
  .aboutus_service_item.is_reverse .aboutus_service_content {
    display: contents;
  }

  .aboutus_service_item .aboutus_service_heading,
  .aboutus_service_item.is_reverse .aboutus_service_heading {
    order: 1;
    justify-content: flex-start;
  }

  .aboutus_service_item .aboutus_service_visual,
  .aboutus_service_item.is_reverse .aboutus_service_visual {
    order: 2;
  }

  .aboutus_service_item .aboutus_service_text,
  .aboutus_service_item.is_reverse .aboutus_service_text {
    order: 3;
  }

  .aboutus_service_visual {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutus_service_item .aboutus_service_visual,
  .aboutus_service_item.is_reverse .aboutus_service_visual {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutus_service_no {
    font-size: 64px;
  }

  .aboutus_service_heading_text {
    padding-top: 6px;
  }

  .aboutus_service_title,
  .aboutus_service_sub {
    font-size: 20px;
    white-space: normal;
  }

  .aboutus_service_text {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus_service_item,
  .aboutus_service_item.is_reverse {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .aboutus_page_title {
    font-size: 32px;
  }

  .aboutus_page_subtitle {
    font-size: 24px;
  }

  .aboutus_intro_layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aboutus_intro_lead{
    text-align: center;
  }

  .aboutus_intro {
    margin-top: 0;
    padding-top: var(--margin_m);
  }

  .aboutus_intro_graph {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ====================
privacy policy page
==================== */
.privacy_page_main {
  background: #ffffff;
}

.privacy_page_header {
  background: var(--color_bg_section);
  padding: clamp(68px, calc((96 / 1440) * 100vw), 96px) 0
    clamp(42px, calc((64 / 1440) * 100vw), 64px);
}

.privacy_page_header_inner {
  display: grid;
  gap: 0;
}

.privacy_page_title {
  color: var(--color_title_sub);
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(30px, calc((48 / 1440) * 100vw), 48px);
}

.privacy_page_subtitle {
  margin-top: var(--margin_xxs);
  color: var(--color_title_sub);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(20px, calc((32 / 1440) * 100vw), 32px);
}

.privacy_page_company {
  margin: 0 0 clamp(56px, calc((84 / 1440) * 100vw), 84px);
  text-align: right;
  color: var(--color_text);
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  line-height: 1.9;
  font-weight: 400;
}

.privacy_page_content {
  padding: 0 0 clamp(72px, calc((112 / 1440) * 100vw), 112px);
}

.privacy_page_content_inner {
  max-width: 960px;
  color: var(--color_text);
  line-height: 1.9;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  font-weight: 400;
  padding-top: var(--margin_m);
}

.privacy_page_content_inner h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  font-weight: 500;
  line-height: 1.6;
}

.privacy_page_list {
  margin-top: 16px;
}

.privacy_page_list li + li {
  margin-top: 16px;
}

.privacy_page_list h3 {
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 21px);
  line-height: 1.8;
  font-weight: 500;
}

.privacy_page_list p {
  margin-top: 4px;
}

.privacy_page_contact {
  margin-top: 28px;
}

.privacy_page_contact_title {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
}

.privacy_page_contact p + p {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .privacy_page_header {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .privacy_page_company {
    margin-bottom: 40px;
    text-align: left;
  }

  .privacy_page_content {
    padding-bottom: 72px;
  }

  .privacy_page_company,
  .privacy_page_content_inner,
  .privacy_page_content_inner h2,
  .privacy_page_list h3 {
    font-size: 14px;
  }
}

/* ====================
contact page
==================== */
.contact_page_main {
  background: #ffffff;
}

.contact_page_header {
  width: 100%;
  min-height: 268px;
  display: flex;
  align-items: center;
  background: var(--color_bg_section);
}

.contact_page_header_inner {
  width: 100%;
}

.contact_page_title {
  color: var(--color_title_sub);
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(32px, calc((48 / 1440) * 100vw), 48px);
}

.contact_page_subtitle {
  margin-top: var(--margin_xxs);
  color: var(--color_title_sub);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(22px, calc((32 / 1440) * 100vw), 32px);
}

.contact_page_content {
  padding: clamp(56px, calc((76 / 1440) * 100vw), 76px) 0
    clamp(84px, calc((120 / 1440) * 100vw), 120px);
}

.contact_page_content_inner {
  max-width: clamp(472px, 60%, 680px);
  margin: 0 auto;
}

.contact_page_lead {
  text-align: center;
  line-height: 1.9;
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 15px);
  margin: 0;
}

.contact_page_form {
  margin-top: 42px;
}

.contact_page_field + .contact_page_field {
  margin-top: 18px;
}

.contact_page_label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: clamp(16px, calc((16 / 1440) * 100vw), 18px);
  font-weight: 500;
  color: #000000;
}

.contact_page_label_plain {
  margin-bottom: 12px;
}

.contact_page_required_mark {
  color: #e24848;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(1px);
}

.contact_page_form input,
.contact_page_form select,
.contact_page_form textarea {
  width: 100%;
  border: 1px solid #dde3ef;
  border-radius: 3px;
  background: #ffffff;
  color: #1c2533;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.5;
  padding: 10px 12px;
}

.contact_page_radio_select {
  border: 1px solid #cfd2d7;
  border-radius: 3px;
  background: #ffffff;
  overflow: hidden;
}

.contact_page_radio_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  padding: 16px;
  color: #222222;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  text-align: left;
}

.contact_page_radio_arrow {
  width: 16px;
  aspect-ratio: 33 / 19;
  background: url("../images/contact_arrow.svg") no-repeat center / contain;
  transform: rotate(0deg);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact_page_radio_select.is_open .contact_page_radio_arrow {
  transform: rotate(180deg);
}

.contact_page_radio_panel {
  display: none;
  border-top: 1px solid #cfd2d7;
  padding: 16px;
}

.contact_page_radio_select.is_open .contact_page_radio_panel {
  display: block;
}

.contact_page_radio_option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #707481;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.35;
  cursor: pointer;
}

.contact_page_radio_option + .contact_page_radio_option {
  margin-top: 8px;
}

.contact_page_radio_option input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #6f7380;
  margin: 0;
  flex-shrink: 0;
}

.contact_page_form input,
.contact_page_form select {
  height: 40px;
}

.contact_page_form select {
  padding-right: 36px;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9fa8bb 50%),
    linear-gradient(135deg, #9fa8bb 50%, transparent 50%);
  background-position: calc(100% - 18px) 17px, calc(100% - 12px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact_page_form textarea {
  min-height: 170px;
  resize: vertical;
}


.contact_page_privacy_note {
  margin-top: 20px;
  color: #556b92;
  line-height: 1.8;
  font-size: clamp(11px, calc((12 / 1440) * 100vw), 16px);
}

.contact_page_privacy_check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #556b92;
}

.contact_page_privacy_check input[type="checkbox"] {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.contact_page_privacy_note a {
  color: #1d489b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact_page_submit_wrap {
  margin-top: 34px;
  text-align: center;
}

.contact_page_submit {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #42619a;
  color: #ffffff;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1;
  font-weight: 500;
  transition: background-color 0.25s ease;
}

.contact_page_submit:hover {
  background: #1d489b;
}

@media (max-width: 980px) {
  .contact_page_header {
    min-height: 200px;
  }

  .contact_page_content_inner {
    max-width: 100%;
  }

  .contact_page_lead {
    text-align: left;
  }

  .contact_page_radio_trigger {
    min-height: 54px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .contact_page_radio_panel {
    padding: 12px 16px 14px;
  }

  .contact_page_radio_option {
    font-size: 16px;
  }

  .contact_page_radio_option input[type="radio"] {
    width: 14px;
    height: 14px;
  }
}

/* contact confirm */
.contact_confirm_list {
  border-top: 1px solid #dde3ef;
}

.contact_confirm_item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px solid #dde3ef;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.7;
}

.contact_confirm_item dt {
  font-weight: 500;
  color: #556b92;
  padding-top: 1px;
}

.contact_confirm_item dd {
  color: #1c2533;
}

.contact_confirm_actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact_confirm_back {
  flex: 1;
  height: 44px;
  border: 1px solid #d8dfec;
  border-radius: 999px;
  background: #ffffff;
  color: #556b92;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.contact_confirm_back:hover {
  background: #f5f7fb;
}

.contact_confirm_submit {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #42619a;
  color: #ffffff;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.contact_confirm_submit:hover {
  background: #1d489b;
}

/* contact complete */
.contact_complete {
  padding: 40px 0 20px;
  text-align: center;
}

.contact_complete_title {
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2533;
}

.contact_complete_text {
  font-size: clamp(13px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.9;
  color: #556b92;
  margin-bottom: 36px;
}

.contact_complete_home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 36px;
  border-radius: 999px;
  background: #42619a;
  color: #ffffff;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.contact_complete_home:hover {
  background: #1d489b;
}

/* contact step indicator */
.contact_page_steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(32px, 4vw, 56px);
  justify-content: center;
  gap: 0;
}

.contact_page_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 160px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dde3ef;
  color: #b0b8c8;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact_page_step_num {
  font-family: 'Akshar', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1;
}

.contact_page_step_label {
  font-size: clamp(11px, calc((12 / 1440) * 100vw), 14px);
  font-weight: 500;
}

.contact_page_step.is_active {
  color: #1d489b;
  border-bottom-color: #1d489b;
}

.contact_page_step.is_done {
  color: #8fa4c8;
  border-bottom-color: #8fa4c8;
}

/* CF7 ラジオボタン：既存のラジオ選択UIに合わせる */
.contact_page_radio_panel .wpcf7-radio {
  display: block;
}

.contact_page_radio_panel .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.contact_page_radio_panel .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
}

.contact_page_radio_panel .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #707481;
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 19px);
  line-height: 1.35;
  cursor: pointer;
}

.contact_page_radio_panel .wpcf7-list-item input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #6f7380;
  margin: 0;
  flex-shrink: 0;
}

/* CF7 バリデーションエラー */
.contact_page_form .wpcf7-not-valid {
  border-color: #e24848 !important;
}

.contact_page_form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  color: #e24848;
  font-size: clamp(11px, calc((12 / 1440) * 100vw), 14px);
}

/* CF7デフォルトのレスポンス出力は非表示（JS側で制御） */
.contact_page_form .wpcf7-response-output {
  display: none !important;
}

/* CF7の wpcf7_autop が挿入する余分な <br> を非表示 */
.wpcf7-form br {
  display: none;
}

/* CF7のsubmitボタン（JSで非表示。CSSでも念のため） */
.contact_page_form input.wpcf7-submit {
  display: none;
}

/* CF7 acceptanceチェックボックス */
.contact_page_form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 15px);
  color: #3a4660;
  line-height: 1.7;
  cursor: pointer;
}

.contact_page_form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: #1d489b;
}

/* CF7 form-control-wrap リセット */
.contact_page_form .wpcf7-form-control-wrap {
  display: block;
}

/* CF7未設定時の案内 */
.contact_page_cf7_notice {
  padding: 20px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  color: #856404;
  font-size: 14px;
  margin-top: 42px;
}
