@charset "UTF-8";

/*--------------------------------------------------
  reset
--------------------------------------------------*/
  :root {
    --blue: #1461b1;
    --blue-dark: #003F7D;
    --blue-light: #E8F2FB;
    --orange: #E87722;
    --gray-light: #F4F6F8;
    --gray-mid: #E0E5EA;
    --gray-text: #555;
    --text: #333333;
    --white: #fff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
  }
img {
  width: 100%;
  height: auto;
  display: block;
}
  /* ===== HEADER ===== */
  .site-header {
    background: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
	  justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .site-header .logo {
	  width: 180px;
  }
  .site-header .logo span { color: var(--orange); }
.site-header .txt_link a {
	color: #333;
}
/* ===== SP ===== */
@media (max-width: 767px){
  .site-header {
    padding: 14px 20px 8px;
    display: flex;
  }
  .site-header .logo {
	  width: 90px;
  }
}


.mv{
	background: url("../images/mv_bg.webp") center no-repeat;
	background-size: cover;
}

/* 背景 */
.mv .mv__title {
	max-width: 720px;
	margin-bottom: 40px;
}
.mv .mv__panel {
	max-width: 720px;
	margin-bottom: 60px;
}
.mv .buttons {
	justify-content: flex-start
}

/* ===== SP ===== */
@media (max-width: 767px){
.mv{
	background: url("../images/sp_mv_bg.webp") center top no-repeat;
	background-size: cover;
	padding: 60% 20px 40px;
}
.mv .mv__title {
	max-width: 730px;
	margin-bottom: 10px;
}
.mv .mv__panel {
	max-width: 730px;
	margin-bottom: 20px;
}
}


/* ボタン */
.buttons{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
	justify-content: center;
}
.btn{
  flex: 1;
  min-width: 0;
  max-width: 380px;
  height: 82px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover{
  opacity: .9;
  transform: translateY(-2px);
}
.btn--blue{
  background: linear-gradient(90deg, #5abcf1 0%, #1494e2 100%);
}

.btn--orange{
  background: linear-gradient(90deg, #ffa300 0%, #ff9700 100%);
}
/* ===== SP ===== */
@media (max-width: 767px){
.buttons{
    display:flex;
    flex-direction: column;
    gap:14px;
  }

.btn{
	flex: none; 
    width:100%;
    min-width:0;
    max-width:none;
    height:62px;
    font-size:4.2vw;
    font-weight:700;
  }
}
  /* ===== SECTION BASE ===== */
  section { padding: 100px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-title {
    text-align: center;
    font-size: 48px;
    color: var(--blue);
    margin-bottom:60px;
    line-height: 1.5;
	  letter-spacing: .12em;
  }
  .section-title .small {
    font-size: 38px;
  }
  .section-title .sub {
    display: block;
    font-size: 38px;
    color: var(--gray-text);
    font-weight: 400;
    margin-bottom: 4px;
  }
.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_60 {
	margin-bottom: 60px;
}
/* ===== SP ===== */
@media (max-width: 767px){
  section { padding: 60px 20px; }
  .section-inner { max-width: 100%; margin: 0 auto; }
  .section-title {
    font-size: 6.8vw;
    margin-bottom:40px;
  }
  .section-title .small {
    font-size: 4vw;
  }
  .section-title .sub {
    display: block;
    font-size: 38px;
    color: var(--gray-text);
    font-weight: 400;
    margin-bottom: 4px;
  }
.pc-only {
	display: none;
}
.sp-only {
	display: block;
}
.mb_20 {
	margin-bottom: 10px;
}
.mb_40 {
	margin-bottom: 20px;
}
.mb_60 {
	margin-bottom: 30px;
}
}
  /* ===== industry ===== */
.industry {
  background: #fff;
}

.industry__inner {
  max-width: 1840px;
  margin: 0 auto;
}

.industry__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 52px 24px;
}

/* カード本体 */
.industryCard {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  background: #ddd;
  aspect-ratio: 350 / 250;
}

/* 画像 */
.industryCard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

/* 左上ラベル */
.industryCard__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 58%;
  padding: 6px 20px 10px;
  border-radius: 8px 0 8px 0;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size:22px;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  box-sizing: border-box;
}

/* hover */
.industryCard:hover img {
  transform: scale(1.05);
}

/* タブレット */
@media (max-width: 1200px) {
  .industry__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SP */
@media (max-width: 767px) {
  .industry {
    padding: 40px 16px;
  }

  .industry__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .industryCard {
    border-radius: 8px;
  }

  .industryCard__label {
    min-width: 48%;
    padding: 8px 10px 10px;
    border-radius: 8px 0 8px 0;
    font-size: 16px;
  }
}


  /* ===== PROBLEMS ===== */
  .problems {
  width: 100%;
  height: 700px; /* 必要な高さ */
  background: url("../images/sec02_bg.webp") center / cover no-repeat;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    50% 100%,
    0 85%
  );
}
  .problems-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .problems-title .small {
	  font-size: 38px;
  }
.ten {
  position: relative;
}
.ten::before {
  content: "●";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px; /* ←丸のサイズ */
  color: #333;
}
  .problems-list {
    max-width: 820px;
    margin: 0 auto 0;
	  background: #fff;
    border-radius: 16px;
	  padding: 40px 40px;
  }
  .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding:0 0 14px 0;
  }
  .problem-item:not(:last-child){
	  margin-bottom: 10px;
	  border-bottom: 6px dotted #d6d6d6;
  }
  .problem-item .check {
	  background: url("../images/check.webp") center / cover no-repeat;
	  width: 34px;
	  height: 32px;
	  margin-top: 10px;
  }
  .problem-item p { font-size: 30px; font-weight: 500; }
/* SP */
@media (max-width: 767px) {
  .problems {
  width: 100%;
  height: auto; /* 必要な高さ */
	  padding-bottom: 100px;
  background: url("../images/sec02_bg.webp") center / cover no-repeat;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 90%,
    50% 100%,
    0 90%
  );
}
  .problems-title {
    font-size: 6vw;
    margin-bottom: 22px;
  }
  .problems-title .small {
	  font-size:4vw;
  }
.ten::before {
  content: "●";
  top: -4px;
  font-size: 6px; /* ←丸のサイズ */
  color: #333;
}
  .problems-list {
    max-width: 820px;
    border-radius: 8px;
	  padding: 20px;
  }
  .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding:0 0 14px 0;
  }
  .problem-item:not(:last-child){
	  margin-bottom: 10px;
	  border-bottom: 3px dotted #d6d6d6;
  }
  .problem-item .check {
	  background: url("../images/check.webp") center no-repeat;
	  background-size: cover;
	  width: 24px;
	  height: 23px;
	  margin-top: 4px;
  }
  .problem-item p { font-size: 18px; }
}
  /* ===== SOLUTION ===== */
  .bg_01 {
	  background: url("../images/bg_01.webp") center bottom / 100% auto repeat-y;
  }
.solution .ttl_box {
	max-width: 660px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	
	padding: 110px 0 0 0;
}
.solution .ttl_box .txt_01{
	width: 145px;
	position:absolute;
	top: 0;
	left: -60px;
	z-index: -1;
}
.solution .ttl_box .josei{
	width: 34%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
  .solution-title {
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 30px;
	  z-index: 1;
  }
  .solution-title .large {
    font-size: 48px;
	  display: inline;
	  background: var(--blue);
	  color: #fff;
	  padding: 0 10px;
  }
  .solution-sub {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .solution-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
	  
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
/* layout */
.circleCards__inner{
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* circle card */
.circleCard{
  width: 220px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  position: relative;

  /* outer soft shadow like screenshot */
  box-shadow:
    0 18px 10px rgba(0,0,0,.18),
    0 2px 0 rgba(0,0,0,.04);
}

/* blue label */
.circleCard__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #0b66c7;
  color: #fff;
  font-weight: 700;
  letter-spacing: .12em;
  font-size:22px;
  /* position */
  margin-top: 6px;
  transform: translateY(-6px);
}

/* main text */
.circleCard__main{
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.05;
  font-size:32px;
}
.circleCard__main.jp{
  letter-spacing: .04em;
  font-weight: 800;
}

/* registered mark */
.circleCard__main .reg{
  font-size: .55em;
  vertical-align: super;
  margin-left: .08em;
}
.solution-img {
	max-width: 1000px;
	margin: -110px auto 80px;
}
/* SP */
@media (max-width: 767px) {
.solution .ttl_box {
	max-width: 660px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	
	padding:5% 0 0 0;
}
.solution .ttl_box .txt_01{
	width: 20%;
	position:absolute;
	top: -50px;
	left: -10px;
}
.solution .ttl_box .josei{
	width: 28%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
  .solution-title {
    font-size: 5vw;
    margin-bottom: 20px;
  }
  .solution-title .large {
    font-size: 6.4vw;
	  padding: 0 10px;
  }
  .solution-sub {
    font-size: 3.8vw;
    margin-bottom: 36px;
  }
  .solution-cards {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
  }
/* layout */
.circleCards__inner{
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

/* circle card */
.circleCard{
  width: 30%;
	box-shadow:
    0 6px 6px rgba(0,0,0,.18);
}

/* blue label */
.circleCard__tag{
  padding: 0 24px;
  border-radius: 999px;
  background: #0b66c7;
  color: #fff;
  font-weight: 700;
  letter-spacing: .12em;
  font-size:16px;
  /* position */
  margin-top:0;
  transform: translateY(-6px);
}

/* main text */
.circleCard__main{
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  font-size:5vw;
}
.circleCard__main.jp{
  letter-spacing: .04em;
  font-weight: 800;
}

/* registered mark */
.circleCard__main .reg{
  font-size: .55em;
  vertical-align: super;
  margin-left: .08em;
}
.solution-img {
	max-width: 1000px;
	margin: -10% auto 40px;
}
}

  /* ===== PRODUCT SECTION ===== */
  .products-detail { background: url("../images/sec04_bg.webp") center repeat; padding: 100px 24px; }

.product-block{
	max-width: 900px;
	margin: auto;
  background: #fff;
  border-top: #0068b7 solid 4px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	padding:0 60px 80px;
}
.product-block:not(:last-child){
	margin-bottom: 100px;
}
.productHead{
  padding: 60px 0 0;
}

.productHead__inner{
  margin: 0 auto;
  text-align: center;
}

/* 上の青いラベル */
.productHead__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:0 30px;
  border-radius: 999px;
  background: #0b6fc8;
  color: #fff;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 24px;
  margin-bottom: 22px;
}

/* ELCH2 */
.productHead__title{
  margin: 0 0 26px;
  font-weight:800;
  letter-spacing: .14em;
  line-height: 1;
  font-size:48px;
}

.productHead__title .reg{
  font-size: .5em;
  vertical-align: super;
  margin-left: .08em;
}

/* 下線付きサブ見出し */
.productHead__lead{
  display: inline-block;
  margin: 0 auto 44px;
  padding: 0 0 6px;
  border-bottom: 2px solid #333;
  letter-spacing: .08em;
  line-height: 1.35;
  font-size: 32px;
}

/* 下の3つのピル */
.productHead__chips{
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
	margin-bottom: 60px;
}

.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
  font-size: 20px;
  line-height: 1;
	font-weight: 800;
}

/* 左：塗り（薄い青の帯） */
.chip--fill{
  border-radius: 0;     
  color: #fff;
  background: linear-gradient(90deg, #8fa8bf, #9fb4c8);
}

/* 右2つ：枠線のみ */
.chip--outline{
  background: #fff;
  border: 2px solid #333;
}
.product-block .chart-section-title {
	font-size: 26px;
	text-align: center;
	font-weight: 700;
	margin: 40px 0 20px;
}
.product-block .small-ttl {
	font-size: 20px;
	text-align: center;
	margin: 0 0 20px;
}
.product-block .chart-box {
	width: 60%;
	margin: auto;
}
.product-block .chart-box.wide {
	width: 80%;
}
.product-block .chart-box .txt_box  {
	margin:20px 0 0 0;
	font-size: 18px;
}
.product-block .chart-box .txt_box .txt_01 {
	font-size: 20px;
	font-weight: 700;
}
.product-block .t_red {
	color: #c00002;
	font-weight: bold;
	font-size: 24px;
}
/* SP */
@media (max-width: 767px) {
  .products-detail { background: url("../images/sec04_bg.webp") center repeat; padding: 60px 20px; }

.product-block{
	max-width: 900px;
  border-top: #0068b7 solid 2px;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
	padding:0 20px 40px;
}
.product-block:not(:last-child){
	margin-bottom: 40px;
}
.productHead{
  padding: 20px 0 0;
}

.productHead__inner{
  margin: 0 auto;
  text-align: center;
}

/* 上の青いラベル */
.productHead__tag{
  padding:0 20px;
  font-size: 16px;
  margin-bottom: 18px;
}

/* ELCH2 */
.productHead__title{
  margin: 0 0 26px;
  font-size:8vw;
}

.productHead__title .reg{
  font-size: .5em;
  vertical-align: super;
  margin-left: .08em;
}

/* 下線付きサブ見出し */
.productHead__lead{
  display: inline-block;
  margin: 0 auto 24px;
  padding: 0 0 6px;
  border-bottom: 2px solid #333;
  letter-spacing: .08em;
  line-height: 1.35;
  font-size: 18px;
}

/* 下の3つのピル */
.productHead__chips{
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
	margin-bottom: 20px;
}

.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
  font-size: 15px;
  line-height: 1;
	font-weight: 800;
}

/* 左：塗り（薄い青の帯） */
.chip--fill{
  border-radius: 0;     
  color: #fff;
  background: linear-gradient(90deg, #8fa8bf, #9fb4c8);
	width: 80%;
}

/* 右2つ：枠線のみ */
.chip--outline{
  background: #fff;
  border: 2px solid #333;
}
.product-block .chart-section-title {
	font-size: 20px;
	margin: 30px 0 14px;
}
.product-block .small-ttl {
	font-size: 17px;
	margin: 0 0 14px;
}
.product-block .chart-box {
	width: 100%;
	margin: auto;
}
.product-block .chart-box.wide {
	width: 100%;
}
.product-block .chart-box .txt_box  {
	margin:10px 0 0 0;
	font-size: 16px;
}
.product-block .chart-box .txt_box .txt_01 {
	font-size: 18px;
}
.product-block .t_red {
	font-size: 20px;
}
}
  /* =====  CTA ===== */
  .cta_area {
    background: #fff;
    padding: 70px 24px;
    text-align: center;
  }
/* SP */
@media (max-width: 767px) {
  .cta_area {
    padding: 40px 20px;
  }
}
.case{
  background:#f6f6f6;
  padding: 80px 20px 90px;
}
.case__inner{
  max-width: 1000px;
  margin: 0 auto;
}
/* 2カラム */
.case__body{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

/* 左画像 */
.case__media{
  margin:0;
  border-radius: 2px;
  overflow:hidden;
  background:#e9eef6;
}
.case__media img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 右側 */
.case__content{
  padding-top: 10px;
}

.case__title{
  margin:0 0 18px;
  color:var(--blue);
  line-height: 1.55;
  letter-spacing: .08em;
  font-size: 30px;
}

/* タイトル下の青い罫線 */
.case__rule{
  height: 2px;
  background:var(--blue);
  width: 100%;
  margin: 0 0 18px;
}

.case__text p{
  margin: 0 0 14px;
}
.case .reserve_txt {
	font-size: 30px;
	text-align: center;

}

/* SP */
@media (max-width: 900px){
  .case{ padding: 56px 16px 70px; }
  .case__body{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .case__title{
    text-align: left;
	  font-size: 22px;
  }
.case .reserve_txt {
	font-size: 20px;
	text-align: center;

}
}

.faq{
  background:#fff;
  padding:80px 20px 100px;
}
.faq__inner{
  max-width:980px;
  margin:0 auto;
}
.faqItem{ margin:0 0 54px; }

/* Q */
.faqQ{
  width:100%;
  display:grid;
  grid-template-columns:54px 1fr 20px;
  align-items:center;
  gap:12px;
  padding:22px 22px;
  border:1px solid #848a91;
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  text-align:left;
}
.faqQ__q{
  color:var(--blue);
  font-weight:700;
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faqQ__text{
  color:var(--blue);
  font-weight:700;
  letter-spacing:.06em;
  font-size:clamp(18px,2.2vw,22px);
  line-height:1.35;
}
.faqQ__icon{
  width:28px;
  height:28px;
  margin-left:auto;
  position:relative;
}
.faqQ__icon::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:10px;
  height:10px;
  border-right:2px solid var(--blue);
  border-bottom:2px solid var(--blue);
  transform:rotate(45deg);
  transition:transform .25s ease;
}
.faqQ[aria-expanded="true"] .faqQ__icon::before{
  transform:rotate(-135deg);
}

/* A（アニメ用：gridで高さを滑らかに） */
.faqA{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:12px;
  padding:0 18px; /* 開いた時にだけ上余白付ける */
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease, padding-top .25s ease;
}
.faqA.is-open{
  padding-top:16px;
  max-height:500px; /* 内容が長い場合は増やす */
  opacity:1;
}

.faqA__a{
  color:var(--orange);
  font-weight:900;
  font-size:22px;
  line-height:1;
  display:flex;
  justify-content:center;
  padding-top:6px;
}
.faqA__body{
  color:#222;
  line-height:2.0;
  letter-spacing:.03em;
  font-size:15px;
}

/* SP */
@media (max-width:560px){
  .faq{ padding:56px 16px 40px; }
  .faqItem{ margin-bottom:22px; }
  .faqQ{
    grid-template-columns:44px 1fr 34px;
    padding:18px 16px;
    border-radius:12px;
  }
  .faqA{
    grid-template-columns:44px 1fr;
    padding:0 6px;
  }
}

.docs{
  padding: 70px 20px 80px;
  background:url("../images/sec06_bg.webp") center no-repeat;
	background-size: cover;
}

.docs__inner{
  max-width: 1180px;
  margin: 0 auto;
}

/* 3カード */
.docs__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
	margin-bottom: 60px;
}

/* card */
.docCard{
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:6px;
  box-shadow:0 0 10px rgba(0,0,0,.10);
  padding:40px 26px;
  min-height:180px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* 左：表紙 */
.docCard__thumb{
  margin:0;
  width: 120px;
  aspect-ratio: 3 / 4;      /* 本っぽい比率 */
  border-radius: 2px;
  overflow:hidden;
}
.docCard__thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* 右：テキスト */
.docCard__body{
  text-align:center;
  display:grid;
  justify-items:center;
  gap: 12px;
}

/* 青ピル */
.docCard__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color:#fff;
  letter-spacing: .08em;
  font-size: 16px;
}

/* 商品名 */
.docCard__name{
  font-weight: 700;
  letter-spacing: .10em;
  font-size: 36px;
  line-height: 1.1;
}
.docCard__name.jp{
  letter-spacing: .06em;
}

.reg{
  font-size: .55em;
  vertical-align: super;
  margin-left: .06em;
}

/* カタログボタン（白枠） */
.docCard__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  min-width:210px;
  padding: 10px 18px;
  border: 2px solid #bdbdbd;
  border-radius: 4px;
  background:#fff;
  color:#7a7a7a;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
	position: relative;
}
.docCard__btn:before{
	content: "";
	position: absolute;
	display: block;
	right: 10px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #bdbdbd;
	border-right: 2px solid #bdbdbd;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.docCard__btn:hover{
  transform: translateY(-1px);
  background:#f6f6f6;
  border-color:#a9a9a9;
}

/* レスポンシブ */
@media (max-width: 980px){
  .docs__grid{
    grid-template-columns: 1fr;
	  margin-bottom: 40px;
  }
  .docCard{
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 520px){
.docs{
}

  .docCard{
	  width: 100%;
    padding: 18px 16px;
    gap: 16px;
  }
  .docCard__thumb{ width:120px; }
  .docCard__name{ font-size: 28px; }
  .docCard__btn{ min-width: 200px; }
}
.corpFoot{
  background:#fff;
  padding: 58px 20px 42px;
  color:#2a2a2a;
}

.corpFoot__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align:center;
}

/* 上のロゴ */
.corpFoot__logo{
  width: 230px;
  margin: 0 auto 40px;
}

/* 会社名 */
.corpFoot__company{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: clamp(16px, 2.1vw, 22px);
  margin: 0 0 22px;
}

/* 住所 */
.corpFoot__addr{
  display: grid;
  gap: 10px;
  margin: 0 auto 46px;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  color:#333;
}
.corpFoot__addr p{
  margin:0;
}
.corpFoot__label{
  font-weight: 800;
  margin-right: 10px;
}

/* 下の小ロゴ */
.corpFoot__sublogo{
	width: 200px;
  margin: 0 auto 14px;
}
.corpFoot__sublogo span{
  font-size: 26px;
}

/* コピーライト */
.corpFoot__copy{
  display:block;
  font-size: 12px;
  letter-spacing: .08em;
  color:#8b8b8b;
}

/* SP */
@media (max-width: 560px){
  .corpFoot{ padding: 46px 16px 36px; }
  .corpFoot__addr{
    text-align:left;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 34px;
  }
.corpFoot__logo{
	width: 180px;
  margin: 0 auto 40px;
}
  .corpFoot__sublogo{
    font-size: 18px;
  }
  .corpFoot__sublogo span{
    font-size: 22px;
  }
}
  /* ===== SIDE TAB ===== */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(20px,-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .4s ease,
    transform .4s ease,
    visibility 0s .4s;
}

.side-tab.is-show{
  opacity: 1;
  visibility: visible;
  transform: translate(0,-50%);

  transition:
    opacity .4s ease,
    transform .4s ease,
    visibility 0s;
}

.side-tab a {
  writing-mode: vertical-rl;
  background: var(--blue);
  color: #fff;
  padding: 16px 8px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  letter-spacing: 1px;
}
  .side-tab a:hover { background: var(--blue-dark); }
  .side-tab a.orange { background: var(--orange); }
  .side-tab a.orange:hover { background: #c96010; }

  /* ===== UTILITY ===== */
  .text-blue { color: var(--blue); }
  .text-center { text-align: center; }
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }

  @media (max-width: 767px) {
    .hero-inner { flex-direction: column; padding: 24px 20px; }
    .hero-img { width: 100%; }
    .app-grid, .app-grid-row2 { grid-template-columns: repeat(3, 1fr); }
    .charts-row, .charts-row-single { grid-template-columns: 1fr; }
    .solution-cards { gap: 12px; }
    .sol-card { width: 160px; }
    .product-block { padding: 24px 20px; }
    .side-tab { display: none; }
  }

.news {
	background: #b0b0b0;
}
.news .section-title{
	margin: 0;
}
/*--------------------------------------------------
  animation
--------------------------------------------------*/
.fadeInUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.6s ease-in-out forwards;
          animation: fadeInUp 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}

.delay07s.isActive {
  animation-delay: 0.7s;
}
.delay09s.isActive {
  animation-delay: 0.9s;
}
.delay11s.isActive {
  animation-delay: 1.1s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


.fadeIn {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeIn.isActive {
  -webkit-animation: fadeIn 0.8s ease-in-out forwards;
          animation: fadeIn 0.8s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .delay07s.isActive {
    animation-delay: 0.5s;
  }
  .delay09s.isActive {
    animation-delay: 0.5s;
  }
  .delay11s.isActive {
    animation-delay: 0.5s;
  }
}
 .form_box {
	max-width: 900px;
 	box-shadow: 0 0px 20px rgba(0,0,0,0.10);
	padding: 60px;
	box-sizing: border-box;
	margin: auto;
	border-radius: 10px;
	}
/* SP */
@media (max-width: 767px) {
 .form_box {
	max-width: 900px;
 	box-shadow: none;
	padding: 0;
	box-sizing: border-box;
	margin: auto;
	border-radius:none;
}
	}
/*--------------------------------------------------
  pagetop
--------------------------------------------------*/
.pagetop{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 60px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.pagetop img{
  width: 100%;
  height: auto;
  display: block;
}

.pagetop.is-show{
  opacity: 1;
  visibility: visible;
}
@media (max-width:767px){

.pagetop{
  right: 16px;
  bottom: 16px;
  width: 50px;
}

}
.pagetop:hover{
  transform: translateY(-4px);
}