@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@500&family=Oswald&display=swap");
.mv {
  margin-inline: auto;
  width: 100%;
  position: relative;
}
.mv .mv_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.3;
  font-weight: bold;
  z-index: 1;
  color: #fff;
}
.mv .mv_title {
  font-size: 80px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .mv .mv_title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .mv .mv_bg_img:nth-child(2) img {
    object-position: 28%;
  }
}
@media (max-width: 767px) {
  .mv .mv_bg_img:nth-child(3) img {
    object-position: 77%;
  }
}
.mv .char-br {
  display: block;
}
.mv .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideIn 0.4s forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .mv_bg_img img {
    height: 680px;
    object-fit: cover;
    object-position: 70%;
  }
}

.bg_wrap {
  overflow: hidden;
}

.products {
  position: relative;
}
.products::before {
  content: "";
  position: absolute;
  top: -5%;
  right: 0;
  width: 50%;
  height: 570px;
  background: url(../img/common/info_bg02.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .products::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .products::before {
    width: 150%;
  }
}

.products_ttl_wrap {
  padding: 100px 0 30px;
}
@media (max-width: 1199px) {
  .products_ttl_wrap {
    padding: 60px 0 30px;
  }
}

.products_title {
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .products_title {
    margin-top: 50px;
  }
}

.products_content {
  background: #f2f2f2;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 767px) {
  .products_content {
    padding: 60px 0;
  }
}
.products_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2%;
  width: 60%;
  height: 570px;
  background: url(../img/common/info_bg01.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .products_content::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .products_content::before {
    width: 150%;
  }
}
.products_content::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 50%;
  height: 570px;
  background: url(../img/common/info_bg02.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .products_content::after {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .products_content::after {
    width: 150%;
  }
}

.products_content_bg {
  position: relative;
}
.products_content_bg::before {
  content: "";
  position: absolute;
  top: 36%;
  left: -2%;
  width: 60%;
  height: 570px;
  background: url(../img/common/info_bg01.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .products_content_bg::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .products_content_bg::before {
    width: 150%;
  }
}
.products_content_bg::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 0;
  width: 50%;
  height: 570px;
  background: url(../img/common/info_bg02.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .products_content_bg::after {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .products_content_bg::after {
    width: 150%;
  }
}

.products_item {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .products_item {
    grid-template-columns: 100%;
    gap: 1rem;
  }
}
.products_item:nth-child(2n-1) {
  grid-template-columns: 40% 60%;
}
@media (max-width: 1199px) {
  .products_item:nth-child(2n-1) {
    grid-template-columns: 100%;
  }
}
.products_item:nth-child(2n-1) .products_item_img_wrap {
  order: 1;
}
@media (max-width: 1199px) {
  .products_item:nth-child(2n-1) .products_item_img_wrap {
    order: 0;
  }
}
.products_item:nth-child(2n) .products_item_text_wrap {
  display: flex;
  flex-direction: column;
}
.products_item:nth-child(2n) .products_head,
.products_item:nth-child(2n) .products_head_sub {
  align-self: flex-end;
}
@media (max-width: 1199px) {
  .products_item:nth-child(2n) .products_head,
  .products_item:nth-child(2n) .products_head_sub {
    align-self: flex-start;
  }
}
.products_item:nth-child(2n) .products_head {
  flex-direction: row;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .products_item:nth-child(2n) .products_head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.products_item:nth-child(2n) .products_head_sub {
  text-align: right;
}
@media (max-width: 1199px) {
  .products_item:nth-child(2n) .products_head_sub {
    text-align: left;
  }
}
.products_item + .products_item {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .products_item + .products_item {
    margin-top: 60px;
  }
}

.products_item_text_wrap {
  position: relative;
}

.products_head {
  letter-spacing: 0.02em;
}

.products_head_sub {
  margin-top: 10px;
  width: 550px;
}
@media (max-width: 1199px) {
  .products_head_sub {
    width: 100%;
  }
}

.products_text_ttl {
  margin-top: 1rem;
}

.products_text {
  margin-top: 10px;
}

.products_item_btn {
  margin-top: 2rem;
}

.products_item_logo_wrap {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 205px 205px 205px;
  gap: 10px;
}
@media (max-width: 767px) {
  .products_item_logo_wrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }
}

.info {
  padding: 100px 0 90px;
  position: relative;
}
@media (max-width: 767px) {
  .info {
    padding: 60px 0;
  }
}
.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2%;
  width: 60%;
  height: 570px;
  background: url(../img/common/info_bg01.png) top left/contain no-repeat;
}
@media (max-width: 1199px) {
  .info::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .info::before {
    width: 150%;
  }
}

.info_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .info_list {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .info_list {
    grid-template-columns: 1fr;
  }
}

.info_item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .info_item + .info_item {
    margin-top: 30px;
  }
}

.info_content {
  flex: 1;
}

.info_img {
  margin-top: 10px;
}

.info_text {
  margin-top: 1rem;
}

.info_btn {
  margin-top: 1rem;
}

.news {
  position: relative;
  padding-bottom: 30px;
}
.news::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 570px;
  background: url(../img/common/info_bg02.png) center right/contain no-repeat;
}
@media (max-width: 1199px) {
  .news::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .news::before {
    width: 150%;
  }
}

.news_content {
  position: relative;
  z-index: 1;
}

.news_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news_link {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
@media (max-width: 767px) {
  .news_link {
    display: none;
  }
}
.news_link img {
  width: 21px;
  height: 15px;
  margin-left: 10px;
}

.news_list {
  margin-top: 1.5rem;
  padding: 0;
}

.news_item {
  border-top: 1px solid #b3b3b3;
}
.news_item:last-child {
  border-bottom: 1px solid #b3b3b3;
}
.news_item a {
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 110px auto;
}
@media (max-width: 1199px) {
  .news_item a {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .news_item a {
    grid-template-columns: 100%;
    padding: 1rem 0;
  }
}

.news_link_sp {
  display: none;
}
@media (max-width: 767px) {
  .news_link_sp {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 2rem 0 0 auto;
    width: fit-content;
  }
}
.news_link_sp img {
  width: 21px;
  height: 15px;
  margin-left: 10px;
}

.service {
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60%;
  height: 570px;
  background: url(../img/common/info_bg01.png) center left/contain no-repeat;
}
@media (max-width: 1199px) {
  .service::before {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .service::before {
    width: 150%;
  }
}