@font-face {
    font-family: AdjustedYuGothic;
    font-weight: 400;
    src: local("Yu Gothic Medium");
  }
  
@font-face {
    font-family: AdjustedYuGothic;
    font-weight: 700;
    src: local("Yu Gothic Bold");
}
  

body{
    margin: 0;
    font-family: AdjustedYuGothic, Yu Gothic, YuGothic, sans-serif;
    font-style: normal;
    font-weight: 400;
}

p{
    margin: 0;
}

img{
  max-width: 100%;
}

.sp{
    display: none;
}

.pc{
    display: block;
}

@media (max-width: 768px) {
    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
}
/*==================================================================

	.breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
	position: relative;
	max-width:1100px;
  padding: 10px;
	font-size: 14px;
	z-index: 998;
  overflow: hidden;
  margin: 0 auto;
}

.breadcrumbs-company{
  background-color: #F4F4F4;
  padding-top: 120px;
}

.breadcrumbs:last-child {
	margin: 0 auto;
}

.breadcrumbs i {
	margin-right: 5px;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs li {
	float: left;
	margin-right: 5px;
  list-style: none;
}
.breadcrumbs li:after {
    font-family: FontAwesome;
    content: ">";
    padding-left: 10px;
}
.breadcrumbs li:last-child:after {
    content: "";
}

@media (max-width: 768px) {
  .breadcrumbs{
      width: initial;
  }
}

/* === ヘッダー全体 === */
.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

/* ヘッダーのアニメーション制御 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 非表示時（上にスライド） */
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
  
  .header-inner {
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* === ロゴ部分 === */
  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .header-logo img {
    height: 53px;
  }
  
  .logo-text {
    font-size: 18px;
    line-height: 1.2;
    color: #000;
  }
  
  .logo-text strong {
    font-weight: bold;
    font-size: 20px;
    display: block;
  }
  
  .logo-sub {
    font-size: 14px;
    color: #555;
  }
  
  /* === ナビメニュー === */
  .header-nav-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    letter-spacing: 0;
  }
  .header-nav .nav-list {
    display: flex;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .nav-list li a:hover {
    color: #d90000;
  }
  
  /* === ヘッダーボタン === */
  .header-buttons-custom {
    display: flex;
    align-items: flex-end;
    height: 108px; 
  }
  
  /* お役立ち情報 */
  .btn-info-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 108px;
    background-color: #fff;
    color: #d90000;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    border-radius: 0 0 0 40px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .btn-info-custom img{
    height: 25px;
    margin-bottom: 5px;
  }
  
  /* お問い合わせ */
  .btn-contact-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 108px;
    background-color: #d90000;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    border-radius: 0 0 0 40px; 
    flex-direction: column;
  }

  .btn-contact-custom img{
    height: 25px;
    margin-bottom: 5px;
  }
  
  /* ▼ ハンバーガー初期状態は非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ▼ クリックされた状態（.is-activeが付与されたら✕になる） */
.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}
  
  /* ▼ レスポンシブ対応：1100px未満で切り替え */
  @media (max-width: 1100px) {
    .header-inner {
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px;
    }
  
    .header-nav {
      display: none;
      width: 100%;
      background-color: #fff;
      position: absolute;
      top: 80px;
      left: 0;
      z-index: 1000;
    }
  
    .header-nav.active {
      display: block;
    }
  
    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0;
      margin: 0;
    }

    .header-nav .nav-list{
        gap: 0;
    }
  
    .nav-list li {
      border-bottom: 1px solid #eee;
      text-align: center;
    }
  
    .nav-list li a {
      display: block;
      padding: 15px 20px;
      font-size: 16px;
    background-color: #e6003f;
    color: #fff;
    }
  
    .hamburger {
      display: flex;
    }
  
    .header-buttons-custom {
      display: none; /* 必要であればここも切り替え可 */
    }
}

.section-bg-wrap {
    background: url('../img/section-bg.png') no-repeat;
    background-size: contain;
    position: relative;
    z-index: 0;
  }

.hero,
.section-concept {
  position: relative;
  z-index: 1;
}
  
/* メインビジュアル */
.hero {
  padding: 200px 20px;
  background-image: url(../img/top-bg.webp);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right center;
  /* background-position: right 80px top 70px; */
}
  
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-height: 500px; /* ビジュアルがしっかり表示されるように */
}
  
.hero-text {
  flex: 0 1 600px;
  z-index: 1;
}
  
.hero-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 2;
}

.hero-title span{
    background-color: #DD0010;
    padding: 20px;
}
  
.hero-description p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin-bottom: 7px;
}

.hero-description span{
    font-size: 30px;
}

.top-bg-sub{
    position: absolute;
    width: 200px;
    bottom: -45px;
    left: 40%;
}

  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .hero {
        background-image: none;
        padding: 40px 20px;
        padding-top: 100px;
    }
  
    .hero-inner {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text {
      flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  
    .hero-title {
        font-size: 28px;
        text-align: left;
        line-height: 2.5;
    }

    .hero-title span{
        padding: 15px;
    }

    .top-bg-sub{
        display: none;
    }

    .hero-description{
        text-align: left;
    }

    .section-bg-wrap{
            background-size: cover;
            background-position: center top;
    }
  }
  

/* セクション全体 */
.section-concept {
    padding: 100px 0;
    text-align: center;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-style: normal;
    font-weight: 400;
  }
  
  /* タイトル */
  .concept-title {
    position: relative;
    font-size: 35px;
    font-weight: bold;
    color: transparent;
    overflow: hidden;
    font-family: AdjustedYuGothic, sans-serif;
    font-weight: 700;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 40px 0;
  }
  
  /* 背景アニメーション */
  .concept-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #E6003F;
    transform: translateY(100%);
    z-index: 1;
  }
  
  /* アニメーションスタート */
  .concept-title.anim-title::after {
    animation: mask-slide 1.2s ease-in-out forwards;
  }
  
  .concept-title.anim-title {
    animation: text-fade 0.6s ease-in-out 1.0s forwards;
  }
  
  /* 本文テキスト */
  .concept-text {
    font-family: AdjustedYuGothic, Yu Gothic, YuGothic, sans-serif;
    margin-top: 40px;
    font-size: 16px;
    line-height: 3;
    color: #333;
    max-width: 800px;
    margin-inline: auto;
  }

  .concept-text p{
    display: inline-block;
    font-size: 18px;
  }

  .gray-highlight{
    background-color: #FFF6BE;
    font-weight: bold;
    padding: 5px;
  }
  
  /* 背景マスクのアニメーション */
  @keyframes mask-slide {
    0% {
      transform: translateY(100%);
    }
    50% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  
  /* テキストのフェードイン */
  @keyframes text-fade {
    0% {
      color: transparent;
    }
    100% {
      color: #E6003F;
    }
  }

   @media (max-width: 768px) {
    .concept-title{
        font-size: 24px;
        padding: 40px 20px;
    }

    .section-concept{
        padding: 0;
    }

    .concept-text{
        padding: 40px 20px;
    }

    .concept-text p{
        font-size: 13px;
        line-height: 2.5;
    }
}

  .service-section {
    position: relative;
    background-color: #FFF5EF;
  }
  
  .service-section.business{
    background-color: #f1f1f1;
    margin-top: 60px;
  }

  .service-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
    flex-direction: row-reverse;
  }
  
  /* 画像を絶対配置してピンクボックスにかぶせる */
  .service-imgs {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-imgs img {
    width: 380px;
  }
  
  /* テキスト下の補足 */
  .service-tags {
    margin-top: 20px; /* 画像との重なり考慮して調整 */
    font-size: clamp(13px, 1.5vw, 15px);
    color: #333;
    line-height: 2;
    text-align: right;
    /* width: 85%;
    background-color: #fff; */
    background-image: url(../img/tag-bg.png);
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    padding: 20px;
  }
  
  .service-tags p {
    padding: 6px;
  }

  /* .service-tags p:last-child{
    border-bottom: 1px solid #ccc;
  } */
  
  .service-content {
    border: 1px solid #ccc;
    width: 500px;
    background: #fff;
    padding: 80px 40px;
    border-radius: 80px 0 0 0;
    text-align: center;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 100%;
    height: 440px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
  }
  
  .service-title {
    font-size: 24px;
    font-weight: bold;
    color: #e6003f;
    margin-bottom: 24px;
  }

  .service-section.business .service-title {
    color: #005bac;
  }
  
  .service-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
    color: #333;
  }

  .btn-service span,
  .btn-business span {
    position: relative;
    z-index: 1;
  }

  .btn-round-move {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 2px solid #e6003f;
    border-radius: 30px;
    color: #fff;
    background-color: #e6003f;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    width: 250px; /* 任意の幅 */
  }
  
  .btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #e6003f;
    border-radius: 50%;
    transition: transform 0.4s ease;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #e6003f;
  }
  
  .btn-icon {
    font-size: 20px;
  }
  
  .btn-label {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }

  .btn-round-move.vender{
    width: 200px;
  }
  
  .btn-round-move:hover .btn-circle {
    transform: translate(240px, -50%);
  }

  .btn-round-move.vender:hover .btn-circle {
  transform: translate(180px, -50%) !important;
}
  
  .btn-round-move:hover {
    color: #e6003f;
    background-color: #fff;
  }
  
  .btn-round-move:hover .btn-circle {
    border-color: #e6003f;
    background-color: #e6003f;
    color: #fff;
  }

  .btn-round-move.blue {
    border-color: #005bac;
    background-color: #005bac;
    color: #fff;
  }

  .btn-round-move.blue .btn-circle {
    border-color: #005bac;
    color: #005bac;
  }

  .btn-round-move.blue:hover {
    background-color: #fff;
    color: #005bac;
  }

  .btn-round-move.blue:hover .btn-circle {
    border-color: #005bac;
    background-color: #005bac;
    color: #fff;
  }
  
  
  /* フェードアップ */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
  }
  
  .fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
  }

  .image-area-inner{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 75px;
    position: relative;
  }

  .image-area-inner.pc {
    display: block;
  }
  
  .image-area-inner.min {
    display: none;
  }

  @media screen and (max-width: 1100px) {
    .service-inner{
        max-width: initial;
        flex-direction: column-reverse;
        padding: 20px 0;
    }

    .service-content{
        height: auto;
        padding: 40px;
        gap: 40px;
    }

    .service-text p{
        font-size: 14px;
        text-align: left;
    }

    .btn-circle{
        width: 30px;
        height: 30px;
    }

    .btn-round-move{
        padding: 10px;
    }

    .image-area-inner.pc {
      display: none;
    }
  
    .image-area-inner.min {
        display: flex;
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }

    .service-tags{
      background-image: none;
      width: auto;
    }

    .service-tags.sp{
        display: block;
    }

    .service-tags.sp img{
      width: 100%;
    }

    .service-tags.pc{
        display: none;
    }
  }

   @media (max-width: 768px) {
    .service-content{
        width: 70%;
    }

        .service-imgs img{
        width: 250px;
    }
}
  
  .gallery-bg{
    max-width: 100%;
  }

  .gallery-main{
    position: absolute;
    cursor: pointer;
    overflow: hidden;
  }

  .gallery-main img {
    height: auto;
    transition: transform .6s ease;
  }

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

  .gallery-main.gallery1{
    width: 316px;
    left: 0;
    bottom: 84px;
  }

  .gallery-main.gallery2{
    width: 163px;
    left: 33%;
    bottom: 82px;
  }

  .gallery-main.gallery3{
    width: 316px;
    bottom: 84px;
    right: 19%;
  }

  .gallery-main.gallery4{
    width: 163px;
    right: 0%;
    bottom: 82px;
  }

/* 数字で見る */
.stats-section {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    padding: 100px 20px;
  }
  
  /* タイトル */
  .stats-title {
    background: #000;
    color: #fff;
    padding: 14px 30px;
    font-size: 44px;
    font-weight: normal;
    display: inline-block;
    margin: 0 auto 40px;
  }

  .stats-row {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    border-bottom: 1px solid #ccc;
  }

  .stats-row.top {
    align-items: flex-start;
    border-top: 1px solid #ccc;
  }

  /* 上段のカラム比率：1カラム目と2カラム目を1ずつに統一 */
.stats-row.top .stats-box:nth-child(1),
.stats-row.top .stats-box:nth-child(2) {
  flex: 1;
}

/* 下段の業界別実績を上段の1+1の合計（2）と同じ幅にする */
.stats-row:nth-child(3) .stats-box:nth-child(1) {
    flex: 2;
  }
  
  
  .stats-box {
    flex: 1;
    text-align: center;
    position: relative;
    /* height: 235px; */
    height: auto;
    padding: 30px 0 40px;
  }

  .stats-box-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .stats-row .stats-box:nth-child(1) {
    flex: 2;
  }

  .stats-row .stats-box:nth-child(2) {
    flex: 1;
  }
  
  /* ボーダー */
  .border-right {
    border-right: 1px solid #ccc;
  }

  .border-left {
    border-left: 1px solid #ccc;
  }
  
  /* ラベル */
  .stats-label {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
  }
  
  /* メイン数字 */
  .stats-num-wrap {
    height: 75px; /* 数値表示のエリア高さを統一 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  /* .stats-num {
    font-size: 40px;
    color: #000;
    margin-bottom: 10px;
    font-family: area-normal, sans-serif;
    font-style: normal;
    font-weight: 100;
  } */

  /* フォントが読み込み中（非表示にしておく） */
.count-up {
  visibility: hidden;
}

/* .show がついたときにアニメーション */
.count-up.show {
  visibility: visible;
  animation: bounceIn 0.8s ease-out forwards;
}

/* スタイルはそのまま */
.stats-num .count-up {
  font-size: 40px;
  color:#CEA11D;
  margin-bottom: 10px;
  font-family: "georgiapro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.count-up {
  display: inline-block;
  transform: translateY(-50px);
  opacity: 0;
}


@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px);
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* .count-up {
  display: inline-block;
  transform: rotateX(90deg);
  opacity: 0;
  animation: flipIn 0.6s ease-out forwards;
}

@keyframes flipIn {
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
} */


  .stats-num span {
    font-size: 14px;
    color: #555;
    margin-left: 4px;
  }
  
  .stats-num.red {
    color: #e60012;
  }

  .stats-icon-wrap{
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* アイコン */
  .stats-icon {
    width: 80px;
  }
  
  /* グラフなど画像 */
  .stats-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    width: 210px;
  }
  
  /* タグ */
  .stats-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
  }
  
  .stats-tags span {
    background: #eee;
    padding: 4px 10px;
  }

  .stats-seminar{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* 注釈 */
  .stats-note {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
  }

  .stats-gray{
    background: #eee;
    padding: 4px 10px;
  }

  .stats-note-num{
    font-size: 30px;
  }
  
  /* エリア全体 */
  .industry-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* バブル群 */
  .industry-bubbles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .industry-bubbles-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* 各バブル */
  .bubble {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    background-color: #e6e6e6;
  }
  
  .bubble span {
    font-size: 24px;
    margin-top: 4px;
    color: #CEA11D;
    font-family: "georgiapro", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  /* .bubble.red {
    background-color: #f29fa5;
  }
  
  .bubble.blue {
    background-color: #b4c5db;
  } */
  
  /* その他 */
  .industry-others {
    font-size: 12px;
    text-align: left;
    min-width: 160px;
    line-height: 1.8;
    /* position: absolute;
    bottom: 20px;
    right: -20px; */
    display: flex;
  }
  
  .industry-others ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: flex-start;
  }

  .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    z-index: 10;
  }
  .dot-top-left {
    top: -4px;
    left: -4px;
  }
  .dot-bottom-left {
    bottom: -4px;
    left: -4px;
  }
  .dot-top-right {
    top: -4px;
    right: -4px;
  }
  .dot-bottom-right {
    bottom: -4px;
    right: -4px;
  }

.right{
	text-align:right;
}

  .industry-bubbles-row.sp{
    display: none !important;
  }
  @media (max-width: 1100px) {
      .gallery-bg {
        width: 400px;
    }
  }
   @media (max-width: 768px) {
    .stats-title{
        font-size: 24px;
    }

    .stats-row{
        flex-direction: column;
        align-items: center;
    }

    .stats-box{
        flex: initial !important;
        width: 100%;
        border: 1px solid #ccc;
    }

    .industry-bubbles-row.pc{
        display: none !important;
    }

    .stats-box-sp{
        padding-bottom: 80px;
    }

    .industry-others{
        min-width: initial;
        padding: 0 20px;
        flex-direction: column;
    }

    .industry-bubbles-row.sp{
    display: flex !important;
  }

      .industry-others ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .stats-img:first-child{
      width: 250px;
    }
}

 @media (max-width: 500px) {
    .stats-box-sp{
        height: 350px;
    }

    .gallery-bg {
        width: 300px;
    }
}

  
  /* お知らせ */
  .news-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 4px solid #333;
    padding-bottom: 15px;
  }
  
  .news-header h2 {
    font-size: 40px;
    font-family: area-normal, sans-serif;
    font-style: normal;
    font-weight: 100;
    margin: 0;
    background: #000;
    color: #fff;
    padding: 8px 30px;
  }
  
  .news-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  
  .news-link .text {
    position: relative;
    transition: color 0.3s ease;
    margin-bottom: 0;
  }
  
  .news-link .text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
  }
  
  .news-link:hover .text::after {
    width: 100%;
  }
  
  .arrow-circle {
    width: 32px;
    height: 32px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .news-link:hover .arrow-circle {
    transform: translateX(5px);
  }
  
  .arrow {
    font-size: 16px;
    line-height: 1;
  }  
  
  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f1f1f1;
  }
  
  .news-item {
    border-bottom: 1px solid #333;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start; /* 上揃えにする */
  }
  
  .news-item a {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    align-items: center;
  }
  
  .news-thumb {
    flex-shrink: 0;
    height: 100px;
  }
  
  .news-thumb img,
  .no-thumb {
    height: 100px;
    object-fit: cover;
    background: #eee;
    width: 170px;
  }

  .news-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .news-date {
    font-size: 14px;
    color: #888;
  }
  
  .news-title {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;         /* ★ 2行でカット */
    -webkit-box-orient: vertical;  /* ★ 縦方向 */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @media (max-width: 600px) {
    .news-header h2{
        font-size: 24px;
    }
    .news-item a {
      flex-direction: column;
      align-items: center;
    }
    .news-title {
      text-align: center;
    }
  }
    

  /* コンタクトセクション */
  .contact-section {
    background-color: #4d4d4d; /* ダークグレー背景 */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .contact-inner{
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .contact-message {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  
  .contact-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .contact-btn {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 50px;
    min-width: 270px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .contact-btn:hover {
    background: #e6003f;
    color: #fff;
  }
  
  .contact-btn small {
    font-size: 12px;
    font-family: area-inktrap-extended, sans-serif;
    font-style: normal;
    font-weight: 100;
  }
  
  .contact-tel {
    font-size: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    font-family: area-inktrap-extended, sans-serif;
    font-style: normal;
    font-weight: 100;
  }
  
  .contact-tel img {
    max-width: 100%;
    width: 30px;
  }
  
  /* スマホ対応：ボタンを縦並びに */
  @media screen and (max-width: 768px) {
    .contact-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-btn {
      width: 100%;
      max-width: 300px;
        padding: 10px;
    }


  }
  
  /*============================================================================

	$footer

============================================================================*/

footer {
    position:relative;
    width:100%;
    background-color: #202020;
    color: #fff;
}


.footer_bottom_wrap{
  padding:80px 20px 0px;
}
.footer_bottom{
  display: flex;
	display: -ms-flex;
	justify-content: center;
	justify-content: -ms-space-between;
  
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
}
.site_map01{
    margin: 0;
}
.site_map01_list li{
  margin-bottom: 14px !important;
  height: 28px;
}
.site_map01_list a{
  display: flex;
  align-items: center;
  vertical-align: middle;
  gap: 5px;
  font-weight: initial !important;
}
.logo_none{
  margin-left: 25px;
}

/*info*/
.footer_bottom .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.footer_bottom .info .logo{
  align-items: baseline;
	height: auto;
  display: flex;
  flex-direction: column;
}
.footer_bottom .info .logo.footer{
  column-gap: 10px;
}
.logo-pa{
  gap: 10px;
}
.footer_bottom .info .logo img{
  width: 165px;
}
.footer_bottom .info .ad{
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 0;
}

.footer_bottom .info .ad a{
  display: block;
  padding-top: 6px;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-feature-settings : "palt";
}

.footer_bottom .info .ad a:hover{
  text-decoration: underline;
}

.footer_bottom .info .ad a img{
  position: relative;
  top: -2px;
  padding-right: 6px;
}

/*.footer_bottom .info .ad li:first-child{
  margin-bottom: 40px;
}*/
.footer_bottom .info .ad li{
  margin-bottom: 20px;
  text-decoration: none;
  list-style: none;
}

.site_map02{
  margin-bottom: 100px !important;
}

.site_map01 li{
  margin-bottom: 14px;
  list-style: none;
}
.site_map01 a,.site_map02 a{
    color: #fff;
  font-size: 14px;  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}

.site_map01 a:hover,.site_map02 a:hover{
  opacity: 0.5;
}
.footer_bottom div.site_map01 li:first-child{
  margin-bottom: 14px;
}

/* .footer_bottom div.site_map01 .site_map02 li:first-child{
  margin-bottom: 6px;
} */

.footer_bottom div.site_map01 li.wide{
  margin-left: 10px;
}


/* div.site_map01 li{
  margin-bottom: 6px;
} */

.site_map02{
  display: flex;
	display: -ms-flex;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.site_map02 .tit a{
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
}

.site_map02 .tit ul li a{
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
.site_map02 ul li a{
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}

.site_map02 ul:first-child{
    margin: 0;
}
.site_map01_list{
    padding: 0;
}
.fotter_link_wrapper{
  display: flex;
  column-gap: 50px;
}
.site_map02_lastItem{
  margin-top: 36px !important;
}
.site_map02_lastItem a{
  font-weight: bold !important;
}
.site_map01-pa{
    padding-inline-start: 40px;
}
.site_map02-pa{
    padding-inline-start: 40px;
}
/*バナーボックス*/
.bnr_box{
	display: flex;
	/*justify-content: center;*/
	flex-wrap: wrap;
	margin-top: 80px;
}
.bnr_box a{
	width: 25%;
	margin: 2%;
}
.bnr_box a img{
	max-width: 300px;
}
.top.bnr_box{
    max-width: 1200px;
	width: 100%;
	margin: 0 auto 50px;
}
.top.bnr_box a{
	width: 14%;
	margin: 0.5%;
}
.bnr_box a img{
	max-width: 100%;
	height: auto;
    width: 100%;
}
  
.footer-badge{
    display: flex;
    justify-content: space-between;
}

.freeee_logo1 img{
    max-width: 100%;
    width: 83px;
}

@media (max-width: 768px) {
  .footer_bottom_wrap{
    padding: 20px;
    padding-top: 60px;
  }

  .footer_bottom{
    flex-direction: column;
    width: 100%;
  }

  .fotter_link_wrapper{
        flex-direction: column;
        margin-top: 50px;
  }

  .top.bnr_box{
    width: 100%;
    margin: 0 auto 50px;
    padding-left: 0;
  }

  .top.bnr_box a{
    width: 45%;
    margin: 2%;
  }

  .footer-badge{
    justify-content: flex-start;
  }

  .site_map01{
    padding: 0;
  }

  .site_map02 ul:first-child{
    padding: 0;
  }

  .site_map02{
        margin-bottom: 20px !important;
  }

  .site_map01-pa,.site_map02-pa{
    padding: 0;
  }
}

/*============================================================================

クラウド導入支援サービス

============================================================================*/
.cloud-adoption-fv {
    background-color: #F4F4F4;
    padding: 40px 20px;
    text-align: center;
    position: relative;
        padding-bottom: 0;
}

.cloud-adoption-fv h2{
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 40px;
}

.cloud-adoption-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}

.cloud-adoption-left{
  max-width: 960px;
}

.cloud-adoption-left img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.cloud-adoption-right {
  display: flex;
  max-width: 960px;
  justify-content: space-between;
    width: 100%;
    align-items: center;
}

.cloud-adoption-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cloud-adoption-text {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cloud-adoption-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}

.btn-outline {
  width: 280px;
  height: 50px;
  border-radius: 30px;
  border: 2px solid #e6003f;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6003f;
  text-decoration: none;
  line-height: 1.3;
}

.btn-outline:hover {
  background-color: #E60012;
  color: #ffffff;
}

.cloud-strengths-header {
  text-align: center;
  max-width: 1180px;
}

.cloud-strengths{
  margin-bottom: 150px;
}

.cloud-strengths-header h2 {
  font-size: 48px;
  color: #cccccc;
  font-family: area-inktrap-extended, sans-serif;
  font-style: normal;
  font-weight: 100;
  display: flex;
  margin: 0;
}

.cloud-strengths-wrapper{
  position: relative;
}

.cloud-strengths-wrapper::before,
.cloud-strengths-wrapper::after{
  z-index: -1;
    position: absolute;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 1px;
    background-color: #000;
    content: "";
}

.cloud-strengths-wrapper::before{
  top: 52%;
}

.cloud-strengths-title {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  color: transparent;
  overflow: hidden;
  padding: 10px 0;
}

.cloud-strengths-subTitle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  transform: translateY(100%);
  z-index: 1;
}

/* アニメーションスタート */
.cloud-strengths-subTitle.anim-title::after {
  animation: mask-slide 1.2s ease-in-out forwards;
}

.cloud-strengths-subTitle.anim-title {
  animation: text-fade2 0.6s ease-in-out 1.0s forwards;
}

@keyframes text-fade2 {
  0% {
    color: transparent;
  }
  100% {
    color: #000;
  }
}

.cloud-strengths-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #000;
  padding: 40px;
  height: 300px;
}

.cloud-strengths-content{
  border-top: none;
  border-bottom: none;
}

.cloud-strengths-content:last-child{
  border-bottom: none;
}

.cloud-strengths-left {
  flex: 1;
  text-align: center;
  font-size: 23px;
  line-height: 1.6;
  font-weight: bold;
}

.cloud-strengths-cap{
  font-size: 12px;
  margin-top: 40px;
}

.cloud-strengths-right {
  flex: 1;
}

.cloud-strengths-box {
  background-color: #F4F4F4; /* グレー背景 */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.cloud-strengths-box .box-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cloud-strengths-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.cloud-strengths-list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  gap: 5px;
}

.cloud-strengths-list img{
  width: 118px;
  border-radius: 0;
}

.cloud-merits-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.cloud-merits-header {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  align-items: center;
}

.cloud-merits-header img {
  width: 360px;
  height: auto;
  max-width: 100%;
}

.cloud-merits-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cloud-merits-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cloud-merits-block.reverse {
  flex-direction: row-reverse;
}

.cloud-merits-text {
  flex: 1;
}

.cloud-merits-text h3 {
  font-size: 24px;
  font-weight: bold;
  color: #004080;
  margin-top: 0;
  margin-bottom: 20px;
}

.cloud-merits-text p {
  font-size: 16px;
  line-height: 2;
  width: 95%;
}

.merit-highlight{
  background-color: #FFF6BE;
}

.cloud-merits-image {
  display: flex;
  justify-content: center;
  margin-left: 40px;
}

.cloud-merits-image img {
  width: 100%;
  max-width: 170px;
  height: auto;
}

.cloud-service-flow{
  margin: 60px 0;
}

.cloud-service-flow-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.cloud-service-flow-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.produce_title{
  text-align: center;
  margin-bottom: 30px;
}

.produce_title img{
  width: 370px;
}

@media screen and (max-width: 640px) {
  .produce_title img{
    width: 250px;
  }
}

.produce_text{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.produce_text{
  position: relative;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .produce_text{
    width: 100%;
  }
}

.produce_box{
  padding: 2%;
  margin: 0 auto 20px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #dacfce;
  border-left: solid 20px #7984b6;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 80px;
}

@media screen and (max-width: 640px) {
  .produce_box{
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #7984b6;  
  }
}

.produce_box.second{
  border-left: solid 20px #c8c271;
}

@media screen and (max-width: 640px) {
  .produce_box.second{
    border: 1px solid #c8c271;
  }
}

.produce_box.third{
  border-left: solid 20px #d17374;
}

@media screen and (max-width: 640px) {
  .produce_box.third{
    border: 1px solid #d17374;
  }
}

.produce_box h4{
  font-weight: bold;
  font-size: 120%;
  width: 30%;
  text-align: center;
}

.meeting-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-weight: bold;
  font-size: 120%;
  width: 30%;
  gap: 12px; /* アイコンとの余白 */
}

.crown-icon img {
  width: 24px; /* お好みでサイズ調整 */
  height: auto;
}

.meeting-text {
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .produce_box h4{
    width: 100%;
  }

  .meeting-title {
    flex-direction: column;
    width: 100%;
  }
}

.produce_box p{
  width: 70%;
  font-size: 15px;
}

@media screen and (max-width: 640px) {
  .produce_box p{
    width: 100%;
  }
}

.produce_box.last{
  margin-bottom: 80px;
}

.produce_label.second{
  background: #cfc53e;
  padding: 6px;
  font-size: 15px;
}

.produce_label.third{
  background: #ffc8c0;
  padding: 6px;
  font-size: 15px;
}

.cloud-faq-wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 60px auto;
}

/* .cloud-faq-inner a{
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  text-decoration: none;
} */

.cloud-faq-inner img{
  width: 50px;
}

.faq-img-wrapper {
  position: relative;
  display: inline-block;
}

.faq-img-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  opacity: 0;
  pointer-events: none;
}

.cloud-faq-inner a:hover .faq-img-wrapper::before {
  animation: kiran 0.6s linear;
}


.cloud-faq-inner p{
  font-size: 24px;
  color: #333;
}

@media (max-width: 768px) {
  .cloud-adoption-fv{
      max-width: initial;
  }

  .cloud-adoption-inner{
    padding: 20px;
  }

  .cloud-adoption-right{
    flex-direction: column;
  }

  .cloud-adoption-text{
    font-size: 18px;
  }

  .cloud-strengths-header h2{
    font-size: 20px;
  }

  .cloud-merits-header{
    flex-direction: column;
  }

  .cloud-strengths{
    margin-bottom: 100px;
  }

  .cloud-strengths-title{
        padding: 10px;
  }

  .cloud-strengths-inner{
    padding: 0 20px;
  }

  .cloud-strengths-content{
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
    height: auto;
  }

  .cloud-strengths-box{
    margin-bottom: 20px;
  }

  .cloud-strengths-left{
    font-size: 20px;
    margin-top: 20px;
  }

  .cloud-strengths-left img{
    width: 240px;
  }

  .cloud-strengths-list{
    justify-content: center;
  }

  .cloud-strengths-wrapper::before{
    top: 57%;
  }

  .cloud-merits-header{
    margin: 30px 0;
  }

  .cloud-merits-block.reverse{
    flex-direction: column-reverse;
    gap: 0;
  }

  .cloud-merits-text{
    padding: 20px;
  }

  .cloud-merits-text h3{
        text-align: center;
  }

  .cloud-merits-text p{
        width: 100%;
  }

  .cloud-merits-image{
        margin-left: 0;
  }

  .cloud-merits-content{
        gap: 30px;
  }

  .cloud-service-flow-wrapper{
        padding: 60px 20px;
  }

  .produce-section{
        padding: 0 20px;
  }
}
/*============================================================================

事業紹介

============================================================================*/
.business-overView-fv{
  background-color: #F8F8F8;
  padding-top: 120px;
}

.business-overView-bg{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  padding-bottom: 0;
}

.business-overView-fv .cloud-strengths-header{
  padding:0 20px;
}

.business-overView-inner{
  display: flex;
}

.business-overView-left{
  position: relative ;
  flex: 1;
}

.map-opasity-none{
  opacity: 0;
}

.zigyosyo-map{
  position: absolute;
  transition-duration: .4s;
}

.zigyosyo-map:hover {
  transform: scale(1.2);
}

.zigyosyo-map.top{
  left: 21%;
  top: -4%;
  width: 320px;
}

.zigyosyo-map.right{
  right: 6%;
  top: 16%;
  width: 160px;
}

.center-circle{
  position: absolute;
  left: 31%;
  top: 24%;
  width: 200px;
  cursor: pointer;
  display: block; /* ←これ追加 */
  z-index: 1;
  transition: all .3s;
}

.center-circle::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg) scale(0);
  opacity: 0;
  pointer-events: none;
}


/* .center-circle:hover::before {
  animation: kiran 0.5s linear;
} */

.center-circle:hover {
  transform: scale(0.9,0.9);
}

@keyframes kiran {
  0% {
    transform: translateX(-100%) rotate(45deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(200%) rotate(45deg);
    opacity: 0;
  }
}


.zigyosyo-map.bottom{
  bottom: 14%;
  right: 21%;
  width: 320px;
}

.zigyosyo-map.left{
  left: 5%;
  top: 15%;
  width: 150px;
}

/* 右側全体ボックス */
.business-overView-right {
  flex: 1;
  min-height: 460px;
  position: relative;
}

.business-tab-default {
  display: block;
}

/* 各タブコンテンツの共通設定 */
.business-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.business-tab-content.active {
  display: block;
}

.default-map-img {
  text-align: center;
  padding-top: 20px;
}

.default-map-img img{
  max-width: 200px;
}

/* ボックスのデザイン */
.cloud-station-box {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 40px 20px;
  border-radius: 8px;
  height: 400px;
  width: 400px;
}

/* 左に吹き出し（三角） */
.cloud-station-box::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 60px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #ccc;
}

/* ヘッダー部分 */
.cloud-station-header {
  text-align: center;
  margin-bottom: 30px;
}

.small-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.main-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.header-line {
  width: 50%;
  height: 2px;
  background-color: #888;
  margin: 0 auto;
}

.cloud-station-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.cloud-station-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
  margin: 30px auto;
}

.cloud-station-item {
  display: flex;
  align-items: center;
  background-color: #fdeceb;
  padding: 15px 20px;
  justify-content: center;
  height: 100px;
}

.cloud-station-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}

.cloud-station-item p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
  width: 200px;
}


/* フェードインアニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.vendor-support {
  background-color: #ffffff;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  margin-top: 0;
}

.vendor-support-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
border: 1px solid #000;
}

.vendor-support-left {
  flex: 1;
  text-align: center;
  border-right: 1px solid #ccc;
  padding: 20px;
  min-height: 0;
  min-width: 0;
}

.vendor-support-left .btn-round-move:hover .btn-circle {
    transform: translate(140px, -50%);
  }

.vendor-support-icon img {
  width: 40px;
}

.vendor-support-left h3 {
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 10px;
}

.vendor-support-link {
  display: inline-flex;
  font-size: 14px;
  color: #E6003F;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  align-items: center;
  gap: 5px;
  position: relative;
}

.vendor-support-link .text{
  position: relative;
  transition: color 0.3s ease;
}

.vendor-support-link .text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E6003F;
  transition: width 0.3s ease;
}

.vendor-support-link:hover .text::after {
  width: 100%;
}

.vendor-support-link img{
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.vendor-support-link:hover img {
  transform: translateX(5px);
}

.vendor-support-right {
  flex: 2;
  padding: 40px;
  min-height: 0;
  min-width: 0;
  padding-left: 0;
}

.vendor-support-list {
  list-style: none;
  margin-bottom: 30px;
}

.vendor-support-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

.vendor-logo-slider {
  overflow: hidden;
}

.vendor-logo-slider.slick-slider{
  padding: 0;
}

.vendor-logo-slider .slick-track {
  display: flex;
  align-items: center;
}

.vendor-logo-slider .slick-slide {
  width: auto !important; /* ←これ追加！ */
}

.vendor-logo-slider li{
  margin: 0 5px;
}

.vendor-logo-slider img {
  height: 40px;
  width: auto;
}

.service-summary {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-summary-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-summary-card {
  flex: 1 1 calc(25% - 20px);
  background-color: #ffffff;
  border: 1px solid #ccc;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-summary-subtitle {
  font-size: 14px;
  color: #666;
  background-color: #F2F2F2;
  padding: 5px 0;
}

.service-summary-logo{
  height: 80px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
}

.service-summary-logo img {
  width: 120px;
  height: auto;
}

.service-summary-title {
  font-size: 14px;
  color: #4D4D4D;
  margin: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.service-summary-list {
  list-style: none;
 margin: 0;
  text-align: left;
  height: 150px;
  padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.service-summary-list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-summary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #E6003F;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  gap: 5px;
}

.service-summary-link img {
  width: 30px;
  height: 30px;
}


 @media (max-width: 1200px) {
    .map-opasity-none{
        opacity: 1;
        width: 500px;
    }

    .zigyosyo-map{
        display: none;
    }

    .center-circle{
          display: none;
    }

    .business-overView-right{
        display: none;
    }

    .business-overView-left{
        text-align: center;
    }

    .service-summary-list{
        height: 250px;
    }
}

 @media (max-width: 768px) {
    .service-summary-inner{
            flex-direction: column;
    }

    .vendor-support-inner{
        flex-direction: column;
        gap: 0;
    }

    .vendor-support-left{
        border: none;
    }

    .vendor-support-right{
        width: 100%;
        padding: 0;
    }

    .vendor-support-list{
        padding: 20px;
        margin: 0;
    }

    .vendor-logo-slider.slick-slider{
        padding: 20px;
    }

    .vendor-support-left .btn-round-move{
        width: 180px;
        font-size: 14px;
    }

    .service-summary-list{
        height: 150px;
    }

}
/*============================================================================

会社概要

============================================================================*/
.company-fv {
  background-color: #F4F4F4;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.company-fv-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.company-fv-title {
  /* font-size: 32px; */
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
}

.company-fv-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.fv-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #c00;
  color: #c00;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  min-width: 180px;
  font-weight: bold;
  transition: 0.2s;
}

.fv-btn .icon {
  border: 1px solid #c00;
  border-radius: 50%;
  padding: 4px 10px;
  font-size: 16px;
  margin-left: 10px;
}

.fv-btn:hover {
  background-color: #c00;
  color: #fff;
}

.fv-btn:hover .icon {
  background-color: #fff;
  color: #c00;
}

.company-wrapper{
  position: relative;
  background-color: #F4F4F4;
}

.company-title {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}

.company-content {
  margin-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #000;
  padding: 40px;
  background-color: #fff;
}

.company-content{
  border-top: none;
  border-bottom: none;
}

.company-inner{
        padding: 0 20px;
}

.philosophy-section,
.vm-section{
  width: 900px;
  margin: 80px auto;
}

.philosophy-title {
  font-size: 28px;
  font-weight: bold;
  color: #e60044; /* 赤色 */
  margin-bottom: 40px;
  text-align: left;
}

.philosophy-text p {
  font-size: 16px;
  line-height: 2;
  color: #222;
  margin-bottom: 10px;
}

.vm-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.vm-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.vm-label {
  background-color: #e6e6e6;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 12px;
  min-width: 80px;
  text-align: center;
  line-height: 1.6;
  margin-top: 10px;
}

.vm-main {
  flex: 1 1 600px;
}

.vm-title {
  color: #e60044;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 20px;
}

.vm-text {
  font-size: 16px;
  line-height: 2;
  color: #222;
}

.vm-text strong {
  font-weight: bold;
  color: #000;
}

.company-table{
  width: 900px;
  margin: 80px auto;
}

.company-table dl {
  width: 100%;
  border-top: 1px solid #ccc;
  font-size: 16px;
  color: #222;
}

.company-table .row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.company-table dt {
  width: 160px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.company-table dd {
  flex: 1;
  margin: 0;
  line-height: 1.8;
}

.ceo-message-section {
  width: 900px;
  margin: 80px auto;
  margin-top: 60px;
  font-size: 16px;
  color: #222;
  line-height: 2;
}

.ceo-profile {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: space-between;
  align-items: center;
}

.ceo-photo img {
  max-width: 280px;
  height: auto;
}

.ceo-text {
  max-width: 420px;
  flex: 0 0 auto;
}

.ceo-text p{
  margin-bottom: 20px;
}

.ceo-name {
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}

.ceo-name strong{
  font-size: 20px;
}

.ceo-name span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.ceo-career .career-title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-top: 24px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .company-fv-buttons{
    justify-content: center;
  }

  .company-inner{
        padding: 0 20px;
  }

  .company-content{
        padding: 20px;
        max-width: initial;
  }

  .philosophy-section, .vm-section{
    width: 100%;
    margin: 0 auto;
  }

  .vm-block{
        flex-direction: column;
  }

  .vm-main{
        flex: initial;
  }

  .company-table{
        width: 100%;
  }

  .ceo-message-section{
    width: 100%;
  }

  .ceo-career .career-title{
    padding: 0;
  }

  .ceo-text{
        flex: initial;
  }

  .ceo-profile{
        justify-content: center;
  }

  .company-table .row{
        padding: 20px;
        align-items: flex-start;
  }

  .company-table dt{
        width: 80px;
        text-align: left;
  }
}

/*============================================================================

よくある質問

============================================================================*/
.faq-section {
  padding: 120px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.faq-box {
  padding: 20px;
  margin-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  color: #222;
  font-size: 18px;
  margin-bottom: 24px;
  border: 1px solid #222;
  padding: 20px;
}

.faq-question .label {
  color: #d60037;
  font-weight: bold;
  font-size: 20px;
  margin-right: 6px;
}

.faq-answer {
  font-size: 16px;
  line-height: 2;
  color: #222;
  width: 90%;
  margin: 0 auto;
  display: flex;
}

.faq-answer .label {
  font-weight: bold;
  font-size: 18px;
  margin-right: 6px;
}

@media (max-width: 768px) {
    .faq-box{
            padding: 0;
    }
}

/*==================================================================

導入事例

==================================================================*/
.breadcrumbs-case{
  background-color: #F4F4F4;
  padding-top: 120px;
}
.case-section{
  background-color: #F4F4F4;
}
.case-wrapper{
  text-align: center;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.case-wrapper h2{
  text-align: left;
}
.case-fv h2 {
  font-size: 24px;
  max-width: 1000px;
  margin: 20px auto;
}

.case-section .lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-section .desc {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #e6003f;
  color: #fff;
  width: 250px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.icon-circle {
  color: #e6003f;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.note {
  font-size: 12px;
  color: #e6003f;
  margin-top: 12px;
}

.features-section {
  padding: 20px;
  text-align: center;
}

.features-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  border: 1px solid #000;
  padding: 40px 20px;
  align-items: center;
  text-align: left;
}

.feature-left {
  text-align: center;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-left img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.feature-title {
  color: #e6003f;
  font-weight: bold;
  font-size: 16px;
  margin-top: 4px;
}

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

.feature-list li {
  font-size: 16px;
  margin-bottom: 8px;
}

.story-section {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
}

.story-section h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.story-block {
  margin-bottom: 60px;
  position: relative;
}

.story-box {
  border: 1px solid #999;
  padding: 20px;
  font-size: 16px;
  color: #004080;
  margin-bottom: 10px;
  background-color: #fff;
  font-weight: bold;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #e6003f;
  margin: 0 auto 10px;
}

.case-link-section {
  background-color: #FFF5EF;
  text-align: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  margin-bottom: 60px;

}

.case-link-section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.case-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.logo-character {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: auto;
}

@media (max-width: 768px) {
    .features-grid{
        grid-template-columns: 1fr;
        max-width: initial;
    }

    .logo-character{
        width: 100px;
        bottom: 0px;
    }
}

/*============================================================================

プライバシーポリシー

============================================================================*/
.privacy-policy-section{
    padding: 120px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

h2.tit01 {
    position: relative;
    margin-bottom: 82px;
    text-align: center;
    line-height: 1;
    color: #cd151c;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

h2.tit01::before {
    position: relative;
    display: block;
    width: 29px;
    height: 28px;
    margin: 0 auto 30px;
    background: url(../img/teco_logo_title.png) no-repeat;
    content: "";
}

h2.tit01 span {
    display: block;
    padding-bottom: 20px;
    font-size: 36px;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
}

.mt30 {
    margin-top: 30px;
}

.pt30 {
    padding-top: 30px;
}

.text {
    position: relative;
    margin-bottom: 100px;
}

.text p {
    margin-bottom: 1em;
}

h3.tit01 {
    position: relative;
    margin-bottom: 24px;
    font-size: 32px;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0.1em;
}

h4.tit01 {
    margin-bottom: 18px;
    letter-spacing: 0.15em;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    border-bottom: #d9d9d9 1px solid;
    padding-bottom: 5px;
    margin-top: 30px;
}

h5.tit01 {
    position: relative;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-weight: bold;
}

.text:last-child {
    margin-bottom: 0;
}

/*============================================================================

ブログ

============================================================================*/
.home.blog
#contents {
    position: relative;
    margin: 0 auto;
    padding-bottom: 70px;
}

#contents {
    width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
    background: none;
    /* border: 1px solid #ccc; */
    text-align: initial;
}

#contents .breadcrumbs{
    margin-bottom: 60px;
}