@charset "utf-8";

/*--------------------- */
/* philosophyページ用 */
/* --------------------- */

/* -------
↓ここからFV
------- */

.business-fv {
  position: relative;

  display: flex;
  align-items: center;
  background-image: url(../img/philosophy-fv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  height: clamp(420px, 29vw, 1920px);
  /* height: 100vw; */
}

.business-fv-wrapper {
  width: 100%;
  margin: 0 auto;
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1100px) {
  .business-fv-wrapper {
    padding: 12rem 0rem 10rem;
  }
}

/*550px以下のとき以下を採用*/
@media (max-width: 550px) {
  .business-fv-wrapper {
    width: 100%;
    padding: 15rem 0rem 10rem;
  }
}

.business-title-container {
  display: inline-block;
  margin: 0 auto;
}

.business-title-main {
  font-family: var(--oubun-font);
  color: var(--color-f);

  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2.4px;
  margin-top: -0.6rem;
  margin-bottom: -0.5rem;
}

.business-title-sub {
  font-family: var(--japan-font);

  color: var(--color-f);
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  margin-left: 2.6rem;
}
.business-title {
  display: flex;
  align-items: center;
  margin-bottom: 4.2rem;
  padding: 3rem 6rem 3rem 21rem;
  background-color: rgba(111, 84, 187, 0.4);
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .business-title-container {
    display: block;
    margin: 0 auto;
  }

  .business-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
  }
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .business-fv {
    background-position: 93% center;
  }
}

/*550px以下のとき以下を採用*/
@media (max-width: 550px) {
  .business-fv {
    background-position: 79% center;
  }
}

/* -------
↑ここまでFV
------- */
