@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #202124;
}
@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}

h1, .h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 48px;
  }
}
h1, .h1 {
  margin-bottom: 24px;
}

h2, .h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 36px;
  }
}
h2, .h2 {
  margin-bottom: 16px;
}

h3, .h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 24px;
  }
}
h3, .h3 {
  margin-bottom: 16px;
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 20px;
  }
}

h5, .h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

h6, .h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #1a74e8;
  transition: color 250ms ease-in-out;
}
a:hover {
  color: rgb(18.8928571429, 92.8214285714, 188.1071428571);
}
a:focus-visible {
  outline: 2px solid #1a74e8;
  outline-offset: 2px;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 4px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container-fluid {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container-fluid {
    padding: 0 32px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #ffffff;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, #009AD2, #5AC1A9) 1;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 1024px) {
  .site-header .header-content {
    height: 80px;
  }
}

.site-branding .custom-logo {
  display: block;
}
.site-branding .custom-logo img {
  height: 31px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-branding .custom-logo img {
    height: 40px;
  }
}

.main-navigation .menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  .main-navigation .menu-toggle {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
    position: relative;
  }
}
.main-navigation .menu-toggle .menu-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #202124;
  position: relative;
  transition: all 250ms ease-in-out;
}
.main-navigation .menu-toggle .menu-toggle-icon::before, .main-navigation .menu-toggle .menu-toggle-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #202124;
  transition: all 250ms ease-in-out;
}
.main-navigation .menu-toggle .menu-toggle-icon::before {
  top: -8px;
  left: 0;
}
.main-navigation .menu-toggle .menu-toggle-icon::after {
  bottom: -8px;
  left: 0;
}
.main-navigation .menu-close {
  display: none;
}
@media (max-width: 767px) {
  .main-navigation .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
  }
  .main-navigation .menu-close .close-icon {
    font-size: 32px;
    color: #202124;
    font-weight: 300;
    line-height: 1;
    transition: color 250ms ease-in-out;
  }
  .main-navigation .menu-close:hover .close-icon {
    color: #1a74e8;
  }
}
.main-navigation .nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation .nav-menu .menu-item {
  margin: 0;
}
.main-navigation .nav-menu .menu-item a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #202124;
  white-space: nowrap;
  padding: 4px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms ease-in-out;
  position: relative;
}
.main-navigation .nav-menu .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #525252;
  transition: width 250ms ease-in-out;
}
.main-navigation .nav-menu .menu-item a:hover, .main-navigation .nav-menu .menu-item a:focus {
  color: #525252;
}
.main-navigation .nav-menu .menu-item a:hover::after, .main-navigation .nav-menu .menu-item a:focus::after {
  width: 100%;
}
.main-navigation .nav-menu .menu-item.current-menu-item a {
  color: #525252;
  font-weight: 600;
}
.main-navigation .nav-menu .menu-item.current-menu-item a::after {
  width: 100%;
}
@media (max-width: 767px) {
  .main-navigation .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 35px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }
  .main-navigation .nav-menu .menu-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .main-navigation .nav-menu .menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
  }
  .main-navigation .nav-menu .menu-item a::after {
    content: "›";
    position: static;
    width: auto;
    height: auto;
    background: none;
    font-size: 24px;
    font-weight: 300;
    color: #202124;
    transition: transform 0.3s ease;
  }
  .main-navigation .nav-menu .menu-item a:hover::after {
    transform: translateX(4px);
    color: #525252;
    background: none;
  }
}
.main-navigation.is-open .menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  .main-navigation.is-open .nav-menu {
    transform: translateX(0);
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  color: #525252;
  padding: 86px 0 32px;
  position: relative;
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 50px;
  }
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}
.site-footer .footer-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: absolute;
  top: -44px;
}
@media (max-width: 767px) {
  .site-footer .footer-divider {
    top: -20px;
  }
}
.site-footer .footer-divider .divider-line {
  width: 1px;
  height: 80px;
  background-color: #525252;
}
@media (max-width: 767px) {
  .site-footer .footer-divider .divider-line {
    height: 40px;
  }
}
.site-footer .footer-logo img {
  max-width: 79px;
  height: auto;
}
.site-footer .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    text-align: left;
  }
}
.site-footer .footer-menu a {
  color: #ffffff;
  font-size: 14px;
  transition: opacity 250ms ease-in-out;
}
.site-footer .footer-menu a:hover {
  opacity: 0.8;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.site-footer .footer-bottom .copyright {
  font-size: 12px;
  margin: 0;
}

.hero-section {
  position: relative;
  padding: 120px 0 80px 0;
  overflow: visible;
  min-height: 600px;
}
@media (min-width: 1024px) {
  .hero-section {
    padding: 160px 0 96px 0;
    min-height: 800px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 80px 10px 50px 10px;
  }
}
.hero-section .header-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: absolute;
  bottom: -60px;
}
@media (max-width: 767px) {
  .hero-section .header-divider {
    top: 100px;
  }
}
.hero-section .header-divider .divider-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, white 0%, white 50%, #009AD2 50%, #009AD2 100%);
}
@media (max-width: 767px) {
  .hero-section .header-divider .divider-line {
    display: none;
  }
}
.hero-section__sub {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hero-section .hero-background {
    height: 577px;
  }
}
.hero-section .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-background .hero-background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0;
}
.hero-section .hero-background .hero-background-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .hero-section .hero-background .hero-background-text h2 {
    font-size: 36px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .hero-section .hero-background .hero-background-text h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-background .hero-background-text h2 {
    text-align: center;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 350px;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .hero-section .hero-content {
    margin-top: 520px;
    gap: 80px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-content {
    margin-top: 250px;
    gap: 40px;
    padding: 0px;
  }
}
.hero-section .hero-image {
  width: 100%;
  max-width: 1280px;
}
.hero-section .hero-image img {
  width: 100%;
  height: auto;
}
.hero-section .hero-text {
  text-align: center;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .hero-section .hero-text {
    padding: 35px 40px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
.hero-section .hero-text:after {
  content: "";
}
@media (max-width: 767px) {
  .hero-section .hero-text:after {
    display: block;
    width: 1px;
    height: 30px;
    background-color: #8B8B8B;
    margin: 20px auto 0;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    bottom: -30px;
  }
}
.hero-section .hero-text .hero-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  color: #525252;
}
@media (min-width: 768px) {
  .hero-section .hero-text .hero-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .hero-section .hero-text .hero-title {
    font-size: 28px;
  }
}
.hero-section .hero-description-wrapper__sp {
  display: none;
}
@media (max-width: 767px) {
  .hero-section .hero-description-wrapper__sp {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-description-wrapper__sp br {
    display: none;
  }
}
.hero-section .hero-description-wrapper__sp .hero-description {
  font-size: 18px;
  text-align: center;
  padding: 18px;
}
.hero-section .location-section {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .hero-section .location-section {
    flex-direction: row;
    gap: 30px;
    width: 240px;
    max-width: 300px;
  }
}
.hero-section .location-section .location-marker {
  flex-shrink: 0;
}
.hero-section .location-section .location-marker .location-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-section .location-section .location-marker .location-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #202124;
  }
}
@media (min-width: 1024px) {
  .hero-section .location-section .location-marker .location-circle {
    width: 120px;
    height: 120px;
  }
}
.hero-section .location-section .location-marker .location-circle .location-name {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero-section .location-section .location-marker .location-circle .location-name {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .hero-section .location-section .location-marker .location-circle .location-name {
    font-size: 28px;
  }
}
.hero-section .location-section .hero-description-wrapper {
  flex: 1;
  padding-left: 40px;
  text-align: left;
}
@media (max-width: 767px) {
  .hero-section .location-section .hero-description-wrapper {
    display: none;
  }
}
.hero-section .location-section .hero-description-wrapper .hero-description {
  font-size: 14px;
  line-height: 1.8;
  color: #202124;
  margin: 0 0 20px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 1024px) {
  .hero-section .location-section .hero-description-wrapper .hero-description {
    font-size: 16px;
  }
}
.hero-section .location-section .hero-description-wrapper .company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  text-decoration: none;
  border-bottom: 1px solid #202124;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  margin-top: 30px;
}
.hero-section .location-section .hero-description-wrapper .company-link .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.hero-section .location-section .hero-description-wrapper .company-link:hover {
  color: #1a74e8;
  border-bottom-color: #1a74e8;
}
.hero-section .location-section .hero-description-wrapper .company-link:hover .arrow {
  transform: translateX(4px);
}
.hero-section .company-link__sp {
  display: none;
}
@media (max-width: 767px) {
  .hero-section .company-link__sp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    text-decoration: none;
    border-bottom: 1px solid #202124;
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .hero-section .company-link__sp .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  .hero-section .company-link__sp:hover {
    color: #1a74e8;
    border-bottom-color: #1a74e8;
  }
  .hero-section .company-link__sp:hover .arrow {
    transform: translateX(4px);
  }
}

.section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #202124;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 48px;
  }
}
.section-title--label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5f6368;
  margin-bottom: 12px;
  display: block;
}

.services-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .services-section {
    padding: 40px 0 60px;
  }
}
.services-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .services-section__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .services-section__inner {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .services-section__inner {
    padding: 0;
  }
}
.services-section__title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #525252;
  margin-bottom: 32px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: absolute;
}
@media (max-width: 767px) {
  .services-section__title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 16px;
  }
}
.services-section__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-right: 8px;
  position: absolute;
  right: 25px;
  bottom: 20px;
}
@media (max-width: 767px) {
  .services-section__more {
    justify-content: center;
    position: relative;
    right: 0;
  }
}
.services-section .services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  padding: 24px 60px;
}
@media (max-width: 767px) {
  .services-section .services-grid {
    gap: 12px;
    padding: 24px 0px;
    padding-top: 60px;
  }
}
.services-section .service-card {
  display: flex;
  flex-direction: row;
  height: 160px;
  width: 100%;
  max-width: 900px;
  overflow: visible;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0px 0px 0px rgba(82, 82, 82, 0));
}
.services-section .service-card:hover {
  transform: scale(1.08) translateY(-4px);
  z-index: 10;
  filter: drop-shadow(14px 16px 0px rgba(82, 82, 82, 0.2)) drop-shadow(14px 20px 4px rgba(82, 82, 82, 0.2));
}
@media (max-width: 767px) {
  .services-section .service-card {
    height: 80px;
    max-width: none;
  }
}
.services-section .service-card--1 {
  margin-left: 160px;
}
.services-section .service-card--2 {
  margin-left: 80px;
}
.services-section .service-card--3 {
  margin-left: 0;
}
@media (max-width: 767px) {
  .services-section .service-card--1, .services-section .service-card--2, .services-section .service-card--3 {
    margin-left: 0;
  }
}
.services-section .service-card__header {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--card-color);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  clip-path: polygon(44px 0, 100% 0, calc(100% - 44px) 100%, 0 100%);
  padding: 0 60px;
  z-index: 2;
}
.services-section .service-card__header span {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .services-section .service-card__header {
    font-size: 13px;
    clip-path: none;
    padding: 0 40px;
  }
}
.services-section .service-card__image {
  width: 50%;
  height: 160px;
  overflow: hidden;
  margin-left: -46px;
  clip-path: polygon(44px 0, 100% 0, calc(100% - 44px) 100%, 0 100%);
}
@media (max-width: 767px) {
  .services-section .service-card__image {
    height: 80px;
    margin-left: -32px;
    clip-path: polygon(30px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  }
}
.services-section .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-section .btn-view-more {
  display: inline-block;
  padding: 12px 36px;
  background-color: #0098B0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 154, 210, 0.35);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.services-section .btn-view-more:hover {
  background-color: #007aaa;
}

.works-home-section {
  position: relative;
  padding: 60px 0 80px;
  background-color: #fff;
}
.works-home-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-left: 16px;
  padding-right: 0;
}
@media (min-width: 768px) {
  .works-home-section__inner {
    padding-left: 24px;
  }
}
@media (min-width: 1024px) {
  .works-home-section__inner {
    padding-left: 32px;
  }
}
@media (min-width: 1344px) {
  .works-home-section__inner {
    padding-left: calc((100% - 1280px) / 2 + 32px);
  }
}
@media (max-width: 767px) {
  .works-home-section__inner {
    flex-direction: column;
    gap: 16px;
    padding-right: 16px;
  }
}
.works-home-section__left {
  flex-shrink: 0;
  width: 160px;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .works-home-section__left {
    width: 100%;
    padding-top: 0;
  }
}
.works-home-section__title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #333;
  padding-left: 0px;
  line-height: 1;
}
@media (max-width: 767px) {
  .works-home-section__title {
    text-align: center;
  }
}
.works-home-section__right {
  flex: 1;
  min-width: 0;
  overflow: visible;
  clip-path: inset(0 -9999px 0 0);
  padding-right: 60px;
}
@media (max-width: 767px) {
  .works-home-section__right {
    width: 100%;
    clip-path: none;
    padding-right: 0;
  }
}
.works-home-section__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  padding-right: 24px;
  max-width: 1040px;
}
.works-home-section .works-home-slider {
  overflow: visible !important;
}
@media (hover: hover) and (pointer: fine) {
  .works-home-section .swiper-slide:has(.works-home-card:hover) {
    z-index: 10 !important;
  }
}
.works-home-section .works-home-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .works-home-section .works-home-card {
    transition: transform 0.4s ease;
  }
  .works-home-section .works-home-card:hover {
    transform: scale(1.1);
    z-index: 10;
  }
}
.works-home-section .works-home-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.works-home-section .works-home-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works-home-section .works-home-card__body {
  padding: 16px 18px 20px;
}
.works-home-section .works-home-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.works-home-section .works-home-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.works-home-section .btn-view-more {
  display: inline-block;
  padding: 12px 36px;
  background-color: #0098B0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 154, 210, 0.35);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.works-home-section .btn-view-more:hover {
  background-color: #007aaa;
}

.why-dazmit-section {
  padding: 80px 0;
  background-color: #ffffff;
  padding-top: 115px;
}
@media (max-width: 767px) {
  .why-dazmit-section {
    padding: 64px 0;
  }
}
.why-dazmit-section .section-title {
  font-size: 20px;
  margin-bottom: 60px;
  color: #525252;
}
.why-dazmit-section .reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 990px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .why-dazmit-section .reasons-grid {
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .why-dazmit-section .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-dazmit-section .reason-card {
  background-color: #ffffff;
  padding: 32px 0px 32px 0px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  border-bottom: 1px solid #707070;
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 8px;
    border-bottom: 1px solid #707070;
  }
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card:nth-child(odd) {
    border-right: 1px solid #707070;
  }
}
.why-dazmit-section .reason-card:nth-last-child(-n+2) {
  border-bottom: none;
}
.why-dazmit-section .reason-card .reason-icon {
  flex-shrink: 0;
  width: 106px;
  height: 106px;
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card .reason-icon {
    order: 2;
    width: 120px;
    height: 120px;
  }
}
.why-dazmit-section .reason-card .reason-icon svg {
  width: 100%;
  height: 100%;
  fill: #1a74e8;
}
.why-dazmit-section .reason-card .reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-dazmit-section .reason-card .reason-content {
  flex: 1;
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card .reason-content {
    display: contents;
  }
}
.why-dazmit-section .reason-card .reason-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #525252;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card .reason-title {
    order: 1;
    color: #004498;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 0 20px;
  }
}
.why-dazmit-section .reason-card .reason-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #525252;
  margin: 0;
}
@media (max-width: 767px) {
  .why-dazmit-section .reason-card .reason-description {
    order: 3;
    text-align: left;
    font-size: 12px;
  }
}

.development-system-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .development-system-section {
    padding: 64px 0;
  }
}
.development-system-section .development-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 990px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .development-system-section .development-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .development-system-section .development-grid {
    gap: 64px;
  }
}
.development-system-section .section-title {
  font-size: 20px;
}
.development-system-section .development-type {
  background-color: #ffffff;
  padding: 48px;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .development-system-section .development-type {
    padding: 24px;
  }
}
.development-system-section .development-type:nth-child(1)::after {
  display: none;
}
.development-system-section .development-type .development-type-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #525252;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .development-system-section .development-type .development-type-title {
    font-size: 24px;
  }
}
.development-system-section .development-type .development-type-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #202124;
  margin-bottom: 24px;
  text-align: left;
}
@media (min-width: 1024px) {
  .development-system-section .development-type .development-type-description {
    font-size: 16px;
  }
}
.development-system-section .development-type .development-illustration {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .development-system-section .development-type .development-illustration {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .implementation-flow-section {
    padding: 64px 0;
    padding-top: 0px;
  }
}
.implementation-flow-section .section-title {
  font-size: 20px;
  margin-bottom: 60px;
  color: #525252;
  font-weight: 500;
}
@media (max-width: 767px) {
  .implementation-flow-section .section-title {
    margin-bottom: 30px;
  }
}
.implementation-flow-section .flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .implementation-flow-section .flow-diagram {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .implementation-flow-section .flow-diagram {
    display: none;
  }
}
.implementation-flow-section .flow-diagram__sp {
  display: none;
}
@media (max-width: 767px) {
  .implementation-flow-section .flow-diagram__sp {
    padding: 0px 20px;
    display: block;
  }
}
.implementation-flow-section .flow-step {
  text-align: center;
  flex-shrink: 0;
  width: 140px;
}
.implementation-flow-section .flow-step .flow-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1a74e8;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  margin: 0 auto 16px;
}
.implementation-flow-section .flow-step .flow-step-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1024px) {
  .implementation-flow-section .flow-step .flow-step-title {
    font-size: 16px;
  }
}
.implementation-flow-section .flow-arrow {
  width: 2px;
  height: 24px;
  background-color: #dadce0;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .implementation-flow-section .flow-arrow {
    width: 32px;
    height: 2px;
  }
}

.case-studies-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .case-studies-section {
    padding: 64px 0;
  }
}
.case-studies-section .section-title {
  font-size: 20px;
  margin-bottom: 60px;
}
.case-studies-section .case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 990px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .case-studies-section .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .case-studies-section .case-studies-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 20px;
  }
}
@media (min-width: 1024px) {
  .case-studies-section .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case-studies-section .case-study-card {
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 250ms ease-in-out;
}
.case-studies-section .case-study-card .case-study-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f7f7f7;
}
.case-studies-section .case-study-card .case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-studies-section .case-study-card .case-study-content {
  padding: 24px 0px;
}
@media (max-width: 767px) {
  .case-studies-section .case-study-card .case-study-content {
    text-align: center;
  }
}
.case-studies-section .case-study-card .case-study-title {
  font-size: 16px;
  margin-bottom: 8px;
  text-align: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #525252;
  font-weight: normal;
}
.case-studies-section .case-study-card .case-study-description {
  font-size: 13px;
  line-height: 1.6;
  color: #5f6368;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .case-studies-section .case-study-card .case-study-description {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .case-studies-section .case-study-card .case-study-description {
    text-align: left;
  }
}
.case-studies-section .case-study-card .case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #525252;
  font-size: 14px;
  font-weight: 500;
  transition: gap 250ms ease-in-out;
  text-decoration: none;
  padding-bottom: 2px;
  position: relative;
}
.case-studies-section .case-study-card .case-study-link::before {
  content: "";
  font-size: 16px;
  margin-right: 4px;
  background-image: url(../../../assets/images/icon-search.png);
  height: 20px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.case-studies-section .case-study-card .case-study-link::after {
  content: "";
  font-size: 16px;
  margin-right: 4px;
  height: 1px;
  width: 55px;
  background-color: #525252;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: -4px;
}
.case-studies-section .case-study-card .case-study-link:hover {
  gap: 8px;
  color: #1a74e8;
  border-bottom-color: #1a74e8;
}

.capacity-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .capacity-section {
    padding-bottom: 0px;
  }
}
.capacity-section .capacity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .capacity-section .capacity-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .capacity-section .capacity-grid {
    grid-template-columns: 1fr;
    padding: 0px 18px;
  }
}
.capacity-section .section-title {
  font-size: 20px;
  margin-bottom: 60px;
  color: #525252;
}
.capacity-section .capacity-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #525252;
  margin-bottom: 24px;
  padding-bottom: 8px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .capacity-section .capacity-subtitle {
    text-align: center;
  }
}
.capacity-section p {
  text-align: center;
}
.capacity-section .capacity-left {
  max-width: 280px;
}
@media (max-width: 767px) {
  .capacity-section .capacity-left {
    max-width: 100%;
  }
}
.capacity-section .capacity-left .capacity-stats {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .capacity-section .capacity-left .capacity-stats {
    padding: 0 40px;
  }
}
.capacity-section .capacity-left .capacity-stats .stat-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.capacity-section .capacity-left .capacity-stats .stat-item .stat-label {
  font-size: 16px;
  color: #525252;
  width: 100%;
}
.capacity-section .capacity-left .capacity-stats .stat-item .stat-value {
  font-size: 25px;
  font-weight: 700;
  color: #1a74e8;
}
.capacity-section .capacity-left .capacity-stats .stat-item .stat-unit {
  font-size: 16px;
  color: #525252;
}
.capacity-section .capacity-left .pmp-certificate {
  margin: 32px 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .capacity-section .capacity-left .pmp-certificate {
    display: none;
  }
}
.capacity-section .capacity-left .pmp-certificate__sp {
  display: none;
}
@media (max-width: 767px) {
  .capacity-section .capacity-left .pmp-certificate__sp {
    display: block;
  }
}
.capacity-section .capacity-left .pmp-certificate img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}
.capacity-section .capacity-left .pmp-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #525252;
}
.capacity-section .capacity-left .pmp-description p {
  margin: 0;
}
.capacity-section .capacity-right {
  width: 480px;
}
@media (max-width: 767px) {
  .capacity-section .capacity-right {
    width: 100%;
  }
}
.capacity-section .capacity-right .capacity-domain {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .capacity-section .capacity-right .capacity-domain {
    padding: 0 40px;
  }
}
.capacity-section .capacity-right .capacity-domain p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #525252;
  margin: 0;
}
.capacity-section .capacity-right .pmp-certificate__sp {
  display: none;
}
@media (max-width: 767px) {
  .capacity-section .capacity-right .pmp-certificate__sp {
    display: block;
    margin: 32px 0;
    padding: 0 20px;
    margin-top: 70px;
  }
}
.capacity-section .capacity-right .pmp-certificate__sp img {
  width: 100%;
  height: auto;
  display: block;
}
.capacity-section .capacity-right .pmp-description__sp {
  display: none;
}
@media (max-width: 767px) {
  .capacity-section .capacity-right .pmp-description__sp {
    display: block;
    padding: 0 20px;
    margin-bottom: 32px;
  }
}
.capacity-section .capacity-right .pmp-description__sp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #525252;
}
.capacity-section .capacity-right .pmp-description__sp p {
  margin: 0;
  text-align: left;
}
.capacity-section .capacity-right .development-areas-section .dev-area {
  margin-bottom: 32px;
}
.capacity-section .capacity-right .development-areas-section .dev-area h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #525252;
  margin-bottom: 8px;
}
.capacity-section .capacity-right .development-areas-section .dev-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.capacity-section .capacity-right .development-areas-section .dev-area ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #5f6368;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .capacity-section .capacity-right .development-areas-section .dev-area ul li {
    font-size: 12px;
  }
}

.news-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .news-section {
    display: none;
  }
}
.news-section .news-wrapper {
  position: relative;
  max-width: 990px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  padding-bottom: 90px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .news-section .news-wrapper {
    padding: 24px;
    padding-bottom: 70px;
  }
}
.news-section .news-main {
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .news-section .news-main {
    flex-direction: column;
    gap: 20px;
  }
}
.news-section .news-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #525252;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.news-section .news-divider {
  width: 1px;
  background-color: #CCCCCC;
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news-section .news-divider {
    display: none;
  }
}
.news-section .news-content {
  flex: 1;
  position: relative;
}
.news-section .news-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-section .news-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .news-section .news-item {
    flex-direction: row;
    gap: 8px;
  }
}
.news-section .news-item .news-date {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #525252;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-section .news-item .news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #525252;
  margin: 0;
}
.news-section .news-read-more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 14px 0px 14px 25px;
  background-color: #999999;
  color: white;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 250ms ease-in-out;
  white-space: nowrap;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 245px;
  text-align: center;
}
@media (max-width: 768px) {
  .news-section .news-read-more {
    right: 24px;
    bottom: 24px;
  }
}
.news-section .news-read-more:hover {
  background-color: #737373;
}

.company-overview-section {
  padding: 80px 0;
}
.company-overview-section .section-title {
  margin-bottom: 60px;
  font-size: 20px;
  color: #525252;
}
.company-overview-section .company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .company-overview-section .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.company-overview-section .office-info {
  padding: 50px;
}
.company-overview-section .office-info .office-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #525252;
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
}
.company-overview-section .office-info .info-list {
  display: block;
}
.company-overview-section .office-info .info-list .info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: -1px;
}
.company-overview-section .office-info .info-list dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #525252;
  margin: 0;
  padding: 5px 0px;
}
.company-overview-section .office-info .info-list dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #525252;
  margin: 0;
  line-height: 1.8;
  padding: 5px 0px;
}

.news-section-home {
  padding: 80px 0;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .news-section-home {
    padding: 64px 0;
  }
}
.news-section-home .section-title--label {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #525252;
  margin-bottom: 40px;
}
.news-section-home .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
  overflow: visible;
}
@media (max-width: 767px) {
  .news-section-home .news-grid {
    display: block;
    gap: 0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .news-section-home .news-grid.swiper {
    display: grid !important;
    overflow: visible;
  }
  .news-section-home .news-grid.swiper .swiper-wrapper {
    display: contents;
  }
  .news-section-home .news-grid.swiper .swiper-slide {
    width: auto !important;
  }
}
.news-section-home .news-card {
  background: #fff;
  border: 1px solid #eeeeee;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .news-section-home .news-card {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
  }
  .news-section-home .news-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
    z-index: 10;
  }
}
.news-section-home .news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-section-home .news-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f0f0f0;
}
.news-section-home .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-section-home .news-card-image img {
  transform: scale(1.05);
}
.news-section-home .news-card-content {
  padding: 16px;
}
.news-section-home .news-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #525252;
  margin: 0 0 8px;
}
.news-section-home .news-card-date {
  font-size: 12px;
  color: #5f6368;
}
.news-section-home .section-more {
  text-align: center;
}
.news-section-home .btn-view-more {
  display: inline-block;
  padding: 12px 36px;
  background-color: #0098B0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 154, 210, 0.35);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.news-section-home .btn-view-more:hover {
  background-color: #007aaa;
}

.contact-cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #004498 0%, #0070c0 50%, #009ad2 100%);
}
.contact-cta-section .contact-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-cta-section .contact-cta-bg .contact-cta-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.contact-cta-section .container {
  position: relative;
  z-index: 1;
}
.contact-cta-section .contact-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-cta-section .contact-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact-cta-section .contact-cta-title {
    font-size: 28px;
  }
}
.contact-cta-section .contact-cta-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-cta-section .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}
.contact-cta-section .btn-contact:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.contact-cta-section .btn-contact .btn-contact__arrow {
  font-size: 16px;
}

.background-footer {
  margin-top: 0px;
  z-index: -1;
  position: relative;
}
@media (max-width: 767px) {
  .background-footer {
    margin-top: 0px;
  }
}
.background-footer img {
  width: 100%;
  height: auto;
  display: block;
}

.page-header {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Inter", sans-serif;
}

.about-section {
  padding: 0px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.about-section .container {
  margin: 0 auto;
  padding: 0 20px;
}
.about-section .breadcrumb {
  margin-bottom: 60px;
}
.about-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.about-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.about-section .breadcrumb-link:hover {
  color: #000000;
}
.about-section .breadcrumb-separator {
  color: #CCCCCC;
}
.about-section .breadcrumb-current {
  color: #333333;
}

.about-intro {
  text-align: center;
  margin-bottom: 100px;
}
.about-intro .intro-text {
  font-size: 24px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  font-weight: 400;
}

.about-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0 auto 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid #00A0D2;
  display: inline-block;
  width: auto;
  position: relative;
}

.about-mission {
  margin-bottom: 100px;
  text-align: center;
}
.about-mission .mission-subtitle {
  font-size: 20px;
  color: #333333;
  margin: 0 0 20px;
  font-weight: 400;
  text-align: center;
}
.about-mission .mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto;
}
.about-mission .mission-box {
  border: 2px solid #00A0D2;
  padding: 40px 24px;
  background: #FFFFFF;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.about-mission .mission-box-title {
  font-size: 20px;
  font-weight: 400;
  color: #525252;
  margin: 0 0 20px;
}
.about-mission .mission-box-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.about-mission .mission-map {
  text-align: center;
  margin-bottom: 20px;
}
.about-mission .mission-map img {
  margin: 0 auto;
}

.about-vision {
  margin-bottom: 130px;
  text-align: center;
}
.about-vision .vision-text {
  font-size: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
}

.about-company-overview {
  margin-bottom: 80px;
  text-align: center;
}
.about-company-overview .company-overview-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
  margin: 0 auto;
  text-align: left;
}
.about-company-overview .company-office {
  background: #F7F7F7;
}
.about-company-overview .company-office:nth-child(2) .office-title::after {
  width: 27%;
  right: 100px;
}
.about-company-overview .company-office .office-info {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  padding: 24px;
  vertical-align: middle;
  align-items: center;
}
.about-company-overview .company-office .office-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 24px;
  text-align: center;
  width: 400px;
  position: relative;
}
.about-company-overview .company-office .office-title::after {
  content: "";
  display: block;
  width: 61%;
  height: 3px;
  background-color: #FDC297;
  margin-top: 5px;
  right: 52px;
  position: absolute;
}
.about-company-overview .company-table {
  width: 100%;
  border-collapse: collapse;
  display: table;
}
.about-company-overview .company-table tr {
  display: table-row;
}
.about-company-overview .company-table th {
  display: table-cell;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  padding-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  width: 100px;
  vertical-align: top;
}
.about-company-overview .company-table td {
  display: table-cell;
  font-size: 14px;
  color: #666666;
  padding-bottom: 15px;
  text-align: left;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  width: calc(100% - 100px);
}

@media (max-width: 992px) {
  .about-mission .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 60px;
  }
  .page-header .page-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-section .container {
    padding: 0 16px;
  }
  .about-section .breadcrumb {
    margin-bottom: 40px;
  }
  .about-intro {
    margin-bottom: 60px;
  }
  .about-intro .intro-text {
    font-size: 18px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .about-mission {
    margin-bottom: 60px;
  }
  .about-mission .mission-subtitle {
    font-size: 18px;
    margin-bottom: 120px;
  }
  .about-mission .mission-box {
    padding: 32px 20px;
    min-height: auto;
  }
  .about-mission .mission-box-title {
    font-size: 18px;
  }
  .about-mission .mission-box-text {
    font-size: 14px;
  }
  .about-vision {
    margin-bottom: 60px;
  }
  .about-vision .vision-text {
    font-size: 20px;
  }
  .about-company-overview .company-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-company-overview .company-table th,
  .about-company-overview .company-table td {
    padding: 12px 16px;
    font-size: 13px;
  }
  .about-company-overview .company-table th {
    width: 100px;
  }
}
.service-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 0px;
}
.service-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-section .breadcrumb {
  margin-bottom: 60px;
}
.service-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.service-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.service-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-section .breadcrumb-link:hover {
  color: #000000;
}
.service-section .breadcrumb-separator {
  color: #CCCCCC;
}
.service-section .breadcrumb-current {
  color: #333333;
}
.service-section .service-intro {
  text-align: center;
  margin-bottom: 80px;
}
.service-section .service-intro .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
}
.service-section .service-intro .intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.service-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .service-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-section .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.service-section .service-card {
  background-color: #ffffff;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.service-section .service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.service-section .service-card__header {
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  order: 2;
}
.service-section .service-card__title {
  color: #007DBF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.service-section .service-card__content {
  background-color: #ffffff;
  padding: 32px 24px;
  min-height: 280px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  order: 3;
}
.service-section .service-card__image {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  order: 1;
}
.service-section .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-section .service-card:hover .service-section .service-card__image img {
  transform: scale(1.05);
}
.service-section .service-card .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.service-section .service-card .service-list li {
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.service-section .service-card .service-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 24px 0;
}
.service-section .service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #0089D1;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  min-width: 180px;
  align-self: center;
  width: 180px;
}
.service-section .service-card__link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.service-section .service-card:nth-child(1) .service-section .service-card__link {
  background-color: #0089D1;
}
.service-section .service-card:nth-child(2) .service-section .service-card__link {
  background-color: #00A9EC;
}
.service-section .service-card:nth-child(3) .service-section .service-card__link {
  background-color: #5AC1A9;
}
.service-section .development-system {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 2px solid #EEEEEE;
}
.service-section .development-system .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 60px;
}
.service-section .development-system .development-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service-section .development-system .development-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-section .development-system .development-type {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.service-section .development-system .development-type .development-type-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 32px;
}
.service-section .development-system .development-type .development-illustration {
  width: 100%;
  height: 250px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FA;
  border-radius: 8px;
}
.service-section .development-system .development-type .development-illustration img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.service-section .development-system .development-type .development-type-description {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .service-section {
    padding: 60px 0;
  }
  .service-section .container {
    padding: 0 16px;
  }
  .service-section .breadcrumb {
    margin-bottom: 40px;
  }
  .service-section .service-intro {
    margin-bottom: 60px;
  }
  .service-section .service-intro .section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .service-section .service-intro .intro-text {
    font-size: 14px;
  }
  .service-section .services-grid {
    margin-bottom: 60px;
  }
  .service-section .service-card__header {
    height: 100px;
  }
  .service-section .service-card__title {
    font-size: 20px;
  }
  .service-section .service-card__content {
    padding: 24px 20px;
    min-height: auto;
  }
  .service-section .service-card__image {
    height: 160px;
  }
  .service-section .service-card .service-list li {
    font-size: 14px;
  }
  .service-section .service-card .service-description {
    font-size: 14px;
  }
  .service-section .development-system {
    margin-top: 60px;
    padding-top: 60px;
  }
  .service-section .development-system .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .service-section .development-system .development-type .development-type-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .service-section .development-system .development-type .development-illustration {
    height: 200px;
    margin-bottom: 24px;
  }
  .service-section .development-system .development-type .development-type-description {
    font-size: 14px;
  }
}
.breadcrumb-section {
  padding: 16px 0;
}
.breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666666;
  font-family: "Noto Sans JP", sans-serif;
}
.breadcrumb-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
}
.breadcrumb-section .breadcrumb-link:hover {
  text-decoration: underline;
}
.breadcrumb-section .breadcrumb-separator {
  color: #999999;
}
.breadcrumb-section .breadcrumb-current {
  color: #666666;
}

.why-vietnam-section {
  padding: 80px 0 60px;
}
.why-vietnam-section .section-title-center {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 60px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
.why-vietnam-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-vietnam-section .feature-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-vietnam-section .feature-card__header {
  background-color: #00A9EC;
  padding: 20px 16px;
  text-align: center;
}
.why-vietnam-section .feature-card__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  line-height: 1.4;
}
.why-vietnam-section .feature-card__body {
  padding: 24px 20px;
  flex: 1;
  background-color: #ffffff;
}
.why-vietnam-section .feature-card__desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .why-vietnam-section .features-grid {
    grid-template-columns: 1fr;
  }
  .why-vietnam-section .section-title-center {
    font-size: 20px;
  }
}

.flow-image-section {
  padding: 60px 0;
}
.flow-image-section .intro-flow__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.flow-image-section .intro-flow__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0193C6;
  margin-top: 8px;
}
.flow-image-section .flow-image {
  height: auto;
  display: block;
  margin: 0 auto;
}

.service-detail-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.service-detail-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-detail-section .breadcrumb {
  margin-bottom: 60px;
}
.service-detail-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.service-detail-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.service-detail-section .breadcrumb-link {
  color: #0089D1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-detail-section .breadcrumb-link:hover {
  color: #00A0D2;
}
.service-detail-section .breadcrumb-separator {
  color: #CCCCCC;
}
.service-detail-section .breadcrumb-current {
  color: #333333;
}

.service-detail {
  margin-bottom: 80px;
}

.service-detail-header {
  margin-bottom: 40px;
  text-align: center;
}

.service-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.service-detail-excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #0089D1;
  text-align: left;
}

.service-detail-thumbnail {
  margin-bottom: 40px;
}
.service-detail-thumbnail .service-detail-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.service-detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
}
.service-detail-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0089D1;
}
.service-detail-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin: 40px 0 20px;
}
.service-detail-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 32px 0 16px;
}
.service-detail-content p {
  margin: 0 0 24px;
}
.service-detail-content ul, .service-detail-content ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.service-detail-content ul li, .service-detail-content ol li {
  margin-bottom: 12px;
}
.service-detail-content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 4px;
}
.service-detail-content a {
  color: #0089D1;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.service-detail-content a:hover {
  color: #00A0D2;
}
.service-detail-content blockquote {
  margin: 32px 0;
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #0089D1;
  font-style: italic;
  color: #666666;
}
.service-detail-content code {
  padding: 2px 6px;
  background-color: #F5F5F5;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}
.service-detail-content pre {
  margin: 32px 0;
  padding: 20px;
  background-color: #F5F5F5;
  border-radius: 4px;
  overflow-x: auto;
}
.service-detail-content pre code {
  padding: 0;
  background-color: transparent;
}

.service-back-link {
  text-align: center;
  margin-top: 60px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  color: #0089D1;
  background-color: #FFFFFF;
  border: 2px solid #0089D1;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn-back svg {
  width: 20px;
  height: 20px;
}
.btn-back:hover {
  background-color: #0089D1;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 60px 0;
  }
  .service-detail-section .container {
    padding: 0 16px;
  }
  .service-detail-section .breadcrumb {
    margin-bottom: 40px;
  }
  .service-detail {
    margin-bottom: 60px;
  }
  .service-detail-header {
    margin-bottom: 32px;
  }
  .service-detail-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .service-detail-excerpt {
    font-size: 14px;
    padding: 20px;
  }
  .service-detail-thumbnail {
    margin-bottom: 32px;
  }
  .service-detail-content {
    font-size: 15px;
  }
  .service-detail-content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
  }
  .service-detail-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
  }
  .service-detail-content h4 {
    font-size: 17px;
    margin: 24px 0 12px;
  }
  .service-back-link {
    margin-top: 40px;
  }
  .btn-back {
    padding: 12px 24px;
    font-size: 15px;
  }
  .btn-back svg {
    width: 18px;
    height: 18px;
  }
}
.works-section {
  padding: 0px 0px 80px 0;
  font-family: "Noto Sans JP", sans-serif;
}
.works-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}
.works-section .breadcrumb {
  margin-bottom: 60px;
}
.works-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.works-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.works-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.works-section .breadcrumb-link:hover {
  color: #000000;
}
.works-section .breadcrumb-separator {
  color: #CCCCCC;
}
.works-section .breadcrumb-current {
  color: #333333;
}
.works-section .works-intro {
  text-align: center;
  margin-bottom: 80px;
}
.works-section .works-intro .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
}
.works-section .works-intro .intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.works-section .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .works-section .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .works-section .works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.works-section .work-card {
  background-color: #ffffff;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.works-section .work-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.works-section .work-card:hover .work-card-image img {
  transform: scale(1.1);
}
.works-section .work-card:hover .work-card-overlay {
  opacity: 1;
}
.works-section .work-card:hover .work-card-link {
  color: #0089D1;
}
.works-section .work-card:hover .work-card-link svg {
  transform: translateX(4px);
}
.works-section .work-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.works-section .work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.works-section .work-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}
.works-section .work-card-category {
  background-color: #0089D1;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.works-section .work-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.works-section .work-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.works-section .work-card-year {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.works-section .work-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.works-section .work-card-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 20px 0;
  flex: 1;
}
.works-section .work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.works-section .work-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.works-section .work-card-link:hover {
  color: #0089D1;
}
.works-section .works-contact-cta {
  margin-top: 100px;
  text-align: center;
  padding: 60px 20px;
}
.works-section .works-contact-cta .cta-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #333333;
  margin: 0 0 50px 0;
  font-family: "Noto Sans JP", sans-serif;
}
.works-section .works-contact-cta .cta-text {
  font-size: 16px;
  color: #333333;
  margin: 0 0 32px 0;
  line-height: 1.8;
}
.works-section .works-contact-cta .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: #0098B0;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 152, 176, 0.3);
}
.works-section .works-contact-cta .btn-contact .btn-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.works-section .works-contact-cta .btn-contact:hover {
  background-color: #007A8F;
  box-shadow: 0 6px 20px rgba(0, 152, 176, 0.4);
  transform: translateY(-2px);
}
.works-section .works-contact-cta .btn-contact:hover .btn-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .works-section {
    padding: 60px 0;
    margin-bottom: 0 !important;
  }
  .works-section .container {
    padding: 0 16px;
  }
  .works-section .breadcrumb {
    margin-bottom: 40px;
  }
  .works-section .works-intro {
    margin-bottom: 60px;
  }
  .works-section .works-intro .section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .works-section .works-intro .intro-text {
    font-size: 14px;
  }
  .works-section .work-card-image {
    height: 200px;
  }
  .works-section .work-card-content {
    padding: 20px;
  }
  .works-section .work-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .works-section .work-card-description {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .works-section .work-card-link {
    font-size: 13px;
  }
  .works-section .works-contact-cta {
    margin-top: 60px;
    padding: 40px 20px;
  }
  .works-section .works-contact-cta .cta-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .works-section .works-contact-cta .btn-contact {
    padding: 14px 40px;
    font-size: 16px;
  }
  .works-section .works-contact-cta .btn-contact .btn-icon {
    width: 20px;
    height: 20px;
  }
}
.works-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.works-modal-overlay.is-active {
  display: flex;
}

.works-modal {
  background: #ffffff;
  border-radius: 8px;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.works-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 1;
}
.works-modal__close:hover {
  color: #333;
}
.works-modal__inner {
  padding: 36px 40px 28px;
}
@media (max-width: 600px) {
  .works-modal__inner {
    padding: 32px 20px 20px;
  }
}
.works-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
.works-modal__image-wrap {
  width: 100%;
  margin-bottom: 28px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}
.works-modal__image {
  width: 100%;
  height: auto;
  display: block;
}
.works-modal__overview-wrap {
  margin-bottom: 20px;
}
.works-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
@media (max-width: 600px) {
  .works-modal__grid {
    grid-template-columns: 1fr;
  }
}
.works-modal__label {
  font-size: 14px;
  font-weight: 700;
  color: #0089D1;
  margin: 0 0 6px;
}
.works-modal__divider {
  height: 1px;
  background: #d0d0d0;
  margin-bottom: 10px;
}
.works-modal__value {
  font-size: 13px;
  color: #444444;
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
}
.works-modal__url {
  color: #0089D1;
  text-decoration: none;
  word-break: break-all;
}
.works-modal__url:hover {
  text-decoration: underline;
}
.works-modal__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.works-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.works-modal__prev {
  background: #ffffff;
  color: #0098B0;
  border: 1px solid #0098B0;
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.05em;
}
.works-modal__prev:hover {
  background: #f0fbfd;
}
.works-modal__next {
  background: #0098B0;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.05em;
}
.works-modal__next:hover {
  background: #007a90;
}

.page-header {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
    margin-bottom: 40px;
  }
}
.page-header .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-header .page-header-content {
  text-align: center;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 32px;
  }
}
.page-header .page-description {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page-header .page-description {
    font-size: 16px;
  }
}

.contact-section {
  padding: 0 0 80px;
  background-color: #ffffff;
}
.contact-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-section .breadcrumb {
  padding: 0 0 40px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-section .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.contact-section .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.contact-section .breadcrumb-item.active .breadcrumb-current {
  color: #666666;
  font-weight: 400;
}
.contact-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section .breadcrumb-link:hover {
  color: #000000;
}
.contact-section .breadcrumb-separator {
  color: #666666;
  margin: 0 4px;
  user-select: none;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-description {
  text-align: center;
  margin-bottom: 60px;
}
.contact-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .contact-description {
    margin-bottom: 40px;
  }
  .contact-description p {
    font-size: 14px;
  }
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-wrapper .form-contact .description {
  text-align: center;
  margin-bottom: 50px;
}
.contact-form-wrapper .form-contact .description p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-form-wrapper .form-contact .form-field {
  margin-bottom: 24px;
}
.contact-form-wrapper .form-contact .form-field.privacy_policy {
  margin-top: 40px;
  margin-bottom: 30px;
}
.contact-form-wrapper .form-contact .form-field.form_submit {
  margin-top: 50px;
  margin-bottom: 0;
  text-align: center;
}
.contact-form-wrapper .form-contact .form-field__label {
  margin-bottom: 8px;
}
.contact-form-wrapper .form-contact .form-field__label p {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
.contact-form-wrapper .form-contact .form-field__label p .required {
  color: #E74C3C;
  font-size: 14px;
  margin-left: 4px;
}
.contact-form-wrapper .form-contact .form-field__input p {
  margin: 0;
}
.contact-form-wrapper .form-contact .form-field__input input[type=text],
.contact-form-wrapper .form-contact .form-field__input input[type=email],
.contact-form-wrapper .form-contact .form-field__input input[type=tel],
.contact-form-wrapper .form-contact .form-field__input textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.contact-form-wrapper .form-contact .form-field__input input[type=text]:focus,
.contact-form-wrapper .form-contact .form-field__input input[type=email]:focus,
.contact-form-wrapper .form-contact .form-field__input input[type=tel]:focus,
.contact-form-wrapper .form-contact .form-field__input textarea:focus {
  outline: none;
  border-color: #0089D1;
}
.contact-form-wrapper .form-contact .form-field__input input[type=text]::placeholder,
.contact-form-wrapper .form-contact .form-field__input input[type=email]::placeholder,
.contact-form-wrapper .form-contact .form-field__input input[type=tel]::placeholder,
.contact-form-wrapper .form-contact .form-field__input textarea::placeholder {
  color: #999999;
}
.contact-form-wrapper .form-contact .form-field__input textarea {
  min-height: 220px;
  resize: vertical;
}
.contact-form-wrapper .form-contact .form-field.privacy_policy .wpcf7-list-item {
  margin: 0;
  padding: 0;
}
.contact-form-wrapper .form-contact .form-field.privacy_policy .wpcf7-list-item label {
  display: inline-flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}
.contact-form-wrapper .form-contact .form-field.privacy_policy .wpcf7-list-item label input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form-wrapper .form-contact .form-field.privacy_policy .wpcf7-list-item label .wpcf7-list-item-label {
  flex: 1;
}
.contact-form-wrapper .form-contact .form-field.form_submit input[type=submit] {
  display: inline-block;
  padding: 14px 60px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background-color: #00A0D2;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-form-wrapper .form-contact .form-field.form_submit input[type=submit]:hover {
  background-color: #0089D1;
}
.contact-form-wrapper .form-contact .form-field.form_submit input[type=submit]:active {
  transform: translateY(1px);
}
.contact-form-wrapper .form-contact .form-field.form_submit input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form-wrapper .form-contact .form-field.form_submit .wpcf7-spinner {
  margin-left: 10px;
}
.contact-form-wrapper .form-contact .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #dc3545;
  margin-top: 6px;
  display: block;
}
.contact-form-wrapper .form-contact .wpcf7-response-output {
  padding: 16px;
  margin-top: 24px;
  border-radius: 0;
  font-size: 14px;
  text-align: center;
}
.contact-form-wrapper .form-contact .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.contact-form-wrapper .form-contact .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 0 0 60px;
  }
  .contact-section .breadcrumb {
    padding: 0 0 32px;
    font-size: 13px;
  }
  .contact-section .container {
    padding: 0 16px;
  }
  .contact-description {
    margin-bottom: 32px;
    padding: 20px;
  }
  .contact-description p {
    font-size: 14px;
  }
  .contact-form-wrapper {
    margin-top: 32px;
  }
  .contact-form-wrapper .wpcf7 .wpcf7-form input[type=submit] {
    max-width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }
}
.page-header .page-subtitle {
  font-size: 20px;
  color: #FFFFFF;
  margin: 8px 0 0;
  font-weight: 400;
  opacity: 0.95;
}

.news-page-section {
  padding: 0px 0 80px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.news-page-section .container {
  margin: 0 auto;
  padding: 0 20px;
}
.news-page-section .breadcrumb {
  margin-bottom: 60px;
}
.news-page-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-page-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.news-page-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-page-section .breadcrumb-link:hover {
  color: #000000;
}
.news-page-section .breadcrumb-separator {
  color: #CCCCCC;
}
.news-page-section .breadcrumb-current {
  color: #333333;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.news-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #F5F5F5;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding-bottom: 10px;
}

.news-card-date {
  display: block;
  font-size: 13px;
  color: #999999;
  font-family: "Inter", sans-serif;
  text-align: right;
  margin-top: auto;
  padding-top: 12px;
}

.news-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .news-card-title {
  color: #0089D1;
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-item {
  border-bottom: 1px solid #EEEEEE;
  transition: background-color 0.3s ease;
}
.news-list-item:hover {
  background-color: #F9F9F9;
}

.news-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  gap: 24px;
}

.news-list-content {
  flex: 1;
}

.news-list-date {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.news-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.news-list-link:hover .news-list-title {
  color: #0089D1;
}

.news-list-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

.news-list-arrow {
  flex-shrink: 0;
  color: #CCCCCC;
  transition: color 0.3s ease, transform 0.3s ease;
}
.news-list-link:hover .news-list-arrow {
  color: #0089D1;
  transform: translateX(4px);
}

.news-no-posts {
  text-align: center;
  padding: 80px 20px;
}
.news-no-posts p {
  font-size: 18px;
  color: #999999;
  margin: 0;
}

.news-pagination {
  margin-top: 60px;
  text-align: center;
}
.news-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-pagination li {
  margin: 0;
}
.news-pagination a, .news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.news-pagination a:hover {
  background-color: #0089D1;
  border-color: #0089D1;
  color: #FFFFFF;
}
.news-pagination .current {
  background-color: #0089D1;
  border-color: #0089D1;
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .news-page-section {
    padding: 60px 0;
  }
  .news-page-section .container {
    padding: 0 16px;
  }
  .news-page-section .breadcrumb {
    margin-bottom: 40px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .news-card-image {
    height: 180px;
  }
  .news-card-content {
    padding: 20px;
    min-height: 160px;
  }
  .news-card-date {
    font-size: 12px;
    padding-top: 10px;
  }
  .news-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news-card-excerpt {
    font-size: 13px;
  }
  .news-list-link {
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .news-list-date {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .news-list-title {
    font-size: 18px;
  }
  .news-list-excerpt {
    font-size: 14px;
  }
  .news-list-arrow {
    align-self: flex-end;
  }
  .news-pagination {
    margin-top: 40px;
  }
  .news-pagination ul {
    flex-wrap: wrap;
    gap: 6px;
  }
  .news-pagination a, .news-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}
.news-detail-section {
  padding: 0px 0 80px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.news-detail-section .container {
  margin: 0 auto;
  padding: 0 20px;
}
.news-detail-section .breadcrumb {
  margin-bottom: 60px;
}
.news-detail-section .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.news-detail-section .breadcrumb-item {
  font-size: 14px;
  color: #666666;
}
.news-detail-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-detail-section .breadcrumb-link:hover {
  color: #000000;
}
.news-detail-section .breadcrumb-separator {
  color: #CCCCCC;
}
.news-detail-section .breadcrumb-current {
  color: #333333;
}

.news-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.news-detail {
  min-width: 0;
}

.news-detail-header {
  margin-bottom: 40px;
}

.news-detail-date {
  display: block;
  font-size: 14px;
  color: #333333;
  font-family: "Inter", sans-serif;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDDDDD;
}

.news-detail-thumbnail {
  margin-bottom: 40px;
}
.news-detail-thumbnail .news-detail-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.news-detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
}
.news-detail-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0089D1;
}
.news-detail-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin: 40px 0 20px;
}
.news-detail-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 32px 0 16px;
}
.news-detail-content p {
  margin: 0 0 24px;
}
.news-detail-content ul, .news-detail-content ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.news-detail-content ul li, .news-detail-content ol li {
  margin-bottom: 12px;
}
.news-detail-content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 4px;
}
.news-detail-content a {
  color: #0089D1;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.news-detail-content a:hover {
  color: #00A0D2;
}
.news-detail-content blockquote {
  margin: 32px 0;
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #0089D1;
  font-style: italic;
  color: #666666;
}
.news-detail-content code {
  padding: 2px 6px;
  background-color: #F5F5F5;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}
.news-detail-content pre {
  margin: 32px 0;
  padding: 20px;
  background-color: #F5F5F5;
  border-radius: 4px;
  overflow-x: auto;
}
.news-detail-content pre code {
  padding: 0;
  background-color: transparent;
}

.news-detail-sidebar .sidebar-section {
  margin-bottom: 40px;
}
.news-detail-sidebar .sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #DDDDDD;
}
.news-detail-sidebar .sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail-sidebar .sidebar-category-link {
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-detail-sidebar .sidebar-category-link:hover {
  color: #0089D1;
}

.news-detail-meta {
  display: none;
}

.news-navigation {
  max-width: 100%;
  margin: 0 0 60px;
  padding-top: 60px;
  border-top: 1px solid #DDDDDD;
}

.news-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.news-nav-btn {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.news-nav-btn:hover:not(.disabled) {
  background-color: #333333;
  color: #FFFFFF;
}
.news-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.news-back-link {
  display: none;
}

@media (max-width: 768px) {
  .news-detail-section {
    padding: 60px 0;
  }
  .news-detail-section .container {
    padding: 0 16px;
  }
  .news-detail-section .breadcrumb {
    margin-bottom: 40px;
  }
  .news-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .news-detail-header {
    margin-bottom: 32px;
  }
  .news-detail-date {
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .news-detail-title {
    font-size: 22px;
  }
  .news-detail-thumbnail {
    margin-bottom: 32px;
  }
  .news-detail-content {
    font-size: 15px;
  }
  .news-detail-content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
  }
  .news-detail-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
  }
  .news-detail-content h4 {
    font-size: 17px;
    margin: 24px 0 12px;
  }
  .news-navigation {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .news-nav-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .news-nav-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
.privacy-policy-section {
  padding: 60px 0 80px;
  background-color: #ffffff;
}
.privacy-policy-section .container {
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-policy-section .breadcrumb {
  padding: 0 0 40px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.privacy-policy-section .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.privacy-policy-section .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.privacy-policy-section .breadcrumb-item.active .breadcrumb-current {
  color: #666666;
  font-weight: 400;
}
.privacy-policy-section .breadcrumb-link {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.privacy-policy-section .breadcrumb-link:hover {
  color: #0089D1;
  text-decoration: underline;
}
.privacy-policy-section .breadcrumb-separator {
  color: #666666;
  margin: 0 4px;
  user-select: none;
}

.privacy-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #202124;
  margin: 0 0 24px 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.privacy-policy-content {
  margin-top: 40px;
}

.policy-intro {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

.policy-section {
  margin-bottom: 48px;
  text-align: center;
}
.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0098B0;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
}

.policy-section-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.policy-section-content p {
  margin-bottom: 16px;
}
.policy-section-content p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.policy-list li {
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.policy-link {
  color: #0089D1;
  text-decoration: none;
  font-weight: 500;
}
.policy-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 40px 0 60px;
  }
  .privacy-policy-section .breadcrumb {
    padding: 0 0 32px;
    font-size: 13px;
  }
  .privacy-policy-section .container {
    padding: 0 16px;
    width: 100%;
  }
  .privacy-page-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .policy-intro {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .policy-section {
    margin-bottom: 40px;
    text-align: center;
  }
  .policy-section-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    display: inline-block;
  }
  .policy-section-content {
    font-size: 14px;
    text-align: left;
  }
  .policy-list li {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
