.o-index-screen {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.o-index-screen__section {
  width: 100%;
  padding: 15vh 0;
  border-bottom: 1px solid #EEEEEE;
}
.o-index-screen__section:last-child {
  border-bottom: 0 none;
}
@media (max-width: 1280px) {
  .o-index-screen__section {
    height: auto;
    padding: 72px 0;
  }
}
.o-index-screen__section .o-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1280px) {
  .o-index-screen__section .o-container {
    padding: 0 20px;
  }
}
.o-index-screen__section h1, .o-index-screen__section h2, .o-index-screen__section p {
  margin: 0;
  padding: 0;
}
.o-index-screen__section h1 {
  margin-bottom: 20px;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1280px) {
  .o-index-screen__section h1 {
    font-size: 32px;
  }
}
@media (max-width: 980px) {
  .o-index-screen__section h1 {
    font-size: 28px;
    line-height: 1.25;
  }
}
.o-index-screen__section h2 {
  margin-bottom: 5vh;
  color: #555555;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 1280px) {
  .o-index-screen__section h2 {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .o-index-screen__section h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.o-index-screen__company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (max-width: 980px) {
  .o-index-screen__company {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 24px;
  }
}
.o-index-screen__company-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 980px) {
  .o-index-screen__company-item {
    flex: calc(32% - 8px);
    width: calc(32% - 8px);
    align-items: center;
    padding: 0;
  }
}
.o-index-screen__company-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1;
  margin-bottom: 20px;
  background-color: #F5F5F5;
  border-radius: 8px;
}
.o-index-screen__company-item-icon svg {
  width: 45%;
  height: 45%;
  color: #555555;
  stroke-width: 1.5px;
}
.o-index-screen__company-item h3 {
  margin: 0 0 8px;
  padding: 0;
  color: #555555;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.o-index-screen__company-item h3 b {
  font-weight: 700;
}
@media (max-width: 1280px) {
  .o-index-screen__company-item h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }
}
.o-index-screen__company-item p {
  margin: 0;
  padding: 0;
  color: #777777;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .o-index-screen__company-item p {
    font-size: 14px;
  }
}
.o-index-screen__company-item:nth-child(1) h3 b {
  color: #0052D2;
}
.o-index-screen__company-item:nth-child(2) h3 b {
  color: #01A702;
}
.o-index-screen__company-item:nth-child(3) h3 b {
  color: #D29E00;
}
.o-index-screen__company-item:nth-child(4) h3 b {
  color: #D3004A;
}
.o-index-screen__company-item:nth-child(5) h3 b {
  color: #6001D2;
}
.o-index-screen__product {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px 32px;
  width: 100%;
}
@media (max-width: 980px) {
  .o-index-screen__product {
    gap: 12px 24px;
  }
}
.o-index-screen__product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: calc((100% / 5) - (32px * 3));
}
@media (max-width: 1280px) {
  .o-index-screen__product-item {
    width: calc((100% / 3) - 16px);
  }
}
.o-index-screen__product-item a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.o-index-screen__product-item-thumbnail {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 16px;
  padding: 4px;
  overflow: hidden;
  background-color: #F5F5F5;
  border-radius: 8px;
}
.o-index-screen__product-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 1280px) {
  .o-index-screen__product-item-thumbnail {
    margin-bottom: 12px;
  }
}
.o-index-screen__product-item-category {
  width: 100%;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #777777;
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 1280px) {
  .o-index-screen__product-item-category {
    margin-bottom: 2px;
    padding-left: 2px;
    font-size: 11px;
  }
}
.o-index-screen__product-item-title {
  height: calc(20px * 1.325 * 2);
  padding: 0 2px;
  overflow: hidden;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.325;
}
@media (max-width: 1280px) {
  .o-index-screen__product-item-title {
    height: calc(16px * 1.325 * 2);
    font-size: 16px;
  }
}
/*# sourceMappingURL=08238dfadd5090ad21dd5f7f95087343e683c252.IndexScreen.scss.map */
