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

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

p {
  line-break: strict;
}

.products-lead {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  text-align: center;
}
.products-lead p {
  font-size: 2rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .products-lead p {
    font-size: 1.6rem;
  }
}
.products-lead__deco {
  right: -60px;
  top: -60px;
  opacity: 0.6;
}

.products-list {
  overflow: hidden;
}

.products-item {
  position: relative;
  background: #fff;
}
.products-item:nth-child(even) {
  background: #f6f6f6;
}

.products-item__deco {
  opacity: 0.6;
}
.products-item:nth-child(odd) .products-item__deco {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.products-item:nth-child(even) .products-item__deco {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.products-item__label {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.products-item:nth-child(even) .products-item__label {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .products-item__label {
    padding-top: 40px;
  }
}

.products-item__en {
  font-family: "Roboto", sans-serif;
  font-size: 12rem;
  font-weight: 600;
  font-style: italic;
  color: #5ab6c3;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .products-item__en {
    font-size: 4rem;
  }
}

.products-item__num {
  font-family: "Roboto", sans-serif;
  font-size: 16rem;
  font-weight: 900;
  font-style: italic;
  color: #013388;
  line-height: 1;
  text-align: right;
  min-width: 207px;
}
@media screen and (max-width: 768px) {
  .products-item__num {
    font-size: 6rem;
    min-width: 80px;
  }
}

.products-item__stripe {
  height: 40px;
  background: #f6f6f6;
}
.products-item:nth-child(even) .products-item__stripe {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .products-item__stripe {
    height: 24px;
  }
}

.products-item__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0 80px;
}
@media screen and (min-width: 769px) {
  .products-item:nth-child(even) .products-item__row {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .products-item__row {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 24px 0 48px;
  }
}

.products-item__text {
  flex: 1;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .products-item__text {
    padding-top: 0;
  }
}

.products-item__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #013388;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .products-item__title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}

.products-item__desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  color: #000;
}

.products-item__img {
  flex: 1;
  height: 300px;
  overflow: hidden;
  background: #fff;
}
.products-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .products-item__img {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 8/5;
  }
}

.products-item__analogy {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  margin: -20px auto 60px;
  padding: 31px 48px 32px 61px;
  background-color: rgba(90, 182, 195, 0.1);
  border: 1px solid #5ab6c3;
}
@media screen and (max-width: 768px) {
  .products-item__analogy {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    padding: 24px 20px;
  }
}

.products-item__analogy-img {
  flex-shrink: 0;
  width: 216px;
  height: 132px;
  overflow: hidden;
}
.products-item__analogy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .products-item__analogy-img {
    width: 140px;
    height: 86px;
  }
}

.products-item__analogy-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.products-item__analogy-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}
.products-item__analogy-text p {
  font-size: 1.6rem;
  line-height: 1.625;
  color: #000;
}
@media screen and (max-width: 768px) {
  .products-item__analogy-text {
    gap: 12px;
  }
  .products-item__analogy-text h3 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=page_products.css.map */