@charset "UTF-8";
/* ==========================================================================
Variables & Base (Rem base: 1rem = 10px)
========================================================================== */
:root {
  --color-text: #333;
  --color-navy: #004098;
  --color-blue: #0066CC;
  --color-light-blue: #8EC6FF;
  --color-black: #222222;
  --color-white: #FFF;
  --color-light-gray: #F5F5F5;
  --color-gray: #E0E0E0;
  --color-charcoal-gray: #999;
  --color-blue-gray: #E9ECF3;
  --font-ja: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Barlow', sans-serif;
  --width-container: 120rem;
  --header-height: 8rem;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ja);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1.6rem;
}
body.is-drawer-active {
  overflow: hidden;
}
@media (max-width: 768px) {
  :root {
    --header-height: 6.4rem;
  }
}

/* ==========================================================================
Page Background (Fixed)
========================================================================== */
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: -1;
}
.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.page-bg-products::before {
  background-image:
    linear-gradient(180deg, rgba(11, 73, 188, 0.2) 0%, rgba(11, 73, 188, 0.8) 100%),
    url('../images/bg_products.jpg');
  background-position: 85% top;
}
.page-bg-recruit::before {
  background-image:
    linear-gradient(180deg, rgba(0, 64, 152, 0.5) 0%, rgba(0, 64, 152, 0.8) 100%),
    url('../images/bg_recruit.jpg');
  background-position: 85% top;
}
.page-bg-company::before {
  background-image:
    linear-gradient(180deg, rgba(8, 31, 74, 0.3) 0%, rgba(8, 31, 74, 0.8) 100%),
    url('../images/bg_company.jpg');
  background-position: center 40%;
}

/* ==========================================================================
Header
========================================================================== */
.header {
  background-color: transparent;
  height: var(--header-height);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  color: var(--color-white);
}
.header.is-scrolled {
  background-color: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.1);
}
.header__inner {
  max-width: var(--width-container);
  width: calc(100% - 4.8rem);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__brand {
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding-inline: 2.4rem;
  transition: 0.3s;
}
.header__brand:hover {
  filter: brightness(1.2);
}
.header__brand:hover .header__brand-text {
  color: var(--color-charcoal-gray);
}
.header__brand-link {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__logo img {
  height: 4rem;
  width: auto;
  display: block;
}
.header__brand-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-left: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  transition: 0.3s;
}
.header__brand-text span {
  font-size: 2rem;
}
.nav-global__list {
  display: flex;
  gap: 3.2rem;
}
.nav-global__item a {
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-global__item a:hover {
  color: var(--color-light-blue);
}
.hamburger {
  display: none;
}
.nav-global__head {
  display: none;
}
@media (max-width: 768px) {
  .header__inner {
    width: calc(100% - 2.4rem);
  }
  .header__brand {
    padding-inline: 1.6rem;
  }
  .hamburger {
    display: block;
    width: 3.2rem; height: 2.4rem;
    position: relative;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    display: block; height: 2px;
    background: var(--color-white);
    width: 100%;
    position: absolute;
    transition: .3s;
  }
  .header.is-scrolled .hamburger span {
    background: var(--color-black);
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 1.1rem;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .hamburger.is-active span:nth-child(1) {
    top: 1.1rem;
    transform: rotate(45deg);
    background: var(--color-navy);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    bottom: 1.1rem;
    transform: rotate(-45deg);
    background: var(--color-navy);
  }
  .nav-global {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-navy);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .nav-global.is-active {
    opacity: 1;
    visibility: visible;
  }
  .nav-global__head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    width: 100%;
    background-color: var(--color-white);
  }
  .nav-global__brand {
    display: flex;
    align-items: center;
  }
  .nav-global__logo img {
    height: 4rem;
    width: auto;
    display: block;
  }
  .nav-global__brand-text {
    font-size: 1rem;
    line-height: 1.4;
    margin-left: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
  }
  .nav-global__brand-text span {
    font-size: 2rem;
  }
  .nav-global__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - var(--header-height));
    gap: 4rem;
  }
  .nav-global__item a {
    color: var(--color-white);
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .header__inner {
    width: 100%;
  }
  .header__hamburger {
    margin-right: 1.2rem;
  }
  .header__brand {
    padding-inline: 1.2rem;
  }
  .header__logo img {
    height: 3.2rem;
  }
  .header__brand-text span {
    font-size: 1.6rem;
  }
  .nav-global__logo img {
    height: 3.2rem;
  }
  .nav-global__brand-text span {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  max-width: var(--width-container);
  width: calc(100% - 4.8rem);
  margin: 0 auto;
  padding-block: 2.4rem 6.4rem;
  color: var(--color-white);
  position: relative;
  z-index: 10;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb__item {
  font-size: 1.4rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
}
.breadcrumb__item:not(:first-child) {
  padding-left: 3.2rem;
}
.breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.8;
}
.breadcrumb__item a {
  position: relative;
}
.breadcrumb__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.breadcrumb__item a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .breadcrumb-wrapper {
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .breadcrumb-wrapper {
    padding-bottom: 2.4rem;
  }
  .breadcrumb__item {
    font-size: 1.3rem;
  }
  .breadcrumb__item:not(:first-child) {
    padding-left: 2.4rem;
  }
  .breadcrumb__item:not(:first-child)::before {
    left: 0.8rem;
  }
}

/* ==========================================================================
Page Hero
========================================================================== */
.page-hero {
  max-width: var(--width-container);
  width: calc(100% - 4.8rem);
  margin: 0 auto;
  position: relative;
  padding-top: calc(var(--header-height) + 6rem);
  padding-bottom: 8rem;
  color: var(--color-white);
}
.page-hero .breadcrumb-wrapper {
  padding-block: 0 5.6rem;
  margin: 0;
}
.page-hero__title {
  padding-left: 9.6rem;
  line-height: 1;
  margin-bottom: 3.2rem;
}
.page-hero__title .ja {
  display: block;
  font-size: 6.4rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.page-hero__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-hero__lead {
  padding-left: 9.6rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .page-hero {
    width: calc(100% - 2.4rem);
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
  }
  .page-hero .breadcrumb-wrapper {
    padding-block: 0 4rem;
  }
  .page-hero__title, .page-hero__lead {
    padding-left: 0;
  }
  .page-hero__title .ja {
    font-size: 4.8rem;
  }
  .page-hero__title .en {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .page-hero__title .ja {
    font-size: 4rem;
  }
}

/* ==========================================================================
Anchor Navigation (Generic Component)
========================================================================== */
.anchor-nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  width: 90%;
  max-width: 100rem;
  margin: 0 auto;
  background: var(--color-white);
  padding: 1.6rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}
.anchor-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F0F0;
  padding: 1.6rem;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.3s;
}
.anchor-btn:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.anchor-btn::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 1rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .anchor-nav {
    flex-wrap: wrap;
  }
  .anchor-btn {
    flex: 1 0 48%;
  }
}
@media (max-width: 480px) {
  .anchor-btn {
    flex: 0 0 100%;
  }
}

/* ==========================================================================
anchor-target
========================================================================== */
.anchor-target {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* ==========================================================================
heading
========================================================================== */
.heading-left, .heading-center {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
  color: var(--color-black);
  line-height: 1.4;
}
.heading-center {
  text-align: center;
}
.heading-left.is-white {
  color: var(--color-white);
}
.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.section-title--sub {
  font-size: 2rem;
  font-weight: 700;
}
.section-title-wrapper, .section-title--sub {
  margin-bottom: 2rem;
}
.section-title-wrapper .section-title--sub {
  margin-bottom: unset;
}
@media (max-width: 768px) {
  .heading-left, .heading-center {
    font-size: 2.2rem;
    margin-bottom: 3.2rem;
  }
  .section-title-wrapper {
    display: grid;
    margin-bottom: 2rem;
  }
  .section-title--sub {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
btn
========================================================================== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  min-width: 20rem;
  max-width: 32rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
}
.btn:hover {
  background-color: var(--color-charcoal-gray);
}
.btn::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 2rem;
  transition: border-color 0.3s;
}

/* Modifier: white */
.btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
}
.btn--white:hover {
  color: var(--color-white);
  background: var(--color-navy);
}

/* Modifier: Bordered */
.btn--bordered {
  border: 1px solid var(--color-charcoal-gray);
  padding: 0.8rem 1.6rem;
  max-width: 20rem!important;
}
.btn--bordered:hover {
  border-color: var(--color-navy);
}

/* Modifier: Wide */
.btn--wide {
  width: 100%;
  max-width: unset;
}

/* Modifier: Download */
.btn--download {
  display: flex;
  width: 100%;
  max-width: 32rem;
  justify-content: space-between;
}
.btn--download::after {
  content: none;
}
.btn__icon-dl {
  width: 2rem;
  height: auto;
}

/* btn-text */
.btn-text {
  display: block;
  color: var(--color-blue);
  font-size: 1.6rem;
  padding-right: 1.6rem;
  position: relative;
}
.btn-text::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
}
.btn-text:hover {
  color: var(--color-black);
}
.btn-text:hover::after {
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}
@media (max-width: 768px) {
  .btn--download, .btn--wide {
    width: auto;
    min-width: 32rem;
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .btn {
    width: 80%;
    min-width: unset;
    max-width: none;
    padding-inline: 1.6rem;
  }
  .btn::after {
    right: 1.2rem;
  }
  .btn--bordered {
    display: block;
    margin: 0 0 0 auto;
    max-width: 16rem!important;
  }
  .section-title-wrapper .btn-text {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
Main Content Container
========================================================================== */
.page-container {
  background-color: var(--color-white);
  max-width: var(--width-container);
  width: calc(100% - 4.8rem);
  margin: 0 auto 8rem;
  padding: 8rem 6.4rem 6.4rem;
  box-shadow: 0 0 2rem rgba(0,0,0,0.05);
  position: relative;
}
.has-page-nav .page-container {
  padding-top: 0;
}
.has-page-nav .page-container.recruit-container,
.has-page-nav .page-container.company-container {
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .page-container {
    width: calc(100% - 2.4rem);
    padding: 5.6rem 2.4rem 6.4rem;
  }
}
@media (max-width: 480px) {
  .page-container {
    padding: 4rem 2rem;
    margin-bottom: 4.8rem;
  }
}

/* ==========================================================================
Recruit Banner
========================================================================== */
.section-recruit {
  position: relative;
  width: calc(100% + 6.4rem);
  padding-block: 8rem;
  color: var(--color-white);
}
.section-recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/recuruit_info.jpg');
  background-size: cover;
  background-position: 10% center;
  background-repeat: no-repeat;
  z-index: 0;
}
.recruit-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4.8rem;
}
.recruit-content__head {
  flex-shrink: 0;
}
.recruit-content__title {
  line-height: 1.2;
  margin: 0;
}
.recruit-content__title .ja {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.recruit-content__title .en {
  font-family: var(--font-en);
  font-size: 6rem;
  display: block;
  font-weight: 700;
}
.recruit-content__text {
  flex-grow: 1;
  padding-inline: 2rem;
  text-align: center;
}
.recruit-content__action {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .section-recruit {
    width: 100%;
    padding-block: 4rem;
  }
  .recruit-content {
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
    padding-inline: 2.4rem;
  }
  .recruit-content__title .ja {
    font-size: 1.4rem;
  }
  .recruit-content__title .en {
    font-size: 3.2rem;
  }
  .recruit-content__text {
    padding-inline: unset;
  }
  .recruit-content__action .btn {
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .section-recruit {
    padding-block: 2.4rem;
  }
  .recruit-content {
    padding-inline: 1.6rem;
  }
  .recruit-content__title .ja {
    font-size: 1.2rem;
    font-weight: normal;
  }
  .recruit-content__title .en {
    font-size: 2.4rem;
  }
  .recruit-content__text {
    font-size: 1.4rem;
  }
  .recruit-content__action .btn {
    max-width: 24rem;
  }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
  background-color: var(--color-white);
  padding-block: 4rem 9.6rem;
  border-top: 1px solid var(--color-gray);
}
.footer__inner {
  max-width: var(--width-container);
  margin-inline: auto;
  padding-inline: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: 0.3s;
}
.footer__brand-link:hover {
  filter: brightness(1.2);
}
.footer__brand-link:hover .footer__brand-text {
  color: var(--color-charcoal-gray);
}
.footer__logo img {
  height: 3.2rem;
  display: block;
}
.footer__brand-text {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 1.2rem;
  line-height: 1.2;
  color: var(--color-text);
  transition: 0.3s;
}
.footer__address {
  font-style: normal;
  font-size: 1.4rem;
  color: #666;
}
.footer__address-br {
  display: none;
}
.footer__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
}
.footer__nav {
  display: flex;
  column-gap: 2.4rem;
}
.footer__nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}
.footer__sub-nav a {
  font-size: 1.2rem;
  color: var(--color-text);
}
.footer__nav a:hover, .footer__sub-nav a:hover {
  color: var(--color-light-blue);
}
.footer__copy {
  font-size: 1.4rem;
}
@media (max-width: 856px) {
  .footer__address-br {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 7.2rem;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
    padding-inline: 2.4rem;
  }
  .footer__right {
    display: block;
    width: 100%;
  }
  .footer__nav {
    column-gap: 8%;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .footer__sub-nav {
    text-align: center;
    margin-bottom: 2.4rem;
  }
  .footer__copy {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer__brand-text {
    font-size: 1.6rem;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 0;
  }
}

/* ==========================================================================
Page Top Button
========================================================================== */
.page-top-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 7.2rem;
  height: 7.2rem;
  background-color: var(--color-navy);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
}
.page-top-btn:hover {
  background: var(--color-light-blue);
}
.page-top-btn div {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 20px;
}
.page-top-btn div::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 2px;
  height: 50%;
  background: var(--color-white);
}
.page-top-btn div::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--color-white);
  border-top: 2px solid var(--color-white);
  transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 768px) {
  .page-top-btn {
    width: 6.4rem;
    height: 6.4rem;
  }
}
@media (max-width: 480px) {
  .page-top-btn {
    width: 4.8rem;
    height: 4.8rem;
  }
  .page-top-btn div::before {
    top: 30%;
    height: 40%;
  }
  .page-top-btn div::after {
    top: 30%;
    width: 1rem;
    height: 1rem;
  }
}

/* ==========================================================================
/index.html
========================================================================== */
.top-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3/1;
  background: url('../images/top_mv.jpg') no-repeat center 30%/cover;
  z-index: 1;
}
.top-hero__inner {
  position: absolute;
  width: 100%;
  max-width: var(--width-container);
  left: 50%;
  transform: translateX(-50%);
  bottom: -7%;
  z-index: 10;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  padding-inline: 2.4rem;
}
.top-hero__sub {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 700;
  margin-bottom: 2.4rem;
  opacity: 0.9;
}
.top-hero__title {
  font-size: calc(88 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.top-products {
  background: url('../images/bg_top_products.jpg') no-repeat center center/cover;
  padding-top: 16rem;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}
.top-products__inner {
  max-width: var(--width-container);
  width: 100%;
  margin: 0 auto;
  padding-inline: 2.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.top-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 8rem;
}
.top-product-card {
  position: relative;
  aspect-ratio: 10/7;
  overflow: hidden;
  display: block;
  border: 8px solid var(--color-white);
  box-sizing: border-box;
  transition: filter 0.3s;
}
.top-product-card:hover {
  filter: brightness(1.2);
}
.top-product-card__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.top-product-card:hover .top-product-card__bg {
  transform: scale(1.05);
}
a[href*="pyro"] .top-product-card__bg {
  background-position: center 60%;
}
a[href*="tart"] .top-product-card__bg {
  background-position: center center;
}
a[href*="jib-standard"] .top-product-card__bg {
  background-position: center 15%;
}
a[href*="jib-heavy"] .top-product-card__bg {
  background-position: center center;
}
.top-product-card__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, rgba(38, 66, 135, 0.9) 0%, rgba(1, 28, 48, 0) 100%);
  pointer-events: none;
}
.top-product-card__info {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  z-index: 2;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.top-product-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.top-product-card__spec {
  font-size: 1.4rem;
  font-family: var(--font-en);
  font-weight: 400;
  opacity: 0.9;
}
.arrow-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-black);
  z-index: 2;
}
.arrow-icon::before, .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
}
.arrow-icon::before {
  left: 50%;
  width: 1.8rem;
  height: 1px;
  background-color: var(--color-white);
  transform: translate(-50%, -50%);
}
.arrow-icon::after {
  right: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}
.top-btn-area .btn {
  display: block;
  margin: 0 0 0 auto;
  max-width: 24rem;
}
.top-partners {
  background: linear-gradient(180deg, #264287 0%, #011C30 100%);
  color: var(--color-white);
  padding-block: 8rem;
}
.top-container {
  max-width: var(--width-container);
  width: 100%;
  margin: 0 auto;
  padding-inline: 2.4rem;
}
.top-partners__head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 2rem;
  margin-bottom: 3.2rem;
}
.heading-partner {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  line-height: 1;
}
.top-partners__note {
  position: absolute;
  right: 0;
  bottom: 1.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
}
.top-partners__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.top-partners__list li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.top-company {
  background-color: var(--color-light-gray);
  padding-top: 6.4rem;
}
.top-company .company-grid {
  margin-bottom: 4rem;
}
.top-company .company-grid__item {
  color: var(--color-text);
  display: block;
}
.top-company .btn {
  background-color: var(--color-navy);
}
.top-company .btn:hover {
  background-color: var(--color-charcoal-gray);
}
.top-news {
  padding-block: 8rem;
}
.top-news .top-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 7%;
}
.news-list {
  flex: 1;
  width: 100%;
  border-top: 1px solid var(--color-charcoal-gray);
}
.news-item {
  display: flex;
  column-gap: 2.4rem;
  align-items: center;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--color-charcoal-gray);
  transition: 0.3s;
}
.news-item:hover .news-item__title {
  color: var(--color-light-blue);
}
.news-item__meta {
  display: flex;
  align-items: center;
  column-gap: 2.4rem;
}
.news-item__date {
  font-family: var(--font-en);
  flex: 0 0 8.5rem;
}
.news-item__label {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 1.3rem;
  text-align: center;
  padding: 0.2rem 1rem;
  min-width: 8rem;
  /* line-height: 1.5; */
}
.news-item__title {
  transition: 0.3s;
  flex: 1;
  font-weight: 500;
  line-height: 1.4;
}
.home .section-recruit {
  margin-left: max(2.4rem, calc((100vw - var(--width-container)) / 2));
  margin-bottom: 9.6rem;
  width: calc(100% - max(2.4rem, calc((100vw - var(--width-container)) / 2)));
  padding-left: 2.4rem;
  position: relative;
}
.home .section-recruit::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 100vw;
  height: 120%;
  background-color: var(--color-gray);
  z-index: -1;
  pointer-events: none;
}
.home .recruit-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: max(2.4rem, calc((100vw - var(--width-container)) / 2));
}
@media (max-width: 1096px) {
  .top-partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .top-hero {
    aspect-ratio: unset;
    height: 30vh;
    min-height: 30rem;
  }
  .top-hero__inner {
    bottom: -4rem;
  }
  .top-hero__title {
    font-size: 4.8rem;
  }
  .top-hero__sub {
    font-size: 1.4rem;
  }
  .top-products {
    padding-block: 10rem 6rem;
  }
  .top-products__grid {
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
  .top-product-card__info {
    top: 7%;
    left: 7%;
  }
  .top-product-card__title {
    font-size: 2.8vw;
  }
  .top-partners, .top-news {
    padding-block: 6rem;
  }
  .top-company {
    padding-block: 5.6rem;
  }
  .top-news .top-container {
    display: block;
  }
  .top-news .heading-left {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .news-item__meta {
    width: 100%;
    justify-content: flex-start;
    gap: 1.6rem;
    min-width: auto;
  }
  .news-item__title {
    width: 100%;
  }
  .top-partners__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
    margin-bottom: 4rem;
  }
  .heading-partner {
    font-size: 2.4rem;
  }
  .top-partners__note {
    position: static;
    text-align: right;
    width: 100%;
    bottom: auto;
  }
  .top-partners__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.4rem;
  }
  .top-company .company-grid {
    margin-bottom: 4rem;
  }
  .top-btn-area .btn {
    margin-inline: auto;
  }
  .home .section-recruit {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .home .section-recruit::after {
    content: none;
  }
}
@media (max-width: 480px) {
  .top-hero__title {
    font-size: 3.6rem;
  }
  .top-hero__sub {
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .top-hero__inner {
    bottom: -3rem;
  }
  .top-products {
    padding-top: 8rem;
  }
  .top-products__grid {
    grid-template-columns: 1fr;
  }
  .top-product-card__title {
    font-size: 2rem;
  }
  .top-partners__list {
    grid-template-columns: 1fr;
  }
  .heading-partner {
    font-size: 2.2rem;
  }
  .top-btn-area .btn {
    max-width: unset;
  }
  .home .recruit-content {
    padding-inline: 1.6rem;
  }
  .recruit-content__action {
    width: 100%;
  }
}

/* ==========================================================================
/products/index.html
========================================================================== */
.products-container {
  display: grid;
  gap: 10rem;
}
.products-section__head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 4rem;
}
.products-section__head .heading-center {
  margin-bottom: 0;
}
.products-section__label {
  position: absolute;
  right: 0;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
.product-card {
  background-color: var(--color-blue-gray);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  transition: 0.3s;
  height: 100%;
  text-decoration: none;
}
.product-card:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.product-card:hover .product-card__name, .product-card:hover .product-card__desc {
  color: var(--color-white);
}
.product-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.product-card__head::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-navy);
  border-right: 2px solid var(--color-navy);
  transform: rotate(45deg);
  margin-top: 0.4rem;
  transition: 0.3s;
}
.product-card:hover .product-card__head::after {
  border-color: var(--color-white);
}
.product-card__name {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  transition: 0.3s;
}
.product-card__desc {
  font-size: 1.4rem;
  color: var(--color-text);
  line-height: 1.6;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-container {
    gap: 8rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .products-section__label {
    position: static;
    margin-left: 1.6rem;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-section__head {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .products-section__label {
    margin-left: 0;
  }
  .products-container {
    gap: 7.2rem;
  }
}

/* ==========================================================================
/products/product-detail.html
========================================================================== */
.page-detail {
  padding-top: calc(var(--header-height) + 4rem);
}
.product-title-area {
  margin-bottom: 4rem;
}
.product-title-area__cat {
  display: block;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.product-title-area__name {
  font-family: var(--font-en);
  font-size: 4.8rem;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.product-title-area__label {
  background-color: var(--color-navy);
  font-family: var(--font-en);
  color: var(--color-white);
  padding: 0.4rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: 8rem;
}
.product-hero {
  display: flex;
  justify-content: space-between;
  column-gap: 3%;
  margin-bottom: 8rem;
}
.product-hero__text {
  flex: 1;
}
.product-hero__desc {
  margin-bottom: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
.product-section {
  margin-bottom: 6.4rem;
}
.product-spec__img img, .product-chart__img img {
  border: 1px solid var(--color-gray);
  width: 100%;
}
.product-hero__gallery {
  width: 50%;
  overflow: hidden;
}
.product-hero__gallery img {
  aspect-ratio: 1 / 1;
  height: auto;
  /* width: 100%; */
  /* object-fit: cover; */
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
  margin-bottom: 8rem;
  width: 100%;
}
@media (max-width: 768px) {
  .product-hero {
    flex-direction: column;
    gap: 4rem;
  }
  .product-hero__text {
    width: 100%;
  }
  .product-hero__gallery {
    width: 100%;
    order: -1;
  }
  .product-hero__action, .product-footer-nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
  .product-footer-nav {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .page-detail {
    padding-top: calc(var(--header-height) + 1.6rem);
  }
  .product-title-area__name {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .product-hero {
    margin-bottom: 4.8rem;
  }
  .product-hero__action, .product-footer-nav {
    width: 100%;
  }
  .product-section {
    margin-bottom: 4.8rem;
  }
}

/* ==========================================================================
/recruit/index.html
========================================================================== */
.recruit-container {
  display: grid;
  gap: 12rem;
}
.recruit-message {
  max-width: 80rem;
  margin-inline: auto;
}
.recruit-message__body {
  line-height: 2;
  text-align: justify;
}
.recruit-message__body p {
  line-height: 1.6;
}
.recruit-tab-nav {
  display: grid;
  /* grid-template-columns: repeat(6, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 4rem;
}
.tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-blue-gray);
  color: var(--color-navy);
  padding: 1.6rem;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 0;
  transition: 0.3s;
  position: relative;
  border: none;
  cursor: pointer;
  width: 100%;
}
.tab-btn:hover {
  background-color: #DAE0E8;
}
.tab-btn.is-active {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.tab-btn.is-active::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--color-navy) transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.job-block {
  display: none;
  margin-bottom: 6.4rem;
  animation: fadeIn 0.5s ease;
}
.job-block.is-active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.job-block__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-navy);
  padding-left: 1.6rem;
  margin-bottom: 3.2rem;
  line-height: 1.2;
  position: relative;
}
.job-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-navy);
}
.job-block__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-navy);
}
.job-table {
  width: 100%;
  border-top: none;
  border: 0.5px solid #ccc;
}
.job-table__row {
  display: flex;
  /* align-items: center; */
  border-bottom: 1px solid var(--color-gray);
}
.job-table dt {
  width: 25%;
  background-color: var(--color-light-gray);
  padding: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
}
.job-table dd {
  width: 75%;
  /* padding-left: 1.6em; */
  padding: 2rem;
}
.recruit-cta {
  text-align: center;
}
.recruit-company .section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.recruit-company .heading-left {
  margin-bottom: 0;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4%;
}
.company-grid__item {
  text-align: left;
}
.company-grid__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.company-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.company-grid__item:hover .company-grid__img img {
  transform: scale(1.05);
}
.company-grid__text {
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .recruit-container {
    gap: 8rem;
  }
  .recruit-tab-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
  .job-block {
    margin-bottom: 4.8rem;
  }
  .job-table__row {
    flex-direction: column;
  }
  .job-table dt {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border-bottom: 1px dotted var(--color-gray);
  }
  .job-table dd {
    width: 100%;
    padding: 1.6rem;
  }
}
@media (max-width: 480px) {
  .recruit-container {
    gap: 6.4rem;
  }
  .recruit-tab-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .job-block {
    margin-bottom: 3.2rem;
  }
  .recruit-company .section-title-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .company-grid {
    grid-template-columns: none;
    gap: 3.2rem 0;
  }
}

/* ==========================================================================
/company/index.html
========================================================================== */
.company-container {
  display: grid;
  gap: 12rem;
}
.greeting-box {
  text-align: center;
  margin-bottom: 6.4rem;
}
.greeting-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 3.2rem;
}
.greeting-text {
  display: grid;
  row-gap: 1.6rem;
  text-align: justify;
}
.company-video-area {
  background-color: #E9ECF3;
  padding: 4rem 6.4rem;
}
.company-video-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2rem;
  text-align: left;
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
}
.video-wrapper video {
  max-width: 100%;
}
.company-table {
  width: 100%;
  border-top: none;
}
.company-table__row {
  display: flex;
  border-bottom: 1px solid var(--color-gray);
}
.company-table dt, .company-table dd {
  padding-block: 1.6rem;
}
.company-table dt {
  /* width: 20%; */
  width: 23%;
  min-width: 9.6rem;
  flex-shrink: 0;
  background-color: transparent;
  color: var(--color-navy);
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}
.company-table dd {
  width: auto;
}
.company-table__row table td:first-child {
  min-width: 20rem;
}
.def-list {
  display: grid;
  grid-template-columns: 16rem 1fr;
  row-gap: 0.8rem;
}
.def-list dt {
  width: auto;
  padding: 0;
  color: var(--color-text);
  font-weight: 400;
}
.def-list dd {
  width: auto;
  padding: 0;
}
.history-btn-area {
  margin-top: 4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.history-btn-area .btn {
  max-width: 42rem;
}
#js-history-btn {
  position: relative;
}
#js-history-btn::after, #js-history-btn::before {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s;
  top: 50%;
  right: 2rem;
  border: none;
  transform: translateY(-50%);
  margin-top: 0;
}
#js-history-btn::after {
  width: 12px;
  height: 2px;
}
#js-history-btn::before {
  width: 2px;
  height: 12px;
  right: calc(2rem + 5px);
}
#js-history-btn.is-open::before {
  transform: translateY(-50%) scaleY(0);
  opacity: 0;
}
#js-history-btn.is-open::after {
  transform: translateY(-50%);
}
.history-more-content {
  display: none;
}
.access-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.access-map {
  border: 1px solid var(--color-gray);
  width: 50%;
}
.access-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.access-info {
  display: grid;
  row-gap: 1.6rem;
  flex: 1;
}
.access-info__name {
  font-size: 1.8rem;
  font-weight: 700;
}
.partner-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
}
.partner-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.partner-note {
  font-size: 1.2rem;
  font-weight: 700;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 5%;
}
.partner-list li {
  font-size: 1.6rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .company-container {
    gap: 9.6rem;
  }
  .greeting-box {
    margin-bottom: 4.8rem;
  }
  .company-video-area {
    padding: 3.2rem 4rem;
  }
  .access-content {
    flex-direction: column;
    row-gap: 3.2rem;
  }
  .access-map {
    width: 100%;
  }
  .partner-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.8rem;
  }
  .partner-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 560px) {
  .greeting-title .br-large {
    display: none;
  }
}
@media (max-width: 480px) {
  .company-container {
    gap: 7.2rem;
  }
  .greeting-title {
    font-size: 2rem;
    text-align: left;
  }
  .greeting-box {
    margin-bottom: 3.2rem;
  }
  .company-video-area {
    padding: 2.4rem 2rem;
  }
  .company-video-title {
    font-size: 1.6rem;
  }
  .company-table__row {
    flex-direction: column;
  }
  .company-table dt {
    width: 100%;
    padding: 1.2rem 0;
    border-bottom: none;
  }
  .company-table dd {
    width: 100%;
    padding: 0 0 1.2rem 0;
  }
  .company-table__row table td:first-child {
    min-width: auto;
  }
  .def-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .def-list dt, .def-list dd {
    padding: 0;
  }
  .def-list dd {
    margin-bottom: 0.8rem;
  }
  .partner-head {
    margin-bottom: 2.4rem;
  }
  .partner-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ==========================================================================
/policy/index.html
========================================================================== */
.has-page-nav .page-policy.page-container {
  padding: 8rem 6.4rem 6.4rem !important;
}
.txt-right {
  text-align: right;
}
.policy-content {
  display: grid;
  gap: 10rem;
}
.policy-intro {
  display: grid;
  row-gap: 2.4rem;
}
.policy-declaration {
  text-align: justify;
}
.policy-lead {
  text-align: justify;
  /* margin-bottom: 3.2rem; */
}
.policy-list {
  text-align: justify;
  display: grid;
  row-gap: 4rem;
  counter-reset: policy-num;
  margin-top: 3.2rem;
}
.policy-list li {
  counter-increment: policy-num;
}
.policy-list .heading-underline::before {
  content: counter(policy-num) ". ";
  margin-right: 0.5em;
}
.heading-underline {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-light-blue);
  padding-bottom: 0.8rem;
}

/* ==========================================================================
/contact/index.html
========================================================================== */
.has-page-nav .page-contact.page-container  {
  padding: 8rem 6.4rem 6.4rem !important;
}
.contact-intro {
  text-align: justify;
  margin-bottom: 6.4rem;
}
.form-list {
  border-top: 1px solid var(--color-gray);
  margin-bottom: 6.4rem;
}
.form-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-gray);
  padding-block: 2.4rem;
}
.form-row dt {
  width: 28rem;
  flex-shrink: 0;
  padding-right: 4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-row dd {
  flex-grow: 1;
  width: 100%;
  min-width: 0;
}
.badge-required {
  background-color: #D32F2F;
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
  font-weight: 700;
}
.blue.badge-required {
  background-color: #5087f3;
}
.form-input, .form-textarea {
  width: 100%;
  background-color: var(--color-light-gray);
  border: 1px solid var(--color-gray);
  padding: 1.2rem;
  font-size: 1.6rem;
  border-radius: 0;
  transition: 0.3s;
}
.form-input:focus, .form-textarea:focus {
  background-color: var(--color-white);
  border-color: var(--color-navy);
  outline: none;
}
.form-textarea {
  /* height: 20rem; */
  height: 10rem;
  resize: vertical;
}
.form-phone-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}
.form-phone-wrap .form-input {
  width: auto;
  flex: 1;
  min-width: 0;
  text-align: center;
  max-width: 16rem;
}
.form-policy-check {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.link-text-blue {
  color: var(--color-blue);
  text-decoration: none;
  transition: 0.3s;
}
.link-text-blue:hover {
  color: var(--color-light-blue);
}
.checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: fit-content;
}
input[type="checkbox"].checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-charcoal-gray);
  background-color: var(--color-white);
  margin-right: 1.2rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border-radius: 0;
  padding: 0;
}
input[type="checkbox"].checkbox-input:checked {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}
input[type="checkbox"].checkbox-input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 0.6rem;
  height: 1.2rem;
  border: solid var(--color-white);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
}
input[type="checkbox"][name="agree[]"]{
  appearance: auto !important;
  -webkit-appearance: auto !important;
  width: 2rem;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-charcoal-gray);
  background-color: var(--color-white);
  margin-right: 1.2rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border-radius: 0;
  padding: 0;
}
#agree .wpcf7-list-item {
  margin-left: 0;
}
.form-btn-area {
  text-align: center;
}
@media (max-width: 768px) {
  .contact-intro {
    text-align: left;
    margin-bottom: 4rem;
  }
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 2rem;
  }
  .form-row dt {
    width: 100%;
    margin-bottom: 1.2rem;
    padding-right: 0;
  }
  .form-phone-wrap .form-input {
    max-width: none;
  }
}

/* aタグ無効化CSS */
.is-disabled {
  pointer-events: none;     /* クリック無効 */
  cursor: default;          /* 指カーソルをやめる */
  text-decoration: none;    /* 下線を消す（必要なら）*/
  color: inherit;           /* リンク色ではなく通常の文字色に */
}