/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
.u-philosophy {
  position: relative;
  z-index: 0;
  margin-inline: var(--negative-margin);
  padding-inline: abs(var(--negative-margin));
  color: #fff;
}
.u-philosophy::before,
.u-philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.u-philosophy::before {
  background: url(../img/strategy_philosophy_bg.jpg) no-repeat center / cover;
}
.u-philosophy::after {
  background-color: rgba(63, 67, 93, 0.3);
}
.u-philosophy__inr {
  padding: 26rem 4rem 23.6rem;
}
.u-philosophy__ttl {
  font-family: var(--font-family-serif);
  font-size: 4rem;
  font-wright: normal;
  line-height: 1.8;
  text-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.32);
}
.u-philosophy__txt {
  margin-top: 4rem;
  text-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.56);
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .c-ctsWrap {
    margin-top: 1.8rem;
  }

  .u-philosophy::before {
    background-image: url(../img/sp_strategy_philosophy_bg.jpg);
  }
  .u-philosophy__inr {
    padding: 8rem 0 34rem;
  }
  .u-philosophy__ttl {
    font-size: 3rem;
  }
  .u-philosophy__txt {
    margin-top: 1.6rem;
  }
}


.u-strategy {
  margin-top: 8rem;
}
.u-strategy + .u-strategy {
  margin-top: 12rem;
}
.u-strategy__ttlWrap > *:not(:first-child) {
  margin-top: 1.6rem;
  font-weight: 400;
}
.u-strategy__label {
  display: inline-block;
  padding: 0.4rem 1.6rem 0.7rem;
  border-radius: 10rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.u-strategy__label.--bgc-bl {
  background-color: #5197ef;
}
.u-strategy__label.--bgc-rd {
  background-color: #e88a85;
}
.u-strategy__label.--bgc-gr {
  background-color: #17c663;
}
.u-strategy__label.--bgc-yl {
  background-color: #f8a758;
}
.u-strategy__cts {
  margin-top: 4rem;
}
.u-strategy__box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
}
.u-strategy__boxItem {
  padding: 2rem 3.2rem;
  background-color: #f4f7fb;
}
.u-strategy__boxTtl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.u-strategy__boxTtl + * {
  margin-top: 0.4rem;
}
.u-strategy__boxCts ul:not([class]) {
  line-height: 2;
}
.u-strategy__boxCts ul:not([class]) > li {
  position: relative;
  padding-left: 2.4rem;
}
.u-strategy__boxCts ul:not([class]) > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0.4rem;
}
.u-philosophy + * {
  margin-top: 8rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-strategy + .u-strategy {
    margin-top: 8rem;
  }
  .u-strategy__ttlWrap > *:not(:first-child) {
    margin-top: 0.8rem;
  }
  .u-strategy__label {
    font-size: 1.4rem;
  }
  .u-strategy__box {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }
  .u-strategy__boxItem {
    padding: 2.4rem;
  }
}
