@charset "UTF-8";
.bvs-bgImg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  width: 100%;
}

.bvs-form summary {
  font-size: 1.4rem;
}

/* contact */
.bvs-contact {
  display: flex;
  justify-content: center;
  padding: 2.8rem 0 4rem;
  position: relative;
  z-index: 1;
}
.bvs-contact.black {
  background-color: #0a1b30;
}
.bvs-contact.black > a:hover {
  background-color: #f08100;
}
.bvs-contact.white {
  background-color: #f5f6f7;
}
.bvs-contact.white > a:hover {
  background-color: #f08100;
}
.bvs-contact > a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-weight: 700;
  height: 6.7rem;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  width: 25.4rem;
}
.bvs-contact > a:hover {
  text-decoration: none;
}
.bvs-contact > a:hover > img {
  right: 0.8rem;
}
.bvs-contact > a:nth-child(1) {
  background-color: #8e3d36;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
  margin-right: 1.6rem;
}
.bvs-contact > a:nth-child(1):hover {
  letter-spacing: 0.05em;
}
.bvs-contact > a:nth-child(2) {
  background-color: #9e895b;
  font-size: 1.7rem;
  letter-spacing: 0.075em;
}
.bvs-contact > a:nth-child(2):hover {
  letter-spacing: 0.125em;
}
.bvs-contact > a > img {
  display: block;
  height: auto;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  width: 0.8rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-contact {
    padding: 2.6rem 0 3.6rem;
  }
  .bvs-contact > a {
    height: 6.1rem;
    width: 22.9rem;
  }
  .bvs-contact > a:nth-child(1) {
    font-size: 1.8rem;
    margin-right: 1.5rem;
  }
  .bvs-contact > a:nth-child(2) {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-contact {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.4rem 0 3.2rem;
  }
  .bvs-contact.white {
    background-color: #0a1b30;
  }
  .bvs-contact > a {
    height: 5.5rem;
    width: 20.4rem;
  }
  .bvs-contact > a:nth-child(1) {
    font-size: 1.7rem;
    margin: 0 0 1.4rem;
  }
  .bvs-contact > a:nth-child(2) {
    font-size: 1.5rem;
  }
}
/* mobileMenu */
.bvs-mobileMenu {
  display: none;
}
.bvs-mobileMenu__navList {
  align-items: center;
  background-color: #f1f5fb;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  z-index: 998;
}
.bvs-mobileMenu__navList.open {
  opacity: 1;
  pointer-events: auto;
}
.bvs-mobileMenu__navList > li > a {
  align-items: center;
  border-bottom: 1px solid #040404;
  color: #0a1b30;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  height: 7.3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 0 2rem;
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 45.4rem;
}
.bvs-mobileMenu__navList > li > a:hover {
  color: #f08100;
  text-decoration: none;
}
.bvs-mobileMenu__navList > li > a.btn {
  border: none;
  color: #ffffff;
  justify-content: center;
  letter-spacing: -0.05em;
  text-align: center;
  width: 41.4rem;
  position: relative;
}
.bvs-mobileMenu__navList > li > a.btn.assessment {
  background-color: #8e3d36;
  margin-top: 4.8rem;
}
.bvs-mobileMenu__navList > li > a.btn.assessment:hover {
  background-color: #f08100;
}
.bvs-mobileMenu__navList > li > a.btn.consultation {
  background-color: #9e895b;
  margin-top: 3.2rem;
}
.bvs-mobileMenu__navList > li > a.btn.consultation:hover {
  background-color: #f08100;
}
.bvs-mobileMenu__navList > li > a.btn > img {
  display: block;
  height: auto;
  position: absolute;
  right: 6.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
}
.bvs-mobileMenu__openBtn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2.8rem;
}
.bvs-mobileMenu__openBtn.open > span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.bvs-mobileMenu__openBtn.open > span:nth-child(2) {
  margin: 0;
  transform: translateX(-50%);
  opacity: 0;
}
.bvs-mobileMenu__openBtn.open > span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.bvs-mobileMenu__openBtn > span {
  background-color: #111111;
  display: block;
  height: 2px;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  width: 100%;
  z-index: 999;
}
.bvs-mobileMenu__openBtn > span:nth-child(2) {
  margin: 1rem 0;
}

@media only screen and (max-width: 1279px) {
  .bvs-mobileMenu {
    align-items: center;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-mobileMenu__navList > li > a {
    font-size: 1.5rem;
    height: 5.3rem;
    padding: 0 1rem;
    width: 22.7rem;
  }
  .bvs-mobileMenu__navList > li > a.btn {
    width: 20.7rem;
  }
  .bvs-mobileMenu__navList > li > a.btn.assessment {
    margin-top: 2.4rem;
  }
  .bvs-mobileMenu__navList > li > a.btn.consultation {
    margin-top: 1.6rem;
  }
  .bvs-mobileMenu__openBtn {
    width: 2.6rem;
  }
  .bvs-mobileMenu__openBtn > span:nth-child(2) {
    margin: 0.9rem 0;
  }
}
/* max-width */
.bvs-maxWidth {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* container */
[class*="container"] {
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.bvs-container__75 {
  width: 75%;
}
.bvs-container__80 {
  width: 80%;
}
.bvs-container__85 {
  width: 85%;
}
.bvs-container__90 {
  width: 90%;
}

@media only screen and (max-width: 1024px) {
  .bvs-container__75 {
    width: 82.5%;
  }
  .bvs-container__80 {
    width: 85%;
  }
  .bvs-container__85 {
    width: 87.5%;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-container__75 {
    width: 90%;
  }
  .bvs-container__80 {
    width: 90%;
  }
  .bvs-container__85 {
    width: 90%;
  }
}
.bvs-fixedRadioImg {
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

/* header */
.bvs-header {
  background-color: #f1f5fb;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.bvs-header__main {
  align-items: center;
  display: flex;
  height: 6.3rem;
  justify-content: space-between;
  margin: 0 5% 0 2.5%;
}
.bvs-header__mainLeft {
  position: relative;
  z-index: 999;
}
.bvs-header__mainLeft > a {
  display: block;
  width: 11.5rem;
}
.bvs-header__mainLeft > a > img {
  display: block;
  height: auto;
  width: 100%;
}
.bvs-header__mainRight {
  display: flex;
  height: 100%;
}
.bvs-header__mainRightList {
  align-items: center;
  display: flex;
  list-style: none;
}
.bvs-header__mainRightList > li:nth-child(n + 2) {
  margin-left: 1.3rem;
}
.bvs-header__mainRightList > li > a {
  color: #0a1b30;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.bvs-header__mainRightList > li > a:hover {
  color: #f08100;
  text-decoration: none;
}
.bvs-header__mainRightList > li > a:hover > img {
  transform: rotate(-90deg);
}
.bvs-header__mainRightList > li > a.btn {
  align-items: center;
  color: #ffffff;
  display: flex;
  height: 3.6rem;
  justify-content: center;
  letter-spacing: -0.05em;
  line-height: 1.2;
  text-align: center;
}
.bvs-header__mainRightList > li > a.btn.assessment {
  background-color: #8e3d36;
  font-size: 1.2rem;
  width: 12.5rem;
}
.bvs-header__mainRightList > li > a.btn.assessment:hover {
  background-color: #f08100;
}
.bvs-header__mainRightList > li > a.btn.assessment > img {
  margin-right: 1.2rem;
}
.bvs-header__mainRightList > li > a.btn.consultation {
  background-color: #9e895b;
  font-size: 1rem;
  width: 13.3rem;
}
.bvs-header__mainRightList > li > a.btn.consultation:hover {
  background-color: #f08100;
}
.bvs-header__mainRightList > li > a.btn.consultation > img {
  margin-right: 0.6rem;
}
.bvs-header__mainRightList > li > a.btn > img {
  display: block;
  flex-shrink: 0;
  height: auto;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  width: 0.7rem;
}

@media only screen and (max-width: 1279px) {
  .bvs-header__mainRightList {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .bvs-header__main {
    height: 5.7rem;
    margin: 0 5% 0 3.75%;
  }
  .bvs-header__mainLeft > a {
    width: 10.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-header__main {
    height: 5.1rem;
    margin: 0 5%;
  }
  .bvs-header__mainLeft > a {
    width: 9.3rem;
  }
}
/* footer */
.bvs-footer {
  background-color: #0a1b30;
  padding: 1.2rem 0;
  position: relative;
  text-align: center;
}
.bvs-footer > p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

/* homeTit */
.bvs-homeTit {
  color: #0a1b30;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 5.6rem;
  padding: 6.8rem 0 1.2rem;
  position: relative;
  text-align: center;
}
.bvs-homeTit::before {
  background-color: #0a1b30;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 3.8rem;
}
.bvs-homeTit > strong {
  font-size: 4.5rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-homeTit {
    font-size: 2.2rem;
    margin-bottom: 4.6rem;
    padding: 6.2rem 0 1.1rem;
  }
  .bvs-homeTit::before {
    width: 3.5rem;
  }
  .bvs-homeTit > strong {
    font-size: 3.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-homeTit {
    background-color: #0a1b30;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 3.6rem;
    padding: 1.2rem 0 1.3rem;
  }
  .bvs-homeTit::before {
    content: none;
  }
  .bvs-homeTit.sp-mt {
    margin-top: 2.4rem;
  }
  .bvs-homeTit > strong {
    font-size: 2.9rem;
  }
}
/* mainVisual */
.bvs-mainVisual {
  background-image: url(../../assets/img/home_main-visual_bg.jpg);
  display: flex;
  flex-direction: column;
  height: 38.4rem;
  justify-content: center;
  position: relative;
  text-align: center;
}
.bvs-mainVisual__list {
  display: flex;
  justify-content: center;
  list-style: none;
}
.bvs-mainVisual__list > li {
  align-items: center;
  background-color: #0a1b30;
  border-radius: 50%;
  color: #dcc88a;
  display: flex;
  filter: drop-shadow(3px 1px 7.5px rgba(7, 21, 38, 0.15));
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  justify-content: center;
  font-weight: 600;
  height: 13.2rem;
  letter-spacing: -0.05em;
  line-height: 1.4;
  width: 13.2rem;
}
.bvs-mainVisual__list > li:nth-child(n + 2) {
  margin-left: 7.8rem;
}
.bvs-mainVisual__list > li:nth-child(1) {
  font-size: 2.1rem;
  line-height: 1.3;
}
.bvs-mainVisual__list > li:nth-child(2) {
  font-size: 1.9rem;
}
.bvs-mainVisual__list > li:nth-child(2) span {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 0.8rem;
}
.bvs-mainVisual__list > li:nth-child(3) {
  font-size: 2.1rem;
}
.bvs-mainVisual__list > li:nth-child(3) span {
  font-size: 1.9rem;
  font-weight: 500;
}
.bvs-mainVisual__list > li:nth-child(3) strong {
  display: inline-block;
  font-family: "minion-pro", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 500;
  margin: 0 0.4rem;
  transform: translateY(0.1rem);
}
.bvs-mainVisual__scroll {
  display: none;
}
.bvs-mainVisual__tit {
  color: #ffffff;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
}
.bvs-mainVisual__tit br[class*="mq"] {
  display: none;
}
.bvs-mainVisual__tit span.border {
  background: linear-gradient(transparent 96%, #ffffff 0%);
  display: inline;
  padding-bottom: 0.4rem;
}
.bvs-mainVisual__tit span.fs-s {
  font-size: 2.2rem;
}
.bvs-mainVisual__tit span.fs-xs {
  font-size: 1.9rem;
}
.bvs-mainVisual__tit strong {
  font-size: 2.7rem;
}
.bvs-mainVisual__txt {
  color: #ffffff;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0.8rem 0 2.6rem;
}
.bvs-mainVisual__txt > br[class*="mq"] {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .bvs-mainVisual {
    height: 42.2rem;
  }
  .bvs-mainVisual__list > li {
    height: 10.6rem;
    width: 10.6rem;
  }
  .bvs-mainVisual__list > li:nth-child(n + 2) {
    margin-left: 4.3rem;
  }
  .bvs-mainVisual__list > li:nth-child(1) {
    font-size: 1.65rem;
  }
  .bvs-mainVisual__list > li:nth-child(2) {
    font-size: 1.55rem;
  }
  .bvs-mainVisual__list > li:nth-child(2) span {
    font-size: 1.15rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) {
    font-size: 1.65rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) span {
    font-size: 1.55rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) strong {
    font-size: 2.25rem;
  }
  .bvs-mainVisual__tit {
    font-size: 2rem;
  }
  .bvs-mainVisual__tit span.fs-s {
    font-size: 2rem;
  }
  .bvs-mainVisual__tit span.fs-xs {
    font-size: 1.8rem;
  }
  .bvs-mainVisual__tit strong {
    font-size: 2.5rem;
  }
  .bvs-mainVisual__txt {
    font-size: 1.5rem;
    margin: 0.8rem 0 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-mainVisual {
    height: 46rem;
  }
  .bvs-mainVisual__list > li {
    height: 8rem;
    width: 8rem;
  }
  .bvs-mainVisual__list > li:nth-child(n + 2) {
    margin-left: 0.8rem;
  }
  .bvs-mainVisual__list > li:nth-child(1) {
    font-size: 1.2rem;
  }
  .bvs-mainVisual__list > li:nth-child(2) {
    font-size: 1.2rem;
  }
  .bvs-mainVisual__list > li:nth-child(2) span {
    font-size: 0.9rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) {
    font-size: 1.2rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) span {
    font-size: 1.2rem;
  }
  .bvs-mainVisual__list > li:nth-child(3) strong {
    font-size: 1.5rem;
  }
  .bvs-mainVisual__scroll {
    align-items: center;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    left: 0;
    right: 0;
    position: absolute;
  }
  .bvs-mainVisual__scroll > p {
    color: #ffffff;
    font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
      "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
  }
  .bvs-mainVisual__scroll > span {
    background-color: #ffffff;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    display: block;
    height: 0.5rem;
    width: 1rem;
  }
  .bvs-mainVisual__tit {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .bvs-mainVisual__tit br.mq-sp {
    display: block;
  }
  .bvs-mainVisual__tit span.border {
    background: transparent;
    display: inline;
    padding-bottom: 0;
  }
  .bvs-mainVisual__tit span.border-sp {
    background: linear-gradient(transparent 96%, #ffffff 0%);
    display: inline;
    padding-bottom: 0.4rem;
  }
  .bvs-mainVisual__tit span.fs-s {
    font-size: 1.8rem;
  }
  .bvs-mainVisual__tit span.fs-xs {
    font-size: 1.7rem;
  }
  .bvs-mainVisual__tit strong {
    font-size: 2.3rem;
  }
  .bvs-mainVisual__txt {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 1.1rem 0 2.2rem;
  }
  .bvs-mainVisual__txt > br.mq-sp {
    display: block;
  }
  .bvs-mainVisual__txt > span {
    display: none;
  }
}
/* problem */
.bvs-problem {
  position: relative;
}
.bvs-problem__main {
  padding-bottom: 4.8rem;
}
.bvs-problem__main > h4 {
  color: #0a1b30;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
}
.bvs-problem__main > h4 > br[class*="mq"] {
  display: none;
}
.bvs-problem__main > span {
  background-color: #0a1b30;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  display: block;
  height: 5.5rem;
  margin: 3rem auto 2.6rem;
  width: 13.7rem;
}
.bvs-problem__mainHead {
  align-items: center;
  display: flex;
}
.bvs-problem__mainHead > div {
  display: block;
  flex-shrink: 0;
  height: 19.9rem;
  margin-left: 1rem;
  position: relative;
  width: 16.7rem;
}
.bvs-problem__mainHead > ul {
  list-style: none;
  width: 100%;
}
.bvs-problem__mainHeadItem {
  align-items: center;
  display: flex;
}
.bvs-problem__mainHeadItem:nth-child(n + 2) {
  margin-top: 2rem;
}
.bvs-problem__mainHeadItem > img {
  display: block;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.8rem;
  width: 2.5rem;
}
.bvs-problem__mainHeadItem > p {
  color: #111111;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  width: 100%;
}
.bvs-problem__mainHeadItem > p::before {
  background-color: #8d8d8c;
  bottom: -0.2rem;
  content: "";
  height: 1px;
  left: 0;
  right: 0;
  position: absolute;
}

@media only screen and (max-width: 1024px) {
  .bvs-problem__main {
    padding-bottom: 4.4rem;
  }
  .bvs-problem__main > h4 {
    font-size: 2rem;
  }
  .bvs-problem__main > span {
    height: 4.5rem;
    margin: 3.3rem auto 2.8rem;
    width: 11.1rem;
  }
  .bvs-problem__mainHead {
    position: relative;
    z-index: 1;
  }
  .bvs-problem__mainHead > div {
    display: block;
    height: 18rem;
    margin: 0;
    opacity: 0.6;
    position: absolute;
    right: -12.5%;
    top: 50%;
    transform: translateY(-50%);
    width: 18.3rem;
    z-index: -1;
  }
  .bvs-problem__mainHeadItem:nth-child(n + 2) {
    margin-top: 1.8rem;
  }
  .bvs-problem__mainHeadItem > img {
    width: 2.3rem;
  }
  .bvs-problem__mainHeadItem > p {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-problem__main {
    padding-bottom: 4rem;
  }
  .bvs-problem__main > h4 {
    font-size: 1.7rem;
  }
  .bvs-problem__main > h4 > br.mq-sp {
    display: block;
  }
  .bvs-problem__main > span {
    height: 3.5rem;
    margin: 3.6rem auto 3rem;
    width: 8.5rem;
  }
  .bvs-problem__mainHead > div {
    display: block;
    height: 19.9rem;
    right: -5%;
    width: 16.7rem;
  }
  .bvs-problem__mainHeadItem:nth-child(n + 2) {
    margin-top: 1.6rem;
  }
  .bvs-problem__mainHeadItem > img {
    width: 2.1rem;
  }
  .bvs-problem__mainHeadItem > p {
    font-size: 1.3rem;
  }
}
/* feature */
.bvs-feature {
  background-color: #f3f4f6;
  position: relative;
}
.bvs-feature__item:nth-child(n + 2) {
  margin-top: 2.6rem;
}
.bvs-feature__item > h3 {
  background: linear-gradient(to top, #031728, #033e6f);
  color: #ffffff;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  text-align: center;
  width: 20.1rem;
}
.bvs-feature__item > h3 > strong {
  font-family: "minion-pro", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.8rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.bvs-feature__item > p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.bvs-feature__list {
  list-style: none;
  padding-bottom: 7.2rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-feature__item:nth-child(n + 2) {
    margin-top: 2.4rem;
  }
  .bvs-feature__item > h3 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
    width: 18.1rem;
  }
  .bvs-feature__item > h3 > strong {
    font-size: 2.6rem;
  }
  .bvs-feature__item > p {
    font-size: 1.4rem;
  }
  .bvs-feature__list {
    padding-bottom: 6.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-feature__item:nth-child(n + 2) {
    margin-top: 2.2rem;
  }
  .bvs-feature__item > h3 {
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    width: 16.1rem;
  }
  .bvs-feature__item > h3 > strong {
    font-size: 2.4rem;
  }
  .bvs-feature__item > p {
    font-size: 1.3rem;
  }
  .bvs-feature__list {
    padding-bottom: 5.8rem;
  }
}
/* reason */
.bvs-reason {
  position: relative;
}
.bvs-reason__item {
  background-color: #f3f4f6;
  padding: 2.4rem 0.8rem;
}
.bvs-reason__item:nth-child(n + 2) {
  margin-top: 2.8rem;
}
.bvs-reason__item > p {
  color: #333333;
  font-size: 1.3rem;
  font-weight: 500;
}
.bvs-reason__item > p > span {
  display: block;
  height: 2.2rem;
}
.bvs-reason__itemHead {
  display: flex;
  margin-bottom: 1.2rem;
}
.bvs-reason__itemHeadImg {
  flex-shrink: 0;
  height: 16.8rem;
  margin-left: 3.6rem;
  position: relative;
  width: 24.1rem;
}
.bvs-reason__itemHeadTxt > h3 {
  align-items: center;
  display: flex;
  margin-bottom: 2.2rem;
}
.bvs-reason__itemHeadTxt > h3 > span {
  color: #0a1b30;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-top: 0.8rem;
}
.bvs-reason__itemHeadTxt > h3 > strong {
  color: #0a1b30;
  display: inline-block;
  font-family: "minion-pro", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 8.3rem;
  font-style: italic;
  font-weight: 500;
  line-height: 0.8;
  margin-right: 1.4rem;
  padding-right: 0.9rem;
  position: relative;
}
.bvs-reason__itemHeadTxt > h3 > strong::before {
  background-color: #0a1b30;
  border-radius: 10px;
  bottom: -5%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
}
.bvs-reason__itemHeadTxt > p {
  color: #8e3d36;
  display: inline;
  background: linear-gradient(transparent 95%, #8e3d36 0%);
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding-bottom: 0.3rem;
}
.bvs-reason__itemTbImg {
  display: none;
}
.bvs-reason__list {
  list-style: none;
  padding-bottom: 5.2rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-reason__item {
    padding: 2.2rem 0.8rem;
  }
  .bvs-reason__item:nth-child(n + 2) {
    margin-top: 2.6rem;
  }
  .bvs-reason__item > p {
    font-size: 1.2rem;
  }
  .bvs-reason__item > p > span {
    height: 2rem;
  }
  .bvs-reason__itemHead {
    margin-bottom: 1.1rem;
  }
  .bvs-reason__itemHeadImg {
    display: none;
  }
  .bvs-reason__itemHeadTxt > h3 {
    margin-bottom: 2rem;
  }
  .bvs-reason__itemHeadTxt > h3 > span {
    font-size: 2.2rem;
  }
  .bvs-reason__itemHeadTxt > h3 > strong {
    font-size: 7.5rem;
    margin-right: 1.3rem;
    padding: 0;
  }
  .bvs-reason__itemHeadTxt > h3 > strong::before {
    content: none;
  }
  .bvs-reason__itemHeadTxt > p {
    font-size: 1.9rem;
  }
  .bvs-reason__itemTbImg {
    display: block;
    height: 18.4rem;
    margin-top: 2.2rem;
    position: relative;
    width: 100%;
  }
  .bvs-reason__list {
    padding-bottom: 4.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-reason__item {
    padding: 2rem 0.8rem;
  }
  .bvs-reason__item:nth-child(n + 2) {
    margin-top: 2.4rem;
  }
  .bvs-reason__item > p {
    font-size: 1.1rem;
  }
  .bvs-reason__item > p > span {
    height: 1.8rem;
  }
  .bvs-reason__itemHead {
    margin-bottom: 1rem;
  }
  .bvs-reason__itemHeadTxt > h3 {
    flex-direction: column;
    margin-bottom: 1.8rem;
    text-align: center;
  }
  .bvs-reason__itemHeadTxt > h3 > span {
    font-size: 2rem;
  }
  .bvs-reason__itemHeadTxt > h3 > strong {
    font-size: 6.8rem;
    margin-right: 0;
  }
  .bvs-reason__itemHeadTxt > p {
    font-size: 1.7rem;
  }
  .bvs-reason__itemTbImg {
    height: 16.6rem;
    margin-top: 2rem;
  }
  .bvs-reason__list {
    padding-bottom: 4.2rem;
  }
}
/* structure */
.bvs-structure {
  background-color: #f3f4f6;
  position: relative;
}
.bvs-structure__main {
  padding-bottom: 4rem;
}
.bvs-structure__main > img {
  display: block;
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .bvs-structure__main {
    padding-bottom: 3.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-structure__main {
    padding-bottom: 3.2rem;
  }
}
/* flow */
.bvs-flow {
  position: relative;
}
.bvs-flow__item {
  display: flex;
  height: 5.8rem;
  position: relative;
}
.bvs-flow__item:nth-child(n + 2) {
  margin-top: 2.5rem;
}
.bvs-flow__item:nth-child(n + 2)::before {
  background-color: #abb5c1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  content: "";
  height: 0.9rem;
  position: absolute;
  top: calc(0px - 1.25rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.9rem;
}
.bvs-flow__item > h3 {
  align-items: center;
  background-color: #f3f4f6;
  color: #0a1b30;
  display: flex;
  font-size: 2.1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}
.bvs-flow__item > h3 > br[class*="mq"] {
  display: none;
}
.bvs-flow__item > p {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
}
.bvs-flow__item > p:nth-of-type(1) {
  background-color: #0a1b30;
  bottom: 0;
  font-family: "minion-pro", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  top: 0;
  width: 4.5rem;
}
.bvs-flow__item > p:nth-of-type(1) > strong {
  font-size: 2.2rem;
  font-weight: 400;
}
.bvs-flow__item > p:nth-of-type(2) {
  background-color: #8e3d36;
  border-radius: 50%;
  filter: drop-shadow(0px 0px 3px rgba(125, 125, 125, 0.65));
  font-size: 1.2rem;
  height: 7.1rem;
  letter-spacing: -0.05em;
  line-height: 1.3;
  right: 3.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7.1rem;
}
.bvs-flow__item > p:nth-of-type(2).strong > strong {
  line-height: 0.3;
}
.bvs-flow__item > p:nth-of-type(2) > strong {
  font-size: 2rem;
}
.bvs-flow__list {
  list-style: none;
  padding-bottom: 4.4rem;
}

@media only screen and (max-width: 1279px) {
  .bvs-flow__item {
    height: 6.3rem;
  }
  .bvs-flow__item > h3 > br.mq-pc {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .bvs-flow__item:nth-child(n + 2) {
    margin-top: 2.3rem;
  }
  .bvs-flow__item:nth-child(n + 2)::before {
    top: calc(0px - 1.15rem);
    width: 1.8rem;
  }
  .bvs-flow__item > h3 {
    font-size: 1.9rem;
  }
  .bvs-flow__item > h3 > br.mq-tb {
    display: block;
  }
  .bvs-flow__item > p:nth-of-type(1) > strong {
    font-size: 2rem;
  }
  .bvs-flow__item > p:nth-of-type(2) {
    height: 6.4rem;
    right: 2.3rem;
    width: 6.4rem;
  }
  .bvs-flow__item > p:nth-of-type(2) > strong {
    font-size: 1.8rem;
  }
  .bvs-flow__list {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-flow__item {
    flex-direction: column;
    height: auto;
  }
  .bvs-flow__item:nth-child(n + 2) {
    margin-top: 2.1rem;
  }
  .bvs-flow__item:nth-child(n + 2)::before {
    top: calc(0px - 1.05rem);
    width: 1.7rem;
  }
  .bvs-flow__item > h3 {
    font-size: 1.7rem;
    padding: 0.6rem;
  }
  .bvs-flow__item > p:nth-of-type(1) {
    align-items: center;
    bottom: auto;
    flex-direction: row;
    padding: 0.4rem 0 0.3rem;
    position: relative;
    top: auto;
    width: 100%;
  }
  .bvs-flow__item > p:nth-of-type(1) > strong {
    font-size: 1.8rem;
    margin-left: 0.3rem;
    transform: translateY(-0.1rem);
  }
  .bvs-flow__item > p:nth-of-type(2) {
    height: 5.7rem;
    right: -3%;
    top: 0;
    transform: translateY(-25%);
    width: 5.7rem;
  }
  .bvs-flow__item > p:nth-of-type(2) > strong {
    font-size: 1.6rem;
  }
  .bvs-flow__list {
    padding-bottom: 3.6rem;
  }
}
/* support */
.bvs-support {
  background-color: #f3f4f6;
  position: relative;
}
.bvs-support__itemImg {
  height: 12.6rem;
  border-radius: 50%;
  margin: 0 auto 2.8rem;
  overflow: hidden;
  position: relative;
  width: 12.6rem;
}
.bvs-support__itemTxt > h3 {
  color: #111111;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 0.3rem;
  text-align: center;
}
.bvs-support__itemTxt > p {
  color: #333333;
  font-size: 1.1rem;
  font-weight: 600;
}
.bvs-support__itemTxt > p:nth-of-type(1) {
  border-bottom: 1px solid #000000;
  letter-spacing: -0.05em;
  margin-bottom: 1.6rem;
  padding-bottom: 1.8rem;
  text-align: center;
}
.bvs-support__itemTxt > p:nth-of-type(2) {
  line-height: 1.6;
}
.bvs-support__itemTxt > p:nth-of-type(2) > span {
  display: block;
  height: 1.8rem;
}
.bvs-support__list {
  display: flex;
  list-style: none;
  padding-bottom: 6.2rem;
}
.bvs-support__list > li {
  background-color: #eaeaea;
  padding: 2.4rem 1.5rem 1.8rem;
  width: calc((100% - 4rem) / 3);
}
.bvs-support__list > li:nth-child(n + 2) {
  margin-left: 2rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-support__itemImg {
    height: 11.2rem;
    margin: 0 auto 2.2rem;
    width: 11.2rem;
  }
  .bvs-support__itemTxt > h3 {
    font-size: 2.2rem;
  }
  .bvs-support__itemTxt > p:nth-of-type(1) {
    margin-bottom: 1.5rem;
    padding-bottom: 1.7rem;
  }
  .bvs-support__itemTxt > p:nth-of-type(2) > span {
    height: 1.7rem;
  }
  .bvs-support__list {
    padding-bottom: 5.6rem;
  }
  .bvs-support__list > li {
    padding: 2.2rem 1.4rem 1.7rem;
    width: calc((100% - 2rem) / 3);
  }
  .bvs-support__list > li:nth-child(n + 2) {
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-support__itemImg {
    height: 12.6rem;
    margin: 0 auto 1.6rem;
    width: 12.6rem;
  }
  .bvs-support__itemTxt > h3 {
    font-size: 2rem;
  }
  .bvs-support__itemTxt > p:nth-of-type(1) {
    margin-bottom: 1.4rem;
    padding-bottom: 1.6rem;
  }
  .bvs-support__itemTxt > p:nth-of-type(2) > span {
    height: 1.6rem;
  }
  .bvs-support__list {
    flex-direction: column;
    padding-bottom: 4.8rem;
  }
  .bvs-support__list > li {
    padding: 2rem 1.3rem 1.6rem;
    width: 100%;
  }
  .bvs-support__list > li:nth-child(n + 2) {
    margin: 2rem 0 0;
  }
}
/* faq */
.bvs-faq {
  position: relative;
}
.bvs-faq__item {
  cursor: pointer;
}
.bvs-faq__item:nth-child(n + 2) {
  margin-top: 0.8rem;
}
.bvs-faq__itemAnswer.open > p {
  line-height: 1.8;
  opacity: 1;
  padding: 0.4rem 1.4rem;
  visibility: visible;
}
.bvs-faq__itemAnswer > p {
  color: #333333;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0;
  opacity: 0;
  padding: 0 1.4rem;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  visibility: hidden;
}
.bvs-faq__itemQuestion {
  align-items: center;
  background-color: #0a1b30;
  display: flex;
  padding: 0.9rem 2.8rem 0.9rem 1.4rem;
}
.bvs-faq__itemQuestion.open > span {
  transform: rotateX(180deg);
}
.bvs-faq__itemQuestion > p {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.bvs-faq__itemQuestion > p:nth-of-type(1) {
  align-items: center;
  border-radius: 50%;
  background-color: #fafafa;
  color: #0a1b30;
  display: flex;
  flex-shrink: 0;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  height: 2.6rem;
  justify-content: center;
  width: 2.6rem;
}
.bvs-faq__itemQuestion > p:nth-of-type(2) {
  color: #ffffff;
  padding: 0 1.7rem;
  margin-right: auto;
}
.bvs-faq__itemQuestion > span {
  background-color: #fafafa;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  display: block;
  flex-shrink: 0;
  height: 0.6rem;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  width: 0.9rem;
}
.bvs-faq__list {
  list-style: none;
  padding-bottom: 6rem;
}

@media only screen and (max-width: 1024px) {
  .bvs-faq__itemAnswer.open > p {
    padding: 0.4rem 1.3rem;
  }
  .bvs-faq__itemAnswer > p {
    font-size: 1.2rem;
    padding: 0 1.3rem;
  }
  .bvs-faq__itemQuestion {
    padding: 0.9rem 2.6rem 0.9rem 1.3rem;
  }
  .bvs-faq__itemQuestion > p {
    font-size: 1.3rem;
  }
  .bvs-faq__itemQuestion > p:nth-of-type(1) {
    height: 2.4rem;
    width: 2.4rem;
  }
  .bvs-faq__itemQuestion > p:nth-of-type(2) {
    padding: 0 1.6rem;
  }
  .bvs-faq__list {
    padding-bottom: 5.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .bvs-faq__itemAnswer.open > p {
    padding: 0.4rem 1.2rem;
  }
  .bvs-faq__itemAnswer > p {
    font-size: 1.1rem;
    padding: 0 1.2rem;
  }
  .bvs-faq__itemQuestion {
    padding: 0.9rem 2.4rem 0.9rem 1.2rem;
  }
  .bvs-faq__itemQuestion > p {
    font-size: 1.2rem;
  }
  .bvs-faq__itemQuestion > p:nth-of-type(1) {
    align-self: flex-start;
    height: 2.2rem;
    margin-top: 0.2rem;
    width: 2.2rem;
  }
  .bvs-faq__itemQuestion > p:nth-of-type(2) {
    padding: 0 1.5rem;
  }
  .bvs-faq__list {
    padding-bottom: 4.8rem;
  }
}
/* form */
.bvs-form {
  background-color: #f3f4f6;
  /* background: repeating-linear-gradient(-45deg, #F4FAFF,#F4FAFF 80px, #F4F6F8 80px, #F4F6F8 160px); */
  position: relative;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  padding-bottom: 100px;
}
.bvs-form__item {
  display: flex;
}
.bvs-form__item label {
  display: block;
  width: 40%;
  background-color: #ccc;
  margin-bottom: 1.2rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  /* height: 4.2rem; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.bvs-form__item label span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.4;
  background-color: #f00;
  padding: 5px;
}
@media (max-width: 767px) {
  .bvs-form__item {
    flex-direction: column;
  }
  .bvs-form__item label {
    width: 100%;
    height: 4.2rem;
    margin-bottom: 0;
    background-color: inherit;
    justify-content: flex-start;
    gap: 15px;
  }
}
.bvs-form input[type="text"],
.bvs-form input[type="email"],
.bvs-form input[type="tel"],
.bvs-form input[type="number"],
.bvs-form textarea {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  height: 4.2rem;
  letter-spacing: -0.05em;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  padding: 0 1.2rem;
  width: 100%;
}
.bvs-form textarea {
  padding: 1.2rem;
  height: 250px;
}
.bvs-form input[type="submit"].submit {
  width: 250px;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.9rem;
  text-align: center;
  background-color: #f08100;
  margin: auto;
  height: 6.7rem;
  width: 25.4rem;
  font-family: "YuGothic", "游ゴシック", "游ゴシック体", "Helvetica Neue", Arial,
    Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: all 0.3s ease-in-out;
}
.bvs-form input[type="submit"].submit:hover {
  opacity: 0.8;
  letter-spacing: 0.1rem;
}
.bvs-form input::placeholder,
.bvs-form textarea::placeholder {
  color: #ccc;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.4;
}
.bvs-form .ninni {
  background-color: inherit;
  color: inherit;
  font-weight: normal;
}
details[open] {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 補助金 */
.bvs-hojokin {
  background-color: #fff;
  position: relative;
}
.bvs-hojokin h2.hojokin {
  color: #fff;
  max-width: 900px;
  background-color: #0a1b30;
  padding: 25px 50px;
  margin: 50px auto;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.bvs-hojokin .bvs-faq__itemAnswer {
  height: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.bvs-hojokin .bvs-faq__itemAnswer.open {
  height: auto;
  line-height: 1.8;
  opacity: 1;
  padding: 0.4rem 1.4rem;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.bvs-hojokin h4 {
  color: #0a1b30;
  font-family: "YuMincho", "游明朝", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
}
.bvs-hojokin h4 > span {
  color: rgb(58, 179, 193);
}
.bvs-hojokin picture img {
  max-width: 100%;
  text-align: center;
  display: block;
  margin: 50px auto;
}
.bvs-hojokin figcaption {
  text-align: center;
}
.hojokin-desc {
  margin: 50px auto;
  letter-spacing: -0.05em !important;
}
.bvs-hojokin .hojokin-tbl {
  max-width: 900px;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 20px auto 50px;
  text-align: center;
  font-size: 1.5rem;
}
.bvs-hojokin .hojokin-tbl th,
.bvs-hojokin .hojokin-tbl td {
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.4;
  border: 1px solid #333;
  padding: 15px 25px;
}
.bvs-hojokin .hojokin-tbl td {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .bvs-hojokin h4 {
    font-size: 1.75rem;
  }
  .bvs-hojokin figcaption {
    font-size: smaller;
  }
}

/* 中小企業M&Aガイドライン */
.bvs-guideline {
  background-color: #fff;
  position: relative;
  font-size: 1.5rem;
}
.bvs-guideline p {
  margin-bottom: 30px;
}
.bvs-guideline .sengen {
  margin: 30px auto;
  text-align: center;
}
.bvs-guideline ol {
  padding-left: 2.5rem;
}
.bvs-guideline ol > ul {
  padding-left: 2rem;
  list-style-type: disc;
}
.bvs-guideline ol > li {
  margin: 20px 0;
}
.bvs-guideline ol > ol {
  padding-left: 2rem;
}
.bvs-guideline ol > ol li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -1.5em;
  padding: 0;
}
.bvs-guideline ol > ol li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
.bvs-guideline .last {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .bvs-guideline {
    font-size: 1.3rem;
  }
  .bvs-guideline h3 {
    font-size: 1.3rem;
  }
  .bvs-guideline p {
    font-size: 1.125rem;
  }
  .bvs-guideline ol {
    padding-left: 1rem;
  }
  .bvs-guideline ol > ul {
    padding-left: 1rem;
  }
}

/* フッターメニュー */
.foot-menu {
  padding: 50px 0;
  color: #fff;
  text-align: center;
}
.foot-menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
.foot-menu a:hover {
  text-decoration: underline;
}

/* 下部3つの特徴 */
.align-center {
  text-align: center;
}
.mt-30 {
  margin-top: 30px;
}
.bvs-form__btn {
  text-align: center;
}
.bvs-form__btn > img {
  display: block;
  margin: 30px auto;
}
@media only screen and (max-width: 767px) {
  .bvs-form__btn > img {
    max-width: 90%;
  }
}
.bvs-form__noteInner {
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 30px;
  font-size: 1.2rem;
  border: 2px solid #0a1b30;
  background-color: #fff;
}
.bvs-form__noteInner h3 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  text-align: center;
  margin: 20px auto;
}
.bvs-form__noteInner img {
  display: block;
  margin: 20px auto;
  max-width: 200px;
}

.bvs-form__noteInner figcaption {
  margin-top: 20px;
  text-align: center;
}
.bvs-form__noteInner__flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .bvs-form__noteInner {
    width: 95%;
  }
  .bvs-form__noteInner__flex {
    flex-direction: column-reverse;
  }
}

/* M&Aの疑問に答えますセクション */
.bvs-form__gimonInner {
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 30px;
  font-size: 1.5rem;
  border: 2px solid #0a1b30;
  background-color: #d9d9d9;
}
.bvs-form__gimonInner h3 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  text-align: center;
  margin: 20px auto;
}
.bvs-faq__list2 {
  list-style: none;
  /* padding-bottom: 6rem; */
}
@media only screen and (max-width: 767px) {
  .bvs-form__gimonInner {
    width: 95%;
  }
}

/* フォームの注意事項 */
.is-error {
  font-weight: bold;
  color: red;
}

body,
html {
  color: #0c1757;
  font-family: "YuGothic", "游ゴシック", "游ゴシック体", "Helvetica Neue", Arial,
    Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 1024px) {
  body,
  html {
    font-size: 14.5px;
  }
}
@media only screen and (max-width: 767px) {
  body,
  html {
    font-size: 14px;
  }
}
