:root {
  --color-blue: #2794fe;
  --color-light-blue: #e9f4fe;
  --color-white: #fff;
  --color-orange: #f58917;
  --color-pink: #f77572;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

p, ul, h1, h2 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.container {
  width: min(1500px, 100% - 30px);
  margin: 0 auto;
}

.header {
  position: relative;
}
.header::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--color-blue);
  position: absolute;
  left: 0;
  bottom: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .header-content {
    padding: 3px 0 7px 0;
  }
}
@media screen and (max-width: 768px) {
  .logo-image {
    width: 180px;
  }
}
.header__info {
  text-align: right;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .header__info {
    display: none;
  }
}
.header__phone-number {
  display: inline-block;
  margin-bottom: 5px;
}

.fv {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 65px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .fv {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.fv__image {
  width: 750px;
  height: 437px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .fv__image {
    width: calc(100% + 30px);
    height: 370px;
  }
}
.fv__image01 {
  background-image: url("../image/fv01.jpg");
  background-position: center;
}

.fv__image02 {
  background-image: url("../image/fv02.jpg");
}

.fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .fv__text {
    width: max(180px, 40vw);
  }
}
.fv__text-image {
  width: 100%;
}

.read__heading {
  font-size: clamp(1.25rem, 0.75rem + 1.042vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.read__text {
  line-height: 1.3;
  font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
}

.news {
  margin-top: 80px;
  font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
}

@media screen and (max-width: 768px) {
  .news {
    margin-top: 40px;
  }
}
.news-heading {
  font-weight: 600;
  font-size: clamp(1.25rem, 0.75rem + 1.042vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-blue);
  padding: 13px 25px;
  margin-bottom: 20px;
}

.news__item:nth-child(even) {
  background-color: var(--color-light-blue);
}

.news__item {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
  padding: 5px 15px;
}

.service {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 80px;
  font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
}

@media screen and (max-width: 768px) {
  .service {
    gap: 20px;
    margin-top: 40px;
  }
}
.sales,
.support {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .sales,
  .support {
    width: 100%;
  }
}
.service__header {
  font-weight: 600;
  font-size: clamp(1.25rem, 0.75rem + 1.042vw, 2rem);
  color: var(--color-white);
  text-align: center;
  padding: 35px 10px;
  border-radius: 5px;
  position: relative;
  isolation: isolate;
}
.service__header::before {
  content: "";
  width: calc(100% - 7px);
  height: calc(100% - 7px);
  border: 1px solid var(--color-white);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service__header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  border-radius: 5px;
  mix-blend-mode: overlay;
}

@media screen and (max-width: 768px) {
  .service__header {
    padding: 25px 20px;
  }
}
.service__header--sales {
  background-image: url("../image/texture-orange.png");
}

.service__header--support {
  background-image: url("../image/texture-pink.png");
}

.service__list {
  margin-left: 15px;
  margin-top: 20px;
}

.service__item {
  position: relative;
  padding-right: 15px;
  padding-left: 20px;
}
.service__item::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 0.5rem;
  left: 0;
  border-radius: 50px;
}

.service__item--seles::before {
  background-color: var(--color-orange);
}

.service__item--support::before {
  background-color: var(--color-pink);
}

.footer {
  background-color: var(--color-light-blue);
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
  }
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 35px 0;
}

@media screen and (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 250px;
  }
}
.footer__info {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .footer__info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 992px) {
  .footer__info {
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .footer__phone-number {
    width: 250px;
  }
}
.footer__text {
  line-height: 1.3;
}

@media screen and (max-width: 992px) {
  .footer__text {
    text-align: center;
  }
}
.copyright {
  font-size: clamp(0.875rem, 0.708rem + 0.347vw, 1.125rem);
  padding: 25px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .copyright {
    padding: 15px;
  }
}/*# sourceMappingURL=style.css.map */