@charset "UTF-8";
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7fb;
  --color-bg-dark: #101319;
  --color-primary: #0C6DB1;
  --color-primary-dark: #0a5a92;
  --color-text: #111111;
  --color-text-light: #f8f8f8;
  --color-muted: #777777;
  --color-border: #e0e3eb;
  --header-height-desktop: 100px;
  --header-height-mobile: 60px;
  --container-max: 1300px;
  --gutter: 16px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius-card: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

.img-zoom-container {
  overflow: hidden;
}
.img-zoom-container img {
  transition: transform 0.3s ease;
}
.img-zoom-container:hover img, a:hover .img-zoom-container img {
  transform: scale(1.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.animate {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-height-desktop) * 4);
  background: linear-gradient(to bottom, var(--color-bg-dark) 0%, var(--color-bg-dark) 100px, transparent 100%);
  z-index: 99;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 60px;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
header.header-front-page {
  background-color: #000000;
}
header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header.scrolled .logo a,
header.scrolled .nav-link {
  color: var(--color-text);
}
header.scrolled .btn-contact {
  background-color: #0C6DB1;
  color: #ffffff;
}
header.scrolled .btn-contact:hover {
  background-color: #3198DC;
}
header .hamburger span {
  background-color: #ffffff;
}
header.header-default .hamburger span {
  background-color: #000000;
}
header .nav-mobile {
  background-color: #000000;
}
header .nav-mobile a {
  color: #ffffff;
}
header.header-front-page .nav-link {
  color: #ffffff;
}
header.header-front-page .nav-link:hover {
  color: var(--color-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-desktop);
}

.logo {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
}

.logo-mark {
  height: 33px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-text-main {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.logo-text-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--color-text);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--color-primary);
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}
.btn-contact:hover {
  background-color: #3198DC;
}

.menu-toggle {
  display: none;
  position: relative;
}
.menu-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.5s ease;
}

#nav-toggle:checked ~ .header-inner .menu-toggle .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#nav-toggle:checked ~ .header-inner .menu-toggle .hamburger span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .header-inner .menu-toggle .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  position: absolute;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 2;
}
.nav-mobile a,
.nav-mobile .btn-contact {
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}
.nav-mobile a {
  padding: 16px 16px 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-mobile a:not(.btn-contact)::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-primary);
  border-top: 2px solid var(--color-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 14px;
}
.nav-mobile a:hover {
  color: var(--color-primary);
}
.nav-mobile .btn-contact {
  padding: 16px;
  justify-content: center;
  border: none;
  border-radius: 4px;
  text-align: center;
  background-color: var(--color-primary);
  color: #ffffff;
  margin: 16px;
}

#nav-toggle:checked ~ .nav-mobile {
  max-height: 400px;
}

#nav-toggle:checked ~ .nav-mobile a,
#nav-toggle:checked ~ .nav-mobile .btn-contact {
  opacity: 1;
  transform: translateY(0);
}

#nav-toggle:checked ~ .nav-mobile a:nth-child(1) {
  transition-delay: 0.2s;
}
#nav-toggle:checked ~ .nav-mobile a:nth-child(2) {
  transition-delay: 0.3s;
}
#nav-toggle:checked ~ .nav-mobile a:nth-child(3) {
  transition-delay: 0.4s;
}
#nav-toggle:checked ~ .nav-mobile a:nth-child(4) {
  transition-delay: 0.5s;
}
#nav-toggle:checked ~ .nav-mobile .btn-contact {
  transition-delay: 0.6s;
}

.mobile-backdrop {
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

#nav-toggle:checked ~ .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  header {
    padding-inline: 30px;
  }
  .header-background {
    height: var(--header-height-mobile);
  }
  .header-inner {
    height: var(--header-height-mobile);
    position: relative;
    z-index: 2;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .logo-mark {
    height: 20px;
  }
}
@media (max-width: 375px) {
  .logo-text-main {
    font-size: 18px;
  }
  .logo-mark {
    height: 20px;
  }
}
footer {
  background: linear-gradient(to bottom, rgba(12, 109, 177, 0.4), rgba(5, 46, 75, 0.7));
  position: relative;
  padding: 80px 0;
  color: #ffffff;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
footer .container {
  position: relative;
  z-index: 1;
  padding-inline: 60px;
  max-width: none;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}
footer .footer-nav-wrapper {
  display: flex;
  gap: 60px;
}
footer .footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 auto;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .footer-address {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
}
footer .footer-map-link {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}
footer .footer-map-link:hover {
  color: var(--color-primary);
}
footer .footer-nav-block {
  flex: 0 0 auto;
}
footer .footer-nav-block-spaced .footer-nav {
  height: calc(100% - 7px);
  justify-content: space-between;
}
footer .footer-nav-block-spaced .footer-nav a {
  font-size: 14px;
  font-weight: 700;
  padding-left: 0;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-nav a {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease;
  padding-left: 20px;
}
footer .footer-nav a:hover {
  color: var(--color-primary);
}
footer .footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-copyright {
  background-color: #ffffff;
  height: 60px;
  margin-top: 0;
}
.footer-copyright .container {
  padding-inline: 60px;
  padding-top: 20px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  max-width: none;
}

.footer-copyright-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-copyright-text {
  font-size: 12px;
  color: #000000;
  margin: 0;
  padding-right: 20px;
  border-right: 1px solid #808080;
  line-height: 12px;
}

.footer-copyright-link {
  font-size: 12px;
  color: #333;
  border-left: 1px solid #333;
  padding-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-copyright-link:hover {
  color: var(--color-primary);
}

.footer-privacy-link {
  color: #808080;
  font-size: 12px;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0;
  }
  footer .container {
    padding-inline: 30px;
  }
  footer .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  footer .footer-nav-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-copyright .container {
    padding-inline: 30px;
  }
}
@media (max-width: 375px) {
  footer {
    padding: 40px 0;
  }
  footer .container {
    padding-inline: 30px;
  }
  footer .footer-nav-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .footer-copyright {
    height: unset;
    padding: 30px 0;
  }
  .footer-copyright .container {
    padding-top: 0;
    padding-inline: 30px;
  }
  .footer-copyright-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: none;
  }
  .footer-copyright-text {
    border-right: none;
    padding-right: 0;
  }
}
.modal,
.movie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal.active,
.movie-modal.active {
  display: flex;
}

.modal-overlay,
.movie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal-content,
.movie-modal-content {
  position: relative;
  max-width: 960px;
  width: 90%;
  background-color: #ffffff;
  padding: 30px 60px 60px 60px;
  z-index: 1001;
  max-height: 90vh;
  overflow-y: auto;
}

.movie-modal-content {
  width: 100%;
}

.movie-modal-close {
  margin-right: 25px;
}

.modal-close,
.movie-modal-close {
  background: none;
  border: none;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.3s ease;
  margin-left: auto;
  margin-bottom: 10px;
}
.modal-close::after,
.movie-modal-close::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E5E5E5;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.modal-close::before,
.movie-modal-close::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #E5E5E5;
  transition: background-color 0.3s ease;
}
.modal-close:hover,
.movie-modal-close:hover {
  color: rgb(255, 255, 255);
}
.modal-close:hover::after,
.movie-modal-close:hover::after {
  background-color: rgba(255, 255, 255, 0.6);
}
.modal-close:hover::before,
.movie-modal-close:hover::before {
  background-color: rgba(255, 255, 255, 0.6);
}

.modal-body,
.movie-modal-body {
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .modal-content,
  .movie-modal-content {
    padding: 20px 30px 40px 30px;
    max-height: 80vh;
  }
}
@media (max-width: 400px) {
  .modal-content,
  .movie-modal-content {
    padding: 20px 20px 30px 20px;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.section-title {
  font-size: 86px;
  font-weight: 400;
  margin: 0;
  color: var(--color-text);
  text-transform: uppercase;
}

.section-header-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  padding-left: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-subtitle::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
}

.section-title-underline {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}
.section-title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
}
.section-title-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 2px;
  background-color: #0C6DB1;
  z-index: 1;
}

.section-view-all,
.modal-close,
.movie-modal-close {
  font-size: 14px;
  color: var(--color-text);
  transition: color 0.3s ease;
  text-decoration: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 15px;
  flex-direction: row;
}
.section-view-all::after,
.modal-close::after,
.movie-modal-close::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E5E5E5;
  flex-shrink: 0;
}
.section-view-all::before,
.modal-close::before,
.movie-modal-close::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #E5E5E5;
}
.section-view-all:hover,
.modal-close:hover,
.movie-modal-close:hover {
  color: #0C6DB1;
}
.section-view-all:hover::after, .section-view-all:hover::before,
.modal-close:hover::after,
.modal-close:hover::before,
.movie-modal-close:hover::after,
.movie-modal-close:hover::before {
  background-color: #0C6DB1;
}

.breadcrumb {
  margin-top: 80px;
  font-size: 14px;
  color: #000000;
}
.breadcrumb .breadcrumb-gray {
  color: #808080;
}

.breadcrumb-link {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-link:hover {
  color: var(--color-text);
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #808080;
}

.breadcrumb-current {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 40px;
  }
}
@media (max-width: 400px) {
  .section-header {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 48px;
  }
  .section-title-underline {
    font-size: 24px;
  }
}
body.home header {
  background-color: #000000;
}
body.home header.scrolled {
  background-color: #ffffff;
}
body.home header.scrolled .hamburger span {
  background-color: #000000;
}
body.home header.scrolled .nav-mobile {
  background-color: #ffffff;
}
body.home header.scrolled .nav-mobile a:not(.btn-contact) {
  color: #000000;
}
body.home header .hamburger span {
  background-color: #ffffff;
}
body.home header .nav-mobile {
  background-color: #000000;
}
body.home header .nav-mobile a {
  color: #ffffff;
}
body.home header.header-front-page .nav-link {
  color: #ffffff;
}
body.home header.header-front-page .nav-link:hover {
  color: var(--color-primary);
}
body.home .hero {
  position: relative;
  height: calc(100vh - var(--header-height-desktop));
  overflow: hidden;
}
body.home .hero::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
body.home .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
body.home .hero-col {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.home .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
body.home .hero-overlay-text {
  height: 550px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
body.home .hero-overlay-text.in-view {
  opacity: 1;
  transform: translateY(0);
}
body.home .hero-music-player {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 180px;
  height: 40px;
  background-color: #DD3B44;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 40px;
  border: none;
  transition: background-color 0.3s ease;
}
body.home .hero-music-player:hover {
  background-color: #c43239;
}
body.home .hero-play-icon,
body.home .hero-pause-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
body.home .hero-music-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  max-width: 150px;
}
body.home .hero-music-title.scrolling span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
body.home .hero-audio-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
body.home .passion {
  padding: 60px 0 78px;
  max-width: 1200px;
  background-color: var(--color-bg);
  margin: auto;
}
body.home .passion .container {
  position: relative;
  padding-left: 0;
  padding-right: 60px;
  margin: 0;
  max-width: unset;
}
body.home .passion-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 40px 0;
  color: var(--color-text);
  padding-left: 60px;
  grid-column: 1/-1;
  font-family: "Inter", Arial, sans-serif;
}
body.home .passion-content {
  display: grid;
  grid-template-columns: 542px 1fr;
  gap: 60px 140px;
  align-items: start;
  position: relative;
}
body.home .passion-left {
  position: relative;
}
body.home .passion-image-large {
  width: 100%;
  max-width: 542px;
  height: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}
body.home .passion-image-large.in-view {
  opacity: 1;
  transform: translateY(-50px);
}
body.home .passion-image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.home .passion-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: -90px;
}
body.home .passion-image-small {
  width: 280px;
  height: auto;
  overflow: hidden;
  margin-left: auto;
  order: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
}
body.home .passion-image-small.in-view {
  opacity: 1;
  transform: translateY(-50px);
}
body.home .passion-image-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.home .passion-image-small-top {
  display: none;
  width: 150px;
  height: 100px;
  margin-left: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
}
body.home .passion-image-small-top.in-view {
  opacity: 1;
  transform: translateY(0);
}
body.home .passion-text {
  padding: 0;
  order: 1;
}
body.home .passion-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 30px 0;
  color: var(--color-text);
}
body.home .passion-description {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px 0;
  color: var(--color-text);
}
body.home .news {
  padding: 80px 0;
  background-color: #F8F8F8;
}
body.home .news .container {
  padding-inline: 120px;
}
body.home .news-grid {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  overflow: auto;
}
body.home .news-card {
  background-color: transparent;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 358px;
  min-width: 296px;
}
body.home .news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 5px;
}
body.home .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.home .news-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.home .news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body.home .news-tag {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  border: 1px solid #808080;
  color: #808080;
  border-radius: 14px;
  width: 126px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .news-card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--color-text);
}
body.home .news-date {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
}
body.home .service {
  padding: 80px 0;
  background-color: var(--color-bg);
  max-width: 1200px;
  margin: auto;
}
body.home .service .container {
  padding-left: 120px;
}
body.home .service-grid {
  display: flex;
  justify-content: space-between;
  gap: 39px;
}
body.home .service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  width: -webkit-fill-available;
  transition: transform 0.3s ease;
}
body.home .service-image {
  width: 100%;
  overflow: hidden;
}
body.home .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
  transition: transform 0.3s ease;
  height: 456px;
}
body.home .service-card:hover .service-image img {
  transform: scale(1.1);
}
body.home .service-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 10px;
	text-decoration-color: #0C6DB1;
}
body.home .company {
  padding-top: 40px;
  overflow-x: hidden;
}
body.home .company > .container {
  padding-inline: 120px;
  position: relative;
  z-index: 1;
}
body.home .company .section-header {
  margin-bottom: 80px;
}
body.home .company-grid {
  position: relative;
  width: 100%;
  min-height: 580px;
  background: linear-gradient(to bottom, rgba(12, 109, 177, 0.4), rgba(5, 46, 75, 0.7));
  padding-top: 40px;
}
body.home .company-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}
body.home .company-grid > .container {
  position: relative;
  height: auto;
  z-index: 2;
}
body.home .company-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 105px;
  padding-bottom: 280px;
  max-width: 50%;
  color: #ffffff;
  z-index: 2;
}
body.home .company-years {
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 30px 0;
  color: #ffffff;
}
body.home .company-description {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
}
body.home .company-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -100px);
  width: -moz-max-content;
  width: max-content;
  height: 112%;
  z-index: 1;
  overflow: hidden;
  animation: slide-right-to-left 5s linear infinite;
}
body.home .company-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
body.home .company-image-track {
  position: absolute;
  top: -70px;
  left: 0;
  height: 115%;
  z-index: 1;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: company-scroll 60s linear infinite;
}
body.home .company-image-slide {
  flex-shrink: 0;
  height: 100%;
}
body.home .company-image-slide picture {
  display: block;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
body.home .company-image-slide img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@keyframes company-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right-to-left {
  0% {
    transform: translateX(100%) translateY(-75px);
  }
  100% {
    transform: translateX(-50%) translateY(-75px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInBlurred {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}
body.home .company-logos {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
body.home .company-logos-track {
  display: flex;
  gap: 60px;
  animation: scroll-left-company 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
body.home .company-logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .company-logo-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@keyframes scroll-left-company {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body.home .movie {
  padding: 100px 0 80px;
  background-color: var(--color-bg);
}
body.home .movie .container {
  padding-inline: 120px;
}
body.home .movie .modal-body,
body.home .movie .movie-modal-body {
  padding-top: 56.25%;
}
body.home .movie-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.home .movie-card {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}
body.home .movie-card:hover {
  height: 540px;
  z-index: 10;
}
body.home .movie-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.home .movie-bg-2 {
  -o-object-position: 0% 15%;
     object-position: 0% 15%;
}
body.home .movie-bg-3 {
  -o-object-position: 0% 40%;
     object-position: 0% 40%;
}
body.home .movie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 20px;
  color: #ffffff;
}
body.home .movie-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: #ffffff;
}
body.home .movie-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
  opacity: 0.9;
}
body.home .recruit {
  padding: 80px 0;
}
body.home .recruit .container {
  padding-inline: 120px;
}
body.home .recruit .section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 20px 40px;
  align-items: start;
}
body.home .recruit .section-title {
  grid-column: 1;
  grid-row: 1;
}
body.home .recruit .section-subtitle {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
body.home .recruit .recruit-description {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
  justify-self: end;
  text-align: left;
}
body.home .recruit .section-view-all,
body.home .recruit .modal-close,
body.home .recruit .movie-modal-close {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}
body.home .recruit .section-header-bottom {
  display: contents;
}
@media (max-width: 768px) {
  body.home .hero {
    height: calc(100vh - var(--header-height-mobile));
  }
  body.home .hero-grid {
    position: relative;
    grid-template-columns: 1fr;
  }
  body.home .hero-col {
    position: absolute;
    left: 0;
    width: 100%;
  }
  body.home .hero-col-1 {
    top: 0;
    height: 70%;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  }
  body.home .hero-col-2 {
    bottom: 0;
    height: 70%;
    clip-path: polygon(0 57%, 100% 17%, 100% 100%, 0 100%);
  }
  body.home .hero-overlay {
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 20px;
    padding-bottom: 100px;
  }
  body.home .hero-overlay-text {
    height: 394px;
  }
  body.home .hero-music-player {
    left: 20px;
  }
  body.home .passion {
    padding: 60px 0;
  }
  body.home .passion-content {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
    overflow: auto;
  }
  body.home .passion-image-small {
    display: none;
  }
  body.home .passion-image-small-top {
    display: block;
    order: 1;
    width: 150px;
    max-width: 150px;
    height: 100px;
    margin-left: auto;
    margin-right: 0;
  }
  body.home .passion-title {
    order: 2;
    font-size: 36px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  body.home .passion-left {
    order: 3;
  }
  body.home .passion-right {
    margin-top: 0;
    order: 4;
  }
  body.home .passion-text {
    order: 5;
    padding-left: 20px;
  }
  body.home .news {
    padding: 60px 0;
  }
  body.home .news .container {
    padding-inline: 20px;
  }
  body.home .news-grid {
    flex-wrap: wrap;
    gap: 40px;
  }
  body.home .news-card {
    min-width: calc(50% - 20px);
  }
  body.home .service {
    padding: 60px 0;
  }
  body.home .service .container {
    padding-inline: 20px;
  }
  body.home .service-grid {
    flex-direction: column;
    gap: 40px;
  }
  body.home .company > .container {
    padding-inline: 20px;
  }
  body.home .company-grid {
    padding-left: 20px;
  }
  body.home .company-content {
    max-width: 100%;
    padding-top: 105px;
    padding-bottom: 280px;
    position: relative;
    z-index: 2;
  }
  body.home .company-years {
    font-size: 36px;
    margin-bottom: 20px;
  }
  body.home .company-image {
    position: static;
  }
  body.home .company-image-bg-1 {
    top: 8%;
    width: 120px;
    height: 90px;
  }
  body.home .company-image-bg-2 {
    top: 40%;
    width: 130px;
    height: 97px;
  }
  body.home .company-image-bg-3 {
    bottom: 48%;
    width: 150px;
    height: 112px;
  }
  body.home .company-image-bg-4 {
    top: 55%;
    width: 100px;
    height: 75px;
  }
  body.home .company-image-bg-5 {
    bottom: 8%;
    width: 115px;
    height: 86px;
  }
  body.home .company-image-bg-6 {
    top: 75%;
    width: 125px;
    height: 93px;
  }
  body.home .company-image-3 {
    top: -100px;
    left: 460px;
    width: 280px;
    height: 210px;
    animation-delay: 12s, 12s;
  }
  body.home .company-image-4 {
    top: 10px;
    right: 0;
    width: 120px;
    height: 90px;
    animation-delay: 4s, 4s;
  }
  body.home .company-image-1 {
    bottom: 120px;
    left: 0;
    width: 180px;
    height: 135px;
    animation-delay: 0s, 0s;
  }
  body.home .company-image-2 {
    bottom: 20px;
    right: 0;
    width: 200px;
    height: 150px;
    animation-delay: 6s, 6s;
  }
  body.home .movie {
    padding: 60px 0;
  }
  body.home .movie .container {
    padding-inline: 20px;
  }
  body.home .movie-card {
    width: 100%;
  }
  body.home .recruit {
    padding: 60px 0;
  }
  body.home .recruit .container {
    padding-inline: 20px;
  }
  body.home .recruit .section-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
  }
  body.home .recruit .section-title {
    grid-column: 1;
    grid-row: 1;
  }
  body.home .recruit .section-subtitle {
    grid-column: 1;
    grid-row: 2;
  }
  body.home .recruit .recruit-description {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    align-self: start;
  }
  body.home .recruit .section-view-all,
  body.home .recruit .modal-close,
  body.home .recruit .movie-modal-close {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }
  body.home .recruit .section-header-bottom {
    display: flex;
    flex-direction: column;
  }
  body.home .section-header-bottom .section-subtitle {
    align-self: flex-start;
  }
  body.home .section-header-bottom .recruit-description {
    order: 2;
  }
  body.home .section-header-bottom .section-view-all,
  body.home .section-header-bottom .modal-close,
  body.home .section-header-bottom .movie-modal-close {
    order: 1;
  }
}
@media (max-width: 400px) {
  body.home .section-header-bottom {
    flex-direction: column;
  }
  body.home .hero-col-1 {
    height: 60%;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  }
  body.home .hero-col-2 {
    height: 70%;
    clip-path: polygon(0 42%, 100% 8%, 100% 100%, 0 100%);
  }
  body.home .hero-overlay-text {
    height: 394px;
    position: absolute;
    top: calc(50% - 197px + 40px);
  }
  body.home .passion {
    padding: 40px 0;
  }
  body.home .passion-content {
    grid-template-columns: 1fr;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  body.home .passion-image-small {
    display: none;
  }
  body.home .passion-image-small-top {
    display: block;
    order: 1;
    width: 150px;
    height: 100px;
    margin-left: auto;
    margin-right: 0;
  }
  body.home .passion-title {
    order: 2;
    font-size: 28px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  body.home .passion-left {
    order: 3;
  }
  body.home .passion-right {
    margin-top: 0;
    order: 4;
  }
  body.home .passion-text {
    order: 5;
    padding-left: 20px;
  }
  body.home .passion-image-large {
    max-width: 100%;
  }
  body.home .passion-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  body.home .passion-description {
    font-size: 13px;
  }
  body.home .news {
    padding: 40px 0;
  }
  body.home .news .section-header {
    margin-bottom: 60px;
  }
  body.home .news .container {
    padding-inline: 20px;
  }
  body.home .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: 30px;
  }
  body.home .news-card {
    width: 100%;
    min-width: 100%;
  }
  body.home .news-image {
    height: 198px;
  }
  body.home .news-card-title {
    font-size: 14px;
  }
  body.home .service {
    padding: 40px 0;
  }
  body.home .service .container {
    padding-inline: 30px;
  }
  body.home .service-grid {
    flex-direction: column;
    gap: 40px;
  }
  body.home .service-image {
    height: 198px;
  }
  body.home .company > .container {
    padding-inline: 20px;
  }
  body.home .company-grid {
    padding-left: 30px;
    margin-top: 100px;
  }
  body.home .company-image-track {
    top: -100px;
  }
  body.home .company-content {
    max-width: 100%;
    padding-top: 105px;
    padding-bottom: 280px;
    position: relative;
  }
  body.home .company-years {
    font-size: 28px;
    margin-bottom: 20px;
  }
  body.home .company-description {
    font-size: 14px;
  }
  body.home .company-image {
    position: absolute;
  }
  body.home .company-image-bg-1 {
    top: 5%;
    width: 100px;
    height: 75px;
  }
  body.home .company-image-bg-2 {
    top: 30%;
    width: 110px;
    height: 82px;
  }
  body.home .company-image-bg-3 {
    bottom: 55%;
    width: 120px;
    height: 90px;
  }
  body.home .company-image-bg-4 {
    top: 50%;
    width: 80px;
    height: 60px;
  }
  body.home .company-image-bg-5 {
    bottom: 15%;
    width: 95px;
    height: 71px;
  }
  body.home .company-image-bg-6 {
    top: 70%;
    width: 105px;
    height: 78px;
  }
  body.home .company-image-3 {
    top: -115px;
    right: 0;
    width: 281px;
    height: 211px;
    z-index: 1;
    animation-delay: 8s, 8s;
  }
  body.home .company-image-4 {
    top: 20px;
    right: 0;
    width: 90px;
    height: 68px;
    animation-delay: 4s, 4s;
  }
  body.home .company-image-1 {
    bottom: 100px;
    right: 0;
    width: 180px;
    height: 135px;
    animation-delay: 0s, 0s;
  }
  body.home .company-image-2 {
    bottom: 40px;
    right: 0;
    width: 172px;
    height: 129px;
    animation-delay: 4s, 4s;
  }
  body.home .movie {
    padding: 80px 0 40px;
  }
  body.home .movie .container {
    padding-inline: 20px;
  }
  body.home .movie-card {
    width: 100%;
    height: 120px;
  }
  body.home .movie-overlay {
    padding: 15px 20px;
  }
  body.home .movie-title {
    font-size: 14px;
  }
  body.home .movie-subtitle {
    font-size: 11px;
  }
  body.home .recruit {
    padding: 40px 0;
  }
  body.home .recruit .container {
    padding-inline: 20px;
  }
}
body.home.scrolled {
  background-color: #ffffff;
}
body.home.scrolled .hamburger span {
  background-color: #000000;
}
body.home.scrolled .nav-mobile {
  background-color: #ffffff;
}
body.home.scrolled .nav-mobile a:not(.btn-contact) {
  color: #000000;
}
body.home .hamburger span {
  background-color: #ffffff;
}
body.home .nav-mobile {
  background-color: #000000;
}
body.home .nav-mobile a {
  color: #ffffff;
}
body.home.header-front-page .nav-link {
  color: #ffffff;
}
body.home.header-front-page .nav-link:hover {
  color: var(--color-primary);
}

body.single-post .announcement-page {
  padding: 40px 0;
}
body.single-post .announcement-page .container {
  padding-inline: 120px;
}
body.single-post .article-container {
  margin-top: 40px;
  padding-inline: 105px;
}
body.single-post .article-container p {
  font-size: 14px;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
}
body.single-post .article-container a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}
body.single-post .article-container a:hover {
  color: var(--color-primary-dark);
}
body.single-post .article-date {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
  display: block;
  margin-bottom: 20px;
}
body.single-post .article-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 40px 0;
  line-height: 1.4;
}
body.single-post .article-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}
body.single-post .article-h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 80px 0 20px 0;
  line-height: 1.4;
}
body.single-post .article-h2:first-of-type {
  margin-top: 0;
}
body.single-post .article-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 60px 0 20px 0;
  line-height: 1.4;
}
body.single-post .article-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0 0 20px 0;
}
body.single-post .article-link {
  font-size: 14px;
  font-weight: 400;
  color: #0066CC;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
body.single-post .article-link:hover {
  color: #0052A3;
}
body.single-post h1, body.single-post h2, body.single-post h3, body.single-post h4, body.single-post h5, body.single-post h6 {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body.single-post .announcement-page {
    padding: 60px 0;
  }
  body.single-post .announcement-page .container {
    padding-inline: 20px;
  }
  body.single-post .announcement-page .article-container {
    padding-inline: 0;
  }
  body.single-post .breadcrumb {
    font-size: 12px;
    margin-bottom: 30px;
  }
  body.single-post .article-title {
    font-size: 28px;
  }
  body.single-post .article-h2 {
    font-size: 24px;
    margin: 60px 0 16px 0;
  }
  body.single-post .article-h3 {
    font-size: 16px;
    margin: 40px 0 16px 0;
  }
}
@media (max-width: 375px) {
  body.single-post .announcement-page {
    padding: 40px 0;
  }
  body.single-post .announcement-page .container {
    padding-inline: 20px;
  }
  body.single-post .breadcrumb {
    font-size: 11px;
    margin-bottom: 20px;
  }
  body.single-post .article-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  body.single-post .article-h2 {
    font-size: 20px;
    margin: 50px 0 16px 0;
  }
  body.single-post .article-h3 {
    font-size: 16px;
    margin: 30px 0 16px 0;
  }
  body.single-post .article-image {
    margin-bottom: 30px;
  }
}

body.page-company header {
  background-color: #ffffff !important;
}
body.page-company header .nav-link {
  color: #000000 !important;
}
body.page-company header .nav-link:hover {
  color: var(--color-primary) !important;
}
body.page-company header .btn-contact {
  color: #ffffff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
body.page-company header .btn-contact:hover {
  background-color: #3198DC;
  border-color: #3198DC;
}
body.page-company header.scrolled {
  background-color: #ffffff !important;
}
body.page-company header.scrolled .nav-link {
  color: #000000 !important;
}
body.page-company .header-background {
  background-color: #ffffff !important;
}
body.page-company .nav-mobile {
  background-color: #ffffff !important;
}
body.page-company .nav-mobile a:not(.btn-contact) {
  color: #000000 !important;
}
body.page-company .nav-mobile a:hover {
  color: var(--color-primary) !important;
}
body.page-company .hamburger span {
  background-color: #000000 !important;
}
body.page-company .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-company .animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}
body.page-company .company {
  padding-top: 80px;
}
body.page-company .company .container {
  padding-inline: 120px;
}
body.page-company .company-intro {
  margin-top: 30px;
  position: relative;
  height: 890px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 60px;
  border-radius: 5px;
  max-width: 1080px;
  margin: 30px auto 0;
}
body.page-company .company-intro-sign {
  max-width: 80%;
  height: auto;
  margin-bottom: 60px;
}
body.page-company .company-intro-text {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}
body.page-company .company-intro-text p {
  margin: 0 0 10px 0;
  line-height: 1.125;
  font-size: 16px;
}
body.page-company .company-intro-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}
body.page-company .company-intro-signature .company-intro-title {
  font-size: 12px;
  margin: 0;
  line-height: 1.8;
}
body.page-company .company-intro-signature .company-intro-name {
  font-size: 20px;
  margin: 0;
  line-height: 1.8;
}
body.page-company .kusuda-history {
  padding: 80px 0 0;
}
body.page-company .kusuda-history .container {
  padding-inline: 120px;
}
body.page-company .kusuda-history-image {
  margin-top: 60px;
  max-width: 1200px;
  margin-inline: auto;
}
body.page-company .kusuda-history-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -2px;
}
body.page-company .company-history {
  padding: 60px 0 120px;
}
body.page-company .company-history .container {
  padding-inline: 120px;
}
body.page-company .history-timeline {
  margin-top: 60px;
  overflow: auto;
}
body.page-company .history-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #E0E0E0;
}
body.page-company .history-item:first-child {
  padding-top: 0;
}
body.page-company .history-date {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
body.page-company .history-description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  min-width: 250px;
}
body.page-company .kusuda-banner {
  width: 100%;
  overflow: hidden;
}
body.page-company .kusuda-banner img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-company .kusuda-map {
  width: 460px;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
body.page-company .kusuda-history-table {
  padding-top: 60px;
}
body.page-company .kusuda-history-table .container {
  padding-inline: 120px;
}
body.page-company .company-info-table {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
body.page-company .company-info-table::-webkit-scrollbar {
  height: 8px;
}
body.page-company .company-info-table::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
body.page-company .company-info-table::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
body.page-company .company-info-table::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.page-company .company-info-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #E0E0E0;
}
body.page-company .company-info-item:first-child {
  border-top: 1px solid #E0E0E0;
}
body.page-company .company-info-label {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}
body.page-company .company-info-value {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
body.page-company .company-info-value a[href^="mailto:"] {
  color: #000000;
  text-decoration: underline;
}
body.page-company .company-info-value a[href^="mailto:"]:hover {
  color: #0C6DB1;
}
body.page-company .company-info-link {
  color: #000000;
  text-decoration: underline;
}
body.page-company .company-info-link:hover {
  color: #0C6DB1;
}
body.page-company .company-info-item-clients {
  padding: 20px 0;
}
body.page-company .company-info-item-clients .company-info-label {
  font-weight: normal;
}
body.page-company .company-info-capacity,
body.page-company .company-info-clients {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-company .capacity-row,
body.page-company .clients-row {
  display: flex;
  align-items: flex-start;
}
body.page-company .capacity-row span:first-child,
body.page-company .clients-row span:first-child {
  min-width: 250px;
  max-width: 250px;
  width: 100%;
  flex: 1;
}
body.page-company .capacity-row span:last-child,
body.page-company .clients-row span:last-child {
  min-width: 200px;
  max-width: 200px;
  width: 100%;
}
body.page-company .capacity-row span:only-child,
body.page-company .clients-row span:only-child {
  text-align: left;
  min-width: auto;
}
body.page-company .company-gallery {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 30px;
  min-height: 445px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
body.page-company .company-gallery:active {
  cursor: grabbing;
}
body.page-company .company-gallery::-webkit-scrollbar {
  height: 8px;
}
body.page-company .company-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
body.page-company .company-gallery::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
body.page-company .company-gallery::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.page-company .company-gallery img {
  height: auto;
  width: 4342px;
  max-width: none;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  body.page-company .company-intro {
    height: 729px;
    margin-inline: 0;
    border-radius: 0;
  }
  body.page-company .company .container,
  body.page-company .kusuda-history .container,
  body.page-company .company-history .container {
    padding-inline: 60px;
  }
  body.page-company .kusuda-history-table .container {
    padding-inline: 60px;
  }
  body.page-company .history-item {
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  body.page-company .kusuda-banner img {
    max-height: 250px;
  }
  body.page-company .kusuda-map {
    width: 100%;
    height: auto;
    max-width: 460px;
    min-width: 300px;
  }
  body.page-company .company-info-item {
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  body.page-company .company-info-item-clients {
    padding: 15px 0;
  }
  body.page-company .company-gallery {
    margin-top: 80px;
    min-height: 300px;
  }
  body.page-company .company-gallery img {
    height: auto;
    width: auto;
    max-height: 300px;
  }
}
@media (max-width: 400px) {
  body.page-company .company {
    padding-top: 30px;
  }
  body.page-company .company .container,
  body.page-company .kusuda-history .container,
  body.page-company .company-history .container,
  body.page-company .kusuda-history-table .container {
    padding-inline: 30px !important;
  }
  body.page-company .company-intro {
    height: 729px;
    padding-bottom: 40px;
  }
  body.page-company .company-intro-sign {
    margin-bottom: 40px;
  }
  body.page-company .company-intro-text {
    text-align: left;
  }
  body.page-company .company-intro-text p {
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.5px;
  }
  body.page-company .history-item {
    grid-template-columns: 120px 1fr;
    gap: 15px;
    padding: 15px 0;
  }
  body.page-company .history-date {
    font-size: 14px;
  }
  body.page-company .history-description {
    font-size: 13px;
  }
  body.page-company .kusuda-banner img {
    max-height: 180px;
  }
  body.page-company .kusuda-map {
    width: 100%;
    height: auto;
  }
  body.page-company .company-info-item {
    grid-template-columns: 120px 1fr;
    gap: 15px;
    padding: 15px 0;
  }
  body.page-company .company-info-label {
    font-size: 14px;
  }
  body.page-company .company-info-value {
    font-size: 13px;
  }
  body.page-company .company-info-item-clients {
    padding: 12px 0;
  }
  body.page-company .company-gallery {
    margin-top: 40px;
    min-height: 200px;
  }
  body.page-company .company-gallery img {
    height: auto;
    width: auto;
    max-height: 200px;
  }
}

body.page-contact .nav-mobile {
  background-color: #ffffff !important;
}
body.page-contact .nav-mobile a:not(.btn-contact) {
  color: #000000 !important;
}
body.page-contact .nav-mobile a:hover {
  color: var(--color-primary) !important;
}
body.page-contact .hamburger span {
  background-color: #000000 !important;
}
body.page-contact .contact-page {
  padding: 80px 0;
  background-color: #ffffff;
}
body.page-contact .contact-page .container {
  padding-inline: 120px;
}
body.page-contact .contact-form-wrapper {
  margin-top: 80px;
}
body.page-contact .contact-form-wrapper .contact-tel-box {
  border: 2px solid #E5E5E5;
  padding: 40px 10px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 60px;
}
body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-title {
  font-weight: 800;
  font-size: 18px;
}
body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-number {
  font-size: 40px;
  font-weight: 800;
  color: #0C6DB1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-block: 10px;
}
body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-number .tel-badge {
  background-color: #0C6DB1;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 5px;
  height: 32px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}
body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-note,
body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-small {
  font-size: 12px;
}
body.page-contact .contact-form-wrapper .privacy-note {
  text-align: center;
}
body.page-contact .contact-form-wrapper .privacy-note a {
  color: #0C6DB1;
  text-decoration: underline;
}
body.page-contact .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-contact .wpcf7 .wpcf7-form > p,
body.page-contact .wpcf7 .wpcf7-form .contact-form {
  font-size: 14px;
}
body.page-contact .wpcf7 .wpcf7-form .contact-form {
  margin-top: 60px;
}
body.page-contact .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}
body.page-contact .wpcf7 .wpcf7-form-control-wrap::after {
  content: "";
}
body.page-contact .wpcf7 label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}
body.page-contact .wpcf7 label .req {
  color: var(--color-primary);
  margin-left: 4px;
}
body.page-contact .wpcf7 label .required {
  color: #DD3B44;
  margin-left: 4px;
}
body.page-contact .wpcf7 input[type=text],
body.page-contact .wpcf7 input[type=email],
body.page-contact .wpcf7 input[type=tel],
body.page-contact .wpcf7 input[type=url],
body.page-contact .wpcf7 input[type=number],
body.page-contact .wpcf7 input[type=date] {
  width: 100%;
  padding: 14px 16px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
body.page-contact .wpcf7 input[type=text]:focus,
body.page-contact .wpcf7 input[type=email]:focus,
body.page-contact .wpcf7 input[type=tel]:focus,
body.page-contact .wpcf7 input[type=url]:focus,
body.page-contact .wpcf7 input[type=number]:focus,
body.page-contact .wpcf7 input[type=date]:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(12, 109, 177, 0.1);
}
body.page-contact .wpcf7 input[type=text]::-moz-placeholder, body.page-contact .wpcf7 input[type=email]::-moz-placeholder, body.page-contact .wpcf7 input[type=tel]::-moz-placeholder, body.page-contact .wpcf7 input[type=url]::-moz-placeholder, body.page-contact .wpcf7 input[type=number]::-moz-placeholder, body.page-contact .wpcf7 input[type=date]::-moz-placeholder {
  color: #999;
}
body.page-contact .wpcf7 input[type=text]::placeholder,
body.page-contact .wpcf7 input[type=email]::placeholder,
body.page-contact .wpcf7 input[type=tel]::placeholder,
body.page-contact .wpcf7 input[type=url]::placeholder,
body.page-contact .wpcf7 input[type=number]::placeholder,
body.page-contact .wpcf7 input[type=date]::placeholder {
  color: #999;
}
body.page-contact .wpcf7 textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  resize: vertical;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
body.page-contact .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(12, 109, 177, 0.1);
}
body.page-contact .wpcf7 textarea::-moz-placeholder {
  color: #999;
}
body.page-contact .wpcf7 textarea::placeholder {
  color: #999;
}
body.page-contact .wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--color-text);
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
body.page-contact .wpcf7 select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(12, 109, 177, 0.1);
}
body.page-contact .wpcf7 input[type=checkbox],
body.page-contact .wpcf7 input[type=radio] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: var(--color-primary);
  border: 1px solid #E5E5E5;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  position: relative;
}
body.page-contact .wpcf7 input[type=checkbox]:checked,
body.page-contact .wpcf7 input[type=radio]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
body.page-contact .wpcf7 input[type=radio] {
  border-radius: 50%;
}
body.page-contact .wpcf7 input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}
body.page-contact .wpcf7 input[type=checkbox] {
  border-radius: 3px;
}
body.page-contact .wpcf7 input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
body.page-contact .wpcf7 .wpcf7-list-item {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}
body.page-contact .wpcf7 .wpcf7-list-item label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
}
body.page-contact .wpcf7 input[type=file] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: var(--color-text);
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}
body.page-contact .wpcf7 input[type=file]:focus {
  outline: none;
  border-color: var(--color-primary);
}
body.page-contact .wpcf7 input[type=submit] {
  width: 100%;
  max-width: 300px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin: 40px auto 0;
  display: block;
}
body.page-contact .wpcf7 input[type=submit]:hover {
  background-color: #3198DC;
}
body.page-contact .wpcf7 input[type=submit]:active {
  transform: translateY(0);
}
body.page-contact .wpcf7 input[type=submit]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}
body.page-contact .wpcf7 .wpcf7-not-valid-tip {
  color: #ffffff;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 150%);
  white-space: nowrap;
  background: linear-gradient(#e51b00 43%, #ba1600 100%);
  padding: 4px 6px;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.4);
  border: 1px solid #9f1300;
}
body.page-contact .wpcf7 .wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20%;
  transform: translateX(-50%) rotate(45deg);
  background-color: #e51b00;
  border: 1px solid #9f1300;
  border-right: none;
  border-bottom: none;
  display: inline-block;
  height: 10px;
  width: 10px;
}
body.page-contact .wpcf7 .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}
body.page-contact .wpcf7 .wpcf7-mail-sent-ok {
  background-color: #D4EDDA;
  border: 1px solid #C3E6CB;
  color: #155724;
}
body.page-contact .wpcf7 .wpcf7-mail-sent-ng,
body.page-contact .wpcf7 .wpcf7-validation-errors,
body.page-contact .wpcf7 .wpcf7-acceptance-missing {
  background-color: #F8D7DA;
  border: 1px solid #F5C6CB;
  color: #721C24;
}
body.page-contact .wpcf7 .wpcf7-spam-blocked {
  background-color: #FFF3CD;
  border: 1px solid #FFEAA7;
  color: #856404;
}
body.page-contact .wpcf7 .wpcf7-spinner {
  margin-left: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(12, 109, 177, 0.3);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body.page-contact .wpcf7 .wpcf7-acceptance {
  margin-top: 20px;
}
body.page-contact .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
body.page-contact .form-row {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
body.page-contact .form-row br {
  display: none;
}
@media (max-width: 768px) {
  body.page-contact .contact-page {
    padding: 60px 0;
  }
  body.page-contact .contact-page .container {
    padding-inline: 20px;
  }
  body.page-contact .wpcf7 input[type=submit] {
    max-width: 100%;
  }
}
@media (max-width: 375px) {
  body.page-contact .contact-page {
    padding: 40px 0;
  }
  body.page-contact .contact-page .container {
    padding-inline: 20px;
  }
  body.page-contact .wpcf7 .wpcf7-form {
    gap: 24px;
  }
  body.page-contact .wpcf7 label {
    font-size: 13px;
  }
  body.page-contact .wpcf7 input[type=text],
  body.page-contact .wpcf7 input[type=email],
  body.page-contact .wpcf7 input[type=tel],
  body.page-contact .wpcf7 input[type=url],
  body.page-contact .wpcf7 input[type=number],
  body.page-contact .wpcf7 input[type=date],
  body.page-contact .wpcf7 select {
    padding: 12px 14px;
    font-size: 13px;
  }
  body.page-contact .wpcf7 textarea {
    min-height: 120px;
    padding: 12px 14px;
    font-size: 13px;
  }
  body.page-contact .wpcf7 input[type=submit] {
    padding: 14px 28px;
    font-size: 15px;
  }
  body.page-contact .wpcf7 .wpcf7-response-output {
    font-size: 13px;
    padding: 14px 16px;
  }
  body.page-contact .contact-form-wrapper .contact-tel-box .contact-tel-number {
    font-size: 30px;
  }
}

body.page-news .news-page {
  padding: 80px 0 120px;
  background-color: #F8F8F8;
}
body.page-news .news-page .container {
  padding-inline: 120px;
}
body.page-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 36px;
  margin-top: 80px;
}
body.page-news .news-card {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
body.page-news .news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 5px;
}
body.page-news .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
body.page-news .news-card:hover .news-image img {
  transform: scale(1.1);
}
body.page-news .news-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-news .news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body.page-news .news-tag {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  border: 1px solid #808080;
  color: #808080;
  border-radius: 14px;
  width: 126px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-news .news-card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--color-text);
}
body.page-news .news-date {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
}
body.page-news .pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
body.page-news .pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-news .pagination .page-numbers li {
  list-style: none;
}
body.page-news .pagination .page-numbers a,
body.page-news .pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  text-decoration: none;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
body.page-news .pagination .page-numbers a:hover,
body.page-news .pagination .page-numbers span:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
body.page-news .pagination .page-numbers .current {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  pointer-events: none;
}
body.page-news .pagination .page-numbers .dots {
  border: none;
  background: transparent;
  pointer-events: none;
  color: #808080;
}
body.page-news .pagination .page-numbers .dots:hover {
  background: transparent;
  color: #808080;
}
@media (max-width: 768px) {
  body.page-news .news-page {
    padding: 60px 0;
  }
  body.page-news .news-page .container {
    padding-inline: 20px;
  }
  body.page-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  body.page-news .pagination {
    margin-top: 60px;
  }
  body.page-news .pagination .page-numbers {
    gap: 8px;
  }
  body.page-news .pagination .page-numbers a,
  body.page-news .pagination .page-numbers span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  body.page-news .pagination .page-numbers .prev,
  body.page-news .pagination .page-numbers .next {
    min-width: 70px;
  }
}
@media (max-width: 375px) {
  body.page-news .news-page {
    padding: 40px 0;
  }
  body.page-news .news-page .container {
    padding-inline: 20px;
  }
  body.page-news .news-grid {
    grid-template-columns: 1fr;
  }
  body.page-news .news-image {
    height: 160px;
  }
  body.page-news .news-card-title {
    font-size: 14px;
  }
  body.page-news .pagination {
    margin-top: 40px;
  }
  body.page-news .pagination .page-numbers {
    gap: 6px;
  }
  body.page-news .pagination .page-numbers a,
  body.page-news .pagination .page-numbers span {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }
}

body.page-recruit .nav-mobile {
  background-color: #ffffff !important;
}
body.page-recruit .nav-mobile a:not(.btn-contact) {
  color: #000000 !important;
}
body.page-recruit .nav-mobile a:hover {
  color: var(--color-primary) !important;
}
body.page-recruit .hamburger span {
  background-color: #000000 !important;
}
body.page-recruit .modal-content,
body.page-recruit .movie-modal-content {
  padding: 60px;
}
body.page-recruit .recruit-main-section {
  padding-right: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
body.page-recruit .recruit-main-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
body.page-recruit .recruit-main-text {
  flex: 1;
  min-width: 0;
}
body.page-recruit .recruit-main-title {
  font-size: 24px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 32px;
}
body.page-recruit .recruit-main-description {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  line-height: 1.8;
}
body.page-recruit .recruit-main-image-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-recruit .recruit-main-img {
  width: 540px;
  height: 719px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-recruit .recruit {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
  max-width: 1200px;
  margin: auto;
}
body.page-recruit .recruit .container {
  padding-inline: 120px;
}
body.page-recruit .recruit .container .section-header {
  margin-bottom: 0;
  position: relative;
}
body.page-recruit .recruit .hero-overlay-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 135px;
  margin-top: -85px;
}
body.page-recruit .recruit .scroll-container {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}
body.page-recruit .recruit .scroll-image {
  height: 135px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  flex-shrink: 0;
  padding-right: 50px;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}
body.page-recruit .recruit-content {
  padding-top: 200px;
  padding-bottom: 200px;
}
body.page-recruit .recruit-content .container {
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
body.page-recruit .recruit-hero {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
body.page-recruit .recruit-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-recruit .recruit-heading-desktop {
  width: 600px;
  height: 625px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}
body.page-recruit .recruit-heading-mobile {
  display: none;
}
body.page-recruit .recruit-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
body.page-recruit .recruit-hero-images {
  flex: 1;
}
body.page-recruit .recruit-main-image {
  display: block;
  margin-top: 110px;
  width: 540px;
  height: 399px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-recruit .recruit-gallery {
  width: 100%;
}
body.page-recruit .recruit-gallery-image {
  width: 100%;
  height: auto;
  display: block;
}
body.page-recruit .employee {
  padding-bottom: 160px;
  max-width: 1200px;
  margin: auto;
}
body.page-recruit .employee .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-right: 0;
  max-width: unset;
  padding-left: 60px;
}
body.page-recruit .employee .section-title-underline {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
body.page-recruit .employee .section-title-underline .arrow-container {
  display: flex;
  gap: 30px;
  margin-right: 120px;
}
body.page-recruit .employee .section-title-underline button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
}
body.page-recruit .employee .section-title-underline .arrow-left {
  transform: rotate(180deg);
}
body.page-recruit .employee .cards-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-left: 80px;
  overflow-x: scroll;
}
body.page-recruit .employee .cards-wrapper .card {
  max-width: 320px;
  min-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body.page-recruit .employee .cards-wrapper .card .card-image img {
  width: 320px;
  height: 320px;
  display: block;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-recruit .employee .cards-wrapper .card .card-description {
  font-weight: 700;
  font-size: 20px;
}
body.page-recruit .employee .cards-wrapper .card .card-date {
  color: #808080;
  font-size: 14px;
}
body.page-recruit .employee-header-container {
  display: flex;
  gap: 60px;
}
body.page-recruit .information {
  padding: 60px 0 120px;
  background-color: #F8F8F8;
}
body.page-recruit .information .container {
  padding-inline: 120px;
}
body.page-recruit .information .recruit-gallery {
  width: 100%;
  margin-top: 120px;
  min-height: 485px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
body.page-recruit .information .recruit-gallery:active {
  cursor: grabbing;
}
body.page-recruit .information .recruit-gallery::-webkit-scrollbar {
  height: 8px;
}
body.page-recruit .information .recruit-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
body.page-recruit .information .recruit-gallery::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
body.page-recruit .information .recruit-gallery::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.page-recruit .information .recruit-gallery img {
  height: auto;
  width: 2888px;
  max-width: none;
  display: block;
  flex-shrink: 0;
}
body.page-recruit .company-info-table {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
body.page-recruit .company-info-table::-webkit-scrollbar {
  height: 8px;
}
body.page-recruit .company-info-table::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
body.page-recruit .company-info-table::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
body.page-recruit .company-info-table::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.page-recruit .company-info-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #E0E0E0;
}
body.page-recruit .company-info-label {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}
body.page-recruit .company-info-value {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
body.page-recruit .company-info-value a[href^="mailto:"] {
  color: #000000;
  text-decoration: underline;
}
body.page-recruit .company-info-value a[href^="mailto:"]:hover {
  color: #0C6DB1;
}
body.page-recruit .company-info-link {
  color: #000000;
  text-decoration: underline;
}
body.page-recruit .company-info-link:hover {
  color: #0C6DB1;
}
body.page-recruit .entry-section {
  text-align: center;
  margin-top: 120px;
}
body.page-recruit .entry-section .container {
  padding-inline: 120px;
}
body.page-recruit .entry-section .entry-title {
  font-size: 96px;
  font-family: "Inter", Arial, sans-serif;
  margin-bottom: 30px;
  font-weight: 400;
}
body.page-recruit .entry-section .entry-description {
  font-size: 14px;
  font-weight: 500;
}
body.page-recruit .entry-section button {
  margin-top: 80px;
  margin-bottom: 180px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #0C6DB1;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 120px;
  transition: background-color 0.3s ease;
}
body.page-recruit .entry-section button:hover {
  background-color: #3198DC;
}
@media (max-width: 1024px) {
  body.page-recruit .recruit-main-section {
    margin-top: 80px !important;
  }
  body.page-recruit .recruit-main-container {
    gap: 30px;
  }
  body.page-recruit .recruit-main-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 500px;
  }
}
@media (min-width: 401px) and (max-width: 1024px) {
  body.page-recruit .recruit-content {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  body.page-recruit .recruit-content .container {
    gap: 60px;
  }
  body.page-recruit .recruit-hero {
    gap: 40px;
  }
  body.page-recruit .recruit-heading-desktop {
    height: 425px;
    width: 400px;
  }
  body.page-recruit .employee-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  body.page-recruit .recruit-main-container {
    flex-direction: column;
    gap: 40px;
  }
  body.page-recruit .recruit-main-img {
    width: 370px;
    height: 493px;
    margin-right: -30px;
  }
  body.page-recruit .recruit {
    padding-top: 30px;
    padding-bottom: 60px;
    overflow-x: hidden;
  }
  body.page-recruit .recruit .container {
    padding-inline: 60px !important;
    overflow: hidden;
  }
  body.page-recruit .recruit .hero-overlay-text {
    height: 80px;
    margin-top: -43px;
  }
  body.page-recruit .recruit .scroll-image {
    height: 80px;
  }
  body.page-recruit .recruit-content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  body.page-recruit .recruit-content .container {
    padding-inline: 30px;
    gap: 60px;
  }
  body.page-recruit .recruit-hero {
    flex-direction: column;
    gap: 40px;
  }
  body.page-recruit .recruit-description {
    font-size: 14px;
    line-height: 1.6;
  }
  body.page-recruit .employee-grid {
    flex-direction: column;
    gap: 30px;
  }
  body.page-recruit .employee-image {
    max-width: 100%;
  }
  body.page-recruit .employee .container {
    padding-inline: 60px;
  }
  body.page-recruit .employee .section-title-underline .arrow-container {
    display: none;
  }
  body.page-recruit .information .container {
    padding-inline: 60px;
  }
  body.page-recruit .company-info-item {
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  body.page-recruit .entry-section .container {
    padding-inline: 60px;
  }
  body.page-recruit .employee-header-container {
    flex-direction: column;
  }
  body.page-recruit .modal-content {
    padding: 30px;
  }
  body.page-recruit .modal-content .employee-gallery {
    margin: 0 !important;
  }
}
@media (max-width: 400px) {
  body.page-recruit .recruit-main-title {
    font-size: 20px;
  }
  body.page-recruit .recruit-main-description {
    font-size: 13px;
  }
  body.page-recruit .recruit-heading-desktop {
    display: none;
  }
  body.page-recruit .recruit-heading-mobile {
    display: block;
    position: absolute;
    right: 0;
    top: 120px;
    height: auto;
    width: 200px;
    height: 218px;
  }
  body.page-recruit .recruit-main-image {
    height: unset;
    width: 100%;
    padding-right: 30px;
  }
  body.page-recruit .heading-images {
    margin-top: 160px;
  }
  body.page-recruit .recruit .recruit-heading-desktop {
    display: none;
  }
  body.page-recruit .recruit .container {
    padding-inline: 30px !important;
  }
  body.page-recruit .recruit .hero-overlay-text {
    height: 80px;
  }
  body.page-recruit .recruit .scroll-image {
    height: 80px;
  }
  body.page-recruit .employee .container {
    padding-inline: 30px;
  }
  body.page-recruit .employee .cards-wrapper {
    flex-direction: column;
    margin: 0 auto;
  }
  body.page-recruit .information .container {
    padding-inline: 30px;
  }
  body.page-recruit .company-info-item {
    grid-template-columns: 120px 1fr;
    gap: 15px;
    padding: 15px 0;
  }
  body.page-recruit .company-info-label {
    font-size: 14px;
  }
  body.page-recruit .company-info-value {
    font-size: 13px;
  }
  body.page-recruit .entry-section .container {
    padding-inline: 30px;
  }
}

body.page-service .nav-mobile {
  background-color: #ffffff !important;
}
body.page-service .nav-mobile a:not(.btn-contact) {
  color: #000000 !important;
}
body.page-service .nav-mobile a:hover {
  color: var(--color-primary) !important;
}
body.page-service .hamburger span {
  background-color: #000000 !important;
}
body.page-service .service {
  padding-top: 80px;
}
body.page-service .service .container {
  padding-inline: 120px;
}
body.page-service .service .container .section-header {
  margin-bottom: 0;
}
body.page-service .service-products {
  padding-top: 200px;
  padding-bottom: 80px;
}
body.page-service .service-products .container {
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-service .product-cards-container {
  display: flex;
  gap: 39px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-inline: 60px;
}
body.page-service .product-cards-container.container {
  max-width: 1140px;
  padding-inline: 30px;
}
body.page-service .product-card {
  background: none;
  border: none;
  box-shadow: none;
  max-width: 334px;
  flex: 1;
}
body.page-service .img-zoom-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  border-radius: 5px;
}
body.page-service .product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
body.page-service .img-zoom-container:hover .product-image {
  transform: scale(1.1);
}
body.page-service .product-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-service .product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}
body.page-service .arrow-circle {
  width: 30px;
  height: 30px;
  background-color: #E5E5E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.page-service .service-equipment {
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #F8F8F8;
}
body.page-service .service-equipment .container {
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-service .equipment-table-section {
  margin-top: 60px;
}
body.page-service .equipment-table-section .container {
  padding-left: 120px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
body.page-service .equipment-table-section .container [class^=equipment-table-] {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
body.page-service .equipment-table-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
}
body.page-service .equipment-table-wrapper {
  overflow-x: auto;
}
body.page-service .equipment-table {
  width: -moz-fit-content;
  width: fit-content;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
  table-layout: fixed;
}
body.page-service .equipment-table th, body.page-service .equipment-table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #E5E5E5;
  font-weight: normal;
}
body.page-service .equipment-table th:first-child,
body.page-service .equipment-table td:first-child {
  width: 206px;
}
body.page-service .equipment-table th:not(:first-child),
body.page-service .equipment-table td:not(:first-child) {
  width: 334px;
  min-width: 300px;
}
body.page-service .equipment-table th {
  font-weight: 500;
}
body.page-service .equipment-table thead tr:first-child th {
  padding: 0;
  vertical-align: middle;
}
body.page-service .equipment-table thead tr:first-child th:first-child,
body.page-service .equipment-table thead tr:nth-child(2) th:first-child,
body.page-service .equipment-table tbody tr td:first-child {
  background-color: #E5E5E5;
  font-weight: 500;
  border: 1px solid #ffffff;
}
body.page-service .equipment-image {
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
body.page-service .other-equipment-section {
  width: -moz-fit-content;
  width: fit-content;
}
body.page-service .other-equipment-title {
  font-size: 16px;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
body.page-service .blue-circle {
  width: 14px;
  height: 14px;
  background-color: #0C6DB1;
  border-radius: 50%;
  flex-shrink: 0;
}
body.page-service .other-equipment-list {
  display: flex;
  flex-direction: column;
}
body.page-service .other-equipment-row {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 4px 0;
  gap: 60px;
}
body.page-service .other-equipment-row:last-child {
  border-bottom: none;
}
body.page-service .equipment-manufacturer {
  font-weight: normal;
  font-size: 16px;
  color: var(--color-text);
  flex-shrink: 0;
}
body.page-service .equipment-description {
  flex: 1;
  font-size: 16px;
  color: var(--color-text);
}
body.page-service .equipment-count {
  font-size: 16px;
  text-align: right;
  color: var(--color-text);
  flex-shrink: 0;
}
body.page-service .service-process {
  padding-top: 80px;
}
body.page-service .service-process .container {
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-service .service-process .process-timeline {
  margin-top: 30px;
  gap: 0 !important;
}
body.page-service .service-process .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
body.page-service .service-process .timeline-item::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% - 80px);
  background-color: #0066CC;
  z-index: 1;
}
body.page-service .service-process .timeline-number {
  width: 80px;
  height: 80px;
  border: 2px solid #0066CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: #0066CC;
  background-color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
body.page-service .service-process .timeline-content {
  flex: 1;
  padding-block: 20px 40px;
}
body.page-service .service-process .timeline-item:last-child .timeline-content {
  padding-bottom: 180px;
}
body.page-service .service-process .timeline-text {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
}
body.page-service .service-process .timeline-title {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex-shrink: 0;
}
body.page-service .service-process .timeline-description {
  font-size: 14px;
  height: -moz-fit-content;
  height: fit-content;
  color: #666;
  margin: 0;
  flex: 1;
  align-self: center;
}
body.page-service .service-process .timeline-images {
  display: flex;
  gap: 0;
  margin-top: 24px;
  flex-wrap: wrap;
}
body.page-service .service-process .timeline-images .img-zoom-container {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
}
body.page-service .service-process .timeline-image {
  width: 283px;
  height: 189px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  body.page-service .product-cards-container {
    gap: 15px;
  }
  body.page-service .product-card {
    max-width: 240px;
  }
  body.page-service .service-products {
    padding-top: 160px;
  }
  body.page-service .service-process .timeline-image {
    width: 262px;
    height: 175px;
  }
}
@media (max-width: 768px) {
  body.page-service .service {
    padding-top: 30px;
  }
  body.page-service .service .container {
    padding-inline: 30px;
  }
  body.page-service .service-products {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  body.page-service .service-products .container {
    padding-inline: 30px;
    gap: 30px;
  }
  body.page-service .product-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-inline: 30px;
  }
  body.page-service .service-equipment {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  body.page-service .service-equipment .container {
    padding-inline: 30px;
    gap: 30px;
  }
  body.page-service .service-process {
    padding-top: 60px;
  }
  body.page-service .service-process .container {
    padding-inline: 30px;
    gap: 30px;
  }
  body.page-service .service-process .timeline-item {
    gap: 18px;
  }
  body.page-service .service-process .timeline-item::before {
    left: 30px;
    top: 60px;
    height: calc(100% - 60px);
  }
  body.page-service .service-process .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  body.page-service .service-process .timeline-content {
    padding-block: 20px;
  }
  body.page-service .service-process .timeline-item:last-child .timeline-content {
    padding-bottom: 120px;
  }
  body.page-service .service-process .timeline-text {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
  body.page-service .service-process .timeline-title {
    font-size: 20px;
  }
  body.page-service .service-process .timeline-description {
    font-size: 14px;
    line-height: 1.6;
  }
  body.page-service .service-process .timeline-images {
    gap: 0;
    margin-top: 20px;
  }
  body.page-service .service-process .timeline-image {
    width: 262px;
    height: 175px;
    max-width: 262px;
    aspect-ratio: 262/175;
  }
  body.page-service .equipment-table-title {
    font-size: 20px;
  }
  body.page-service .equipment-table-section .container {
    padding-left: 30px;
    padding-right: 0;
    gap: 40px;
  }
  body.page-service .equipment-table {
    font-size: 12px;
  }
  body.page-service .equipment-table th, body.page-service .equipment-table td {
    padding: 8px 4px;
  }
  body.page-service .equipment-table thead tr:first-child th {
    padding: 0;
  }
  body.page-service .other-equipment-section {
    overflow-x: auto;
    width: 100%;
  }
  body.page-service .other-equipment-list {
    min-width: 500px;
  }
  body.page-service .equipment-manufacturer {
    width: auto;
  }
  body.page-service .equipment-description {
    margin-left: 0;
  }
  body.page-service .equipment-count {
    width: auto;
    text-align: left;
  }
}

body.page-privacy-policy .privacy-policy-page {
  padding: 80px 0 180px;
  background-color: #F8F8F8;
}
body.page-privacy-policy .privacy-policy-page .container {
  padding-inline: 120px;
}
body.page-privacy-policy .privacy-content {
  margin-top: 80px;
}
body.page-privacy-policy .privacy-intro {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0 0 80px 0;
}
body.page-privacy-policy .privacy-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 80px 0 32px 0;
  line-height: 1.4;
}
body.page-privacy-policy .privacy-title:first-of-type {
  margin-top: 0;
}
body.page-privacy-policy .privacy-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}
body.page-privacy-policy .privacy-contact {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  margin: 32px 0 0 0;
}
@media (max-width: 768px) {
  body.page-privacy-policy .privacy-policy-page {
    padding: 60px 0;
  }
  body.page-privacy-policy .privacy-policy-page .container {
    padding-inline: 20px;
  }
  body.page-privacy-policy .privacy-title {
    font-size: 22px;
    margin: 60px 0 28px 0;
  }
  body.page-privacy-policy .privacy-intro {
    margin-bottom: 60px;
  }
  body.page-privacy-policy .privacy-contact {
    margin-top: 28px;
  }
}
@media (max-width: 375px) {
  body.page-privacy-policy .privacy-policy-page {
    padding: 40px 0;
  }
  body.page-privacy-policy .privacy-policy-page .container {
    padding-inline: 20px;
  }
  body.page-privacy-policy .privacy-title {
    font-size: 20px;
    margin: 50px 0 24px 0;
  }
  body.page-privacy-policy .privacy-intro {
    margin-bottom: 50px;
  }
  body.page-privacy-policy .privacy-contact {
    margin-top: 24px;
  }
}

.contact-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;   /* TELと番号の間隔 */
  text-decoration: none;
}