@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 ._menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .2rem;
  list-style: none;
}
.SraechBlock ._menu li {
  flex-basis: calc(100%/3 - .2rem);
  font-weight: 600;
  font-size: 1.1em;
  text-align: center;
}
.SraechBlock ._menu li a {
  background: var(--col-sub01);
  color: var(--col-main);
  display: block;
  font-weight: 600;
  font-size: 1.2em;
  padding: 1.5rem;
}
.SraechBlock ._menu li a:hover {
  background-color: #CDD6E4;
}
.SraechBlock ._menu li.active a {
  background: var(--col-main);
  color: #fff;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .SraechBlock ._menu li {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .SraechBlock ._menu li {
    flex-basis: calc(100%/2 - .2rem);
    font-size: .9em;
  }
  .SraechBlock ._menu li a {
    padding: 1.2rem .8rem;
  }
}
/*---------------------------------
  一覧
---------------------------------*/
.ItemBlock .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem 2%;
  list-style: none;
}
.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;
  border: 1px solid #eee;
  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 .__tag {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 1.5rem 0;
}
.ItemBlock .wrap li a .__tag li {
  background: var(--col-sub01);
  border-radius: .5rem;
  color: #808080;
  font-size: .8em;
  padding: .2rem 1rem;
}
.ItemBlock .wrap li a .__ttl {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1.5rem;
}
.ItemBlock .wrap li a:hover .__ttl {
  color: var(--col-hover);
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  .ItemBlock .wrap {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .ItemBlock .wrap li a .__tag {
    margin: 1rem 0;
  }
  .ItemBlock .wrap li a .__ttl {
    font-size: 1.1em;
    font-weight: 600;
  }
}
/*---------------------------------

  詳細ページ

---------------------------------*/
.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 .contentsTxt {
  margin: 7rem auto;
  width: 90%;
}
.detailBlock .contentsTxt h2 {
  background: none;
  color: var(--col-sub02);
  font-size: 200%;
  font-weight: 800;
  margin: 4rem auto;
  padding: 0;
  text-align: center;
}
.detailBlock .contentsTxt figure {
  margin: 2rem auto;
  text-align: center;
}
.detailBlock .contentsTxt figure img {
  max-width: 100%;
  width: auto;
}
.detailBlock .contentsTxt p {
  line-height: 2;
  margin: 1rem 0;
}
.detailBlock .contentsTxt .is-arrow-style {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 40px solid #D8DFE8;
  border-bottom: 0;
  margin: 5rem auto;
}
.detailBlock .pointBox {
  border: 1px dotted #aaaa;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  padding: 4rem;
  padding-left: 0;
}
.detailBlock .pointBox h3 {
  color: var(--col-sub02);
  display: grid;
  justify-content: center;
  align-content: center;
  flex-basis: 20%;
  letter-spacing: .1em;
  padding: 1rem 2rem;
}
.detailBlock .pointBox ._txt {
  flex-basis: 80%;
}
.detailBlock .pointBox ._txt p {
  line-height: 2;
  text-align: justify;
}
.detailBlock .pointBox ._txt p + p {
  margin-top: 1rem;
}
.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 .contentsTxt {
    margin: 5rem auto;
    width: 100%;
  }
  .detailBlock .contentsTxt h2 {
    margin: 2rem auto;
  }
  .detailBlock .contentsTxt figure {
    margin: 1.5rem auto;
  }
  .detailBlock .contentsTxt .is-arrow-style {
    margin: 3rem auto;
  }
  .detailBlock .btn {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 896px) {
  .detailBlock {
    margin-bottom: 5rem;
    padding-bottom: 5rem !important;
  }
  .detailBlock + .listBlock {}
  .detailBlock + .listBlock .title h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .detailBlock {
    padding-bottom: 3rem !important;
    margin-bottom: 4rem;
  }
  .detailBlock .pointBox {
    display: block;
    padding: 2rem;
  }
  .detailBlock .pointBox h3 {
    padding: 0;
    justify-content: start;
  }
  .detailBlock + .listBlock .title h2 {
    font-size: 2.1rem;
  }
  .detailBlock .btn {
    margin-top: 3rem;
  }
}