﻿@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Noto Sans JP", "Roboto",  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: "Noto Sans JP", "Roboto",  sans-serif;
  --nav-font: "Noto Sans JP", "Roboto",  sans-serif;
}

@font-face {
  font-family: "bootstrap-icons";
  font-display: swap;
}


/* 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: #333333; /* #444444Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0c74f1; /* 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. */
}

/* 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: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #0c74f1; /*##ff4a17 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0c74f1; /*#ff4a17 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: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --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);
}

section, article, p, div, form, select, input {font-family: var(--default-font);}

/*--------------------------------------------------------------
# .breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
	font-family: var(--default-font);
	font-size: 0.9em;
	margin: 2rem 0 0 0;
	/*margin: 2rem 0 0 0;*/
	
}
.breadcrumb i, .breadcrumb span  {
	font-size: 0.9em;
	padding: 0 0.3em;
  vertical-align: middle;
}

.breadcrumb a:link {
	font-size: 0.9em;
}

.breadcrumb i, .breadcrumb a i {
  font-size: 0.9em;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: 5px; /* 必要に応じて微調整してね */
}

.breadcrumb a i.bi-house-fill {
  font-size: 0.9em;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -1px!important; 
}


/*英語版*/
@media (min-width: 1200px) {
  body.lang-en .main > .container[data-adjust-padding] {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (min-width: 1200px) {
body.lang-en .navmenu a,
body.lang-en .navmenu a:focus {
  white-space: nowrap;
  font-size: 0.95rem!important;
	}
	
body.lang-en .navmenu>ul>li {
  white-space: nowrap;
  padding: 15px 8px!important;
  }

}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(21, 34, 43, 0.85);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 1rem 0;
  transition: all 0.5s;
  z-index: 997;
}

.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 .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {

.header {
  background-color: rgba(21, 34, 43, 0.85);/*add*/
	}

  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgba(21, 34, 43, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .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;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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);
  }
*/
	/*スマホドロップダウン*/
	.navmenu .dropdown.dropdown-active > ul {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

	/* ドロップダウンの親リンクにアイコンを追加 */
	.navmenu .dropdown > a::after {
  	content: "\F282";
		font-family: "bootstrap-icons";
  	font-size: 12px;
  	margin-left: 8px;
  	transition: transform 0.3s ease;
  	display: inline-block;
	}

	/* 開いてるときにアイコンを回転 */
	.navmenu .dropdown.dropdown-active > a::after {
	  transform: rotate(180deg);
	}

  .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;
  }
	
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background-color: #38434B!important;
}
.footer {
  color: var(--default-color);
  background-color: #38434B;
  font-size: 14px;
  position: relative;
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-main .footer-widget h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h4 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

.social-links {
  margin:0;
	padding: 25px 0;
	display: flex;
	justify-content: center;
}

.social-links strong {
  margin-bottom: 15px;
	font-size: 16px;
}

.social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
	font-family: var(--default-font);
	vertical-align: middle;
}

.footer .footer-bottom .copyright {
  color: color-mix(in srgb, var(--background-color), transparent 20%);
	font-size: 13px;
	vertical-align: middle;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/*add*/
.legal-links li {
  display: inline;
  list-style: circle;
  margin: 0 0.5rem;
}

.legal-links li a {
  color: color-mix(in srgb, var(--background-color), transparent 20%);
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links li a:hover {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h3 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright {
    text-align: center;
		font-size: 14px;
  }
	
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }

  .legal-links li {
    list-style: none;
  }

  .legal-links li a {
    color: color-mix(in srgb, var(--background-color), transparent 20%);
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .legal-links li a:hover {
    color: var(--accent-color);
	}

}

/*cookie yes plugin*/
.cky-consent-bar {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--default-color);
  /*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(--default-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 {
  color: #000;
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 250px;
}
/*
.page-title:before {
  content: "";
  position: absolute;
  inset: 0;
}*/

.page-title h1 {
  font-size: 2.625em;
  font-weight: 700;
  margin-bottom: 10px;
}
/*add*/
.page-title h1,
.page-title p {
  color: #000;
	text-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.page-title {
  color: #000;
  background-position: center top;
  /*padding: 100px 0 80px 0;
	margin-top: 68px;
  text-align: center;
  position: relative;*/
	display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
	}
	
	.page-title h1 {
		font-size: 8vw;
	}
	.page-title h1,
	.page-title p {
  color: #000;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }
	
}

h2.list-title,
.list-title p {
  color: #000;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
h2.list-title ,h2.list-title a { font-size: 1.2em;}

@media (max-width: 576px) {
	h2.list-title ,h2.list-title a { font-size: 1.1em;}
}

/*--------------------------------------------------------------
# ストック素材
--------------------------------------------------------------*/

/* table ストック素材ランク*/
.table-stock-rank {
	margin: 1rem 0.5rem;
	padding: 0.5rem;
}

.table-stock-rank th {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem;
}

.table-stock-rank th > * {
  display: block;/* 子要素を縦並び */
  margin: 0 auto;
}


.table-stock-rank td {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  align-items: center;
  justify-content: center;
}

.table-stock-rank td a {
  color: #0957B5;
}

.table-stock-rank td a:hover {
  color: var(--accent-color);
}

.rank-s, .rank-g, .rank-p{
	font-size: 2.2rem;
	/*font-family:Georgia, "Times New Roman", Times, "serif";*/
	font-family: var(--default-font);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	text-align: center;
	vertical-align: middle;
	width: 55px;
	height: 55px;
}

.rank-s {
background: #1986fa;
background: linear-gradient(45deg, rgba(25, 134, 250, 1) 0%, rgba(194, 224, 255, 1) 50%, rgba(25, 134, 250, 1) 100%);
}
.rank-g {
	background: #CAA906;
	background: linear-gradient(45deg, rgba(202, 169, 6, 1) 0%, rgba(255, 249, 230, 1) 50%, rgba(202, 169, 6, 1) 100%);
}
.rank-p {
	background: #D7D9DB;
	background: linear-gradient(45deg, rgba(215, 217, 219, 1) 0%, rgba(247, 247, 247, 1) 50%, rgba(215, 217, 219, 1) 100%);	
}

.rank-txt{ font-size:0.8em;}

.stock-price {
	display:flex;
	background: var(--background-color);
	border-radius: 0.5rem;
	gap: 0.5em;
	padding: 1rem 0;
}
.stock-price div {
	display: flex; 
  align-items: center;
  justify-content: center;
	margin: 0.25em;
	padding: 0.25em 0.5em;
	border-radius: 0.5rem;
	border: 3px solid #B0B0B0;
	background: var(--background-color);
	font-weight: 500;
	font-size: 1em;
}

.stock-price .kigo {
	margin: 0.25em 0;
	padding: 0.25em 0;
	border-radius: 10px;
	border: none;
	font-weight: 600;
	font-size: 1.4em;
	background: none;
}

/* 素材一覧ページ内リンク */
ul.stock-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #ccc;
	max-width: 600px;
}

/* 各項目 */
ul.stock-tabs li {
  flex: 1 1 auto;
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-right: 3px;
  background: #f9f9f9;
	border-radius: 8px 8px 0 0; 
	overflow: hidden; /* ← a の角丸と揃えるため */
}

ul.stock-tabs li a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
	border-radius: 8px 8px 0 0; 
}

/* アクティブ項目（例：最初の項目） */
ul.stock-tabs li.active {
  background: var(--background-color);
  border-color: var(--accent-color);
	border-radius: 8px 8px 0 0;
}

ul.stock-tabs li.active a {
  color: #000;
	border-bottom: 3px solid var(--accent-color);
	border-radius: 8px 8px 0 0;

}
/*
@media screen and (max-width: 768px) {
  ul.stock-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  ul.stock-tabs li {
    margin-right: 0;
    border-bottom: 1px solid #ccc;
  }
}
*/
@media screen and (max-width: 768px) {
  ul.stock-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 0.5rem;
    border-bottom: none;
    max-width: 100%;
  }

  ul.stock-tabs li {
    margin: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 8px 8px 0 0; /* 上だけ角丸 */
  }

  ul.stock-tabs li a {
    border-radius: 8px 8px 0 0;
  }
}


/*--------------------------------------------------------------
# Stock Video
--------------------------------------------------------------*/
.stock-detail{ margin-top: 20px; }
.stock-detail h1,.stock-detail h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
  padding: 1rem 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe,
.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}

/* 動画タクソノミー一覧ページ用 */
.list-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.list-thumbnail .play-button {
  position: absolute;
  top: 85%;
  left: 8%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: rgba(0,0,0,0.65);
  pointer-events: none;
}

/* 動画詳細ページ用 */
.detail-thumbnail {
  position: static; /*リセット */
}

.detail-thumbnail .play-button {
  position: absolute;
  top: 92%;
  left: 5%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: rgba(0,0,0,0.65);
  pointer-events: none;
}

@media (max-width: 576px) {
	.detail-thumbnail .play-button {
  top: 85%;
  left: 8%;
	}
}

.maker-y {
  background: linear-gradient(transparent 50%, #FCF69F 50%);
	padding: auto 0.3rem;
}

/*h1 動画詳細タイトル*/
.video-title {  
  font-size: 1.2rem;
  padding: 0.5rem 0.3rem;
}

/*動画タクソノミー一覧 h2*/
h2.video-title-taxonomy {
	padding: 0.5rem 0.3rem;
	font-size: 1.1em;
	line-height: 1!important;
}
h2.video-title-taxonomy a {
  display: block;
  width: 100%;
  color: var(--default-color);
  transition: transform 0.3s ease;
}

/*アイコン追加*/
h2.video-title-taxonomy a::before {
  content: "\F231";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  padding: 0;
	margin-right: 0.3em;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: 0;
}

@media (max-width: 576px) {
	h2.video-title-taxonomy a::before {
  font-size: 14px;
  padding: 0;
	margin-right: 0.3em;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
	}
}

h2.video-title-taxonomy a {
	color: var(--default-color);
	transition: transform 0.3s ease;
}

h2.video-title-taxonomy :hover {
	color: var(--accent-color);
}


/*動画カテゴリ名*/
.video-category-list h3::before {
  content: "\F231";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: middle;
}

.video-category-list h3 {
  font-size: 1.1rem;
  padding: 0.5rem 0.3rem;
	color: var(--default-color);
	transition: transform 0.3s ease;
}

.video-category-list h3:hover {
	color: var(--accent-color);
}

.video-category-list .category-item {
  display: block;
  overflow: hidden;
}

.video-category-list .category-inner {
  transition: transform 0.3s ease;
	text-align: center;
}

.video-category-list .category-item:hover .category-inner {
  transform: translateY(5px) scale(1.05);
}

.video-category-list .category-inner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

h3.category-name {
  font-size: 1.1rem;
  padding: 0.5rem 0.3rem;
  margin: 0 auto;
  text-align: center;
}

/* TOP 動画タグ並び */
.videotag-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
	text-align: center;
  gap: 8px;
}

.videotag-wrap .tags-mv a {
	font-size: 1.1rem;
}


/* 動画データtable*/
.table-stock td {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.table-stock td a {
  color: #0957B5;
}

.table-stock td a:hover {
  color: var(--accent-color);
}

.tags-mv {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.tags-mv a {
	padding: 0.2em 0.5em; 
	font-size: 0.9rem;
	background-color:#D2EAF1;
	color: var(--default-color)!important;
	border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.tags-mv a:hover {
  background-color: #E9F5F8;
  color: #000;
}

.video-des-h {/*h2*/
	padding: 0;
	margin: 0 0 0.5em 0.5em;
	font-size: 1em!important;
}

.video-des {
	padding: 0 0 1em 0.5em;
	line-height: 1.5;
	word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

@media (min-width: 992px) { 

.video-des {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 1rem;
  border: 1px solid #fff;
  background-color: #fff;
	}
}


.table-detail th{
 font-size: 0.9em;
	width: 22%;
	text-align: center;
}
.table-detail td{
	width: auto;
}

.table-detail-sp th{
	width: 30%;
	text-align: center;
}
.table-detail-sp td{
	width: auto;
}

@media (max-width: 768px) {
	.table-detail-sp th{
	width: 30%;
	text-align: center;
	font-size: 0.9em;
	}
}

/*
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}
*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 84px;
  overflow: clip;/* はみ出た分をカット*/
	padding: 0;
	margin: 0;
}

/* header固定
@media (max-width: 1199px) {

  section,
	.section {
    scroll-margin-top: 76px;
  }
}
*/

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

.section-title h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative;
}

.section-title h1:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #0C74F1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h2 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative;
}

/**/
@media (max-width: 576px) {
  .section-title h2.h2-fs {
    font-size: 1.6em;
  }
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #0C74F1;
	/*background: var(--accent-color);*/
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	margin-bottom: 1.5rem;
  position: relative;
	/*add*/
	font-family: "Roboto", serif;
	padding-top: 1.5rem;
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

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

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

.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 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero 3 Section メイン動画
--------------------------------------------------------------*/
.hero-3 {
  padding: 0;
  overflow: hidden;
  position: relative;
}
/*
.hero-3,
.hero-3 .hero-container {
  width: 100%;
}*/

.hero-3 .hero-container {
  position: relative;
  width: 100%;
	height: auto;
  object-fit: cover;
  padding: 0;
}

.hero-3 .hero-container {
  padding-top: 0; /* JSで上書きするから初期値は0に */
}

.hero-3 .hero-container video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-3 .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.img-fluid.w100 { width: 100%; height: auto; display: block; }
/*
.hero-3 .hero-container video {
  width: 100%;
  max-width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}*/

@media screen and (max-width: 575px) {
.hero-3 .hero-container {
  position: relative;
  width: 100%;
	min-height: auto !important;
  height: auto;
  overflow: hidden;
}

.hero-3 .hero-container video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

}
/*
.hero-3 .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-3 .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-3 .hero-container .container {
  z-index: 3;
}

.hero-3 .hero-container .hero-content {
  padding-right: 30px;
}

.hero-3 .hero-container .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero-3 .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-3 .hero-container .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }
}

.hero-3 .hero-container .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .hero-3 .hero-container .hero-content p {
    font-size: 1.1rem;
    text-align: center;
  }
}

.hero-3 .hero-container .hero-content .cta-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .hero-3 .hero-container .hero-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.hero-3 .hero-container .hero-content .cta-buttons a {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

@media (max-width: 576px) {
  .hero-3 .hero-container .hero-content .cta-buttons a {
    width: 100%;
    max-width: 240px;
  }
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-secondary {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: var(--default-color);
  border: 2px solid var(--surface-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
  background-color: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (hover: none) {
	.hero-3 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
  background-color: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	}
}

@media (max-width: 992px) {
  .hero-3 .hero-container .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.hero-3 .hero-container .stats-card {
  background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .stats-card .stats-header {
  text-align: center;
  margin-bottom: 25px;
}

.hero-3 .hero-container .stats-card .stats-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-3 .hero-container .stats-card .stats-header .decoration-line {
  height: 3px;
  width: 70px;
  background-color: var(--accent-color);
  margin: 0 auto;
}

.hero-3 .hero-container .stats-card .stats-grid {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr);*/
  gap: 25px;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item {
  display: flex;
  align-items: center;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-icon {
  font-size: 1.8rem;
  height: 55px;
  width: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-content p {
  opacity: 0.8;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .hero-3 .hero-container .stats-card .stats-grid {
		/*grid-template-columns: 1fr;*/
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero-3 .hero-container {
    text-align: center;
  }
}

.hero-3 .event-ticker {
  background-color: var(--accent-color);
  padding: 25px 0;
  color: var(--contrast-color);
}

.hero-3 .event-ticker .ticker-item {
  display: flex;
  align-items: center;
}

.hero-3 .event-ticker .ticker-item .date {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 10px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-3 .event-ticker .ticker-item .title {
  margin-right: 15px;
  font-size: 0.95rem;
}

.hero-3 .event-ticker .ticker-item .btn-register {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.hero-3 .event-ticker .ticker-item .btn-register:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero 4 Section 水中撮影動画できるまでの暫定
--------------------------------------------------------------*/
.hero-4 {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-4 .hero-container {
  position: relative;
  width: 100%;
	height: auto;
  object-fit: cover;
  padding: 0;
}

.hero-4 .hero-container {
  padding-top: 0;
}

.hero-4 .hero-container video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-4 .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.img-fluid.w100 { 
	width: 100%;
	height: auto;
	display: block;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 30px 0;
  overflow: hidden;
}

.hero-2 .product-hero-carousel .swiper-wrapper {
  height: auto !important;
}

.hero-2 .product-hero-carousel .swiper-slide {
  padding: 40px 0;
}

.hero-2 .hero-content-wrapper .container-fluid {
  max-width: 1400px;
}

.hero-2 .hero-image-section {
  position: relative;
  text-align: center;
}

.hero-2 .hero-image-section .hero-product-image {
  max-height: 450px;/*max-height: 500px;*/
  width: auto;
  transition: all 0.3s ease;
	border-radius: 20px;
}

.hero-2 .hero-image-section .hero-product-image:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hero-2 .hero-image-section {
    margin-bottom: 0rem;/* margin-bottom: 3rem;*/
  }

  .hero-2 .hero-image-section .hero-product-image {
    max-height: 400px;
  }
}

.hero-2 .floating-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.hero-2 .floating-badge.exclusive {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero-2 .floating-badge {
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 6px 16px;
  }
}

.hero-2 .hero-text-content {
  padding: 0 3rem;
}

@media (max-width: 992px) {
  .hero-2 .hero-text-content {
    padding: 0 1rem;
    text-align: center;
  }
}

.hero-2 .category-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), white 85%);
  color: var(--accent-color);
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-2 .display-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero-2 .display-title .accent-text {
  font-size: 1.2rem;
  color: var(--accent-color);
  position: relative;
}

.hero-2 .display-title .accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  opacity: 0.3;
}

@media (max-width: 992px) {
  .hero-2 .display-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-2 .display-title {
    font-size: 2rem;
  }
}

.hero-2 .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 80%, transparent 20%);
  margin-bottom: 2rem;
  max-width: 480px;
}

@media (max-width: 992px) {
  .hero-2 .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  .hero-2 .price-section {
    justify-content: center;
  }
}

.hero-2 .action-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-2 .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-2 .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-2 .btn-primary-action {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, black 25%));
  color: var(--contrast-color);
  padding: 0.9rem 3.4rem;/*padding: 1rem 3.5rem;*/
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1em;
	letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/*アイコン追加*/
.hero-2 .btn-primary-action::after {
	color: var(--contrast-color);
	display: inline-block;
  content: "\F138"; 
  font-family: "bootstrap-icons";
  padding-left: 0.5em;
	font-size: 17px;
  transition: transform 0.3s ease;
}
.hero-2 .btn-primary-action:hover::after {
  transform: translateX(5px);
}

.hero-2 .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

@media (hover: none){
	.hero-2 .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
	}
}

.hero-2 .swiper-pagination {
  position: relative;
  margin-top: 0; /*margin-top: 3rem;*/
}

.hero-2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-2 {
    padding: 60px 0;
  }
}
/*--------------------------------------------------------------
# Hero 5 Section 水中撮影用全画面
--------------------------------------------------------------*/
.hero-5 {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-5 .hero-slider {
  width: 100%;
  height: 80vh;/*100vh*/
  min-height: 500px;
  aspect-ratio: 16 / 9;
	object-fit: cover;
}

.hero-5 .hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero-5 .hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
}

.hero-5 .hero-slider .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-5 .hero-slider .slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-5 .hero-slider .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-5 .hero-slider .slide-content .slide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--contrast-color);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.hero-5 .hero-slider .slide-content h1 {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--contrast-color);
  margin-bottom: 24px;
  line-height: 1.1;
}


@media (max-width: 1199px) {
	
	.hero-5 .hero-slider {
  	width: 100%;
  	height: auto;
  	aspect-ratio: 16 / 9;
		/*object-fit: cover;*/
		object-fit: contain;
}

	.hero-5 .hero-slider .swiper-wrapper {
  	height: auto !important;
	}

	.hero-5 .hero-slider .swiper-slide {
  	position: relative;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	height: auto;
	}

  .hero-5 .hero-slider .slide-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
	
	.hero-5 .hero-slider {
  	width: 100%;
  	height: auto;
  	aspect-ratio: 16 / 9;
		/*object-fit: cover;*/
		object-fit: contain;
}

	.hero-5 .hero-slider .swiper-wrapper {
  	height: auto !important;
	}

	.hero-5 .hero-slider .swiper-slide {
  	position: relative;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	height: auto;
	}
}

@media (max-width: 576px) {
  .hero-5 .slide-bg {
    background-size: contain; /* ← cover から変更 */
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .hero-5 .hero-slider,
  .hero-5 .swiper-slide {
    height: auto;
  }
}


.hero-5 .hero-slider .slide-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 576px) {
  .hero-5 .hero-slider .slide-content p {
    font-size: 16px;
  }
}

.hero-5 .hero-slider .slide-content .btn-shop {
  display: inline-block;
  padding: 16px 48px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--contrast-color);
  background: transparent;
  border: 1px solid var(--contrast-color);
  transition: all 0.5s ease;
}

.hero-5 .hero-slider .slide-content .btn-shop:hover {
  background: var(--contrast-color);
  color: var(--default-color);
}

.hero-5 .hero-slider .swiper-pagination {
  bottom: 40px;
}

.hero-5 .hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid var(--contrast-color);
  opacity: 0.6;
  margin: 0 8px;
  transition: all 0.4s ease;
}

.hero-5 .hero-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
}

.service-item .img {
  overflow: hidden;
	aspect-ratio: 16 / 9;
}

.service-item .img img {
  transition: 0.6s;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
/*h1 h2 */
.service-item .display-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 1rem 0;
  color: var(--heading-color);
	text-align: center;
}

.service-item .display-title .accent-text {
  font-size: 1.2rem;
  color: var(--accent-color);
  position: relative;
}

.service-item .display-title .accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  opacity: 0.3;
}

@media (max-width: 992px) {
  .service-item .display-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .service-item .display-title {
    font-size: 1.5rem;
  }
}

.service-item p.lead-text{ 
	padding: 0 1rem;
	line-height: 1.8;
}

/*ボタン*/
.service-item .btn-primary-action::after {
	color: var(--contrast-color);
	display: inline-block;
  content: "\F138"; 
  font-family: "bootstrap-icons";
  padding-left: 0.5em;
	font-size: 17px;
  transition: transform 0.3s ease;
}
.service-item .btn-primary-action:hover::after {
  transform: translateX(5px);
}

.service-item .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

@media (hover: none){
	.service-item .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
	}
}

.service-item .btn-primary-action {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, black 25%));
  color: var(--contrast-color);
  padding: 0.9rem 3.4rem;/*padding: 1rem 3.5rem;*/
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1em;
	letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	display: block;
	margin: 0 auto;
	width: fit-content;
}

@media (max-width: 576px) {
  .service-item .btn-primary-action {
			margin-bottom: 1rem;
  }
}

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

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*サイト内リンクボタン　実績一覧、カメラマン、ストック素材*/

.insite-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
	gap: 0.75rem;
}

.btn-insite {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #004C5F;
  background-color: transparent;
  border: 2px solid color-mix(in srgb, #004C5F, transparent 50%);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-insite i { padding-right: 0.5rem; }

.btn-insite:hover {
  color: #FFFFFF;
  background-color: #004C5F;
}

@media (max-width: 768px) {
  .insite-section {
    flex-direction: column; 
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn-insite {
    width: 90%;
    margin: 0 auto;
		text-align: center;
  }
}

.fs-11 {  font-size: 1.1rem!important;}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
	padding: 0;
	margin: 0;
}

.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: 50px;
  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(--default-color);
}

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

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

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

.portfolio .portfolio-item {
  position: relative;
  overflow: auto;
	background: color-mix(in srgb, #F7F7F7, transparent 10%);
	/*height: 15vh;*/
	border-right: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	min-height: 11.25em;/*17vh28vh*/
	max-height: 11.25em;/*1734vh*/
  height: auto;
}

@media (max-width: 576px) {
  .portfolio .portfolio-item {
    min-height: 6em;/*30vh*/
    height: auto;
    overflow: auto;
  }
}

.portfolio-item .jsk { 
	padding: 10px 0 0 0;
	display: flex;
	flex-direction: column;
}

.jsk-ttl { 
	font-weight: 600;
	font-size: clamp(12px, 4vw, 1rem);
	padding-left: 10px;
	/*text-overflow: ellipsis;/*改行オーバーしたら記号*/
}

/*タイトル「部分のインデント調整用*/
.jsk-hk{ 
	padding-left: 10px;
	font-size: clamp(11px, 3vw, 14px);
}

@media (max-width: 576px) {
	.jsk-hk{ 
	padding-left: 10px;
	font-size: 0.9em;
	}
}


.text-7 {
  font-size: clamp(10px, 3vw, 14px);/*clamp(最小値, 推奨値, 最大値);*/
  white-space: nowrap;
}
/*hover部分*/
.portfolio .portfolio-item .portfolio-info {
  opacity: 1; bottom: 0;/*常時表示*/
  /*position: absolute;
  top: 35px;
  left: 12px;
  right: 12px;
  bottom: -100%;*/
  z-index: 3;
  transition: all ease-in-out 0.5s;
  /*background: color-mix(in srgb, var(--surface-color), transparent 10%);*/
  padding: 8px 10px;
}

.portfolio .portfolio-item .portfolio-info h3, .portfolio .portfolio-item .portfolio-info h4 {
  font-size: 16px;
  font-weight: 600;
  padding-right: 15px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 15px;
}
/*0304追加*/
.portfolio-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* 高さを固定または親要素に合わせる */
  position: relative;
}

.portfolio-info {
  margin-top: auto; 
	padding: 10px;
}

.portfolio-item .h-auto { height: auto;}

/* 役割ラベル*/
.label-container {
  display: flex;
  gap: 0.5em; 
  flex-wrap: wrap;
}

.lbl {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  background-color: var(--default-color);
  color: var(--surface-color);
  padding: 0.3em 1em;
  gap: 0.3em; 
	font-size: 12px;
	overflow: visible;
	margin-right: 0.3em;
}

.label-uwp::before,.label-lnd::before {
	display: inline-block;
  content: "\F220"; 
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}
/*水中撮影*/
.label-uwp{
	background-color:rgba(180, 213, 247, 0.8);
	color:rgba(0, 0, 0, 1.0);
	/*background-color:rgba(180, 213, 247, 0.8);background-color:#0070e0;*/
	/*color: var(--surface-color); */
}
/*撮影（水中・陸上）*/
.label-lnd{
	background-color:rgba(173,221,223, 0.8);
	color:rgba(0, 0, 0, 1.0);
	/*background-color:darkcyan;*/
	/*color: var(--surface-color); */
}
/*制作*/
.label-prd::before {
	display: inline-block;
  content: "\F21B"; 
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}
/*出演*/
.label-stg::before {
	display: inline-block;
  content: "\F677"; 
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}
/*映像提供*/
.label-vdp::before {
	display: inline-block;
  content: "\F617"; 
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}
/*発見*/
.label-dsc::before {
	display: inline-block;
  content: "\F333"; 
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}
/*中村宏治*/
.label-nk::before, .label-kt::before, .label-oy::before{
	display: inline-block;
  content: "\F4DA";
  font-family: "bootstrap-icons";
  padding-right: 0.3em;
	font-size: 16px;
}

/*制作*/
.label-prd{
	color:rgba(0, 0, 0, 1.0);
	background-color:rgba(239,219,162,0.8);
	/*background-color:darkgoldenrod;*/
	/*color: var(--surface-color);*/
}
/*出演*/
.label-stg{
	color:rgba(0, 0, 0, 1.0);
	background-color:rgba(242,193,157,0.8);
	/*background-color:chocolate;*/
	/*color: var(--surface-color); */
}
/*映像提供*/
.label-vdp{
	color:rgba(0, 0, 0, 1.0);
	background-color:rgba(153,229,244,1.0);
	/*font-weight: 600;*/
	/*background-color:#0DCAF0;*/
}
/*発見*/
.label-dsc{
	/*background-color:#FFC107;*/
	color:rgba(0, 0, 0, 1.0);
	background-color:rgba(250,225,151,1.0);
	/*font-weight: 600;*/
}

/*中村宏治*/
.label-nk{
	background-color:rgba(0,87,173,1);
	color: var(--surface-color); 
}

/*窪寺*/
.label-kt{
	background-color:rgba(0,124,90,1);
	color: var(--surface-color); 
}
/*奥村*/
.label-oy{
	background-color:rgba(0,112,224,1);
	color: var(--surface-color); 
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.blog .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog .card-item:hover .card-img img {
  transform: scale(1.1);
}

.blog .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.blog .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.blog .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.blog .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blog .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.blog .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.blog .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.blog .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.blog .card-item .card-content {
  padding: 2rem;
}

.blog .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.blog .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

.post-category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
/* 記事一覧 front-page, category, tag, allposts */

.recent-posts {
  padding: 30px 0;
  position: relative;
  z-index: 0;
}

.recent-posts::before {
  content: "";
  position: absolute;
  inset: 0;
}

.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
}
/*h1*/
.archive-title {
  font-size: 2rem;
  margin: 0;
}

@media (max-width: 768px) {
  .page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
  }
  /*h1*/
  .archive-title {
    font-size: 1.4rem;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  }
  /*h1*/
  .archive-title {
    font-size: 1.4rem;
    margin: 0 2rem;
		line-height: 1.8;
  }
}

/*動画taxonomyページ*/
.taxonomy-header {
  display: flex;
	margin-top: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;

}
/*h1*/
.taxonomy-title {
  font-size: 2rem;
  margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
  .taxonomy-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  }
  /*h1*/
  .taxonomy-title {
    font-size: 1.4rem;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .taxonomy-header{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  }
  /*h1*/
  .taxonomy-title {
    font-size: 1.4rem;
    margin: 0 2rem;
		line-height: 1.8;
  }
}

/* 最新記事一覧スライダー */

.recent-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.recent-posts .blog-posts-slider .swiper-pagination {
  position: relative;
  margin-top: 50px;
}

.recent-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.recent-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.recent-posts .blog-card {
  background: var(--surface-color);
  border-radius: 8px;/*20px*/
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recent-posts .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}
/*
.recent-posts .blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.recent-posts .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
*/

.recent-posts .blog-card {
  height: auto;
}

.recent-posts .blog-image {
  height: auto !important;
	position: relative;
  width: 100%;
  padding-top: 56.25%; /*16:9*/
  overflow: hidden;
}

.recent-posts .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recent-posts .blog-image {
  height: auto !important;
}


/* 記事のカテゴリ .entry-category tag共通 */
.recent-posts .category-badge a {
  background-color: #D2EAF1;
  color: var(--default-color);
  padding: 3px 8px;
  border-radius: 0.25rem;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  z-index: 2;
}
.recent-posts .category-badge a:hover {
  background-color: #E9F5F8;
  color: #000;
}

.recent-posts .blog-image:hover img {
  transform: scale(1.05);
}

.recent-posts .blog-content {
  padding: 30px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .recent-posts .blog-content {
    padding: 25px 18px;
  }
}

.recent-posts .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.recent-posts .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.recent-posts .author-info .author-details {
  display: flex;
  flex-direction: column;
}

.recent-posts .author-info .author-details .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}

.recent-posts .author-info .author-details .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .blog-footer {
  display: flex;
	flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .recent-posts .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.recent-posts .reading-time {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
	margin-bottom: 5px;
}

.recent-posts .reading-time i {
  margin-right: 5px;
	margin-bottom: 5px;
  font-size: 14px;
}

.recent-posts .card-text {
	margin-top: 10px;
}


.recent-posts .btn-read-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.recent-posts .btn-read-more span {
  margin-right: 8px;
}

.recent-posts .btn-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.recent-posts .btn-read-more:hover {
  transform: translateX(5px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  color: var(--contrast-color);
}

.recent-posts .btn-read-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .recent-posts .btn-read-more {
    align-self: flex-end;
  }
}

/*--------------------------------------------------------------
# 最新記事一覧スライダー　記事一覧共通
--------------------------------------------------------------*/

/*記事一覧*/
.recent-posts h2, .swiper-slide h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.recent-posts h2 a, .swiper-slide h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.recent-posts h2 a:hover, .swiper-slide h3 a:hover {
  color: var(--accent-color);
}

/*ホーム記事一覧*/
.front-postlist .blog-card {
  height: auto;
}

.front-postlist .blog-image {
  height: auto !important;
	position: relative;
  width: 100%;
  padding-top: 56.25%; /*16:9*/
  overflow: hidden;
}

.front-postlist .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide.front-postlist {
  height: auto !important;
}

.front-postlist.is-new h3 {
  position: relative;
}

.front-postlist.is-new h3::before {
  content: "NEW";
  position: absolute;
  top: -30px;
  left: -25px;
  width: 60px;
  height: 25px;
  background-color:rgba(244,248,96,0.8);
  color: #000;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  z-index: 10;
}

/*スマホサイズ位置調整*/
@media (max-width: 768px) {
  .front-postlist.is-new h3::before {
	top: -25px;
  left: -35px;
	}
}

/* front-post title */
.recent-posts .section-title h2 {
  font-size: 32px;
}
/* post見出し */
.front-postlist h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.front-postlist h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.front-postlist h3 a:hover {
  color: var(--accent-color);
}


/*page送り*/
.pagination-nav {
  display: flex;
  justify-content: center;
	margin-bottom: 2rem;
}

.pagination-nav .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
	background-color: transparent;
  color: var(--default-color);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* ホバー時 */
.page-numbers:hover {
  background-color: #D2EAF1;
  color: var(--accent-color);
}

/* 現在のページ */
.page-numbers.current {
  background-color: #D2EAF1;
  color: var(--default-color);
}

/* 「前へ」「次へ」リンク */
.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 1rem;
  border-radius: 999px;
  background-color: transparent;
  color: var(--default-color);
  font-weight: normal;
	border: 1px solid #D2EAF1;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background-color:#D2EAF1;
}

/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/

.entry-title {
	font-size: 1.8rem;
	line-height: 1.6;
}

.entry-category, .entry-category .tags, .entry-category a, .entry-category .tags a {
	color: var(--default-color);
  transition: background-color 0.3s ease;
}

.entry-category, .entry-category .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.entry-category i.bi {
	margin-left: 1rem;
}

@media (max-width: 576px) {
	.entry-category .tags {
	margin-left: 0;
	}
}

.entry-category a {
	padding: 0.2em 0.5em; 
	font-size: 0.8rem;
	background-color:#D2EAF1;
	border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}
.entry-category a:hover {
  background-color: #E9F5F8;
  color: #000;
}

.entry-category .tags a {
	padding: 0.2em 0.5em;  
	font-size: 0.8rem;
	background-color:#D2EAF1;
	border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.entry-category .tags a:hover {
  background-color: #E9F5F8;
  color: #000;
}

.cat-icon i {
	font-size: 13px;
}

.updated i {
	font-size: 0.85rem;
	padding: 2px 5px; 
}

/*本文*/
.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content img {
  padding-bottom: 1rem;
}

/*本文リンク*/
.entry-content a {
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .entry-content a {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/*--------------------------------------------------------------
# Sidebar post single
--------------------------------------------------------------*/

h2.side-title { 
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.6;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
  margin: 1em 0;
  color: var(--default-color);
}

h3.side-post-title { 
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.6;
	margin: 0;
}

.widget-title {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.6;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
  margin: 1em 0;
  color: var(--default-color);
}

#widget-area ul li {
  list-style: none;
  margin-bottom: 0.5em;
}

#widget-area ul li a {
  display: block;
  padding: 0.75em 1em;
  background-color: #F7F7F7;
  border-radius: 0.25rem;
  text-decoration: none;
  color: var(--default-color);
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#widget-area ul li a:hover {
  background-color: #D2EAF1;
  color: var(--default-color);
}

/*
.category-dropdown {
	width: 70%;
	padding: 0.3rem;
}*/

.sidebar-thumbnail {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  clip-path: inset(0);
	margin-top: -24px;/*余白消し*/
  padding: 40px 0; /* 少し減らす */
  min-height: 10vh; /* 画面の半分の高さ */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  /*aspect-ratio: 16 / 9;*/
  z-index: 1;
}

.call-to-action:before {
  content: none;
  /*background: color-mix(in srgb, var(--background-color), transparent 65%);
  position: absolute;
  inset: 0;
  z-index: 2;*/
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action h3.text-wh {
  font-size: 1.4rem;
  font-weight: 700;
  color:#F7F7F7!important;
	line-height: 1.8;
	text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px){
	.call-to-action h3.text-wh {
  font-size: 28px;
	}
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action p.text-wh {
  color:#F7F7F7!important;
	text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
	margin-top: 1rem;
}

@media (max-width: 768px){
	.call-to-action p.text-wh {
		margin: 1rem;
	}
}


.call-to-action .cta-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, black 25%));
  color: var(--contrast-color);
  padding: 0.9rem 3.4rem;/*padding: 1rem 3.5rem;*/
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1em;
	letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	display: inline-block;
}

.call-to-action .cta-btn::after {
	color: var(--contrast-color);
	display: inline-block;
  content: "\F138"; 
  font-family: "bootstrap-icons";
  padding-left: 0.5em;
	font-size: 17px;
  transition: transform 0.3s ease;
}
.call-to-action .cta-btn:hover::after {
  transform: translateX(5px);
}

.call-to-action .cta-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

@media (hover: none){
	.call-to-action .cta-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
	}
}


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

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 700;
  margin: 10px 0;
}

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

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

@media (max-width: 576px) {
  .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 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.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;
  font-size: 15px;
}

.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%);
}


/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
}

.btn-read-right {
	display: flex;
	justify-content: flex-end;
	margin-top: -40px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-read-more span {
  margin-right: 8px;
}

.btn-read-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover {
  transform: translateX(5px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  color: var(--contrast-color);
}

.btn-read-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .btn-read-more {
    align-self: flex-end;
  }
}


/*--------------------------------------------------------------
# wave Section
--------------------------------------------------------------*/

/*波上*/
.wave-t {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #FFF;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.wave-t .wave-t-area {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave-t .wave1 use {
  animation: move-forever1 20s linear infinite;
  animation-delay: -2s;
  /*fill: var(--default-color);*/
  fill: #0A72F1;
  opacity: 0.6;
}

.wave-t .wave2 use {
  animation: move-forever2 16s linear infinite;
  animation-delay: -2s;
  /*fill: var(--default-color);*/
  fill: #0A72F1;
  opacity: 0.4;
}

.wave-t .wave3 use {
  animation: move-forever3 12s linear infinite;
  animation-delay: -2s;
  /*fill: var(--default-color);fill: #40474C;*/
  fill: #38434B;
}
/*波下*/
.wave-b {
  width: 100%;
  overflow: hidden;
  position: relative;
	background: linear-gradient(45deg, color-mix(in srgb,  #0A72F1, #000 10%), #0A72F1);
  background: #053878;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.wave-b .wave-b-area {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave-b .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  /*fill: var(--default-color);*/
	fill: #8dd8ff;
  opacity: 0.8;
}

.wave-b .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  /*fill: var(--default-color);*/
  fill: #01A4E0;
  opacity: 0.4;
}

.wave-b .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--background-color);
  opacity: 1;
	/*fill: var(--background-color);*/
}


@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

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

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

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

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

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


/*nami 下*/
.wave-background {
	background-color: #38434B;
  /*--background-color: #38434B;*/
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
}


.waveb-background {
  background: linear-gradient(180deg, #000, color-mix(in srgb, #0A72F1, #000 50%));
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}
/*--------------------------------------------------------------
# home↑ここまで
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 各Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Features 1 Section 
--------------------------------------------------------------*/
#features-1 .section{
	margin-top: 0;
	padding-top: 0;
}

#features-1 .container,
#features-1 .features-stack {
  padding-top: 0;
  margin-top: 2.5rem;
}

#features-1 [data-aos] {
  transform: none !important;
  opacity: 1 !important;
}

/*冒頭文*/
#features-1.features-stack h1.section-heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--default-color);
	text-align: center;
}
/*水中撮影*/
.features-stack h1.uwp-h{ 
	font-size: 1.2em!important;
	line-height: 1.6!important;
}

#features-1.features-stack h2.section-heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--default-color);
	text-align: center;
}

@media (max-width: 768px) {
  .features-stack h1.section-heading,.features-stack h2.section-heading {
    font-size: 5vw;
  }
}

@media (max-width: 576px) {
  .features-stack h1.section-heading,.features-stack h2.section-heading {
    font-size: clamp(16px, 10vw, 32px);
  }
}
/*
.feature-info h2 {
	font-size: 1.1rem;
}*/

.features-stack .intro-text {
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.8;
}

.intro-text-sc {
  font-size: 1em;
  margin-bottom: 0;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .features-stack .intro-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .feature-info .intro-text {
    margin-bottom: 0;
		padding-bottom: 0;
  }
}

/*冒頭特長*/
.process-steps {
  margin-top: 0;
}

.process-steps .step-item {
  display: flex;
  gap: 1rem; /*gap: 1.5rem;*/
  margin-bottom: 1.5rem;
  /*position: relative;*/
}

@media (max-width: 768px) {
	 .process-steps {
		margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
	 .process-steps {
		margin-top: 1rem;
  }
  .process-steps .step-item {
    gap: 1rem;
		margin: 0 1rem;
		margin-bottom: 1rem;
  }

}

.process-steps .step-item .step-indicator {
  background-color: rgba(0,0,0,1);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 5px 15px color-mix(in srgb, rgba(0,0,0,1), transparent 70%);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .process-steps .step-item .step-indicator {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.process-steps .step-item:hover .step-indicator {
  transform: scale(1.1);
}

/*撮影TOP文字サイズ調整分*/
/*改行禁止*/
.nowrap {
  white-space: nowrap; 
  display: inline-block;
}

.step-details h2, .step-details h3  {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

/*撮影TOP文字サイズ調整*/
.step-details h2.h2-fs  {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}
.step-details h2.h2-fs span  {
	font-size: 0.95em!important;
}

@media (max-width: 576px) {
  .step-details h2, .step-details h3  {
    font-size: 1.125rem;
  }
}

.step-details p {
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .step-item {
    margin-bottom: 1.5rem;
  }
}

/*冒頭*/

.project-features {
  margin-bottom: 2.5rem;
	padding-left: 2rem;
}

.project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1rem;
}
.project-features h4 {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
	/*add*/
	margin-top: 1.2rem;
	font-size: 1.2rem;
	font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--default-color);
}

.feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

/*白抜きボタン*/
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.action-btn:hover i {
  transform: translateX(5px);
}

.action-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/*--------------------------------------------------------------
# Features-2 Section /撮影の種類
--------------------------------------------------------------*/

.features-2 {
  background: linear-gradient(to bottom, #ffffff, #f0f8fa);
}

/*撮影機材　背景*/
.bg-camera { 
	background: linear-gradient(to bottom, #f0f8fa, #ffffff);
}

/*ストック素材　背景*/
.bg-stock { 
	background: linear-gradient(to bottom, #F7E0D5, #ffffff);
}
.bg-white { 
	background: #ffffff;
}

#features-2 .container,
#features-2 .features-stack {
  padding-top: 1rem;
  margin-top: 0;
}

#features-2 .features-stack .features-row {
  padding-top: 0;
  margin-top: 1rem;
}

#features-2 [data-aos] {
  transform: none !important;
  opacity: 1 !important;
}


@media (max-width: 992px) {
  .features-stack .feature-row {
    margin-bottom: 0rem;
  }
	  .feature-row {
    align-items: flex-start !important;
  }
}

/*16:9を追加　.media-wrapper 16:9 .media-wrapper2 4:3*/
.features-stack .media-wrapper, .features-stack .media-wrapper2 {
  position: relative;
  /*border-radius: 1.25rem;*/
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-stack .media-wrapper::before {
  content: "";
  display: block;
	padding-top: 56.25%;/*16:9*/
}

.features-stack .media-wrapper2::before {
  content: "";
  display: block;
  padding-top: 75%;/*4:3*/
}

.features-stack .media-wrapper img, .features-stack .media-wrapper2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.features-stack .media-wrapper:hover img, .features-stack .media-wrapper2:hover img {
  transform: scale(1.05);
}

.features-stack h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.features-stack p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 992px) {

  .features-stack h3 {
    font-size: 1.3rem;
  }

  .features-stack p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .features-stack .feature-row {
    margin-bottom: 2.5rem;
  }

  .features-stack h3 {
    font-size: 1.2rem;
  }

  .features-stack .action-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Team Section　水中撮影カメラマン
--------------------------------------------------------------*/
.team {
  /*--background-color: #f0f8fa;*/
	--accent-color: #004c5f;
  --surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.team .team-intro .intro-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.team .team-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
	text-align: center;
	justify-content: center;
}

.team .team-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
}


.team .team-grid .member-hexagon {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.team img {
	aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  /*cursor: pointer;*/
}

/*
.team .team-grid .member-hexagon .hexagon-inner:hover {
  transform: scale(1.05) ;
}

.team .team-grid .member-hexagon .hexagon-inner:hover img {
  transform: scale(1.1);
}

.team .team-grid .member-hexagon .hexagon-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
*/
.team h3 {
  font-size: 1.2rem;
  margin: 10px 0 4px 0;
  font-weight: 600;
}

.team h3 span.en {
  font-size: 0.9rem;
  margin-left: 5px;
	font-style: italic;
}


.team span {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 1;
}

.team p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 1;
}

.team .team-intro {
    font-size: 1.1rem;
	  padding: 0.5rem 0 0 0;
	text-align: center;
  }

@media (max-width: 1200px) {
  .team .team-intro .intro-content h3 {
    font-size: 1.9rem;
  }
}


/*--------------------------------------------------------------
# Steps-1 Section /撮影の流れ
--------------------------------------------------------------*/

.steps-1 {
  /*--background-color: #f0f8fa;*/
	--accent-color: #004c5f;
  --surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.steps-1 .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.steps-1 .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.steps-1 .process-item:last-child {
  padding-bottom: 0;
}

.steps-1 .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-1 .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps-1 .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
	font-size: 1rem;
}

.steps-1 .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.steps-1 .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.steps-1 .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.steps-1 .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps-1 .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.steps-1 .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.steps-1 .process-item .step-content p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.steps-1 .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .steps-1 .process-container {
    padding: 1rem 0;
  }

  .steps-1 .process-item {
    padding-bottom: 2rem;
  }

  .steps-1 .process-item .content {
    border-width: 1px;
  }

  .steps-1 .process-item .content:hover {
    transform: translateY(-5px);
  }

  .steps-1 .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .steps-1 .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .steps-1 .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .steps-1 .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .steps-1 .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .steps-1 .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .steps-1 .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}
/*--------------------------------------------------------------
# Steps-2 Section /素材申込の流れ
--------------------------------------------------------------*/

.steps-2 {
  /*--background-color: #f0f8fa;*/
	--accent-color: #CD5A13;
  --surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.steps-2 .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.steps-2 .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.steps-2 .process-item:last-child {
  padding-bottom: 0;
}

.steps-2 .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-2 .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps-2 .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
	font-size: 1rem;
}

.steps-2 .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.steps-2 .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.steps-2 .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.steps-2 .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps-2 .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.steps-2 .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.steps-2 .process-item .step-content p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.steps-2 .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .steps-2 .process-container {
    padding: 1rem 0;
  }

  .steps-2 .process-item {
    padding-bottom: 2rem;
  }

  .steps-2 .process-item .content {
    border-width: 1px;
  }

  .steps-2 .process-item .content:hover {
    transform: translateY(-5px);
  }

  .steps-2 .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .steps-2 .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .steps-2 .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .steps-2 .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .steps-2 .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .steps-2 .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .steps-2 .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq {
  position: relative;
  z-index: 0;
}

.faq::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/788875.webp") no-repeat left bottom;
  background-size: auto;
  opacity: 0.3;
  z-index: -1;
}

.bg-stock-faq {
	background-color: color-mix(in srgb, #898E92, transparent 50%);
	background-image: none;
}

.bg-stock-faq::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  opacity: 0;
  z-index: -1;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq-arrow {
  color: var(--surface-color);
}

.faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Production
--------------------------------------------------------------*/
/*
.size169 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
	object-fit: cover;
}

.prd-details .section{
	padding: 0!important;
  scroll-margin-top: 90px;
  overflow: clip;
}
*/

/*--------------------------------------------------------------
# prd-details Section　スライド小
--------------------------------------------------------------*/
.prd-details .prd-gallery-hero {
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .prd-details .prd-gallery-hero {
   margin:0 0 2rem 0;
	}
}

.prd-details .prd-gallery-hero .gallery-slider {
	width: 100%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .prd-details .prd-gallery-hero .gallery-slider {
	width: 100%;
  aspect-ratio: 16 / 9;
  }
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-wrapper {
  height: auto !important;
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-slide img {
	width: 100%;
  aspect-ratio: 16 / 9;
	object-fit: cover;
}

@media (max-width: 768px) {
  .prd-details .prd-gallery-hero .gallery-slider .swiper-slide img {
	width: 100%;
  aspect-ratio: 16 / 9;
	object-fit: cover;
  }
}

.prd-details .prd-gallery-hero {
  position: relative;
  padding-bottom: 30px; /* swiper-pagination用 */
}

.prd-details .prd-gallery-hero .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}


.prd-details .prd-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--contrast-color);
  opacity: 0.7;
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-button-next,
.prd-details .prd-gallery-hero .gallery-slider .swiper-button-prev {
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ホバー時に表示 */
.prd-details .prd-gallery-hero .gallery-slider:hover .swiper-button-next,
.prd-details .prd-gallery-hero .gallery-slider:hover .swiper-button-prev {
  opacity: 1;
  pointer-events: auto;
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-button-next:after,
.prd-details .prd-gallery-hero .gallery-slider .swiper-button-prev:after {
  font-size: 18px;
}

.prd-details .prd-gallery-hero .gallery-slider .swiper-button-next:hover,
.prd-details .prd-gallery-hero .gallery-slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);

}

/*--------------------------------------------------------------
# Gallery Section　中村会長
--------------------------------------------------------------*/
.gallery .venue-gallery-container {
  	padding: 0;
	}

.gallery .container-fluid {
  margin-bottom: 3px;
}

.gallery .venue-gallery {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.gallery .venue-gallery img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.gallery .venue-gallery:hover img {
  transform: scale(1.1);
}

@media (max-width: 576px) {

	.gallery .venue-gallery-container {
  	padding-right: 0px;
	}

	.gallery .venue-gallery {
  	overflow: hidden;
  	border-right: 3px solid var(--background-color);
  	border-bottom: 3px solid var(--background-color);
	}

	.gallery .venue-gallery {
  	aspect-ratio: 4/3;
  	overflow: hidden;
  	position: relative;
	}

	.gallery .venue-gallery img {
  	width: 100%;
  	height: 100%!important;
  	object-fit: cover;
  	transition: all ease-in-out 0.4s;
	}

	.gallery .venue-gallery:hover img {
  	transform: scale(1.1);
	}
	
}

/*--------------------------------------------------------------
# bio-details　中村会長来歴
--------------------------------------------------------------*/
.bio-content {
	margin: 1rem 0;
}

.bio-details .section {
	margin-top: 0;
	padding-top: 0;
}

.bio-content {
	margin: 1rem 0;
}

.bio-details .info-tabs-section .info-nav {
  display: flex;
  justify-content: center;/*中央*/
  gap: 20px;
	font-size: 1.1em;
	font-weight: 600;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 576px) {
	.bio-details .info-tabs-section .info-nav {
  	margin-bottom: 10px;
	}
}

.bio-details .info-tabs-section .info-nav .nav-link {
  background: none;
  border: none;
  color: var(--default-color);
  padding: 15px 25px;
  font-weight: 500;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.bio-details .info-tabs-section .info-nav .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.bio-details .info-tabs-section .info-nav .nav-link:hover {
  color: var(--accent-color);
}

.bio-details .info-tabs-section .info-tab-content .tab-inner {
  padding: 25px 0;
}

.bio-details .info-tabs-section .info-tab-content .tab-inner h3 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2rem;
	text-align: left;
}

.bio-details .info-tabs-section .info-tab-content .tab-inner .detail-list {
  list-style: none;
  padding: 0;
}

.bio-details .info-tabs-section .info-tab-content .tab-inner .detail-list li {
  padding: 8px 0;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	text-align: left;
}

.bio-details .info-tabs-section .info-tab-content .tab-inner .detail-list li:last-child {
  border-bottom: none;
}

.bio-details .info-tabs-section .info-tab-content .tab-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

/*来歴画像並び*/
.aspect-4-3 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media (max-width: 576px) {
	.aspect-4-3 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
	margin-bottom: 1rem;
	}
}



/*--------------------------------------------------------------
# book-list  Section 本
--------------------------------------------------------------*/
.book-list .products-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 40px 0;
}

.book-list .products-carousel-wrapper .swiper-wrapper {
  height: auto !important;
}

.book-list .products-carousel-wrapper .swiper-wrapper .swiper-slide {
  max-width: 100%;
  box-sizing: border-box;
}


.book-list .products-carousel-wrapper .swiper-button-next,
.book-list .products-carousel-wrapper .swiper-button-prev {
  color: var(--contrast-color);
	width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: opacity 0.3s ease;
  /*pointer-events: none;*/
}

.book-list .products-carousel-wrapper .swiper-button-next::after,
.book-list .products-carousel-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--default-color);
}

.book-list .products-carousel-wrapper .swiper-button-next:hover,
.book-list .products-carousel-wrapper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.9);
}


.book-list .book-item {
  transition: transform 0.3s ease;
  height: auto;
}

.book-list .book-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.book-list .book-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.book-list .book-image {
  position: relative;
  overflow: hidden;
  height: 240px;  
	/*height: 280px;*/
  width: 100%;
  /*background: rgba(210, 190, 140, 0.2);*/
}
/*
.book-list .book-image img {
  height: 240px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
}*/

.book-list .book-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
}

.book-card:hover .book-image img {
  transform: scale(1.1);
}

.book-list .book-info {
  padding: 20px;
}

.book-list .book-info .book-category {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-list .book-info .book-title {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
	line-height: 1.6;
}

.book-list .book-info .book-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.book-list .book-info .book-title a:hover {
  color: var(--accent-color);
}


.book-list .book-info .book-author {
  display: flex;
  align-items: center;
  gap: 10px;
	font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
}

.book-list .shop-all-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.book-list .shop-all-btn:hover {
  color: white;
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .book-list .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .book-list .book-image {
    height: 240px;
  }
}

@media (max-width: 768px) {

  .book-list .book-image {
    height: 220px;
  }

  .book-list .book-info {
    padding: 15px;
  }

  .book-list .book-info .book-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .book-list .book-image {
    height: 180px;
  }

  .book-list .shop-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.tabs .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: var(--surface-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.tabs .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

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

  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# ストック素材一覧
--------------------------------------------------------------*/
.tabs-2 .nav-tabs {
  border: none;
  margin-bottom: 40px;
}

.tabs-2 .nav-tabs .nav-item {
  margin: 0 30px;
}

.tabs-2 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-2 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-2 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-2 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-2 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-2 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}


@media (max-width: 768px) {
  .tabs-2 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }
}

.tabs-2 .tab-pane {
  padding: 30px;
  border-radius: 8px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}



/*--------------------------------------------------------------
# company Section
--------------------------------------------------------------*/

.hero-container-company {
  background-image: url('../img/company-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
	max-height: 100vh;
	margin-bottom: 2rem;
}
.hero-container-company .container {
	display: flex;
	align-items: center;
}


.hero-container-company .container h1{
	color: color-mix(in srgb, var(--surface-color), transparent 15%);
	font-weight: 500;
}
.hero-container-company .container h1{
	margin-bottom: 2.5rem;
	padding: 0 1.5rem;
}

/*薄い黒背景*/
.bg-company-lead {
	background-color: rgba(0,0,0,0.15);
	padding: 11rem 1.5rem 1.5rem 1.5rem;
	border-radius: 0 0 1.5rem 1.5rem;
}

@media (max-width: 576px) {
	  .hero-container-company {
  	background-image: url('../img/company-main.jpg');
  	background-size: cover;
		background-position: center;
  	background-repeat: no-repeat;
		max-height: 96vh;/*SEで下揃うサイズ*/
		height: auto;
		margin-bottom: 1rem;
	}
	.hero-container-company .container {
		display: flex;
		align-items: center;
		width: 100%;
	}
  .bg-company-lead {
	padding: 3rem 1.5rem 1.5rem;
	border-radius: 1.5rem;
	justify-content: center;
  align-items: center;
	}

}

.bg-company-lead p {
	color: color-mix(in srgb, var(--surface-color), transparent 15%);
	font-weight: 500;
	line-height: 1.8;
	font-size: 1.1rem;
	padding: 0 1.5rem;
}

.company-card {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 1.25rem;
  padding: 0rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.company-card a h3 {
  color: var(--default-color);
  transition: 0.3s;
}


.company-card a:hover h3 {
  color: var(--accent-color);
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.company-image {
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
	/*border-radius: 1.25rem 1.25rem 0 0;*/
}

.company-image a {
  display: block;
	  color: var(--default-color);
}

.company-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.company-image img:hover {
  transform: scale(1.05);
	color: var(--accent-color);
}

.company h3,.company p {
  margin: 1rem 1.25rem 1.5rem;
}

.company h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.company p {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.table-company{
}
.table-company th{
	width: 22%;
	text-align: center;
}
.table-company td{
	width: auto;
}

.table-company-sp th{
	width: 30%;
	text-align: center;
}
.table-company-sp td{
	width: auto;
}

@media (max-width: 768px) {
	.table-company-sp th{
	width: 30%;
	text-align: center;
	font-size: 0.9em;
	}
}

/*アイコン追加*/

.company-card .pageli-links {
  list-style: none;
  padding-left: 25px; 
  margin: 0;
}

.company-card .pageli-links li a {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px; /* ← アイコンの幅分広げる */
  display: inline-block;
	color: var(--default-color);
}

.company-card .pageli-links li a:before{
	position: absolute;
	left: 0; /* ← アイコンの位置を明示 */
	color: var(--default-color);
	display: inline-block;
  content: "\F138"; 
  font-family: "bootstrap-icons";
	font-size: 17px;
  transition: transform 0.3s ease;
}
.company-card .pageli-links li a:hover::before {
  transform: translateX(5px);
	color: var(--accent-color);
}

/*学術顧問*/
.aa-author { 
	display: flex;
	align-items: center;
	padding: 2rem 2rem 0;
}
.aa-author h3 { 
	font-size: 1.5rem;
}

.aa-author img.avatar {
	border-radius: 50%;
	border: 1px solid #C0C0C0;
	height: 90px;
	width: 90px;
	margin-right: 20px;
	padding-right: 0;
	object-fit: cover;
}

.aa-profile p {
	padding: 2rem;
	line-height: 1.8rem;
}

/*協力会社*/
.logo-list img {
  opacity: 0.65; 
  transition: opacity 0.3s ease;
}

.logo-list img:hover {
  opacity: 1;
}




/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.tabs .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.nav-tabs {
  max-width: 640px;
  margin: 0 auto;
	/*add*/
	border: none;
  justify-content: center;
  gap: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 50%);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--default-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
	/*padding: 20px 24px;*/
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}


/*--------------------------------------------------------------
# Steps 3 Section /社史
--------------------------------------------------------------*/

.steps-3 {
  /*--background-color: #f0f8fa;*/
	--accent-color: #c59f22; /*004c5f;*/
  --surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.steps-3 .timeline-container {
  position: relative;
  padding: 30px 0;
}

.steps-3 .timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-3 .timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.steps-3 .timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.steps-3 .timeline-item:last-child {
  margin-bottom: 0;
}

.steps-3 .timeline-item.left .timeline-content {
  padding-right: 50px;
  text-align: right;
}

.steps-3 .timeline-item.left .timeline-content .timeline-marker {
  right: -35px;
}

.steps-3 .timeline-item.right .timeline-content {
  padding-left: 50px;
  margin-left: 50%;
}

.steps-3 .timeline-item.right .timeline-content .timeline-marker {
  left: -35px;
}

.steps-3 .timeline-item:hover .timeline-marker {
  transform: scale(1.1);
	color: var(--surface-color);
  background-color: var(--accent-color);
}

.steps-3 .timeline-item:hover .timeline-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps-3 .timeline-content {
  position: relative;
  width: 50%;
}

.steps-3 .timeline-marker {
  position: absolute;
  top: 15px;
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	/*add*/
	font-weight: 600;
	font-size: 1.1rem;
}

.steps-3 .timeline-body {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
	text-align: left;
}

.steps-3 .timeline-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.steps-3 .timeline-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*社史用リスト*/
.time-list {
  list-style: none;
  padding-left: 0;
}

.time-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 16px;
  color: var(--default-color);
}

.time-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

@media (max-width: 991px) {
  .steps-3 .timeline-track::before {
    left: 30px;
  }

  .steps-3 .timeline-item.left .timeline-content,
  .steps-3 .timeline-item.right .timeline-content {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .steps-3 .timeline-item.left .timeline-content .timeline-marker,
  .steps-3 .timeline-item.right .timeline-content .timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .steps-3 .timeline-item {
    margin-bottom: 50px;
  }

  .steps-3 .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .steps-3 .timeline-body {
    padding: 20px;
  }

  .steps-3 .timeline-body h3 {
    font-size: 1.2rem;
  }

  .steps-3 .timeline-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .steps-3 .timeline-marker {
    width: 50px;
    height: 50px;
			/*add*/
	font-weight: 600;
	font-size: 0.8rem;
  }

  .steps-3 .timeline-item.left .timeline-content,
  .steps-3 .timeline-item.right .timeline-content {
    padding-left: 70px;
  }
}

