@charset "utf-8";

.l-header {
  position: relative;
}

.l-main {
  height: calc(100svh - 72px);
  position: relative;
  z-index: 0;
}

@media all and (max-width: 576px) {
  .l-main {
    height: calc(100svh - 52px);
  }
}

.l-main::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: url(../img/highlight/bg.png) no-repeat center center / cover;
  opacity: 0.6;
}

@media all and (max-width: 576px) {
  .l-main::before {
    background-image: url(../img/highlight/bg_sp.png);
  }
}

/* highlight
------------------------------*/
.p-mv {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.p-mv__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-mv__header {
  width: 100%;
  max-width: 880px;
  text-align: center;
  transform: translate(0, -1.25svh);
}

@media all and (max-width: 576px) {
  .p-mv__header {
    max-width: 330px;
    margin: 0 auto;
  }
}

.p-mv__header-heading {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 15px;
  color: #f44336;
}

@media all and (max-width: 576px) {
  .p-mv__header-heading {
    font-size: min(30px, calc(30 / 390 * 100vw));
    margin: 0 0 10px;
    line-height: 1.5;
  }
}

.p-mv__header-txt {
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  margin: 0 0 40px;
}

@media all and (max-width: 576px) {
  .p-mv__header-txt {
    font-size: min(14px, calc(14 / 390 * 100vw));
    margin: 0 0 15px;
  }
}

.p-mv__header-btn {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media all and (max-width: 750px) {
  .p-mv__header-btn {
    width: 280px;
  }
}

@media all and (max-width: 576px) {
  .p-mv__header-btn {
    width: 220px;
  }
}

.p-mv__header-btn a {
  text-decoration: none;
  width: 31.8%;
  height: 70px;
  background-color: #fff;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 20px;
  color: inherit;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

@media all and (max-width: 750px) {
  .p-mv__header-btn a {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 576px) {
  .p-mv__header-btn a {
    height: 48px;
    font-size: 16px;
  }
}

.p-mv__header-btn a:hover {
  background-color: #f44336;
  color: #fff;
}
