@charset 'utf-8';

/*===============================
 詳細ページ
 ===============================*/
.p-brand__cnt {
	margin-top: calc(29*var(--width-ratio));
}
.p-brand__logo {
  width: calc(300 * var(--width-ratio));
  margin: 0 auto calc(45 * var(--width-ratio));
}
.p-brand .p-brand__logo > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-brand__fv {
	width: 100%;
	margin-bottom: calc(32*var(--width-ratio));
}
.p-brand .p-brand__fv > img {
	width: 100%;
	height: auto;
	aspect-ratio: 1200/674;
	object-fit: cover;
}
.p-brand__cnt h2 {
  display: block;
  font-size: calc(20 * var(--width-ratio));
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.03em;
  padding-bottom: 0.6em;
  border-bottom: #e2e2e2 1px solid;
  margin-bottom: calc(24*var(--width-ratio));
  position: relative;
}
.p-brand__cnt h2::after {
  content: "";
  display: block;
  width: calc(40.5 * var(--width-ratio));
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.p-brand__cnt h3 {
  font-size: calc(18 * var(--width-ratio));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  background-color: #f3f3f3;
  border-left: #1a1a1a 2px solid;
  padding-left: 0.33em;
  margin-bottom: calc(24*var(--width-ratio));
}
.p-brand__cnt p {
  font-size: calc(16 * var(--width-ratio));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.p-brand__cnt img {
	width: calc(960*var(--width-ratio));
	height: auto;
  margin: 0 auto calc(24 * var(--width-ratio));
}
.p-brand__cnt ol,
.p-brand__cnt ul {
  list-style: none;
  font-size: calc(16 * var(--width-ratio));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  margin-bottom: calc(24 * var(--width-ratio));
}
.p-brand__cnt ul li {
  position: relative;
  padding-left: calc(21 * var(--width-ratio));
}
.p-brand__cnt ul li:not(:last-of-type) {
  margin-bottom: calc(6 * var(--width-ratio));
}
.p-brand__cnt ul li::before {
  content: "";
  display: inline-block;
  width: calc(16 * var(--width-ratio));
  height: calc(16 * var(--width-ratio));
  background-color: #e2e2e2;
  border-radius: 50%;
  position: absolute;
  top: calc(4*var(--width-ratio));
  left: 0;
  z-index: 0;
}
.p-brand__cnt ul li::after {
  content: "";
  display: block;
  width: calc(10 * var(--width-ratio));
  height: calc(10 * var(--width-ratio));
  background-color: #1a1a1a;
  border-radius: 50%;
  position: absolute;
  top: calc(7*var(--width-ratio));
  left: calc(3 * var(--width-ratio));
  z-index: 1;
}
.p-brand__cnt ol {
  counter-reset: number;
  margin-bottom: calc(35 * var(--width-ratio));
}
.p-brand__cnt ol li {
	padding-left: calc(26*var(--width-ratio));
  position: relative;
}
.p-brand__cnt ol li:not(:last-of-type) {
  margin-bottom: 0.75em;
}
.p-brand__cnt ol li::before {
	position: absolute;
	top: 0;
	left: 0;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: calc(16 * var(--width-ratio));
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 0.5em;
}
.p-brand__cnt h4 {
  font-size: calc(18 * var(--width-ratio));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.33;
  border-left: #1a1a1a 4px solid;
  padding-left: 0.5em;
  margin-bottom: calc(24*var(--width-ratio));
}
.p-brand__cnt dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(8 * var(--width-ratio));
  font-size: calc(16 * var(--width-ratio));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.p-brand__cnt dt {
  min-width: 7.83em;
  border-bottom: #1a1a1a 1px solid;
  padding: 1em 0;
}
.p-brand__cnt dd {
  flex-grow: 1;
  max-width: calc(100% - 7.83em);
  width: 100%;
  padding: 1em 0 1em 1em;
  border-bottom: #e2e2e2 1px solid;
}
.p-brand__download .download_labels {
	display: flex;
	flex-wrap: wrap;
	column-gap: calc(18*var(--width-ratio));
	row-gap: calc(15*var(--width-ratio));
	margin-top: calc(45*var(--width-ratio));
	margin-bottom: calc(65*var(--width-ratio));
}
.p-brand__download .download_label {
	width: calc(224*var(--width-ratio));
	height: calc(58*var(--width-ratio));
	display: flex;
	align-items: center;
	justify-content: center;
	border: #E2E2E2 1px solid;
	border-radius: calc(36*var(--width-ratio));
	font-size: calc(16*var(--width-ratio));
	font-weight: 700;
	letter-spacing: 0.03em;
}
.p-brand__download h3 {
	display: block;
	font-size: calc(24*var(--width-ratio));
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.45;
	border-bottom: #E2E2E2 1px solid;
	padding-bottom: 0.625em;
	margin-bottom: calc(45*var(--width-ratio));
}
.p-brand__download .download__item:not(:last-of-type) {
	margin-bottom: calc(50*var(--width-ratio));
}
.p-brand__download .download__item ul {
	display: flex;
	justify-content: space-between;
	padding: 0 calc(16*var(--width-ratio));
}
.p-brand__download .download__item li {
	width: calc(248*var(--width-ratio));
}
.p-brand__download .download__item .download__img {
	width: 100%;
	overflow: hidden;
	margin-bottom: calc(10*var(--width-ratio));
}
.p-brand__download .download__item .download__img img {
	width: 100%;
	height: calc(248*var(--width-ratio));
	object-fit: cover;
	transition: .3s;
}
.p-brand__download .download__item .download__img img:hover {
	transform: scale(1.1);
}
.p-brand__download .download__item a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(141*var(--width-ratio));
	height: calc(28*var(--width-ratio));
	background-color: #1A1A1A;
	border-radius: calc(14*var(--width-ratio));
	font-size: calc(14*var(--width-ratio));
	font-weight: 700;
	letter-spacing: 0;
	color: #FFFFFF;
	margin: 0 auto;
}

@media screen and (max-width:768px) {
  .p-brand__cnt {
    margin-top: 0;
  }
  .p-brand__logo {
    width: calc(200 * var(--width-ratio));
    margin: 0 auto calc(24 * var(--width-ratio));
  }
  .p-brand__fv {
    width: 100%;
    margin-bottom: calc(24*var(--width-ratio));
  }
	.p-brand__cnt img {
		width: 100%;
    margin-bottom: calc(16 * var(--width-ratio));
	}
	.p-brand__cnt ol li {
		padding-left: calc(21*var(--width-ratio));
	}
	.p-brand__cnt ol li:not(:last-of-type) {
		margin-bottom: calc(12*var(--width-ratio));
	}
	.p-brand__cnt ol li::before {
		font-size: calc(12 * var(--width-ratio));
		top: calc(4*var(--width-ratio));
		margin-right: 0.42em;
	}
	.p-brand__cnt dl {
    row-gap: 0;
	}
	.p-brand__cnt dt {
    width: 100%;
    border-bottom: #E2E2E2 1px solid;
    padding: 1em 0;
		position: relative;
	}
	.p-brand__cnt dt::after {
		content: '';
		display: block;
		width: calc(125*var(--width-ratio));
		height: 1px;
		position: absolute;
		background-color: #1A1A1A;
		bottom: -1px;
		left: 0;
	}
	.p-brand__cnt dd {
    max-width: 100%;
    padding: 1em 0;
    border-bottom: none;
	}
  .p-brand__download .download_labels {
    justify-content: center;
    column-gap: 3.4%;
    row-gap: calc(10*var(--width-ratio));
    margin-top: calc(16*var(--width-ratio));
    margin-bottom: calc(30*var(--width-ratio));
  }
  .p-brand__download .download_label {
    width: 48.3%;
    height: calc(46*var(--width-ratio));
    font-size: calc(15*var(--width-ratio));
    letter-spacing: 0.01em;
  }
  .p-brand__download .download__item:not(:last-of-type) {
    margin-bottom: calc(24*var(--width-ratio));
  }
  .p-brand__download h3 {
    font-size: calc(17*var(--width-ratio));
    letter-spacing: 0.01em;
    padding-bottom: 0.59em;
    margin-bottom: calc(24*var(--width-ratio));
  }
  .p-brand__download .download__item ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 8.4%;
    row-gap: calc(16*var(--width-ratio));
    padding: 0;
  }
  .p-brand__download .download__item li {
    width: 45.8%;
  }
  .p-brand__download .download__item .download__img img {
    height: calc(150*var(--width-ratio));
  }

}

/*===============================
 一覧ページ
 ===============================*/
.p-archiveBrand__wrapper {
  width: 100%;
  margin-bottom: calc(14 * var(--width-ratio));
  position: relative;
}
.p-archiveBrand__wrapper::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: calc(50 * var(--width-ratio));
  left: 0;
  z-index: -1;
}
.p-archiveBrand__inner {
  width: calc(1000 * var(--width-ratio));
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.p-archiveBrand__img {
  width: calc(500 * var(--width-ratio));
  height: calc(500 * var(--width-ratio));
}
.p-archiveBrand__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(8 * var(--width-ratio));
}
.p-archiveBrand__main {
  width: calc(445 * var(--width-ratio));
  padding-top: calc(16 * var(--width-ratio));
}
.p-archiveBrand__main h2 {
  font-size: calc(15 * var(--width-ratio));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.26;
  margin-bottom: 2.5em;
}
.p-archiveBrand__txt {
  margin-bottom: calc(26 * var(--width-ratio));
}
.p-archiveBrand__txt p {
  font-size: calc(16 * var(--width-ratio));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: calc(1em);
}
.p-archiveBrand__link {
  display: flex;
  align-items: center;
  width: calc(276 * var(--width-ratio));
  height: calc(56 * var(--width-ratio));
  border: #1a1a1a 1px solid;
  border-radius: calc(36 * var(--width-ratio));
  background-color: #1a1a1a;
  font-size: calc(16 * var(--width-ratio));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #e2e2e2;
  padding-left: 1.58em;
  position: relative;
  transition: .3s;
}
.p-archiveBrand__link:hover {
  opacity: 1;
  background-color: #fff;
  color: #1A1A1A;
}
.p-archiveBrand__link::after {
  content: "";
  display: block;
  width: calc(6 * var(--width-ratio));
  height: calc(8 * var(--width-ratio));
  background-image: url(../img/arrow_r_lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: calc(25 * var(--width-ratio));
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .p-archiveBrand__wrapper::before {
    top: calc(414 * var(--width-ratio));
  }
  .p-archiveBrand__inner {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .p-archiveBrand__img {
    width: calc(359 * var(--width-ratio));
    height: calc(359 * var(--width-ratio));
  }
  .p-archiveBrand__main {
    width: calc(326 * var(--width-ratio));
    padding-top: calc(24 * var(--width-ratio));
  }
  .p-archiveBrand__main h2 {
    margin-bottom: 1.6em;
  }
  .p-archiveBrand__txt {
    margin-bottom: calc(12 * var(--width-ratio));
  }
  .p-archiveBrand__txt p {
    line-height: 1.8;
    margin-bottom: 1em;
  }
  .p-archiveBrand__link {
    justify-content: center;
    width: calc(217 * var(--width-ratio));
    height: calc(44 * var(--width-ratio));
    border-radius: calc(23 * var(--width-ratio));
    font-size: calc(12 * var(--width-ratio));
    padding-left: 0;
    margin: 0 auto;
  }
  .p-archiveBrand__link::after {
    display: none;
  }
}
