.nav_item#contact{
	border-left: 0;
	margin-left: 0;
}
.nav_item#contact a{
	border:0;
	padding:0;
}
.nav_list li a{
	color:#000;
	position: relative;
}
.nav_item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 文字との距離 */
  width: 100%;
  height: 2px; /* 線の太さ */
  background: #000; /* 線の色 */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* ホバー時 */
.nav_item a:hover::after {
  transform: scaleX(1);
}

#main_visual{
	margin-top:100px;
}

.mv-wrapper{
  position:relative;
}

.mv-wrapper::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:60%;
  height:100%;

  background:linear-gradient(
    90deg,
    rgba(60,70,80,0.85) 0%,
    rgba(60,70,80,0.6) 40%,
    rgba(60,70,80,0) 100%
  );

  z-index:2;
}

.mv-slide{
position:relative;
height:60vh;
}

.mv-slide img{
width:100%;
height:100%;
  object-fit:cover;
display:block;
  transform:scale(1.05);
  transition:transform 6s linear;
}

.slick-active img{
  transform:scale(1);
}

.mv-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);

  color:#fff;
  z-index:3;

  max-width:520px;
}
.mv-title{
  font-size:2rem;
  line-height:1.6;
  font-weight:700;
  margin-bottom:20px;
}
.mv-text{
  font-size:14px;
  line-height:1.8;
  margin-bottom:30px;
  opacity:.9;
}
.mv-buttons{
  display:flex;
  gap:15px;
}

.mv-buttons .btn{
  border:1px solid #fff;
  padding:12px 24px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.mv-buttons .btn:hover{
  background:#fff;
  color:#333;
}

@media (max-width: 960px) {
  .mv-slide {
    height: 50vw; /* 横幅に対する比率で指定するとズレにくい */
  }
  .mv-slide img{
    height:100%!important;
  }
  .mv-title{
    font-size: 1.2rem;
  }

  .narrative-title{
    font-size:1.8rem !important;
  }


}
@media (max-width: 600px) {
  .mv-slide {
    height: 80vw;
  }
}

@media only screen and (max-width: 1000px) {
    .hamburger_border {
        background-color: #000;
    }
    .header {
      height: 70px;
    }

    .header h1.title img, .header.fixed h1.fixlogo img {
      max-height: 50px;
      height: 100%;
    }
    #main_visual {
      margin-top: 70px;
    }
}

/* add */
.section_range {
    margin-bottom:60px;
}
.cmp-sticky-bar{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    height:48px;
    padding:0 56px;
    color:#fff;
}

.narrative-bar{
    background:#4B5563;
}

.mission-bar{
    background:#2563EB;
}

.approach-bar{
    background:#059DCF; 
}

.model-bar{
    background:#1DB3DF; 
}

.case-bar{
    background:#01B0CE; 
}

.partners-bar{
    background:#AAC5E6; 
}

.culture-bar{
    background:#334155; 
}

#narrative,
#case{
    background:#F8F8F8;
    padding-bottom:80px;
}

.narrative-title{
  /*font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;*/
    text-align:center;
    font-size:2.3rem;
    margin-top:80px;
  margin-bottom:10px;
    font-weight:500;
}

.narrative-sub{
    text-align:center;
    line-height: 1.6em;
    font-size: 17px;
    text-orientation: upright;
}

.narrative-cards{
    justify-content:center;
    width:100%;
}

.card-row{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
    background:#fff;
    border-radius:12px;
    padding:15px;
    width:355px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
}

.card h3{
    font-size:14px;
    margin-bottom:6px;
    color:#999;
}

.card-title{
    font-weight:600;
    margin-bottom:20px;
}

.card ul{
    padding-left:0;
    margin-bottom:20px;
    list-style:none;
}

.card li{
    margin-bottom:6px;
    font-size:14px;
    position:relative;
    padding-left:16px;
}

.card li::before{
    content:"・";
    position:absolute;
    left:0;
}

.card-image{
    height:200px;  /* ←120px → 大きく */
    background:#ddd;

    margin-top:auto;
    background-size:cover;
    background-position:center;
}

.narrative-message{
  border-left:6px solid #5a6472;

  max-width:1000px;
  margin:60px auto 0;   /* ←ボックスを中央へ */

  padding-left:20px;    /* 線と文字の余白 */

  font-size:18px;
  line-height:1.8;
}


.news-slider{
background:#eee;
padding:80px;
overflow:hidden;
}

.slider-window{
overflow:hidden;
}

.slider{
display:flex;
transition:.5s;
}

.slide{
display:flex;
min-width:100%;
gap:60px;
align-items:center;
}

.slide-text{
width:40%;
}

.slide-image{
width:60%;
}

.slide-image img{
width:100%;
height:420px;
object-fit:cover;
}

/* 下バー */

.slider-bottom{
margin-top:40px;
display:flex;
align-items:center;
justify-content:space-between;
}

.progress{
width:80%;
height:4px;
background:#ccc;
position:relative;
}

.bar{
height:4px;
background:#7ED321;
width:33.333%;
transition:.4s;
}

.slider-window{
overflow:visible;
}

.slide{
min-width:90%;
margin-right:40px;
}

.service-row{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.service-card{

  position:relative;
  background:#059DCF;
  color:#fff;

  width:355px;
  padding:30px 15px;

  border-radius:10px;

  box-shadow:0 20px 40px rgba(0,0,0,0.15);

  overflow:hidden;
}

/* 大きい番号 */

.service-number{

  position:absolute;
  top:-30px;
  left:-10px;

  font-size:120px;
  font-weight:700;

  color:#fff;
  opacity:0.12;
}

/* タイトル */

.service-card h3{

  font-size:22px;
  font-weight:700;

  margin-bottom:20px;
  line-height:1.4;
}

/* 説明 */

.lead{

  font-size:14px;
  line-height:1.9;

  margin-bottom:30px;

  color:rgba(255,255,255,0.9);
}

/* リスト */

.service-list{

  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.service-list li{

  padding:12px 0;

  border-bottom:1px solid rgba(255,255,255,0.25);

  font-size:14px;
  line-height:1.7;
}

/* 最後のメッセージ */

.message{

  font-size:14px;
  font-weight:600;

  color:#fff;
}

.service-btn-wrap{
  text-align: center;
  margin-top: 40px;
}

.service-btn{
  display:inline-block;
  padding:12px 28px;
  border:1px solid #333;
  background:#fff;
  color:#333;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.service-btn:hover{
  background:#333;
  color:#fff;
}

.market-section.active{
  background-size:cover;    /* スクロール後は横幅いっぱい */
}

.market-inner{
  max-width:1200px;
  margin:auto;
}

.market-title{
  text-align:center;
  color:#fff;
  font-size:24px;
  margin-bottom:80px;
}

.market-row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  align-items: stretch;
}

.market-card{
  width: 100%;
  max-width:200px;
  padding:30px 15px;
  background:rgba(255,255,255,0.85); /* 半透明 */
  border-radius:10px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.market-card h3{
  font-size:16px;
  margin-bottom:10px;
}

.market-card p{
  font-size:13px;
  line-height:1.6;
}

/*.market-arrow{
  font-size:20px;
  color:#fff;
  align-self: center;
}*/
.market-arrow {
  align-self: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  color: transparent; /* テキスト文字を非表示 */
}

.market-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  
  /* 大きな透過白矢印 */
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 32px solid rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .market-row {
    flex-direction: column;
    align-items: center;
  }

  .market-arrow::before {
    border-top: 32px solid rgba(255, 255, 255, 0.75);
    border-bottom: none;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
}


.case-row{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.case-card{
  width:355px;
  background:#fff;
  border-radius:12px;
  padding:30px 15px;   /* ←左右余白を小さく */
  box-shadow:0 10px 30px rgba(0,0,0,0.15);

  display:flex;
  flex-direction:column;
}

.case-card a{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.case-title{
  text-align:center;
  font-size:18px;
  margin-bottom:20px;
}

.case-image{
  width:100%;
  height:200px;
  margin-bottom:20px;

  overflow:hidden;   /* ←ズーム時のはみ出しを隠す */
}

.case-image-inner{

  width:100%;
  height:100%;

  background:#cfcfcf;
  background-size:cover;
  background-position:center;

  transition:transform 0.4s ease;
}

/* カードhoverで画像だけズーム */

.case-card:hover .case-image-inner{
  transform:scale(1.08);
}

.case-company{
  background:#19a2b8;
  color:#fff;
  text-align:center;
  padding:10px;

  margin-left:-20px;
  margin-right:-20px;  /* ←カードのpaddingを打ち消す */
  
  margin-bottom:20px;
  font-size:14px;
}

.case-text{
  font-size:14px;
  line-height:1.8;
  color:#444;
  flex:1;
}

.case-link{
  text-align:right;
  margin-top:20px;
  font-size:13px;
  color:#999 !important;
  align-self:flex-end;
}

.partner-box{
  border:2px solid #2f80ed;
  border-radius:12px;
  padding:60px 40px;
  max-width:1100px;
  margin:0 auto 30px auto;
}

.partner-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

.partner-logo img{
  max-height:100px;
  width: 100%;
}

.partner-cross{
  font-size:40px;
  color:#666;
}

.partner-bottom{
  max-width:1100px;
  margin:20px auto 0;
  /*display:flex;*/
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.partner-text{
  white-space: nowrap;
}

.partner-link a{
  text-decoration:none;
}

.value-row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin:auto;
  justify-content:center;
}

.value-card{
  position:relative;
  background:#fff;
  padding:40px;
  border-radius:12px;

  flex:0 0 500px;  /* ←ここ変更 */

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* 左アクセントバー */
.value-card::before{
  content:"";
  position:absolute;
  left:0;
  top:20px;
  bottom:20px;
  width:8px;
  border-radius:8px;
}

/* カラー */
.value-card.blue::before{
  background:#2f6ae0;
}

.value-card.teal::before{
  background:#0ea5b7;
}

.value-card.cyan::before{
  background:#AAC5E6;
}

.value-card.light::before{
  background:#8ea8c8;
}

.value-card h3{
  margin-bottom:20px;
  font-size:24px;
}

.value-card p{
  line-height:1.8;
}

/* ボタン */
.value-btn{
  text-align:center;
  margin-top:60px;
}

.value-btn a{
  display:inline-block;
  border:1px solid #333;
  padding:16px 40px;
  text-decoration:none;
}

/* タブレット */
@media (max-width:1024px){
    .card-row{
        grid-template-columns:repeat(2,1fr);
    }
    .cmp-sticky-bar{
      height:30px;
      padding:0 20px;
    }
    .cmp-sticky-bar h3{
      font-size: 1.2rem;
    }
}

/* スマホ */
@media (max-width:768px){
    .card-row{
        grid-template-columns:1fr;
    }

      .service-row{
    gap:20px;
  }

  .service-card{
    width:100%;
    max-width:420px;
  }

    .value-row{
    gap:24px;
    padding:0 20px;
  }

  .value-card{
    flex:0 0 100%;
  }
    .partner-text {
    white-space: normal;
  }
}

/* ===== #model セクション スクロール背景ズーム ===== */

#model {
  position: relative;
  overflow: hidden;
  --bg-scale: 1; /* JSから更新される */
}

#model::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url(../img/top/bg_business_model_2.jpg);
  background-size: cover;
  background-position: top center;
  transform: scale(var(--bg-scale));
  transform-origin: center center;
  transition: transform 0.05s linear;
  will-change: transform;
  z-index: 0;
}

#model > * {
  position: relative;
  z-index: 1;
}

#model .narrative-title{color:#fff;text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);}


.our-work {
  overflow: hidden;
  padding: 60px 0;
}

.our-work__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}

/* 左：テキスト */
.our-work__text {
  flex: 0 0 340px;
  overflow: hidden;
}

.our-work__text .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-work__text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
}

.our-work__text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
}

.our-work__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 2px solid #00a651;
  color: #00a651;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.our-work__btn:hover {
  background: #00a651;
  color: #fff;
}

/* 右：画像（次スライドがはみ出す） */
.our-work__images {
  flex: 1;
  overflow: visible; /* はみ出しを許可 */
  position: relative;
  clip-path: inset(0 -100vw 0 0);
}

.our-work__images .swiper-wrapper {
  align-items: flex-start;
}

.our-work__images .swiper-slide {
  width: 85%; /* 次のスライドが少し見える */
  transform: scale(0.8);
  transform-origin: left center; /* 左基準で縮小 */
  transition: transform 0.6s ease;
}

.our-work__images .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.our-work__images .swiper-slide-active {
  transform: scale(1);
}

/* 右下ナビ */
.our-work__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.our-work__prev,
.our-work__next {
  background: none;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.our-work__prev:hover,
.our-work__next:hover {
  border-color: #000;
}

.our-work__pager {
  font-size: 0.85rem;
  color: #444;
  min-width: 32px;
  text-align: center;
}

/* SP */
@media (max-width: 768px) {
  .our-work__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }

  .our-work__text {
    flex: none;
    width: 100%;
  }

  .our-work__images .swiper-slide {
    width: 90%;
  }
}


/*------footer-----*/
.freetrial_inner{
  padding:35px 50px;
  background:#1F2937;
  border-radius:12px;
}

.freetrial_wrap{
  max-width:1400px;
  margin:0 auto;
}

.cta-content{
    color:white;
}

.cta-buttons{
    margin-top:20px;
}

.cta-buttons a{
    padding:12px 35px;
    text-decoration:none;
    margin-right:10px;
}

.btn-outline {
    border: 1px solid #fff;
    background: #1F2937;
    color: #fff !important;
    font-size: 14px;

    display: block;        /* ←これ超重要 */
    width: 100%;
    padding: 12px 16px;   /* ←高さをちゃんと作る */
    text-align: center;   /* ←文字中央 */
}

.btn-white{
    background:#fff;
    color:#333;
    font-size:14px;
}

.btn-outline:hover{
  background:#fff;
  color:#333 !important;
}

.btn-white:hover{
  border:1px solid #fff;
  background:#1F2937;
  color:#fff;
}


footer{
  background:#F8F8F8;
  padding:40px 0 40px;
}

footer .foot{
    max-width: 1200px;
    color:#fff;
    padding: 2vh 0 2vh 0;
    margin:0 auto;
}

.footer-col h6{
  font-weight:600;
  margin-bottom:20px;
  border-top:2px solid #000;
  padding-top:10px;
  color:#333;
}

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

.footer-col li{
  margin-bottom:8px;
}

.footer-col a{
  text-decoration:none;
  color:#333;
  font-size:13px;
}

.footer-col a:hover{
  opacity:0.7;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-logo img{
  max-width:100px;
  height:auto;
}

.footer-copy{
  text-align:right;
  color:#333;
  font-size:12px;
}