:root {
  --font-manrope: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    sans-serif;
  --font-dmsans: "游ゴシック体", YuGothic, "游ゴシック Regular", "Yu Gothic Regular", "游ゴシック", "Yu Gothic",
    sans-serif;
  --white-color: #fff;
  --black-color: #000000;
  --black-color-opc: 0, 0, 0;
  --dark-title-color: #1c1a1e;
  --title-color: #000000;
  --title-color-opc: 0, 0, 0;
  --title-color2: #234f40;
  --title-color2-opc: 35, 79, 64;
  --text-color: #3A3A3A;
  --primary-color1: #cb0000;
  --primary-color1-opc: 203, 0, 0;
  --primary-color2: #fb521e;
  --primary-color2-opc: 251, 82, 30;
  --primary-color3: #8abc46;
  --primary-color3-opc: 138, 188, 70;
  --primary-color4: #234f40;
  --primary-color4-opc: 35, 79, 64;
  --primary-color5: #233aff;
  --primary-color5-opc: 35, 58, 255;
  --borders-color: #eee;
}

@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .company-logo img {
    width: 200px;
  }
}

.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content {
  max-width: none; /* H1の幅に合わせるため、固定幅から自動幅に変更 */
  width: fit-content;
  display: inline-block;
}

.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
  color: var(--white-color);
  font-family: var(--font-manrope);
  font-weight: normal;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 28px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .home1-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 28px;
  }
}

.home1-banner-section .banner-wrapper {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
    url(/themes/nisshin_base/assets/img/home1/home1-banner-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  margin: 0 90px;
  padding: 70px 55px 70px 80px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.tab-wrap {
  background: White;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}

.tab-label {
  color: Gray;
  cursor: pointer;
  flex: 1;
  font-weight: 500;
  order: -1;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
  background: rgba(203, 0, 0, 0.1);
}

.tab-switch:checked + .tab-label {
  color: #cb0000;
}

.tab-label::after {
  background: #cb0000;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
  width: 100%;
  z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
  transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
  opacity: 1;
  transform: translateX(0);
}

.tab-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
  width: 100%;
}

.tab-switch:checked ~ .tab-content {
  transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tab-wrap::after {
  content: "";
  height: 20px;
  order: -1;
  width: 100%;
}

.tab-switch {
  display: none;
}

.section-title h2 {
  color: var(--title-color);
  font-family: var(--font-manrope);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
}

.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: none;
}

.ichiran {
  margin-right: 8px;
  padding: 24px;
  text-align: right;
}

.bg_gray {
  background-color: #f3f3f3;
}

.ptb54 {
  padding-bottom: 54px;
  padding-top: 54px;
}

.serviceIcon {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.serviceIcon img {
  width: 120px;
  height: 120px;
  vertical-align: middle;
}

.mt16 {
  margin-top: 16px;
}

.home1-about-section .about-top-area .about-btn-area .about-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  vertical-align: top;
  line-height: 1.4;
  text-decoration: none;
  outline: none;
  padding: 0 1.375em 0.0625em 0;
  cursor: pointer;
  background-color: transparent;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 0.0625em;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  border: none;
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
  color: var(--title-color);
  font-family: var(--font-dmsans);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-top-banner-section {
  padding: 100px 0;
  background-color: #fff5f5;
  position: relative;
  z-index: 1;
}

.footer-top-banner-section::before {
  content: url(/themes/nisshin_base/assets/img/home1/footer-top-banner-vector.png);
  position: absolute;
  bottom: 0;
  left: 12%;
  z-index: -1;
}

.footer-section {
  background-color: #f3f3f3;
  padding-top: 48px;
}

.footer-section .footer-wrapper .address-area .address-list .single-address {
  max-width: 580px;
  width: 100%;
  padding-bottom: 28px;
  position: relative;
  margin-bottom: 32px;
}

.footer-section .footer-wrapper .address-area .address-list .single-address span {
  color: var(--text-color);
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
}
.footer-section .footer-wrapper .address-area .address-list .single-address a {
  color: var(--text-color);
  font-family: var(--font-dmsans);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  transition: 0.5s;
}

.footer-section .footer-wrapper .footer-top-area p {
  color: var(--text-color);
  font-family: var(--font-dmsans);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  max-width: 720px;
  width: 100%;
}

.footer-section .footer-wrapper .footer-menu-and-address-wrap .footer-widget .widget-title h5 {
  color: var(--text-color);
  font-family: var(--font-manrope);
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.9px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-section .footer-wrapper .footer-menu-and-address-wrap .footer-widget .widget-list li a {
  color: var(--text-color);
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.5s;
}

.footer-top-banner-section .arrow-vector {
  fill: rgba(203, 0, 0, 0.25);
  position: absolute;
  top: 10px;
  right: 10px;
}

.footer-top-banner-section .footer-top-banner-wrap .section-title.white span {
  color: var(--primary-color1);
  margin-bottom: 20px;
}

/* footer-menuの上揃え設定を追加 */
.footer-menu {
  vertical-align: top;
  align-self: flex-start;
}

/* PCでの表示時により確実に上揃えにする */
@media (min-width: 768px) {
  .footer-menu {
    vertical-align: top;
    align-self: flex-start;
  }

  /* 親要素がflexboxの場合の設定 */
  .footer-menu-container {
    align-items: flex-start;
  }
}

/* .col-lg-6用の新しいクラスを追加 */
.footer-top-align {
  align-items: flex-start !important;
  align-content: flex-start !important;
}

/* PCでの表示時により確実に上揃えにする */
@media (min-width: 992px) {
  .col-lg-6.footer-top-align,
  .col-md-6.footer-top-align,
  .col-sm-6.footer-top-align {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .footer-top-align .footer-menu {
    width: 100% !important;
    align-self: flex-start !important;
  }
}

/* より強力なfooter上揃え設定を追加 */
/* あらゆるBootstrapの設定を上書きする最強の設定 */
.col-lg-6.footer-top-align,
.col-md-6.footer-top-align,
.col-sm-6.footer-top-align,
.col-6.footer-top-align {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  align-content: flex-start !important;
  vertical-align: top !important;
}

/* footer-menu自体にも強力な上揃え設定 */
.footer-top-align .footer-menu,
.footer-top-align > .footer-menu,
.col-lg-6 .footer-menu,
.col-md-6 .footer-menu {
  align-self: flex-start !important;
  vertical-align: top !important;
  margin-top: 0 !important;
  position: relative !important;
  top: 0 !important;
}

/* 親要素のrow設定も上書き */
.row .footer-top-align {
  align-self: flex-start !important;
}

/* 全てのメディアクエリで確実に適用 */
@media (min-width: 576px) {
  .footer-top-align {
    align-items: flex-start !important;
  }
}
@media (min-width: 768px) {
  .footer-top-align {
    align-items: flex-start !important;
  }
}
@media (min-width: 992px) {
  .footer-top-align {
    align-items: flex-start !important;
  }
}
@media (min-width: 1200px) {
  .footer-top-align {
    align-items: flex-start !important;
  }
}

.footer-section .footer-wrapper .address-area {
  padding: 20px 0 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .footer-wrapper .footer-top-area {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.right-sidebar-menu .sidebar-content-wrap .address-area .single-address a {
  color: var(--text-color);
  font-family: var(--font-dmsans);
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  transition: 0.5s;
}
.right-sidebar-menu .sidebar-content-wrap .title-area h2 {
  color: var(--title-color);
  font-family: var(--font-manrope);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.pt48 {
  padding-top: 48px;
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
}

.headline-link {
  color: #333;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}
.headline-link:hover,
.headline-link:visited,
.headline-link:active,
.headline-link:focus {
  color: #333;
}
.headline-link:hover {
  padding: 10px;
  background: #f1f1f1;
}

.headline-title {
  margin: 0 10px;
}

@media screen and (max-width: 479.98px) {
  /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-item {
    padding: 10px 0;
  }
  .headline-title {
    display: block;
    margin: 0;
  }
}
/* 1カラムページ用のヘッドライン */
.headline-1col {
  font-size: 16px;
}
@media print {
  .headline-1col {
    font-size: 16px;
  }
}

/* 新着情報リストを公式デモサイトのようなシンプルなスタイルに変更 */
/* カテゴリラベルの装飾を削除してシンプルなテキストに */
.tab-content .category,
.tab-content .cat,
.tab-content [class*="category"],
.tab-content [class*="cat"] {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: #666 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  padding: 0 !important;
  margin: 0 8px 0 0 !important;
  display: inline !important;
}

/* NEWラベルを非表示 */
.tab-content .new,
.tab-content .label-new,
.tab-content [class*="new"] {
  display: none !important;
}

/* リストアイテムをシンプルに */
.tab-content ul li,
.tab-content .news-item,
.tab-content .list-item {
  border: none !important;
  background: none !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid #eee !important;
}

/* 日付、カテゴリ、タイトルを横並びに */
.tab-content .date,
.tab-content .category,
.tab-content .title {
  display: inline !important;
  vertical-align: baseline !important;
}

/* 日付のスタイル */
.tab-content .date {
  color: #666 !important;
  font-size: 14px !important;
  margin-right: 12px !important;
}

/* タイトルのスタイル */
.tab-content .title,
.tab-content a {
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

.tab-content .title:hover,
.tab-content a:hover {
  text-decoration: underline !important;
}

/* リストアイテムのホバー効果を追加 */
.tab-content ul li:hover,
.tab-content .news-item:hover,
.tab-content .list-item:hover {
  background: #f5f5f5 !important;
  transition: background-color 0.2s ease !important;
}

/* リンク全体がホバー可能な場合の設定 */
.tab-content a:hover {
  background: #f5f5f5 !important;
  display: block !important;
  padding: 8px 0 !important;
  text-decoration: none !important;
}

/* ホバー時のタイトルのみアンダーライン */
.tab-content a:hover .title {
  text-decoration: underline !important;
}

/* ヒーローエリアのレスポンシブ対応を追加 */
/* ヒーローエリアのレスポンシブ修正 */
.home1-banner-section {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* コンテナ内の要素も調整 */
.home1-banner-section .container,
.home1-banner-section .container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* テキストコンテンツの調整 */
.home1-banner-section h1,
.home1-banner-section h2,
.home1-banner-section p,
.home1-banner-section .banner-content {
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* banner-wrapperのレスポンシブ修正を追加 */
/* banner-wrapperの固定マージンを修正 */
.home1-banner-section .banner-wrapper {
  /* 大きなデバイスでは元々の90pxマージンを維持 */
  margin: 0 auto !important;
  max-width: 1320px !important;
  padding: 70px 55px 70px 80px !important;
  width: auto !important;
  box-sizing: border-box !important;
}

/* レスポンシブ対応でマージンを段階的に調整 */
@media (max-width: 1400px) {
  .home1-banner-section .banner-wrapper {
    margin: 0 auto !important;
    max-width: 1200px !important;
    padding: 60px 40px 60px 60px !important;
  }
}

@media (max-width: 1200px) {
  .home1-banner-section .banner-wrapper {
    margin: 0 auto !important;
    max-width: 1000px !important;
    padding: 50px 30px 50px 40px !important;
  }
}

@media (max-width: 992px) {
  .home1-banner-section .banner-wrapper {
    margin: 0 20px !important;
    max-width: none !important;
    padding: 40px 25px !important;
  }
}

@media (max-width: 768px) {
  .home1-banner-section .banner-wrapper {
    margin: 0 15px !important;
    padding: 30px 20px !important;
  }
}

@media (max-width: 576px) {
  .home1-banner-section .banner-wrapper {
    margin: 0 10px !important;
    padding: 25px 15px !important;
    min-height: 400px !important;
  }
}

/* 画像やボタンも調整 */
.home1-banner-section img,
.home1-banner-section .btn,
.home1-banner-section button {
  max-width: 100% !important;
  height: auto !important;
}

/* 白い楕円形を引き起こしていた問題のあるbanner-content設定を削除 */
/* より強力なbanner-contentの横幅調整 */
.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content,
.home1-banner-section .banner-wrapper .banner-content-wrap > .banner-content,
.banner-wrapper .banner-content-wrap .banner-content {
  width: fit-content;
  max-width: none;
  float: none;
  position: relative;
}

/* H1の問題のある設定を修正 */
.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content h1,
.home1-banner-section h1,
.banner-content h1 {
  width: auto;
  max-width: none;
}

/* banner-content-wrapの問題設定を修正 */
.home1-banner-section .banner-wrapper .banner-content-wrap,
.banner-wrapper .banner-content-wrap {
  width: fit-content;
  max-width: none;
}

/* p要素をH1の幅に合わせる設定を追加 */
.home1-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
  width: fit-content;
  max-width: none;
}

/* レスポンシブ対応：小さい画面では通常の幅に戻す */
@media (max-width: 768px) {
  .home1-banner-section .banner-wrapper .banner-content-wrap .banner-content,
  .home1-banner-section .banner-wrapper .banner-content-wrap,
  .banner-wrapper .banner-content-wrap .banner-content {
    width: 100% !important;
    display: block !important;
    max-width: 100% !important;
  }

  .home1-banner-section .banner-wrapper .banner-content-wrap .banner-content h1,
  .home1-banner-section h1,
  .banner-content h1 {
    width: 100% !important;
    display: block !important;
  }
}


.logo-section .logo-wrap .marquee .marquee__group a img {
    width: 200px;
}

.mb-40 {
    margin-bottom: 40px;
}

.product-card:hover .product-img .arrow {
    background-color: var(--primary-color1);
}

header.style-1 .nav-right .right-sidebar-button svg {
    fill: #ffffff;
}

header.style-1 .nav-right .right-sidebar-button {
	color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 13px 20px;
    background-color: rgba(var(--primary-color1-opc), 1);
    border-radius: 200px;
}

header.style-1 .nav-right .right-sidebar-button span {
    color: #ffffff;
    font-family: var(--font-manrope);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
}

.top-band {
  background-color: #990000;
  padding: 8px 0;
  text-align: center;
  width: 100%;
}

.top-band p {
  color: #ffffff;
  margin: 0;
  font-size: 14px;
  font-weight: bolder;
line-height: 125%;
}



header.style-1 .company-logo img {
    width: 200px;
}



header.style-1 .nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
}



.client-slider{
	position: relative;
	background: var(--white-color);
	z-index: 1;
}

.client-slider-boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.client-slider-box{
	width: calc(40% - 20px);
}

.client-slider-box .client-logo img{
	width: 100%;
	max-height: 40px;
}

.scroll-down-circle-box{
	width: calc(20% - 20px);
	background: url('../images/scroll-down-img-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	margin-top: -58px;
}

.scroll-circle-text{
	position: relative;	
	text-align: center;
	margin-top: 20px;
}

.scroll-circle-text figure img{
	width: 100%;
	max-width: 165px;
	animation: textrotate 25s infinite linear;
}

@keyframes textrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.scroll-down-arrow{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
		
}

.scroll-down-arrow a{
	width: 90px;
	height: 90px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.scroll-down-arrow a:hover{
	background-color: var(--primary-color);
}

.scroll-down-arrow i{
	font-size: 20px;
	color: var(--white-color);
	border: 3px solid var(--white-color);
	border-radius: 40px;
	padding: 10px 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.scroll-down-arrow a:hover i{
	transform: translateY(3px);
}

.slider-container {
            position: relative;
            overflow: hidden;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem 0;
        }

        .slider-container::before,
        .slider-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 10;
            pointer-events: none;
        }

        .slider-container::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .slider-container::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .slider-track {
            display: flex;
            animation: slide 20s linear infinite;
            width: calc(200% + 4rem);
        }

        .slider-item {
            flex: 0 0 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 2rem;
            transition: all 0.3s ease;
        }

        .partner-logo {
            max-width: 150px;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
        }

        .slider-item:hover .partner-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .slider-item {
                flex: 0 0 150px;
                margin: 0 1rem;
            }
            
            .partner-logo {
                max-width: 120px;
                max-height: 60px;
            }
        }

/* Added dual slider layout with central symbol */
        .dual-slider-wrapper {
            position: relative;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
			margin: 24px auto !important;
            max-width: 1320px !important;
            width: auto !important;
            box-sizing: border-box !important;
        }

        .left-slider, .right-slider {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .left-slider::before, .right-slider::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50px;
            z-index: 10;
            pointer-events: none;
        }

        .left-slider::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .right-slider::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .central-symbol {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 2rem;
            box-shadow: 0 8px 25px -5px rgba(220, 38, 38, 0.3);
            z-index: 20;
            position: relative;
        }


        .central-symbol .logo-text {
            color: white;
            font-size: 1.4rem;
            font-weight: bold;
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.2;
        }

            

        /* Modified animation to step-by-step display with pauses */
        .slider-track-left {
            display: flex;
            animation: stepSlideLeft 24s linear infinite;
            width: calc(200% + 4rem);
        }

        .slider-track-right {
            display: flex;
            animation: stepSlideRight 24s linear infinite;
            width: calc(200% + 4rem);
        }

        .slider-item {
            flex: 0 0 196px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 1.5rem;
            transition: all 0.3s ease;
        }

        .partner-logo {
            max-width: 180px;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(0%) opacity(1);
            transition: all 0.3s ease;
        }

        .slider-item:hover .partner-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Replaced continuous animation with step-by-step keyframes */
        @keyframes stepSlideLeft {
            0%, 13.33% { transform: translateX(0); }
            16.67%, 29.99% { transform: translateX(-16.66%); }
            33.33%, 46.65% { transform: translateX(-33.33%); }
            49.99%, 63.31% { transform: translateX(-50%); }
            66.65%, 79.97% { transform: translateX(-66.66%); }
            83.31%, 96.63% { transform: translateX(-83.33%); }
            100% { transform: translateX(0); }
        }

        @keyframes stepSlideRight {
            0%, 13.33% { transform: translateX(0); }
            16.67%, 29.99% { transform: translateX(-16.66%); }
            33.33%, 46.65% { transform: translateX(-33.33%); }
            49.99%, 63.31% { transform: translateX(-50%); }
            66.65%, 79.97% { transform: translateX(-66.66%); }
            83.31%, 96.63% { transform: translateX(-83.33%); }
            100% { transform: translateX(0); }
        }

        .left-slider:hover .slider-track-left,
        .right-slider:hover .slider-track-right {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {

            .dual-slider-wrapper {
                flex-direction: column;
                padding: 1.5rem 0;
            }

            .central-symbol {
                width: 80px;
                height: 80px;
                margin: 1rem 0;
            }

            .central-symbol .logo-text {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
           
            
            .slider-item {
                flex: 0 0 140px;
                margin: 0 1rem;
            }
            
            .partner-logo {
                max-width: 110px;
                max-height: 55px;
            }


        }


@media (max-width: 1199px) {
	header.style-1 .contact-area .content {
    display: none !important;
}
}

/* デュアルスライダーのメインコンテナ */


        

        /* モバイル対応 */
        @media (max-width: 768px) {
            .dual-slider-wrapper {
                height: 100px;
            }

            /* Fixed slider positioning and width constraints for mobile */
            .left-slider, .right-slider {
                width: 40%;
                max-width: 330px;
                /* Ensure sliders are visible and properly positioned */
                position: absolute;
                top: 0;
                height: 100%;
            }

            .left-slider {
                left: 0;
            }

            .right-slider {
                right: 0;
            }

            /* Simplified central symbol positioning for mobile */
            .central-symbol {
                position: absolute;
                left: 50%;
                top: 10%;
                transform: translate(-50%, -50%);
                width: 80px;
                height: 80px;
                /* Ensure it stays centered regardless of slider widths */
                z-index: 10;
            }

            .logo-text {
                font-size: 10px;
            }

            /* Adjusted slider item width for better mobile display */
            .slider-item {
                width: 100px;
                padding: 10px;
                flex: 0 0 100px;
            }

            .partner-logo {
                max-height: 40px;
                max-width: 80px;
            }

            /* モバイルでのアニメーション速度調整 */
            .slider-track-left, .slider-track-right {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {
            .dual-slider-wrapper {
                height: 80px;
            }

            /* Maintained consistent positioning for smaller screens */
            .left-slider, .right-slider {
                width: 35%;
                max-width: 280px;
            }

            /* Fixed central symbol size for small screens */
            .central-symbol {
                width: 70px;
                height: 70px;
            }

            .logo-text {
                font-size: 8px;
            }

            .slider-item {
                width: 90px;
                padding: 8px;
                flex: 0 0 90px;
            }

            .partner-logo {
                max-height: 30px;
                max-width: 70px;
            }
        }

        /* 非常に小さい画面での追加調整 */
        @media (max-width: 360px) {
            /* Ensured sliders remain visible on very small screens */
            .left-slider, .right-slider {
                width: 40%;
                max-width: 140px;
            }

            .central-symbol {
                width: 60px;
                height: 40px;
            }

            .logo-text {
                font-size: 7px;
            }

            .slider-item {
                width: 70px;
                padding: 5px;
                flex: 0 0 70px;
            }

            .partner-logo {
                max-height: 25px;
                max-width: 60px;
            }
        }

header.style-1 .nav-right .right-sidebar-button .yajirushi {
    width: 18px;
	height: 18px;
	position: relative;
	bottom: 8px;
}

.primary-btn1 > span:nth-child(2) {
    text-decoration: underline;
    position: absolute;
    top: 50%;
    left: 0;
    padding-left: 16px;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}


.google_map{
position:relative;
width:100%;
height:0;
padding-top:50%;
margin-bottom: 24px;
}
.google_map iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}


[class*=column-map] > div {
    max-width: 820px !important;
}

.mb36 {
	margin-bottom: 36px !important;
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-manrope);
    font-weight: 500;
    line-height: 1.4;
    color: var(--title-color);
}


.columns-2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.columns-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
@media (max-width: 768px){ .columns-2, .columns-3 { grid-template-columns:1fr; } }

/* 表を本文コンテナ内に収める・罫線を消す・画像も収める */
.table-normalize table{width:100%;max-width:100%;border-collapse:collapse;}
.table-normalize table,.table-normalize th,.table-normalize td{border:0;}
.table-normalize img{max-width:100%;height:auto;display:block;}
.table-normalize th,.table-normalize td{word-break:break-word;}

/* /service/ テーブルの見え方を /company/ に揃えるための最小セット */
table.table-basic {
  width:100%;
  max-width: 820px;
  margin-bottom: 32px;
  margin-left: 12px;
  border-collapse:collapse;
  table-layout:fixed;         /* 画像や長文でのはみ出し防止 */
}
.table-basic th,
.table-basic td{
  border:0;                   /* 黒い線をリセット */
  padding:.6em .8em;
  word-break:break-word;      /* 長い語で横スクロールを出さない */
}
.table-basic img{
  max-width:100%;
  height:auto;
  display:block;
}
/* まれに下線や影が残るテーマの場合の保険 */
.table-basic table{ box-shadow:none !important; border-bottom:0 !important; }

/* ヘッダーの高さ分だけアンカー停止位置を下げる（ヘッダーに隠れない） */
:root { --header-h: 80px; }             /* 初期値。JSで実寸に上書きします */
html { scroll-padding-top: var(--header-h); }
:target { scroll-margin-top: var(--header-h); }

/* スクロールアンカーの自動補正を無効化（レイアウトシフト抑制）*/
header, .header-area, .top-band { overflow-anchor: none; }

