*,
::after,
::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a {
  color: initial;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #faffff;
  --color-object-dark: #3c4141;
  --color-object-dark2: #4b5050;
  --color-txt-main: #506464;
  --color-txt-sub: #8c9696;
  --color-object-lighten: #f0f5f5;
  --color-object-lighten2: #bec3c3;
  --color-line: #d2dcd7;
  --color-primary-green: #19a050;
}

.BrandService {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 60px;
}
.BrandService__inner {
  /* max-width: 913px; */
  max-width: 1000px;
  margin: 0 auto;
}
.BrandService__shoulder,
.BrandService__list,
.BrandService .Image {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
/* .BrandService__texts,
.BrandService .Image {
  width: calc(50% - 12px);
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .BrandService__texts,
  .BrandService .Image {
    width: 100%;
  }
} */
.BrandService__shoulder {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary-green);
  transition-delay: 0.24s;
}
@media screen and (max-width: 768px) {
  .BrandService__shoulder {
    font-size: 16px;
  }
}
.BrandService .SectionHead:not(.-medium) {
  font-size: 24px;
  /* margin-top: 24px; */
  margin-bottom: 20px;
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .BrandService .SectionHead {
    font-size: 28px;
  }
}
.BrandService .SectionHead:not(.-medium).-slash {
  padding-left: 35px;
}
.BrandService .SectionHead:not(.-medium).-slash::before {
  height: 118%;
}
.BrandService__list {
  margin: 45px auto 0;
  transition-delay: 0.72s;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.BrandService__item {
  /* padding-left: 20px; */
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  width: 40.6%;
}
@media screen and (min-width: 769px) {
  .BrandService__item:last-child {
    width: 51.8%;
  }
}
@media screen and (max-width: 768px) {
  .BrandService__item {
    width: 100%;
    margin-bottom: 50px;
  }
  .BrandService__item:last-child {
    margin-bottom: 0;
  }
}
/* .BrandService__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-txt-main);
  position: absolute;
  top: 12px;
  left: 8px;
} */
.BrandService__item .Image {
  transition-delay: 0.96s;
}
.BrandService__item .txt {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(28 / 20);
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 12px;
}
.BrandService.-active .BrandService__shoulder,
.BrandService.-active .SectionHead,
.BrandService.-active .BrandService__list,
.BrandService.-active .Image {
  opacity: 1;
  transform: translateY(0);
}

.BrandList {
  padding-top: 95px;
}
.BrandList__inner {
  max-width: 1224px;
}
.BrandList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 24px;
}
.BrandList ul li {
  width: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  .BrandList ul li {
    width: 100%;
  }
}
.BrandList ul li a > * {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.BrandList.-active ul li a > * {
  opacity: 1;
  transform: translateY(0);
}
.BrandList ul li .ttl {
  font-size: 24px;
  color: var(--color-primary-green);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0 8px;
  margin-top: 8px;
  transition-delay: 0.24s;
}
@media screen and (max-width: 768px) {
  .BrandList ul li .ttl {
    font-size: 20px;
    padding: 0;
    margin-bottom: 3px;
  }
}
.BrandList ul li .txt {
  font-size: 14px;
  color: #506464;
  letter-spacing: 0.02em;
  padding: 0 8px;
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .BrandList ul li .txt {
    padding: 0;
  }
}
