@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  製品事例・ケーススタディ

---------------------------------*/
.readBlock {}
.readBlock .title {}
.readBlock .title h2 {
  line-height: 1.4;
  text-align: center;
}
.readBlock .txt {
  text-align: justify;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  一覧ページ

---------------------------------*/
.listBlock {
  padding: 0;
}
.listBlock .l-inner {
  width: 100%;
}
.SraechBlock {
  margin-bottom: 7rem;
}
.SraechBlock .tabArea {
  display: flex;
  justify-content: center;
  gap: .2rem;
  list-style: none;
}
.SraechBlock .tab_btn {
  background: var(--col-sub01);
  color: var(--col-main);
  cursor: pointer;
  flex-basis: calc(100%/3);
  font-weight: 600;
  font-size: 1.2em;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease 0s;
}
.SraechBlock .tab_btn:hover {
  background-color: #CDD6E4;
}
.SraechBlock .tab_btn.active {
  background: var(--col-main);
  color: #fff;
}
.SraechBlock .panelArea {
  border: solid 1px #e3ebf3;
  padding: 3rem;
}
.SraechBlock .tab_panel {
  display: none;
}
.SraechBlock .tab_panel.active {
  display: block;
}
.SraechBlock .tab_panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  list-style: none;
}
.SraechBlock .tab_panel ul li {
  font-size: 1.1em;
}
.SraechBlock .tab_panel ul li a {
  color: var(--col-main);
  font-weight: 500;
}
.SraechBlock .tab_panel ul li a:hover {
  color: var(--col-hover);
}
/*---------------------------------
  一覧
---------------------------------*/
.ItemBlock .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem 2%;
  list-style: none;
}
.ItemBlock .wrap:has(li:only-child), .ItemBlock .wrap:has(li:first-child:nth-last-of-type(2) ~ *) {
  grid-template-columns: repeat(auto-fit, minmax(256px, 0));
}
.ItemBlock .wrap li {}
.ItemBlock .wrap li a {
  color: var(--col-main);
  display: block;
}
.ItemBlock .wrap li a * {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.ItemBlock .wrap li a .__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ItemBlock .wrap li a .__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  vertical-align: bottom;
}
.ItemBlock .wrap li a:hover .__img img {
  transform: scale(1.1);
}
.ItemBlock .wrap li a .__ttl {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2;
  margin: 1.5rem 0;
}
.ItemBlock .wrap li a:hover .__ttl {
  color: var(--col-hover);
}
.ItemBlock .wrap li a .__txt {
  border: 1px solid #ccc;
  border-bottom: none;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 6rem auto;
  font-size: .9em;
}
.ItemBlock .wrap li a .__txt dt {
  border-bottom: 1px solid #ccc;
  background: #eee;
  font-weight: 600;
  padding: 1rem 1.5rem;
}
.ItemBlock .wrap li a .__txt dd {
  border-bottom: 1px solid #ccc;
  padding: 1rem 1.5rem;
  word-break: break-all;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  .ItemBlock .wrap {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .ItemBlock .wrap li a .__ttl {
    font-size: 1.1em;
    margin: 1rem 0;
  }
  .ItemBlock .wrap li a .__txt {
    grid-template-columns: 4rem auto;
  }
  .ItemBlock .wrap li a .__txt dt {
    padding: 0.5rem;
    text-align: center;
  }
  .ItemBlock .wrap li a .__txt dd {
    padding: 0.5rem 1rem;
  }
}
/*---------------------------------

  詳細ページ

---------------------------------*/
.detailBlock {
  border-bottom: 1px dotted var(--col-sub02);
  padding-top: 0;
  margin-bottom: 7rem;
}
.detailBlock .title {}
.detailBlock .title ._tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .9em;
  list-style: none;
  margin-top: 2.5rem;
}
.detailBlock .title ._tag li a {
  background: var(--col-sub02);
  border-radius: .5rem;
  color: #fff;
  display: block;
  padding: .3rem 1.5rem;
}
.detailBlock .wrap {
  display: flex;
  gap: 5rem;
  margin: 5rem auto;
}
.detailBlock .wrap ._imgBox {
  flex-basis: 50%;
}
.detailBlock .wrap ._imgBox img {
  width: 100%;
  vertical-align: bottom;
}
.detailBlock .wrap ._imgBox #thumbnail-carousel {
  margin-top: .5rem;
}
.detailBlock .wrap ._imgBox #thumbnail-carousel .splide__slide {
  cursor: pointer;
  width: calc(100%/5);
}
.detailBlock .wrap ._imgBox #thumbnail-carousel .splide__slide img {
  height: 100%;
  object-fit: cover;
}
.detailBlock .wrap ._txtBox {
  flex-basis: 50%;
}
.detailBlock .wrap ._txtBox dl {
  border: 1px solid #ccc;
  border-bottom: none;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 11.5rem auto;
}
.detailBlock .wrap ._txtBox dl dt {
  border-bottom: 1px solid #ccc;
  background: #eee;
  font-weight: 600;
  padding: 2rem;
}
.detailBlock .wrap ._txtBox dl dd {
  border-bottom: 1px solid #ccc;
  padding: 2rem;
}
.detailBlock .txt {}
.detailBlock .btn {
  margin-top: 7rem;
}
.detailBlock + .listBlock .title h2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  .detailBlock .wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 896px) {
  .detailBlock {
    margin-bottom: 5rem;
    padding-bottom: 5rem !important;
  }
  .detailBlock .wrap {
    gap: 3rem;
  }
  .detailBlock .btn {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .detailBlock {
    margin-bottom: 3rem;
    padding-bottom: 4rem !important;
  }
  .detailBlock .wrap {
    margin: 3rem auto;
  }
  .detailBlock .wrap ._txtBox dl {
    grid-template-columns: 8rem auto;
  }
  .detailBlock .wrap ._txtBox dl dt, .detailBlock .wrap ._txtBox dl dd {
    padding: 1rem;
  }
  .detailBlock .btn {
    margin-top: 3rem;
  }
}