@charset "UTF-8";

main {
}
#page {
  max-width: 100%;
  padding-bottom: 0;
}
#page h2 {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
}

/* --------------------------------------------------
  Vision
-------------------------------------------------- */

#vision {
  margin: 80px 0 100px;
  background: url(../img/about/background.jpg) no-repeat top/cover;
}
#vision .inner {
  margin: 0 auto;
  padding-bottom: 200px;
  max-width: 1170px;
  background: radial-gradient(circle at center, var(--secondary-color) 0, var(--secondary-color), transparent 80%);
  text-align: center;
}
#vision h2 {
  margin-bottom: 200px;
}
#vision strong {
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 700;
  display: block;
}
#vision p {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
}
#vision p span {
  color: var(--primary-color);
  font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  #vision {
    margin: 40px -15px 50px;
    padding: 0 0px;
  }
  #vision .inner {
    padding: 0 15px 80px;
  }
  #vision h2 {
    margin-bottom: 40px;
  }
  #vision strong {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  #vision p {
    font-size: 1.7rem;
  }
  #vision p span {
    font-size: 2rem;
  }
}

/* --------------------------------------------------
  Business
-------------------------------------------------- */

#business {
  margin: 0 auto 100px;
  max-width: 1170px;
}
#business h2 {
  margin-bottom: 40px;
}
#business p {
  font-size: 2rem;
}
#business img {
  margin: 80px auto 40px;
  width: 90%;
  display: block;
}
#business .products {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}
#business .products strong {
  margin-bottom: 30px;
  font-size: 2.4rem;
  display: inline-block;
}
#business .products ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#business .products img {
  margin: 0;
  width: auto;
  height: 150px;
}

@media screen and (max-width: 768px) {
  #business {
    margin-bottom: 50px;
  }
  #business p {
    font-size: 1.8rem;
  }
  #business img {
    margin: 40px 0;
    width: 100%;
  }
  #business .products {
    padding: 30px 20px;
  }
  #business .products strong {
    font-size: 2rem;
  }
  #business .products ul {
    gap: 20px;
  }
  #business .products img {
    height: 120px;
  }
}

/* --------------------------------------------------
  Data
-------------------------------------------------- */

#data {
  margin: 0 auto 100px;
  max-width: 1170px;
}
#data h2 {
  margin-bottom: 40px;
}
#data ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
#data ul::after {
  content: '';
  width: 23%;
}
#data li {
  padding: 30px;
  width: 23%;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 10px;
  text-align: center;
}
#data li figure img {
  margin-bottom: 20px;
}
#data li p {
  margin-bottom: 10px;
}
#data li strong {
  color: var(--primary-color);
  font-size: 2.8rem;
  line-height: 1;
  display: inline-block;
}
#data li strong span {
  font-size: 1.8rem;
}
#data li strong br {
  display: none;
}

@media screen and (max-width: 768px) {
  #data li {
    padding: 20px 10px;
    width: 48%;
  }
  #data li strong br {
    display: block;
  }
  #data li figure img {
    width: 50%;
  }
}