@charset "UTF-8";
/*! normalize.scss v8.0.1 | MIT License | github.com/necolas/normalize.css - Lightweight version */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Sections
   ========================================================================== */
body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header,
main, menu, nav, section {
  display: block;
}

/* グループ化コンテンツ
   ========================================================================== */
hr {
  height: 0;
  overflow: visible;
}

/* メディア
   ========================================================================== */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

/* テキストレベル
   ========================================================================== */
a {
  background-color: transparent;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

/* インタラクティブ
   ========================================================================== */
audio, canvas, progress, video {
  display: inline-block;
}

/* フォーム
   ========================================================================== */
button, input, select, textarea {
  font: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
}

/* テーブル
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td, th {
  padding: 0;
}

/* リセット
   ========================================================================== */
figure, ul, ol, li, p, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:root {
  --primary-color: #0052a4;
  --secondary-color: #f8f8f8;
  --accent-color: #8d6e63;
  --text-color: #333333;
  --link-color: #0052a4;
  --border-color: #e0e0e0;
  --max-width: 1200px;
  --header-height: 80px;
  --header-height-mobile: 50px;
  --transition-normal: all 0.3s ease;
}

/* PC・SP表示制御 */
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.tb {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .tb {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0052a4;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0052a4;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0052a4;
}
.btn:hover {
  background: white;
  color: #0052a4;
  opacity: 1;
}
.btn-outline {
  background: white;
  border: 2px solid #0052a4;
  color: #0052a4;
}
.btn-outline:hover {
  background: #0052a4;
  color: white;
}
.btn-secondary {
  background: #8d6e63;
}
.btn-secondary:hover {
  background: #6f574e;
}
@media (max-width: 992px) {
  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0052a4;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-logo img {
  max-height: 50px;
}
@media (max-width: 768px) {
  .site-logo img {
    max-height: 40px;
  }
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
@media (max-width: 992px) {
  .header-inner {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0;
  }
}
.header-buttons {
  position: absolute;
  right: 0;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .header-buttons {
    display: none;
  }
}

.menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 100;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    border-radius: 4px;
    padding: 8px;
  }
  .menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.navigation-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .navigation-wrapper {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .navigation-wrapper.active {
    transform: translateX(0);
  }
}

.main-nav {
  pointer-events: auto;
}
.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .main-nav ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
}
.main-nav li {
  position: relative;
}
@media (max-width: 768px) {
  .main-nav li {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
  }
}
.main-nav li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 15px 0;
  display: inline-block;
}
@media (max-width: 768px) {
  .main-nav li a {
    padding: 15px 0;
    display: block;
    width: 100%;
  }
}
.main-nav li a:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0052a4;
  transition: width 0.3s;
}
@media (max-width: 768px) {
  .main-nav li a:after {
    display: none;
  }
}
.main-nav li a:hover:after {
  width: 100%;
}
.main-nav li.dropdown > a:before {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #333;
  vertical-align: middle;
  position: absolute;
  top: 24px;
  left: -24px;
}
@media (max-width: 768px) {
  .main-nav li.dropdown > a:before {
    position: static;
    transform: rotate(-90deg);
    margin-right: 10px;
    margin-left: 5px;
    order: 2;
  }
}
.main-nav li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .main-nav li.dropdown:hover .dropdown-menu {
    max-height: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .main-nav li.dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav li.dropdown.open > a:before {
    transform: rotate(0);
  }
  .main-nav li.dropdown.open .dropdown-menu {
    display: block;
    padding-top: 0;
    max-height: 1000px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    opacity: 1;
  }
}
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 15px;
  width: 600px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .main-nav .dropdown-menu {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .main-nav .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    background-color: #f9f9f9;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s linear;
    padding: 0;
  }
}
.main-nav .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
@media (max-width: 768px) {
  .main-nav .dropdown-menu:before {
    display: none;
  }
}
.main-nav .dropdown-item {
  margin: 0;
}
.main-nav .dropdown-item:last-child {
  margin-bottom: 0;
}
.main-nav .dropdown-link {
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  transition: all 0.3s ease;
  height: 100%;
}
@media (max-width: 768px) {
  .main-nav .dropdown-link {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px 0 !important;
  }
}
.main-nav .dropdown-link:after {
  display: none !important;
}
.main-nav .dropdown-link:hover {
  background: none !important;
}
.main-nav .dropdown-link:hover .dropdown-title {
  color: #0052a4;
}
.main-nav .dropdown-link:hover .dropdown-title:after {
  width: 100%;
}
.main-nav .dropdown-link:hover .dropdown-img img {
  transform: scale(1.05);
}
.main-nav .dropdown-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .main-nav .dropdown-img {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .main-nav .dropdown-img {
    width: 80px;
    height: 60px;
    margin-right: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.main-nav .dropdown-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.main-nav .dropdown-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .main-nav .dropdown-title {
    text-align: left;
    flex-grow: 1;
  }
}
.main-nav .dropdown-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0052a4;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .main-nav {
    margin: 0 0 20px;
    width: 100%;
  }
}

.mobile-contact-button {
  display: none;
}
@media (max-width: 768px) {
  .mobile-contact-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .mobile-contact-button .btn {
    display: block;
    width: 100%;
  }
}

.footer {
  background-color: #f5f5f5;
  padding: 60px 0 30px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-info {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer-logo img {
  max-width: 120px;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 992px) {
  .footer-nav {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 30px;
    justify-content: flex-start;
  }
}
.footer-nav-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer-nav-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.footer-nav-column ul li {
  margin-bottom: 10px;
}
.footer-nav-column ul li a {
  color: #555;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.footer-nav-column ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0052a4;
  transition: width 0.3s;
}
.footer-nav-column ul li a:hover {
  color: #0052a4;
  opacity: 1;
}
.footer-nav-column ul li a:hover:after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-nav-column ul.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-nav-column ul.footer-nav-list li {
    width: 50%;
  }
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
  }
}

.company-address p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.company-address .company-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.copyright {
  color: #777;
  font-size: 14px;
  text-align: center;
}

.hero-section {
  padding: 60px 0;
  background-color: #f8f9fb;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 50px 0;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}
.hero-section::before {
  display: none;
}
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-background-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-background-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slider {
  display: flex;
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .hero-slider {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: 300px;
    overflow: visible;
  }
}
.hero-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 25px;
    margin: 5px 0;
  }
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f5f5f5;
}
@media (max-width: 992px) {
  .hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 16px;
    overflow: hidden;
    margin-bottom: 20px;
  }
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 10px 2px;
  }
}
.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-section {
  padding: 0 !important;
  margin-bottom: 0 !important;
  height: calc(100vh - var(--header-height));
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: calc(100vh - var(--header-height-mobile));
  }
}

.slogan-section {
  text-align: center;
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .slogan-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .slogan-section {
    padding: 40px 0;
  }
}
.slogan-section .catchphrase {
  color: #333333;
  margin-bottom: 20px;
}
.slogan-section .subcatchphrase {
  color: #666;
}

.hero-overlay-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.hero-background-video {
  height: calc(100vh - var(--header-height));
}
@media screen and (max-width: 768px) {
  .hero-background-video {
    height: calc(100vh - var(--header-height-mobile));
  }
}

.main-catch {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
@media (max-width: 992px) {
  .main-catch {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .main-catch {
    padding: 40px 0;
  }
}
.main-catch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0052a4;
}
@media (max-width: 768px) {
  .main-catch::before {
    width: 40px;
  }
}

.catchphrase {
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 992px) {
  .catchphrase {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .catchphrase {
    font-size: 24px;
  }
}
.catchphrase span {
  display: inline-block;
}

.subcatchphrase {
  font-size: 20px;
  color: #b9b9b9;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .subcatchphrase {
    font-size: 16px;
  }
}

.slide {
  min-width: 100%;
  position: absolute;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .slide {
    position: absolute;
    width: 100%;
    min-width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
  }
}
.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .slide-content {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    gap: 0;
  }
}

.progress-bar {
  position: relative;
  width: 180px;
  height: 4px;
  margin: auto;
  background-color: #e0e0e0;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .progress-bar {
    width: 120px;
    height: 3px;
  }
}
.progress-bar-inner {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #0052a4;
  transition: width 5000ms linear;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 768px) {
  .slider-controls {
    position: relative;
    z-index: 5;
  }
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .slider .dot {
    width: 10px;
    height: 10px;
  }
}
.slider .dot.active {
  background-color: #0052a4;
  transform: scale(1.2);
}
.slider-prev, .slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #e0e0e0;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .slider-prev, .slider-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.slider-prev:hover, .slider-next:hover {
  background-color: #0052a4;
  color: white;
  border-color: #0052a4;
}

.businesses-section {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .businesses-section {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .businesses-section {
    padding: 40px 0;
  }
}
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .businesses-grid {
    gap: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .businesses-grid {
    grid-template-columns: 1fr;
  }
}

.business-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.business-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .business-image {
    height: 180px;
  }
}
.business-image a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.business-image a:hover img {
  transform: scale(1.1);
}
.business-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.business-content {
  padding: 25px 14px;
}
@media (max-width: 768px) {
  .business-content {
    padding: 20px;
  }
}
.business-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .business-title {
    font-size: 20px;
  }
}
.business-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .business-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.business-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .business-description {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.business-link {
  color: #0052a4;
  font-weight: 600;
  position: relative;
  padding-right: 20px;
  display: inline-block;
}
.business-link:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.business-link:hover:after {
  transform: translate(5px, -50%);
}

.company-section {
  padding: 80px 0;
  background-color: #f8f9fb;
}
@media (max-width: 992px) {
  .company-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .company-section {
    padding: 40px 0;
  }
}
.company-overview {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 992px) {
  .company-overview {
    margin: 0 auto 40px;
  }
}
@media (max-width: 768px) {
  .company-overview {
    margin: 0 auto 30px;
    font-size: 15px;
  }
}
.company-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .company-stats {
    gap: 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .company-stats {
    gap: 40px;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.company-info {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px) {
  .company-info {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .company-info {
    padding: 20px;
  }
}
.company-table {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .company-table {
    margin-bottom: 20px;
  }
}
.company-table th, .company-table td {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .company-table th, .company-table td {
    padding: 12px 0;
  }
}
.company-table th {
  width: 30%;
  text-align: left;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .company-table th {
    width: 40%;
  }
}
.company-table td {
  color: #555;
}

.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #0052a4;
  margin-bottom: 5px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .stat-number {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .stat-number {
    font-size: 36px;
  }
}
.stat-label {
  font-size: 16px;
  color: #555;
}
@media (max-width: 768px) {
  .stat-label {
    font-size: 14px;
  }
}

.contact-section {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}
.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f8f9fb;
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}
@media (max-width: 992px) {
  .contact-box {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .contact-box {
    padding: 20px;
  }
}
.contact-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}
@media (max-width: 992px) {
  .contact-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.contact-description {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .contact-description {
    margin: 0 auto 20px;
    font-size: 15px;
  }
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .contact-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.company-logo {
  margin-top: 20px;
}
.company-logo .logo-image {
  max-width: 200px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .company-logo .logo-image {
    max-width: 160px;
  }
}

.btn-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible, .fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 {
  transition-delay: 0.2s;
}
.fade-in.delay-2 {
  transition-delay: 0.4s;
}
.fade-in.delay-3 {
  transition-delay: 0.6s;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #0052a4;
}
@media (max-width: 768px) {
  .section-title:after {
    width: 30px;
    height: 2px;
  }
}

/* 下層ページ共通スタイル */
.page-header {
  background-color: #1e3a8a;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.page-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.page-header .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  margin: auto;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 15px;
  left: 20px;
  text-align: left;
  width: auto;
  z-index: 3;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}

.page-section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.page-section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1e3a8a;
  margin: 15px auto 0;
}

/* 事業紹介ページ */
.business-section {
  padding: 80px 0;
}
.business-section .business-item {
  display: flex;
  margin-bottom: 80px;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.business-section .business-item:nth-child(even) {
  flex-direction: row-reverse;
}
.business-section .business-item:last-child {
  margin-bottom: 0;
}
.business-section .business-item:hover .business-img img {
  transform: scale(1.05);
}
.business-section .business-img {
  width: 40%;
  overflow: hidden;
}
.business-section .business-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.business-section .business-content {
  width: 60%;
  padding: 40px;
}
.business-section .business-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e3a8a;
}
.business-section .business-catchphrase {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.business-section .business-description {
  margin-bottom: 30px;
  line-height: 1.8;
}
.business-section .business-button {
  text-align: right;
}

.page-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1e3a8a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.page-btn:hover {
  background-color: #15276d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-btn-primary {
  background-color: #1e3a8a;
  color: #fff;
}

.page-btn-outline {
  background-color: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}
.page-btn-outline:hover {
  background-color: #1e3a8a;
  color: #fff;
}

.page-btn-large {
  padding: 15px 40px;
  font-size: 18px;
}

/* POSレジ事業ページ */
.pos-hero {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.pos-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.pos-hero .hero-content {
  text-align: left;
  width: 45%;
}
@media (max-width: 768px) {
  .pos-hero .hero-content {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}
.pos-hero .hero-image {
  width: 50%;
}
.pos-hero .hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pos-hero .hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.4;
}

.pos-features {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .pos-features {
    padding: 60px 0;
  }
}
.pos-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pos-features .feature-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pos-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pos-features .feature-icon {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
}
.pos-features .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pos-features .feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 15px;
}
.pos-features .feature-desc {
  text-align: center;
  line-height: 1.6;
}

.pos-system {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.pos-system .system-showcase {
  display: flex;
  margin-bottom: 60px;
  align-items: center;
}
.pos-system .system-showcase:last-child {
  margin-bottom: 0;
}
.pos-system .system-showcase.reverse {
  flex-direction: row-reverse;
}
.pos-system .system-content {
  width: 50%;
  padding: 0 30px;
}
.pos-system .system-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.pos-system .system-desc {
  line-height: 1.8;
}
.pos-system .system-video, .pos-system .system-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pos-system .system-video video, .pos-system .system-image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pos-system .system-video img, .pos-system .system-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pos-system .sp-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 768px) {
  .pos-system .sp-demo-grid {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
  }
}
.pos-system .sp-demo-grid img {
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pos-demo {
  padding: 80px 0;
}
.pos-demo .demo-video {
  margin-bottom: 40px;
}
.pos-demo .demo-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pos-demo .demo-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pos-demo .demo-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section {
  padding: 80px 0;
  text-align: center;
}

.bg-light {
  background-color: #f8f9fa;
}

.contact-lead {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
}

/* デジタルヒューマン事業ページ */
.dh-hero {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.dh-hero .hero-title {
  color: #0052a4;
  text-align: center;
}
.dh-hero .hero-video {
  max-width: 800px;
  margin: 0 auto;
}
.dh-hero .hero-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dh-overview {
  padding: 80px 0;
  text-align: center;
}
.dh-overview .overview-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .dh-overview .overview-text {
    text-align: left;
  }
}

.dh-features {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.dh-features .feature-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dh-features .feature-item {
    padding: 20px 10px;
  }
}
.dh-features .feature-item:last-child {
  margin-bottom: 0;
}
.dh-features .feature-item:hover .feature-image img {
  transform: scale(1.05);
}
.dh-features .feature-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.dh-features .feature-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .dh-features .feature-image img {
    height: auto;
  }
}
.dh-features .feature-content {
  width: 100%;
}
.dh-features .feature-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}
.dh-features .feature-desc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .dh-features .feature-desc {
    text-align: left;
  }
}

.dh-cases {
  padding: 80px 0;
}
.dh-cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.dh-cases .case-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.dh-cases .case-item.reverse {
  flex-direction: row-reverse;
}
.dh-cases .case-item:hover .case-image img {
  transform: scale(1.05);
}
.dh-cases .case-image {
  width: 40%;
  overflow: hidden;
}
.dh-cases .case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.dh-cases .case-content {
  width: 60%;
  padding: 30px;
}
.dh-cases .case-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e3a8a;
}
.dh-cases .case-desc {
  line-height: 1.6;
}

.dh-flow {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.dh-flow .flow-steps {
  max-width: 800px;
  margin: 0 auto;
}
.dh-flow .flow-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.dh-flow .flow-step:last-child {
  margin-bottom: 0;
}
.dh-flow .flow-step:not(:last-child):before {
  content: "";
  position: absolute;
  top: 40px;
  left: 38px;
  height: calc(100% + 30px);
  width: 4px;
  background-color: #1e3a8a;
  z-index: 1;
}
.dh-flow .step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-right: 20px;
  z-index: 2;
}
.dh-flow .step-content {
  padding-top: 5px;
}
.dh-flow .step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e3a8a;
}
.dh-flow .step-desc {
  line-height: 1.6;
}

/* 会社概要ページ */
.company-philosophy {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}
.company-philosophy .philosophy-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.company-info {
  padding: 80px 0;
}
.company-info .company-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.company-info .company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-info .company-table th, .company-info .company-table td {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .company-info .company-table th, .company-info .company-table td {
    padding: 10px;
  }
}
.company-info .company-table th {
  width: 25%;
  color: #1e3a8a;
  font-weight: 700;
  vertical-align: top;
}

.company-history {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.company-history .history-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.company-history .timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.company-history .timeline-item:last-child {
  margin-bottom: 0;
}
.company-history .timeline-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: 25px;
  left: 88px;
  height: calc(100% + 20px);
  width: 3px;
  background-color: #1e3a8a;
}
.company-history .timeline-year {
  flex-shrink: 0;
  width: 100px;
  font-weight: 700;
  color: #1e3a8a;
  position: relative;
  font-size: 18px;
}
.company-history .timeline-year:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1e3a8a;
}
.company-history .timeline-content {
  padding-left: 30px;
  flex-grow: 1;
}

.company-access {
  padding: 80px 0;
}
.company-access .access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.company-access .access-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .company-access .access-item {
    padding: 20px 10px;
  }
}
.company-access .access-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  text-align: center;
}
.company-access .access-address {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 102px;
}
@media screen and (max-width: 768px) {
  .company-access .access-address {
    height: auto;
  }
}
.company-access .access-map {
  margin-bottom: 20px;
}
.company-access .access-route {
  text-align: center;
  line-height: 1.6;
}

/* 採用情報ページ */
.recruit-message {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}
.recruit-message .message-text {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.recruit-positions {
  padding: 80px 0;
}
.recruit-positions .position-item {
  margin-bottom: 60px;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .recruit-positions .position-item {
    padding: 20px 10px;
  }
}
.recruit-positions .position-item:last-child {
  margin-bottom: 0;
}
.recruit-positions .position-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  text-align: center;
}
.recruit-positions .position-details {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 30px;
}
.recruit-positions .position-description h4, .recruit-positions .position-conditions h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
  margin-top: 20px;
}
.recruit-positions .position-description h4:first-child, .recruit-positions .position-conditions h4:first-child {
  margin-top: 0;
}
.recruit-positions .position-description ul {
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
.recruit-positions .position-description ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.recruit-positions .position-description ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e3a8a;
  font-weight: bold;
  font-size: 14px;
}
.recruit-positions .position-description ul li:hover {
  color: #1e3a8a;
  transition: color 0.3s ease;
}

.recruit-interviews {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.recruit-interviews .interview-item {
  display: flex;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.recruit-interviews .interview-item:last-child {
  margin-bottom: 0;
}
.recruit-interviews .interview-item.reverse {
  flex-direction: row-reverse;
}
.recruit-interviews .interview-image {
  width: 30%;
  overflow: hidden;
}
.recruit-interviews .interview-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-interviews .interview-content {
  width: 70%;
  padding: 30px;
}
.recruit-interviews .interview-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}
.recruit-interviews .interview-text {
  line-height: 1.8;
}
.recruit-interviews .interview-text p {
  margin-bottom: 15px;
}
.recruit-interviews .interview-text p:last-child {
  margin-bottom: 0;
}

.recruit-flow {
  padding: 80px 0;
}

/* お知らせページ */
.news-list-section {
  padding: 60px 0;
}
.news-list-section .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .news-list-section .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-list-section .news-list {
    grid-template-columns: 1fr;
  }
}
.news-list-section .news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-list-section .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.news-list-section .news-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-list-section .news-item-eyecatch {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.news-list-section .news-item-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-list-section .news-item-eyecatch:hover img {
  transform: scale(1.05);
}
.news-list-section .news-item-content {
  padding: 20px;
}
.news-list-section .news-item-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #777;
}
.news-list-section .news-item-date {
  margin-right: 15px;
}
.news-list-section .news-item-category {
  background-color: #0052a4;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 10px;
}
.news-list-section .news-item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.pagination li {
  margin: 0 5px;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #0052a4;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: #0052a4;
  color: #fff;
  border-color: #0052a4;
}
.pagination .page-numbers.dots {
  border: none;
  padding: 8px 0;
}
.pagination .prev.page-numbers, .pagination .next.page-numbers {
  font-weight: 600;
}

/* お知らせ詳細ページ */
.news-detail-section {
  padding: 60px 0;
}
.news-detail-section .container {
  max-width: 800px;
}
.news-detail-section .news-article-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.news-detail-section .news-article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}
.news-detail-section .news-article-date {
  margin-right: 20px;
  font-weight: 500;
}
.news-detail-section .news-article-category {
  background-color: #0052a4;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 10px;
}
.news-detail-section .news-article-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #333333;
}
@media (max-width: 576px) {
  .news-detail-section .news-article-title {
    font-size: 24px;
  }
}
.news-detail-section .news-article-eyecatch {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.news-detail-section .news-article-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail-section .news-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
.news-detail-section .news-article-content .wysiwyg-content p {
  margin-bottom: 1.5em;
}
.news-detail-section .news-article-content .wysiwyg-content h1, .news-detail-section .news-article-content .wysiwyg-content h2, .news-detail-section .news-article-content .wysiwyg-content h3, .news-detail-section .news-article-content .wysiwyg-content h4, .news-detail-section .news-article-content .wysiwyg-content h5, .news-detail-section .news-article-content .wysiwyg-content h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 600;
}
.news-detail-section .news-article-content .wysiwyg-content h2 {
  font-size: 1.8em;
}
.news-detail-section .news-article-content .wysiwyg-content h3 {
  font-size: 1.5em;
}
.news-detail-section .news-article-content .wysiwyg-content ul, .news-detail-section .news-article-content .wysiwyg-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.news-detail-section .news-article-content .wysiwyg-content li {
  margin-bottom: 0.5em;
}
.news-detail-section .news-article-content .wysiwyg-content a {
  color: #0052a4;
  text-decoration: underline;
}
.news-detail-section .news-article-content .wysiwyg-content a:hover {
  text-decoration: none;
}
.news-detail-section .news-article-content .wysiwyg-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
}
.news-detail-section .news-article-content .wysiwyg-content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #f8f8f8;
  border-left: 4px solid #0052a4;
  font-style: italic;
}
.news-detail-section .news-article-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-detail-section .news-article-link-button {
  padding: 12px 30px;
  font-size: 16px;
}
.news-detail-section .post-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
.news-detail-section .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-detail-section .post-navigation .nav-links {
    display: block;
    position: relative;
  }
}
.news-detail-section .post-navigation .nav-previous a, .news-detail-section .post-navigation .nav-next a {
  color: #0052a4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.news-detail-section .post-navigation .nav-previous a:hover, .news-detail-section .post-navigation .nav-next a:hover {
  color: #003971;
}
.news-detail-section .post-navigation .nav-previous a .meta-nav, .news-detail-section .post-navigation .nav-next a .meta-nav {
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-detail-section .post-navigation .nav-previous {
    position: relative;
    left: 0;
    margin-bottom: 10px;
    text-align: left;
  }
  .news-detail-section .post-navigation .nav-next {
    position: relative;
    right: 0;
    text-align: right;
  }
}
.news-detail-section .post-navigation .nav-previous a {
  padding-left: 10px;
}
.news-detail-section .post-navigation .nav-next a {
  padding-right: 10px;
}
.news-detail-section .back-to-list-button-wrapper {
  margin-top: 30px;
  text-align: center;
}
.news-detail-section .back-to-list-button-wrapper .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
.news-detail-section .back-to-list-button-wrapper .btn-secondary:hover {
  background-color: #fff5f5;
  border-color: #6c757d;
  color: #6c757d;
}

/* お問い合わせページ */
.contact-form-section {
  padding: 80px 0;
}
.contact-form-section .form-introduction {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form-section .contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.other-contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.other-contact .contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.other-contact .contact-method {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.other-contact .method-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}
.other-contact .phone-number, .other-contact .fax-number {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.other-contact .business-hours {
  font-size: 14px;
  color: #666;
}

/* Yumstoneセクション */
.grecaptcha-badge {
  display: none;
}

.yumstone-about {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .yumstone-about {
    padding: 60px 0;
  }
}
.yumstone-about .yumstone-header {
  text-align: center;
  margin-bottom: 40px;
}
.yumstone-about .yumstone-header .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.yumstone-about .yumstone-header .section-title .yumstone-title-logo {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .yumstone-about .yumstone-header .section-title .yumstone-title-logo {
    max-height: 32px;
  }
}
.yumstone-about .yumstone-header .yumstone-logo {
  margin-bottom: 20px;
}
.yumstone-about .yumstone-header .yumstone-logo img {
  max-height: 60px;
  width: auto;
}
.yumstone-about .yumstone-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.yumstone-about .yumstone-content .yumstone-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 768px) {
  .yumstone-about .yumstone-content .yumstone-description {
    font-size: 15px;
    text-align: left;
  }
}

.yumstone-features {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .yumstone-features {
    padding: 60px 0;
  }
}
.yumstone-features .yumstone-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .yumstone-features .yumstone-features-grid {
    gap: 30px;
  }
}
.yumstone-features .yumstone-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .yumstone-features .yumstone-feature-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 15px;
  }
}
.yumstone-features .yumstone-feature-item .feature-icon-wrapper {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .yumstone-features .yumstone-feature-item .feature-icon-wrapper {
    margin: auto;
  }
}
.yumstone-features .yumstone-feature-item .feature-icon-wrapper .feature-number {
  width: 60px;
  height: 60px;
  background: #0052a4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .yumstone-features .yumstone-feature-item .feature-icon-wrapper .feature-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin: 0 auto;
  }
}
.yumstone-features .yumstone-feature-item .feature-content {
  flex: 1;
}
.yumstone-features .yumstone-feature-item .feature-content .feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333333;
}
@media (max-width: 768px) {
  .yumstone-features .yumstone-feature-item .feature-content .feature-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.yumstone-features .yumstone-feature-item .feature-content .feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
@media (max-width: 768px) {
  .yumstone-features .yumstone-feature-item .feature-content .feature-description {
    font-size: 14px;
    text-align: left;
  }
}

/* POSレジできることセクションのロゴサイズ調整 */
.yumstone-features .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .yumstone-features .section-title {
    display: block;
  }
}

.yumstone-features .section-title .yumstone-title-logo {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .yumstone-features .section-title .yumstone-title-logo {
    max-height: 32px;
  }
}
/* レスポンシブ設定 */
@media screen and (max-width: 1024px) {
  .business-section .business-item,
  .business-section .business-item:nth-child(even) {
    flex-direction: column;
  }
  .business-section .business-img, .business-section .business-content {
    width: 100%;
    padding: 20px 10px;
  }
  .pos-features .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .pos-hero .container {
    flex-direction: column;
  }
  .pos-hero .hero-content, .pos-hero .hero-image {
    width: 100%;
    text-align: center;
  }
  .pos-hero .hero-content {
    margin-bottom: 40px;
  }
  .pos-system .system-showcase {
    flex-direction: column;
  }
  .pos-system .system-showcase.reverse {
    flex-direction: column;
  }
  .pos-system .system-content, .pos-system .system-video, .pos-system .system-image {
    width: 100%;
  }
  .pos-system .system-content {
    padding: 0;
    margin-bottom: 30px;
  }
  .dh-features .feature-item, .dh-features .feature-item.reverse {
    flex-direction: column;
  }
  .dh-features .feature-image, .dh-features .feature-content {
    width: 100%;
  }
  .dh-cases .case-item, .dh-cases .case-item.reverse {
    flex-direction: column;
  }
  .dh-cases .case-image, .dh-cases .case-content {
    width: 100%;
  }
  .company-access .access-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .recruit-positions .position-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .recruit-interviews .interview-item, .recruit-interviews .interview-item.reverse {
    flex-direction: column;
  }
  .recruit-interviews .interview-image, .recruit-interviews .interview-content {
    width: 100%;
  }
  .other-contact .contact-methods {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-header {
    padding: 40px 0;
    min-height: 180px;
  }
  .page-header .page-title {
    font-size: 28px;
  }
  .page-section-title {
    font-size: 24px;
  }
  .business-section, .pos-features, .pos-system, .pos-demo, .dh-overview, .dh-features, .dh-cases, .dh-flow, .company-philosophy, .company-info, .company-history, .company-access, .recruit-message, .recruit-positions, .recruit-interviews, .recruit-flow, .news-list-section, .contact-form-section, .other-contact {
    padding: 50px 0;
  }
  .pos-hero .hero-title {
    font-size: 24px;
  }
  .pos-demo .demo-images {
    grid-template-columns: 1fr;
  }
  .news-list-section .news-date, .news-list-section .news-category {
    width: auto;
    margin-right: 15px;
  }
  .contact-form-section .contact-form-wrap {
    padding: 20px;
  }
}
.count-up {
  font-weight: 700;
  color: #1e3a8a;
}

/* Contact Form 7のスタイル */
.wpcf7 {
  width: 100%;
}
.wpcf7 .form-group {
  margin-bottom: 25px;
}
.wpcf7 label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.wpcf7 .required {
  color: #ff4b4b;
  font-size: 12px;
  margin-left: 5px;
}
.wpcf7 .form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.wpcf7 .form-control:focus {
  border-color: #1e3a8a;
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}
.wpcf7 textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.wpcf7 .privacy-policy-content {
  max-height: 150px;
  overflow-y: auto;
  padding: 15px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}
.wpcf7 .privacy-policy-content p {
  margin-bottom: 10px;
}
.wpcf7 .privacy-policy-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.wpcf7 .agreement {
  display: flex;
  align-items: center;
}
.wpcf7 .form-submit {
  text-align: center;
  margin-top: 30px;
}
.wpcf7 .page-btn-primary {
  display: inline-block;
  padding: 15px 50px;
  background-color: #1e3a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wpcf7 .page-btn-primary:hover {
  background-color: #1a2f70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.wpcf7 .ajax-loader {
  margin-left: 10px;
}
.wpcf7 .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  border-radius: 5px;
}
.wpcf7 .wpcf7-validation-errors {
  background-color: #fff5f5;
  border: 1px solid #ff4b4b;
  color: #ff4b4b;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: #f3fff5;
  border: 1px solid #4bff7e;
  color: #1e8a4a;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #ff4b4b;
  font-size: 13px;
  margin-top: 5px;
}

/* レスポンシブ対応 (Contact Form 7) */
@media screen and (max-width: 768px) {
  .wpcf7 .page-btn-primary {
    width: 100%;
    padding: 12px 15px;
  }
}
.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=base.css.map */