@charset "utf-8";
strong {
    font-weight: bold;
}
figure {
  text-align: center; 
}
figcaption {
  font-size: 14px;
  margin-top: 8px;
}
.info-select {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-image: url(/00cmn/img/common/nav-arrow-dwn.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  line-height: 1;
}
.products-title {
  position: relative;
}
.products-title::after {
  position: absolute;
  left: calc(50% - 50vw);
  bottom: -24px;
  width: 100vw;
  height: 1px;
  background-color: #D1D1D1;
  content: "";
}
.flex-layout {
    display: flex;
    gap: 50px; 
    margin-bottom: 40px;
}
.flex-layout p {
    flex: 1.5;
}

.flex-layout figure {
    margin: 0;
    flex: 1; 
}
.flex-layout ul,
.flex-layout ol {
   list-style-position: outside;
}
.flex-layout ul { list-style-type: disc; } 
.flex-layout ol { list-style-type: decimal; }
.flex-layout li {
  list-style-position: outside;
  list-style-type: inherit;
  margin-left: 20px;
  padding-left: 3px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
padding: 0;
}
.img-grid-container {
    display: grid;
    gap: 70px;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.img-grid-container-solo {
  display: grid;
  width: 40%;
  grid-template-columns: repeat(1, 1fr)!important;
  gap: 30px;
  flex: 1;
}
    .img-grid-custom {
    display: grid;
    gap: 20px; 
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    flex: 1;
}

.img-grid-custom > div:nth-child(1) {
    grid-column: 1 / 3; 
}

.img-grid-custom > div:nth-child(2) {
    grid-column: 1 / 2; 
}

.img-grid-custom > div:nth-child(3) {
    grid-column: 2 / 3; 
}

.img-grid-custom > div:nth-child(4) {
    grid-column: 1 / 2; 
}

.img-grid-custom > div:nth-child(5) {
    grid-column: 2 / 3; 
}
.flex-container{
    display: flex;
    gap: 25px;
}
.flex-container figure{
    flex: 1;
}
.flex-container p{
    flex: 1.5;
}
.top-grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
justify-items: center;
gap: 20px;
width: 80%;
list-style: none;
padding: 0;
}
.top-grid-colmn{
  width: 70%;
}
.h2-head {
  display: block;
  position: relative;
  padding-right: 60px;
  background-color: #efefef;
  line-height: 1.3;
}
.h2-head span{
  display: block;
}
@media (min-width: 768px) {
    .h2-head  {
    padding: 20px 15px;
    font-size: 1.5rem;
    }
}
@media not all and (min-width: 768px) {
  .h2-head > .cg-wrap {
    padding-left: 35px;
  }
  .h2-head {
    padding: 10px 15px;
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) {
  .info-select {
    width: 240px;
    margin-left: auto;
  }
}
@media not all and (min-width: 768px) {
  .info-select {
    width: 100%;
  }
}
@media(max-width: 768px) {
    .flex-layout {
        flex-direction: column;
    }
    .flex-layout figure {
        text-align: center;
    }
    .flex-layout img {
        width: auto;
    }    
    .top-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 90%;
    }
    .img-grid-container {
      width: 100%;
    }
    .img-grid-custom {
      width: 100%;
    }    
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
        width: 90%;
    }
    .select-flex{
        display: flex;
    }
    .select-flex h2{
        flex: 2;
    }
    .select-flex select{
        flex: 1;
        height: 100%;
    }
}
@media (min-width: 1023px){
  .top-grid-container{
    margin: auto;
  }
}
@media (hover) {
  .top-grid-colmn a:hover {
    text-decoration: underline;
  }
}
