/* Fonts */
:root {
  --default-font: "Shin Go Regular",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Shin Go Regular",  sans-serif;
  --nav-font: "Shin Go Regular",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3776d6; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --quality-color: #88c5b4;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #3776d6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3776d6; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .logo h1 span {
  font-size: 24px;
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.main_pict {
position: fixed;
top: 0;
background:#fff url("../images/common/common_main_pict.jpg") no-repeat top center;
background-size: cover;
}
.page-title h2 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* 修正後 */
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  /* padding-top: 60px; (これはそのまま) */
  /* padding-bottom: 1.5rem; (これはそのまま) */
  display: flex;
  flex-direction: column; /* 垂直方向に並べることを明示 */
  align-items: stretch; /* 子要素が幅いっぱいに広がるように */
  /* align-items: flex-end; は不要になります */
  background-size: cover;
}
/* 1. hero-container に高さを適用 */
.hero-container {
    height: 100%;
    /* Flexboxの子要素として、コンテンツを下に押し込むために、これも Flexコンテナにする */
    display: flex;
    flex-direction: column; 
    /* position: relative; を追加すると、動画やオーバーレイが absolute の場合に対応しやすくなります */
    position: relative; 
}
/* 2. コンテンツ (.container) を一番下に押し込む */
.hero-container > .container {
    margin-top: auto; /* ✨ これがコンテンツを下端に固定する決定的なプロパティです ✨ */
    /* 動画の上に表示されるように z-index を設定 */
    z-index: 10; 
    /* 元のCSSに position: relative; のコメントアウトがありますが、これは外しておくと良いでしょう */
    position: relative;
}

/* 3. 動画要素に絶対位置を指定 (これは動画を背景にするための標準的な方法) */
.hero-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面全体に広がるように */
}

/* 4. オーバーレイにも絶対位置を指定 */
.hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* 動画とコンテンツの間になるように */
    background-color: rgba(0, 0, 0, 0.1);
    display: none; /* オーバーレイを非表示にする */
}

/*.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/

.hero .container {
  /*position: relative;*/
}

.hero h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.5s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon_esg {
  margin: 0 auto;
  width: 128px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.services .service-item .icon_esg img {
  transition: ease-in-out 0.3s;
  margin: 0 5px;
  max-height: 64px;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}
/* ESGページ用 */
.esg_service_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}
.service-item > .esg_bottom > img {
  margin-top: auto;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
width: 100%;
  max-width: 400px;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
text-align: center;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .social a span {
font-weight: bold;
}
.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# products Section
--------------------------------------------------------------*/
.products .products_item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.products .products_item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.products .products_item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.products .products_item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.products .products_item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.products .products_item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.products .products_item ul li {
  padding-bottom: 16px;
}

.products .products_item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.products .products_item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.products .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.products .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.products .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.products .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.products .advanced {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
 /* transform: rotate(90deg);*/
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider {
text-align: center;
}
.portfolio-details .portfolio-details-slider img {
width:auto;
height:auto;
max-width:100%;
max-height:600px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0 0 20px 0;
  font-size: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* 山元追加 */
a:hover img {
transition: 0.5s;
	margin-right: 0;
	margin-bottom: 0;
	opacity: 0.70;
	-moz-opacity: 0.70;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}

.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero .hero-container {
width: 100%;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 180px 0 80px 0;
}
.hero .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
  z-index: 2;
}
.hero .hero-container .container {
  z-index: 3;
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }
  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }
  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .listing-dropdown > ul > li > a > img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  }
}
/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .navmenu .listing-dropdown > ul > li > a > img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  }
}

/* 1200px以上のPC画面での非表示設定 */
@media (min-width: 1200px) {
    /* navmenu内の ul の直下にある li.li_sp を選択 */
    .navmenu > ul > .li_sp { 
        display: none !important; /* 他のスタイルに負けないよう !important を使用 */
    }
}

/* 1199px以下のモバイル画面での表示設定 */
/* (特に設定がなければデフォルトで表示されますが、念のため明示します) */
@media (max-width: 1199px) {
    .navmenu > ul > .li_sp {
        display: block; /* 縦並びにするため block または list-item */
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/common/common_cta_bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}

/*--------------------------------------------------------------
# top インスタリンクボタン
--------------------------------------------------------------*/

.insta .upcoming-event {
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 0;
  margin: 30px 0 0;
}
.insta .upcoming-event .event-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .insta .upcoming-event .event-content {
    flex-direction: column;
    text-align: center;
  }
}
.insta .upcoming-event .event-content>* {
  position: relative;
  z-index: 1;
}
.insta .upcoming-event .event-content .event-date {
  display: flex;
  flex-direction: column;
background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
  color: var(--contrast-color);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-right: 30px;
  min-width: 100px;
}
@media (max-width: 992px) {
  .insta .upcoming-event .event-content .event-date {
    margin: 0 auto 20px;
  }
}
.insta .upcoming-event .event-content .event-date i {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.insta .upcoming-event .event-content .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.insta .upcoming-event .event-content .event-info {
  flex: 1;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .insta .upcoming-event .event-content .event-info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.insta .upcoming-event .event-content .event-info h3 {
  font-size: 1.6rem;
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .insta .upcoming-event .event-content .event-info h3 {
    font-size: 1.3rem;
  }
}
.insta .upcoming-event .event-content .event-info p {
  font-size: 1rem;
  margin: 0;
}
.insta .upcoming-event .event-content .event-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.insta .upcoming-event .event-content .event-action .btn-event {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.insta .upcoming-event .event-content .event-action .btn-event:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.insta .upcoming-event .event-content .event-action .countdown {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- お問い合わせフォーム デザインカスタマイズ */
div.wpcf7 { background:#fafafa; border:1px solid #ddd; padding:0px; -moz-border-radius:10px; -khtml-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; margin:0 0 30px 0; }
div.wpcf7 p { padding:20px 20px 0; margin:0; font-size:11px; color: #000; }
div.wpcf7 input, .wpcf7 textarea { border:1px solid #ccc; padding:8px; font-size:14px; }
div.wpcf7 textarea { width:97.5%; height:300px; }
.wpcf7-list-item { display: block; }
div.wpcf7 input.wpcf7-submit {
   cursor:pointer; color:#fff; font-weight:bold; font-size:14px; width:50%; height:45px; margin:0 auto; display:block;
   -moz-border-radius:5px; -khtml-border-radius:5px; -webkit-border-radius:5px; border-radius:5px;
   background:#333; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #808080; border:1px solid #666;
}
div.wpcf7 input.wpcf7-submit:hover { background:#006080; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #007ea8; border:1px solid #006080; }
.wpcf7 input.wpcf7-submit:active { box-shadow:none; bottom:-2px; position:relative; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #ccc; }
div.wpcf7 input { width: 95%; }
span.wpcf7-radio {  }
span.wpcf7-list-item { display: block;white-space: nowrap;word-break: keep-all;}
span.wpcf7-list-item input[type="radio"] { width: 10px; }

div.wpcf7 input[type=radio] {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin: 0 10px 5px 0
}

div.wpcf7 input#zip {
    width: 50%;
}
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1;}
/* 必須赤色表示 */
.wpcf7 .required { color: #f00;}
/* 任意緑色表示 */
.wpcf7 .any{ color: #080;}

/* 「入力内容に不備があります。確認してもう一度送信してください。」のダブリをひとつ消す */
.screen-reader-response {
display: none;
}
/* 「必須項目に記入もれがあります。」を改行させる */
span.wpcf7-not-valid-tip {
display: inline-block;
}

/* 新着情報投稿時、画像配置を整える */
/* 画像配置 左 */
img.alignleft {
        text-align: left;
}
/* 画像配置 中央 */
img.aligncenter {
        display: block;
        margin: 1px auto;
}
a:hover img.aligncenter {
        display: block;
        margin: 1px auto;
}
/* 画像配置 右 */
img.alignright {
        display: block;
        margin: 1px 1px 1px auto;
}
a:hover img.alignright {
        display: block;
        margin: 1px 1px 1px auto;
}

/*--------------------------------------------------------------
# 企業情報ページ・会社案内用
--------------------------------------------------------------*/
.about_section .about_banner {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about_section .about_banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 color-mix(in srgb, var(--heading-color), transparent 85%);
}
.about_section .banner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.about_section .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about_section .banner-image:hover img {
  transform: scale(1.05);
}
.about_section .banner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
}
.about_section .banner-info {
  padding: 35px 30px;
}
.about_section .banner-info .program-header {
  margin-bottom: 20px;
}
.about_section .banner-info .program-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.about_section .banner-info .program-header .program-stats {
  display: flex;
  gap: 25px;
}
.about_section .banner-info .program-header .program-stats span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
}
.about_section .banner-info .program-header .program-stats span i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 1rem;
}
.about_section .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.7;
}
.about_section .banner-info .program-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.about_section .banner-info .program-details .detail-item {
  display: flex;
  align-items: center;
}
.about_section .banner-info .program-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}
.about_section .banner-info .program-details .detail-item span {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 600;
}
.about_section .banner-info .discover-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 70%);
}
.about_section .banner-info .discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}
.about_section .programs-grid {
  height: 100%;
  display: flex;
  align-items: center;
}
.about_section .program-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  cursor: pointer;
}
.about_section .program-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(10px);
}
.about_section .program-item:hover .item-arrow i {
  transform: translateX(5px);
  color: var(--accent-color);
}
.about_section .program-item .item-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
.about_section .program-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_section .program-item .item-icon i {
font-size: 3em;
}
.about_section .program-item .item-content {
  flex: 1;
}
.about_section .program-item .item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.about_section .program-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.about_section .program-item .item-content .meta-info {
  display: flex;
  gap: 15px;
}
.about_section .program-item .item-content .meta-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-weight: 500;
}
.about_section .program-item .item-arrow {
  margin-left: 15px;
}
.about_section .program-item .item-arrow i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .about_section .row {
    flex-direction: column-reverse;
  }
  .about_section .banner-info {
    padding: 25px 20px;
  }
  .about_section .banner-info .program-header h3 {
    font-size: 1.5rem;
  }
  .about_section .banner-info .program-stats {
    flex-direction: column;
    gap: 10px;
  }
  .about_section .banner-info .program-details {
    flex-direction: column;
    gap: 15px;
  }
  .about_section .program-item {
    padding: 15px;
  }
  .about_section .program-item .item-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  .about_section .program-item .item-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about_section .banner-image {
    height: 220px;
  }
  .about_section .program-item {
    flex-direction: column;
    text-align: center;
  }
  .about_section .program-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .about_section .program-item .item-arrow {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# 企業情報ページ・沿革用
--------------------------------------------------------------*/
.history_block .hero-image-wrapper {
  position: relative;
}
.history_block .hero-image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.history_block .hero-image-wrapper .floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.history_block .hero-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history_block .hero-image-wrapper .floating-card .card-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}
.history_block .hero-image-wrapper .floating-card .card-content {
  display: flex;
  flex-direction: column;
}
.history_block .hero-image-wrapper .floating-card .card-content .card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}
.history_block .hero-image-wrapper .floating-card .card-content .card-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.history_block .content-wrapper .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.history_block .content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .history_block .content-wrapper h2 {
    font-size: 2rem;
  }
}

.history_block .content-wrapper .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.history_block .info-grid {
  margin-bottom: 2.5rem;
}
.history_block .info-grid .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.history_block .info-grid .info-item .info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.history_block .info-grid .info-item .info-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.history_block .info-grid .info-item .info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.history_block .info-grid .info-item .info-text strong {
  font-weight: 600;
  color: var(--heading-color);
}
.history_block .info-grid .info-item .info-text span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.history_block .cta-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.history_block .cta-section .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}
.history_block .cta-section .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}
.history_block .cta-section .btn-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.history_block .cta-section .btn-link i {
  font-size: 2rem;
  color: var(--accent-color);
}
.history_block .cta-section .btn-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .history_block .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.history_block .activities-showcase {
  margin-top: 4rem;
}
.history_block .activities-showcase .featured-activity {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.history_block .activities-showcase .featured-activity .activity-media {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.history_block .activities-showcase .featured-activity .activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.history_block .activities-showcase .featured-activity .activity-media:hover img {
  transform: scale(1.1);
}
.history_block .activities-showcase .featured-activity .activity-media:hover .activity-overlay {
  opacity: 1;
}
.history_block .activities-showcase .featured-activity .activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content {
  color: var(--contrast-color);
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn:hover {
  transform: scale(1.1);
}
.history_block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn i {
  font-size: 1.25rem;
}
.history_block .activities-showcase .activities-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.history_block .activities-showcase .activities-list .activity-item {
  display: flex;
  gap: 1rem;
  background: var(--surface-color);
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.history_block .activities-showcase .activities-list .activity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.history_block .activities-showcase .activities-list .activity-item .activity-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.history_block .activities-showcase .activities-list .activity-item .activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history_block .activities-showcase .activities-list .activity-item .activity-info h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.history_block .activities-showcase .activities-list .activity-item .activity-info p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .history_block .hero-image-wrapper .floating-card {
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
  }
  .history_block .content-wrapper {
    margin-top: 2rem;
  }
  .history_block .activities-showcase {
    margin-top: 3rem;
  }
  .history_block .activities-showcase .featured-activity .activity-media {
    height: 300px;
  }
  .history_block .activities-showcase .activities-list {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .history_block .hero-image-wrapper .floating-card {
    position: static;
    margin-top: 1rem;
  }
  .history_block .activities-list .activity-item {
    flex-direction: column;
    text-align: center;
  }
  .history_block .activities-list .activity-item .activity-thumb {
    width: 100%;
    height: 150px;
    align-self: center;
  }
}

/*--------------------------------------------------------------
# record Section
--------------------------------------------------------------*/
.record .record-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.record .record-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.record .record-content p {
  margin-bottom: 30px;
}
.record .record-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}
.record .record-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.record .record-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.record .record-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.record .record-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.record .record-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.record .record-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}
.record .record-image {
  position: relative;
}
.record .record-image > img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.record .record-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .record .record-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.record .record-image .mission-vision .mission,
.record .record-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.record .record-image .mission-vision .mission h3,
.record .record-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.record .record-image .mission-vision .mission h3:before,
.record .record-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}
.record .record-image .mission-vision .mission p,
.record .record-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.record .core-values {
  margin-top: 30px;
}
.record .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.record .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.record .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.record .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}
.record .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}
.record .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.record .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.blog .blog_banner {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog .blog_banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 color-mix(in srgb, var(--heading-color), transparent 85%);
}
.blog .banner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.blog .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog .banner-image:hover img {
  transform: scale(1.05);
}
.blog .banner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
}
.blog .banner-info {
  padding: 35px 30px;
  text-align: center;
}
.blog .banner-info .program-header {
  margin-bottom: 20px;
}
.blog .banner-info .program-header h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.blog .banner-info .program-header .program-stats {
  display: flex;
  gap: 25px;
}
.blog .banner-info .program-header .program-stats span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
}
.blog .banner-info .program-header .program-stats span i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 1rem;
}
.blog .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.7;
}
.blog .banner-info .program-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.blog .banner-info .program-details .detail-item {
  display: flex;
  align-items: center;
}
.blog .banner-info .program-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}
.blog .banner-info .program-details .detail-item span {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 600;
}
.blog .banner-info .discover-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 70%);
}
.blog .banner-info .discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}
.blog .programs-grid {
  height: 100%;
  display: flex;
  align-items: center;
}
.blog .program-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  cursor: pointer;
}
.blog .program-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(10px);
}
.blog .program-item:hover .item-arrow i {
  transform: translateX(5px);
  color: var(--accent-color);
}
.blog .program-item .item-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
.blog .program-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .program-item .item-content {
  flex: 1;
}
.blog .program-item .item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.blog .program-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog .program-item .item-content .meta-info {
  display: flex;
  gap: 15px;
}
.blog .program-item .item-content .meta-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-weight: 500;
}
.blog .program-item .item-arrow {
  margin-left: 15px;
}
.blog .program-item .item-arrow i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .blog .row {
    flex-direction: column-reverse;
  }
  .blog .banner-info {
    padding: 25px 20px;
  }
  .blog .banner-info .program-header h3 {
    font-size: 1.5rem;
  }
  .blog .banner-info .program-stats {
    flex-direction: column;
    gap: 10px;
  }
  .blog .banner-info .program-details {
    flex-direction: column;
    gap: 15px;
  }
  .blog .program-item {
    padding: 15px;
  }
  .blog .program-item .item-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  .blog .program-item .item-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .blog .banner-image {
    height: 220px;
  }
  .blog .program-item {
    flex-direction: column;
    text-align: center;
  }
  .blog .program-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .blog .program-item .item-arrow {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Facilities Section
--------------------------------------------------------------*/
/*
.facilities .facilities_item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}
.facilities .facilities_item img {
  transition: all ease-in-out 0.4s;
  transform: translate(-50%, -50%) scale(1);
}
.facilities .facilities_item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.flex {
  display: flex;
  justify-content: center;
}
.flex_item {
  flex-basis: 20%;
}
.image_trim {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.image_trim img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}*/

/*--------------------------------------------------------------
# Facilities Programs Section
--------------------------------------------------------------*/
.facilities_programs .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}
.facilities_programs .isotope-filters li {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: all 0.3s ease;
}
.facilities_programs .isotope-filters li:hover,
.facilities_programs .isotope-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.facilities_programs .program-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  background-color: var(--surface-color);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.facilities_programs .program-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.facilities_programs .program-item:hover .program-btn i {
  transform: translateX(5px);
}
.facilities_programs .program-item:hover .program-image-wrapper img {
  transform: scale(1.1);
}
.facilities_programs .program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}
.facilities_programs .program-image-wrapper {
  height: 100%;
  overflow: hidden;
}
.facilities_programs .program-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facilities_programs .program-content {
  padding: 25px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.facilities_programs .program-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.facilities_programs .program-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}
.facilities_programs .program-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}
.facilities_programs .program-highlights span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: flex;
  align-items: center;
}
.facilities_programs .program-highlights span i {
  margin-right: 5px;
  color: var(--accent-color);
  font-size: 0.9rem;
}
.facilities_programs .program-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.facilities_programs .program-btn span {
  position: relative;
}
.facilities_programs .program-btn span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}
.facilities_programs .program-btn i {
  transition: transform 0.3s ease;
}
.facilities_programs .program-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.facilities_programs .program-btn:hover span:after {
  width: 100%;
}
.facilities_programs .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .facilities_programs .isotope-filters {
    margin-bottom: 30px;
  }
  .facilities_programs .isotope-filters li {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .facilities_programs .program-image-wrapper {
    height: 200px;
  }
  .facilities_programs .program-content {
    padding: 20px 15px;
  }
  .facilities_programs .program-content h3 {
    font-size: 1.15rem;
  }
  .facilities_programs .program-highlights {
    flex-direction: column;
    gap: 8px;
  }
}

.hidden-glightbox-item {
  display: none;
}

/*--------------------------------------------------------------
# Quality Section
--------------------------------------------------------------*/
.quality .section-title {
  margin-bottom: 3rem;
}
.quality .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.quality .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.quality .quality_filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}
.quality .quality_filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}
.quality .quality_card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.quality .quality_card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.quality .quality_card .quality_date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--quality-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}
.quality .quality_card .quality_date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.quality .quality_card .quality_date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}
.quality .quality_card .quality_date .year {
  font-size: 0.9rem;
}
.quality .quality_card .quality_content {
  padding: 1.5rem;
  flex: 1;
}
.quality .quality_card .quality_content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}
.quality .quality_card .quality_content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.quality .quality_card .quality_tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.quality .quality_card .quality_tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}
.quality .quality_card .quality_tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.quality .quality_card .quality_tag.arts {
  background-color: #ffebee;
  color: #c62828;
}
.quality .quality_card .quality_tag.community {
  background-color: #fff3e0;
  color: #e65100;
}
.quality .quality_card .quality_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.quality .quality_card .quality_meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}
.quality .quality_card .quality_meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.quality .quality_card .quality_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.quality .quality_card .quality_actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}
.quality .quality_card .quality_actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.quality .quality_card .quality_actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}
.quality .quality_card .quality_actions .btn-calendar i {
  margin-right: 0.3rem;
}
.quality .quality_card .quality_actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.quality .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.quality .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .quality .quality_card {
    flex-direction: column;
  }
  .quality .quality_card .quality_date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }
  .quality .quality_card .quality_date .month,
  .quality .quality_card .quality_date .day,
  .quality .quality_card .quality_date .year {
    margin: 0;
  }
  .quality .quality_card .quality_date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }
  .quality .quality_actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# secondary Section
--------------------------------------------------------------*/
.secondary .intro-content {
  margin-bottom: 2rem;
}
.secondary .intro-content .section-heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .secondary .intro-content .section-heading {
    font-size: 2rem;
  }
}

.secondary .intro-content .section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}
.secondary .metric-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}
.secondary .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.secondary .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.secondary .metric-card:hover::before {
  transform: scaleX(1);
}
.secondary .metric-card:hover .metric-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: rotate(360deg);
}
.secondary .metric-card:hover .metric-icon-wrapper i {
  color: var(--contrast-color);
}
.secondary .metric-card .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.secondary .metric-card .metric-header .metric-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.secondary .metric-card .metric-header .metric-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}
.secondary .metric-card .metric-header .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}
.secondary .metric-card .metric-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.secondary .metric-card .metric-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.secondary .highlights-section .highlights-content {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .secondary .highlights-section .highlights-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.secondary .highlights-section .highlights-content .highlights-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .secondary .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
  }
}

.secondary .highlights-section .highlights-content .highlights-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.secondary .highlights-section .highlights-content .highlights-features {
  margin-bottom: 2.5rem;
}
.secondary .highlights-section .highlights-content .highlights-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.secondary .highlights-section .highlights-content .highlights-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
}
.secondary .highlights-section .highlights-content .highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}
.secondary .highlights-section .highlights-content .highlights-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.secondary .highlights-section .highlights-content .highlights-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.secondary .highlights-section .highlights-content .highlights-cta .cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: 2px solid transparent;
}
.secondary .highlights-section .highlights-content .highlights-cta .cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.secondary .highlights-section .highlights-content .highlights-cta .cta-btn.secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}
.secondary .highlights-section .highlights-content .highlights-cta .cta-btn.secondary:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
}

.secondary .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}
.secondary .highlights-section .highlights-gallery .gallery-grid2 {
  height: 400px;
}

.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item{
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
  grid-row: 1/3;
}
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item.large {
  grid-row: 1/1;
}

.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item img,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  margin: 0 0 10px 0;
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item .gallery-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5,
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item .gallery-overlay h5,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item .gallery-overlay h6{
  color: var(--contrast-color);
  margin: 0;
  font-weight: 600;
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5 {
  font-size: 1.1rem;
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  font-size: 0.95rem;
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover img,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item:hover img {
  transform: scale(1.05);
}
.secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay,
.secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .secondary .highlights-section .highlights-gallery .gallery-grid,
  .secondary .highlights-section .highlights-gallery .gallery-grid2 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }
  .secondary .highlights-section .highlights-gallery .gallery-grid .gallery-item.large,
  .secondary .highlights-section .highlights-gallery .gallery-grid2 .gallery-item.large {
    grid-row: auto;
  }
}

/*--------------------------------------------------------------
# 検査装置 Section
--------------------------------------------------------------*/
.kensaki {
}
.kensaki .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kensaki .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.kensaki .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}
.kensaki .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.kensaki .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.kensaki .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}
.kensaki .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}
.kensaki .member .social a:hover {
  color: var(--accent-color);
}
.kensaki .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.kensaki .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}
.kensaki .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}
.kensaki .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# 対応可能な二次加工用 Section
--------------------------------------------------------------*/
.available .post-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  gap: 24px;
  height: 100%;
}
.available .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.available .post-item:hover .post-title a {
  color: var(--accent-color);
}
.available .post-item:hover .post-img img {
  transform: scale(1.1);
}
.available .post-img {
  flex: 0 0 280px;
  overflow: hidden;
}
.available .post-img img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.available .post-content {
  padding: 24px 24px 24px 0;
}
.available .category {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
}
.available .category:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.available .post-title {
  margin: 0 0 16px 0;
}
.available .post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}
.available .post-title a:hover {
  color: var(--accent-color);
}
.available .post-description {
  color: var(--default-color);
  margin: 0 0 24px 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}
.available .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.available .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.available .post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.available .post-author .author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}
.available .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
  .available .post-item {
    flex-direction: column;
  }
  .available .post-img {
    flex: 0 0 auto;
  }
  .available .post-img img {
    width: 100%;
    height: 200px;
  }
  .available .post-content {
    padding: 24px;
  }
  .available .post-title a {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# robot_system Section
--------------------------------------------------------------*/
.robot_system .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.robot_system .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.robot_system .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}
.robot_system .featured-post .post-overlay_24 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 100%, rgba(0, 0, 0, 0.8) 0%);
  padding: 2rem;
  color: var(--contrast-color);
}
.robot_system .featured-post .post-content {
  max-width: 800px;
}
.robot_system .featured-post .post-content_24 {
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.562);
}
.robot_system .featured-post .post-title {
  margin: 1rem 0;
  font-size: 24px;
  font-weight: 600;
}
.robot_system .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.robot_system .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.robot_system .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.robot_system .secondary-post .post-image02 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.robot_system .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}
.robot_system .news-tabs  {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem;
}
.robot_system .news-tabs h3 {
font-size: 1.2rem;
font-weight: bold;
}

@media (max-width: 991.98px) {
  .robot_system .featured-post img {
    height: 400px;
  }
  .robot_system .featured-post .post-title {
    font-size: 1.75rem;
  }
  .robot_system .secondary-post .post-image img {
    height: 220px;
  }
  .robot_system .news-tabs {
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .robot_system .featured-post img {
    height: 500px;
  }
  .robot_system .featured-post .post-title {
    font-size: 1.5rem;
  }
  .robot_system .featured-post .post-overlay {
    padding: 1.5rem;
  }
  .robot_system .tab-post .post-title {
    font-size: 0.875rem;
  }
  .robot_system .tab-post img {
    height: 80px;
  }
}

.fuchidori {
  color: #000;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0-2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.fuchidori_black {
  font-weight: bold;
  color: #fff;
  text-shadow:3px 3px 0 #3d3d3d, -3px -3px 0 #3d3d3d,
              -3px 3px 0 #3d3d3d, 3px -3px 0 #3d3d3d,
              0px 3px 0 #3d3d3d,  0-3px 0 #3d3d3d,
              -3px 0 0 #3d3d3d, 3px 0 0 #3d3d3d;
}

/* businessページ */
.workflow_box {
  position: relative;
  color: white;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
/* 左側くぼみを作る */
.workflow_box::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background: white; /* 背景と同じ色で切り抜き効果 */
  border-radius: 50%;
  z-index: 1;
}
.workflow_box:hover {
transform: translateX(5px);
filter: brightness(1.1);
}
/* 背景色の設定 */
.bg_step_1 { background-color: #168bc9; }
.bg_step_2 { background-color: #0093ca; }
.bg_step_3 { background-color: #0091c9; }
.bg_step_4 { background-color: #1da5ca; }
.bg_step_5 { background-color: #3198ca; }
.bg_step_6 { background-color: #168bc9; }
.bg_step_7 { background-color: #0097d3; }
.bg_step_8 { background-color: #2596b2; }
.bg_step_9 { background-color: #012f45; }
.bg_step_10 { background-color: #334e6d; }
.bg_step_11 { background-color: #29589f; }
.workflow_box a {
color: #fff;
}
@media (max-width: 768px) {
.bg_step_9 {
font-size: 1rem;
}
}

.workflow_arrow {
text-align: center;
}
.workflow_arrow i {
font-size: 2rem;
text-align: center;
}

/*--------------------------------------------------------------
# culture Section
--------------------------------------------------------------*/
.culture .culture_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}
@media (max-width: 1199px) {
.culture .culture_grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}
@media (max-width: 992px) {
.culture .culture_grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
  .culture .culture_grid {
    grid-template-columns: 1fr;
  }
}

.culture .culture_card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.culture .culture_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.culture .culture_card .icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.culture .culture_card .icon-wrapper i {
  font-size: 32px;
}

.culture .culture_card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.culture .culture_card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
  border: 1px solid #fff;
  padding: 3%;
}

.culture .culture_card .culture_list {
  margin-bottom: 25px;
}

.culture .culture_card .culture_list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.culture .culture_card .culture_list .feature-item:last-child {
  margin-bottom: 0;
}

.culture .culture_card .culture_list .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 3px;
}

.culture .culture_card .culture_list .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.culture .culture_card .image-container {
  margin-top: auto;
  text-align: center;
}

.culture .culture_card .image-container img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.culture .culture_card:hover .image-container img {
  transform: scale(1.05);
}
.culture_card_color_01 {
background-color: #ecb691;
}
.culture_card_color_02 {
background-color: #68ccef;
}
.culture_card_color_03 {
background-color: #8eca8d;
}
.culture .culture_card .icon-wrapper.card_icon_01 {
  background-color: color-mix(in srgb, #fff, transparent 85%);
  color: #e68541;
}
.culture .culture_card:hover .icon-wrapper.card_icon_01 {
  background-color: #e68541;
  color: #fff;
}
.culture .culture_card .icon-wrapper.card_icon_02 {
  background-color: color-mix(in srgb, #fff, transparent 85%);
  color: #00aae8;
}
.culture .culture_card:hover .icon-wrapper.card_icon_02 {
  background-color: #00aae8;
  color: #fff;
}
.culture .culture_card .icon-wrapper.card_icon_03 {
  background-color: color-mix(in srgb, #fff, transparent 85%);
  color: #2aa738;
}
.culture .culture_card:hover .icon-wrapper.card_icon_03 {
  background-color: #2aa738;
  color: #fff;
}

/* --------------------------------------
TOP NEWS
-------------------------------------- */
.news_h2,
.top_news_btn,
.top_news_date,
.top_news_title,
.top_news_btn_a,
.top_news_permalink,
.top_news_ul,
.top_news_li {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
.top_news_li {
list-style: none;
}
.news_inner {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 25px;
padding-right: 25px;
padding-top: 34px;
}

@media all and (min-width: 1200px) {
.news_inner {
width: 100%;
max-width: 1200px;
margin: auto;
padding-left: 0;
padding-right: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding-top: 72px;
}
}

.news_h2 {
line-height: 1.2;
font-size: 2.5rem;
font-weight: 700;
letter-spacing: .05em;
}
.top_news_btn_a {
position: relative;
display: inline-block;
padding-right: 30px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 1.2rem;
font-weight: 700;
}

.top_news_btn_a:after {
content: '';
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 20px;
height: 12px;
content: "";
display: inline-block;
vertical-align: middle;
background: no-repeat center/contain;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}

@media all and (min-width: 1200px) {
.top_news {
-webkit-text-size-adjust: none;
}
.news_h2 {
font-size: 3rem;
}
.top_news_btn {
max-width: 180px;
width: 100%;
margin-top: 32px;
-webkit-transition: all 0.5s cubic-bezier(0.6, -0.25, 0.2, 1.9);
transition: all 0.5s cubic-bezier(0.6, -0.25, 0.2, 1.9);
}
.top_news_btn:hover {
max-width: 200px;
}
.top_news_btn:hover .top_news_btn_a {
border-color: #F25140;
background: #F25140;
color: #fff;
letter-spacing: .2em;
}
.top_news_btn:hover .top_news_btn_a:after {
width: 20px;
height: 12px;
content: "";
display: inline-block;
vertical-align: middle;
background: no-repeat center/contain;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.top_news_btn_a {
display: block;
border: 2px solid #3776d6;
border-radius: 30px;
padding: 10px 10px 10px 0;
font-size: 1.1rem;
text-align: center;
-webkit-transition: letter-spacing 0.5s cubic-bezier(0.6, -0.25, 0.2, 1.9), border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
transition: letter-spacing 0.5s cubic-bezier(0.6, -0.25, 0.2, 1.9), border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.top_news_btn_a:after {
right: 16px;
}
}

.top_news_permalink {
line-height: 1.5;
position: relative;
display: block;
padding: 20px 0 25px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.top_news_permalink:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 1px;
background: linear-gradient(to right, #333, #333 1px, transparent 1px, transparent 5px);
background-size: 5px 1px;
background-repeat: repeat-x;
}
.top_news_date {
margin-bottom: 8px;
color: rgba(0, 0, 0, 0.4);
font-size: 1.3rem;
}
.top_news_title {
font-size: 1.3rem;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}

@media all and (min-width: 1200px) {
.top_news_permalink {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 25px 0;
}
.top_news_permalink:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: #F25140;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: left top;
transform-origin: left top;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.top_news_permalink:hover:after {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}
.top_news_permalink:hover .top_news_date,
.top_news_permalink:hover .top_news_title {
color: #F25140;
font-weight: 700;
}
.top_news_date {
min-width: 132px;
width: 132px;
margin-bottom: 0;
font-size: 1.1rem;
-webkit-transition: all 0.3s ease; transition: all 0.3s ease;
}
.top_news_title {
width: 100%;
font-size: 1.1rem;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
}

/*--------------------------------------------------------------
# 経営理念 Section
--------------------------------------------------------------*/
.rinen .program-banner {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rinen .program-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 color-mix(in srgb, var(--heading-color), transparent 85%);
}

.rinen .banner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.rinen .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rinen .banner-image:hover img {
  transform: scale(1.05);
}

.rinen .banner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
}

.rinen .banner-info {
  padding: 35px 30px;
}

.rinen .banner-info .program-header {
  margin-bottom: 20px;
}

.rinen .banner-info .program-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.rinen .banner-info .program-header .program-stats {
  display: flex;
  gap: 25px;
}

.rinen .banner-info .program-header .program-stats span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
}

.rinen .banner-info .program-header .program-stats span i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 1rem;
}

.rinen .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.7;
}

.rinen .banner-info .program-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.rinen .banner-info .program-details .detail-item {
  display: flex;
  align-items: center;
}

.rinen .banner-info .program-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.rinen .banner-info .program-details .detail-item span {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 600;
}

.rinen .banner-info .discover-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 70%);
}

.rinen .banner-info .discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.rinen .programs-grid {
  height: 100%;
  display: flex;
  align-items: center;
}

.rinen .program-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  cursor: pointer;
}

.rinen .program-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(10px);
}

.rinen .program-item:hover .item-arrow i {
  transform: translateX(5px);
  color: var(--accent-color);
}

.rinen .program-item .item-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.rinen .program-item .item-icon i {
font-size: 3rem;
}

.rinen .program-item .item-content {
  flex: 1;
}

.rinen .program-item .item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.rinen .program-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.rinen .program-item .item-content .meta-info {
  display: flex;
  gap: 15px;
}

.rinen .program-item .item-content .meta-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-weight: 500;
}

.rinen .program-item .item-arrow {
  margin-left: 15px;
}

.rinen .program-item .item-arrow i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .rinen .row {
    flex-direction: column-reverse;
  }

  .rinen .banner-info {
    padding: 25px 20px;
  }

  .rinen .banner-info .program-header h3 {
    font-size: 1.5rem;
  }

  .rinen .banner-info .program-stats {
    flex-direction: column;
    gap: 10px;
  }

  .rinen .banner-info .program-details {
    flex-direction: column;
    gap: 15px;
  }

  .rinen .program-item {
    padding: 15px;
  }

  .rinen .program-item .item-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .rinen .program-item .item-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .rinen .banner-image {
    height: 220px;
  }
  .rinen .program-item {
    flex-direction: column;
    text-align: center;
  }
  .rinen .program-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .rinen .program-item .item-arrow {
    margin-left: 0;
    margin-top: 10px;
  }
}
