@charset "UTF-8";
/* ============================================
   ドレッセブランドページ共通テンプレート SCSS
   プレフィックス: drbr-
   既存サイトのスタイルに干渉しないよう設計
   すべてのスタイルが.drbr-brandスコープ内に配置
============================================ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
.drbr-brand {
  --drbr-color-beige: #ece5db;
  --drbr-color-darkbeige: #e2d9cc;
  --drbr-color-lightbeige: #f6f0e7;
  --drbr-color-darkred: #9e2428;
  --drbr-color-text-body: #222222;
  --drbr-color-text-gray: #666666;
  --drbr-hero-ratio-pc: 1920 / 800;
  --drbr-hero-ratio-sp: 750 / 600;
  background-color: var(--drbr-color-beige);
  font-family: "Zen Old Mincho", serif;
  color: var(--drbr-color-text-body);
  line-height: 1.6;
}
.drbr-brand * {
  box-sizing: border-box;
}
.drbr-brand img {
  max-width: 100%;
  height: auto;
  display: block;
}
.drbr-brand p {
  margin: 0 0 1em 0;
}
.drbr-brand p:last-child {
  margin-bottom: 0;
}
.drbr-brand .drbr-hero {
  position: relative;
  width: 100%;
  aspect-ratio: var(--drbr-hero-ratio-pc);
}
.drbr-brand .drbr-hero__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.drbr-brand .drbr-hero__image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.drbr-brand .drbr-movie {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drbr-brand .drbr-movie__video {
  position: relative;
  width: 896px;
  aspect-ratio: 16/9;
}
.drbr-brand .drbr-movie__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.drbr-brand .drbr-movie__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drbr-brand .drbr-movie__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.drbr-brand .drbr-movie__poster:hover .drbr-movie__play-icon {
  transform: scale(1.1);
  transform-origin: center;
}
.drbr-brand .drbr-movie__play-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(360deg, rgba(249, 6, 21, 0.8) 0%, rgba(158, 36, 40, 0.8) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.drbr-brand .drbr-movie__play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.drbr-brand .drbr-brand-desc {
  background-color: var(--drbr-color-lightbeige);
  border-top: 1px solid var(--drbr-color-darkred);
  border-bottom: 1px solid var(--drbr-color-darkred);
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drbr-brand .drbr-brand-desc .drbr-brand__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 1080px;
  height: 230px;
}
.drbr-brand .drbr-brand-desc .drbr-brand__desc__image {
  width: 252px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drbr-brand .drbr-brand-desc .drbr-brand__desc__image img {
  width: 114px;
  height: 114px;
  object-fit: contain;
}
.drbr-brand .drbr-brand-desc .drbr-brand__desc__text {
  flex: 1;
  max-width: 784px;
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drbr-brand .drbr-lead {
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 59px;
}
.drbr-brand .drbr-lead .drbr-h2 {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0;
  max-width: 984px;
}
.drbr-brand .drbr-lead__text {
  width: 1080px;
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
.drbr-brand .drbr-lead__text p {
  margin-bottom: 0;
}
.drbr-brand .drbr-company {
  background-color: var(--drbr-color-darkbeige);
  padding: 72px 0;
}
.drbr-brand .drbr-company__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.drbr-brand .drbr-company__content__image {
  width: 252px;
  height: 76px;
}
.drbr-brand .drbr-company__content__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.drbr-brand .drbr-company__content__divider {
  width: 1px;
  height: 72px;
  display: block;
  background-color: var(--drbr-color-darkred);
  border: none;
  margin: 0;
}
.drbr-brand .drbr-company__content__text {
  width: 467px;
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drbr-brand .drbr-company__content__text p {
  margin-bottom: 0;
}
.drbr-brand .drbr-photos {
  background-color: var(--drbr-color-lightbeige);
  padding: 72px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.drbr-brand .drbr-photos__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.drbr-brand .drbr-photos__image {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.drbr-brand .drbr-photos__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.drbr-brand .drbr-photos__column .drbr-photos__image + .drbr-photos__image {
  margin-top: 1.5em;
}
.drbr-brand .drbr-photos__caption {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: auto;
  display: flex;
  position: relative;
  padding-top: 0.5em;
}
.drbr-brand .drbr-concept {
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.drbr-brand .drbr-concept__title {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.drbr-brand .drbr-concept__lead {
  display: flex;
  gap: 68px;
  align-items: center;
  padding: 0;
}
.drbr-brand .drbr-concept__lead__image {
  width: 551px;
  height: 496px;
}
.drbr-brand .drbr-concept__lead__image img {
  width: 100%;
  object-fit: cover;
}
.drbr-brand .drbr-concept__lead__text {
  width: 460px;
}
.drbr-brand .drbr-concept__lead__text h3 {
  font-size: 23px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 24px 0;
}
.drbr-brand .drbr-concept__lead__text p {
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drbr-brand .drbr-concept__content {
  border-left: 1px solid var(--drbr-color-darkred);
  display: flex;
}
.drbr-brand .drbr-concept__content__item {
  width: 360px;
  padding: 24px 18px;
  border-right: 1px solid var(--drbr-color-darkred);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.drbr-brand .drbr-concept__content__item h4 {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0;
}
.drbr-brand .drbr-concept__content__item h5 {
  font-size: 18px;
  line-height: 2.77777778;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0;
}
.drbr-brand .drbr-concept__content__item p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
}
.drbr-brand .drbr-environment {
  background-color: var(--drbr-color-lightbeige);
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.drbr-brand .drbr-environment__lead {
  text-align: center;
}
.drbr-brand .drbr-environment__lead h2 {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 24px 0;
}
.drbr-brand .drbr-environment__lead p {
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drbr-brand .drbr-environment__content {
  width: 1080px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 24px;
  justify-content: center;
}
.drbr-brand .drbr-environment__content__card {
  background-color: var(--drbr-color-darkbeige);
  width: 344px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.drbr-brand .drbr-environment__content__card__image {
  width: 100%;
  aspect-ratio: 344/177;
}
.drbr-brand .drbr-environment__content__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drbr-brand .drbr-environment__content__card p {
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  padding: 0 12px 12px;
  margin: 0;
}
.drbr-brand .drbr-environment__content__card p.drbr-environment__content__card__note {
  font-size: 12px;
  line-height: 2.25;
  color: var(--drbr-color-text-gray);
  position: absolute;
  bottom: -3em;
  right: 0;
}
.drbr-brand .drbr-support {
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.drbr-brand .drbr-support__lead {
  text-align: center;
  max-width: 1080px;
  padding: 0 48px;
}
.drbr-brand .drbr-support__lead h2 {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 24px 0;
}
.drbr-brand .drbr-support__lead p {
  font-size: 16px;
  line-height: 2.875;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drbr-brand .drbr-support__content {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  padding: 0 48px;
}
.drbr-brand .drbr-support__content__card {
  background-color: var(--drbr-color-lightbeige);
  width: 344px;
  position: relative;
  overflow: hidden;
}
.drbr-brand .drbr-support__content__card__title {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--drbr-color-beige);
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--drbr-color-darkred);
}
.drbr-brand .drbr-support__content__card__list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drbr-brand .drbr-support__content__card__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 15px;
  line-height: 1.46;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.drbr-brand .drbr-support__content__card__item::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--drbr-color-text-body);
  flex-shrink: 0;
  margin-top: 4px;
}
.drbr-brand .drbr-support__content__card__figure {
  padding: 0 20px;
}
.drbr-brand .drbr-support__content__card__figure img {
  width: 100%;
  object-fit: cover;
}
.drbr-brand .drbr-support__link__button {
  background-color: var(--drbr-color-darkred);
  color: var(--drbr-color-lightbeige);
  padding: 22px 0;
  width: 392px;
  text-align: center;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.drbr-brand .drbr-support__link__button:hover {
  background-color: #7a1c1f;
}
@media (min-width: 1081px) {
  .drbr-brand .drbr-photos__container {
    width: 1080px;
    gap: 24px;
  }
  .drbr-brand .drbr-photos__container.two-columns > * {
    width: 528px;
  }
  .drbr-brand .drbr-photos__container.three-columns > * {
    width: 344px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .drbr-brand .drbr-movie {
    padding: 6.5454545455vw 0;
  }
  .drbr-brand .drbr-movie__video {
    width: 81.4545454545vw;
  }
  .drbr-brand .drbr-movie__play-icon {
    width: 7.2727272727vw;
    height: 7.2727272727vw;
  }
  .drbr-brand .drbr-movie__play-icon::before {
    border-left: 1.8181818182vw solid white;
    border-top: 1.0909090909vw solid transparent;
    border-bottom: 1.0909090909vw solid transparent;
    margin-left: 0.3636363636vw;
  }
  .drbr-brand .drbr-brand-desc {
    padding: 4.3636363636vw 0;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc {
    width: 98.1818181818vw;
    height: 20.9090909091vw;
    gap: 2.1818181818vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__image {
    width: 22.9090909091vw;
    height: 10.5454545455vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__image img {
    width: 10.3636363636vw;
    height: 10.3636363636vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__text {
    max-width: 71.2727272727vw;
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-lead {
    padding: 6.5454545455vw 4.3636363636vw;
    gap: 5.3636363636vw;
  }
  .drbr-brand .drbr-lead .drbr-h2 {
    font-size: 3.0909090909vw;
  }
  .drbr-brand .drbr-lead__text {
    max-width: 98.1818181818vw;
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-company {
    padding: 6.5454545455vw 0;
  }
  .drbr-brand .drbr-company__content {
    gap: 6.5454545455vw;
    max-width: 109.0909090909vw;
    padding: 0 4.3636363636vw;
  }
  .drbr-brand .drbr-company__content__image {
    width: 22.9090909091vw;
    height: 6.9090909091vw;
  }
  .drbr-brand .drbr-company__content__divider {
    height: 6.5454545455vw;
  }
  .drbr-brand .drbr-company__content__text {
    width: 42.4545454545vw;
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-photos {
    padding: 6.5454545455vw 0;
  }
  .drbr-brand .drbr-photos__container {
    gap: 2.1818181818vw;
    width: 98.1818181818vw;
  }
  .drbr-brand .drbr-photos__container.two-columns > * {
    width: 48vw;
  }
  .drbr-brand .drbr-photos__container.three-columns > * {
    width: 31.2727272727vw;
  }
  .drbr-brand .drbr-photos__caption {
    font-size: 1.0909090909vw;
  }
  .drbr-brand .drbr-concept {
    padding: 6.5454545455vw 0;
    gap: 4.3636363636vw;
  }
  .drbr-brand .drbr-concept__title {
    font-size: 3.0909090909vw;
  }
  .drbr-brand .drbr-concept__lead {
    gap: 6.1818181818vw;
  }
  .drbr-brand .drbr-concept__lead__image {
    width: 50.0909090909vw;
    height: 45.0909090909vw;
  }
  .drbr-brand .drbr-concept__lead__text {
    max-width: 41.8181818182vw;
  }
  .drbr-brand .drbr-concept__lead__text h3 {
    font-size: 2.0909090909vw;
    margin: 0 0 2.1818181818vw 0;
  }
  .drbr-brand .drbr-concept__lead__text p {
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-concept__content__item {
    width: 32.7272727273vw;
    padding: 2.1818181818vw 1.6363636364vw;
    gap: 1.0909090909vw;
  }
  .drbr-brand .drbr-concept__content__item h4 {
    font-size: 1.8181818182vw;
  }
  .drbr-brand .drbr-concept__content__item h5 {
    font-size: 1.6363636364vw;
  }
  .drbr-brand .drbr-concept__content__item p {
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-environment {
    padding: 6.5454545455vw 0;
    gap: 4.3636363636vw;
  }
  .drbr-brand .drbr-environment__lead h2 {
    font-size: 3.0909090909vw;
    margin: 0 0 2.1818181818vw 0;
  }
  .drbr-brand .drbr-environment__lead p {
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-environment__content {
    width: 98.1818181818vw;
    gap: 3.2727272727vw 2.1818181818vw;
  }
  .drbr-brand .drbr-environment__content__card {
    width: 31.2727272727vw;
    gap: 1.0909090909vw;
  }
  .drbr-brand .drbr-environment__content__card p {
    font-size: 1.6363636364vw;
    padding: 0 1.0909090909vw 1.0909090909vw;
  }
  .drbr-brand .drbr-environment__content__card p.drbr-environment__content__card__note {
    font-size: 1.0909090909vw;
  }
  .drbr-brand .drbr-support {
    padding: 6.5454545455vw 0;
    gap: 4.3636363636vw;
  }
  .drbr-brand .drbr-support__lead {
    max-width: 98.1818181818vw;
    padding: 0 4.3636363636vw;
  }
  .drbr-brand .drbr-support__lead h2 {
    font-size: 3.0909090909vw;
    margin: 0 0 2.1818181818vw 0;
  }
  .drbr-brand .drbr-support__lead p {
    font-size: 1.4545454545vw;
  }
  .drbr-brand .drbr-support__content {
    gap: 2.1818181818vw;
    max-width: 98.1818181818vw;
    padding: 0;
  }
  .drbr-brand .drbr-support__content__card {
    width: 31.2727272727vw;
  }
  .drbr-brand .drbr-support__content__card__title {
    height: 6.5454545455vw;
    font-size: 2vw;
  }
  .drbr-brand .drbr-support__content__card__list {
    padding: 1.8181818182vw;
    gap: 0.7272727273vw;
  }
  .drbr-brand .drbr-support__content__card__item {
    gap: 0.7272727273vw;
    padding: 0.3636363636vw 0;
    font-size: 1.3636363636vw;
  }
  .drbr-brand .drbr-support__content__card__item::before {
    width: 1.4545454545vw;
    height: 1.4545454545vw;
    margin-top: 0.3636363636vw;
  }
  .drbr-brand .drbr-support__content__card__figure {
    padding: 0 1.8181818182vw;
  }
  .drbr-brand .drbr-support__link__button {
    padding: 2vw 0;
    width: 35.6363636364vw;
    font-size: 1.8181818182vw;
  }
  .drbr-brand .drbr-movie {
    padding: 6.5454545455vw 0;
  }
  .drbr-brand .drbr-movie__video {
    width: 81.4545454545vw;
  }
}
@media (max-width: 768px) {
  .drbr-brand {
    width: 100vw;
    overflow-x: hidden;
  }
  .drbr-brand .drbr-hero {
    width: 100%;
    aspect-ratio: var(--drbr-hero-ratio-sp);
  }
  .drbr-brand .drbr-hero__image {
    width: 100%;
    height: 100%;
  }
  .drbr-brand .drbr-movie {
    padding: 9.6vw 0;
  }
  .drbr-brand .drbr-movie__video {
    width: 91.4666666667vw;
  }
  .drbr-brand .drbr-movie__play-icon {
    width: 8vw;
    height: 8vw;
  }
  .drbr-brand .drbr-movie__play-icon::before {
    border-left: 2vw solid white;
    border-top: 1.2vw solid transparent;
    border-bottom: 1.2vw solid transparent;
    margin-left: 0.4vw;
  }
  .drbr-brand .drbr-brand-desc {
    padding: 9.6vw 23.7333333333vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc {
    flex-direction: column;
    height: auto;
    gap: 4.8vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__image {
    width: 20vw;
    height: 20vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__image img {
    width: 20vw;
    height: 20vw;
  }
  .drbr-brand .drbr-brand-desc .drbr-brand__desc__text {
    width: 86.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-lead {
    padding: 9.6vw 6.4vw;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-lead .drbr-h2 {
    font-size: 5.6vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-lead__text {
    text-align: left;
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
    width: 100%;
    max-width: none;
  }
  .drbr-brand .drbr-company {
    padding: 9.6vw 0;
  }
  .drbr-brand .drbr-company__content {
    flex-direction: column;
    gap: 4.8vw;
    text-align: center;
    width: 100%;
  }
  .drbr-brand .drbr-company__content__image {
    width: 37.3333333333vw;
    height: 11.3333333333vw;
  }
  .drbr-brand .drbr-company__content__divider {
    height: 1px;
    width: 9.6vw;
  }
  .drbr-brand .drbr-company__content__text {
    width: 90.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-photos {
    padding: 9.6vw 6.4vw;
    overflow-x: auto;
  }
  .drbr-brand .drbr-photos__container {
    gap: 2.6666666667vw;
    display: flex;
    flex-wrap: wrap;
  }
  .drbr-brand .drbr-photos__container > * {
    width: 42.1333333333vw;
  }
  .drbr-brand .drbr-photos__caption {
    font-size: 1.8666666667vw;
  }
  .drbr-brand .drbr-concept {
    padding: 9.6vw 0;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-concept__title {
    font-size: 5.6vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-concept__lead {
    flex-direction: column-reverse;
    gap: 4.8vw;
    text-align: center;
    width: 86.9333333333vw;
  }
  .drbr-brand .drbr-concept__lead__image {
    width: 73.4666666667vw;
    height: 66.1333333333vw;
  }
  .drbr-brand .drbr-concept__lead__text {
    width: 86.9333333333vw;
  }
  .drbr-brand .drbr-concept__lead__text h3 {
    font-size: 4.8vw;
    line-height: 2;
    letter-spacing: 0.1em;
    margin: 0 0 3.2vw 0;
  }
  .drbr-brand .drbr-concept__lead__text p {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-concept__content {
    flex-direction: column;
    border-left: none;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-concept__content__item {
    width: 86.9333333333vw;
    border-right: none;
    border-left: 0.5333333333vw solid var(--drbr-color-darkred);
    border-bottom: none;
    padding: 1.6vw 0 1.6vw 4.8vw;
    gap: 1.6vw;
    text-align: left;
  }
  .drbr-brand .drbr-concept__content__item h4 {
    font-size: 4.8vw;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-left: -0.5em;
  }
  .drbr-brand .drbr-concept__content__item h5 {
    font-size: 4.2666666667vw;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-concept__content__item p {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .drbr-brand .drbr-environment {
    padding: 9.6vw 6.4vw;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-environment__lead h2 {
    font-size: 5.6vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin: 0 0 6.4vw 0;
  }
  .drbr-brand .drbr-environment__lead p {
    text-align: left;
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
    width: 87.2vw;
  }
  .drbr-brand .drbr-environment__content {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-environment__content__card {
    width: 64.5333333333vw;
    height: 43.3333333333vw;
  }
  .drbr-brand .drbr-environment__content__card p {
    padding: 0;
    font-size: 3.4666666667vw;
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .drbr-brand .drbr-environment__content__card p.drbr-environment__content__card__note {
    font-size: 2.4vw;
    line-height: 1;
    letter-spacing: 0.02em;
    bottom: -1.5em;
  }
  .drbr-brand .drbr-support {
    padding: 9.6vw 0;
    gap: 6.4vw;
  }
  .drbr-brand .drbr-support__lead {
    padding: 0 6.4666666667vw;
  }
  .drbr-brand .drbr-support__lead h2 {
    font-size: 5.6vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin: 0 0 6.4vw 0;
  }
  .drbr-brand .drbr-support__lead p {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .drbr-brand .drbr-support__content {
    flex-direction: column;
    align-items: center;
    gap: 2.5333333333vw;
  }
  .drbr-brand .drbr-support__content__card {
    width: 86.9333333333vw;
    height: auto;
    gap: 2.5333333333vw;
  }
  .drbr-brand .drbr-support__content__card__title {
    height: 10.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.435;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-support__content__card__list {
    padding: 3.2vw;
    gap: 1.6vw;
  }
  .drbr-brand .drbr-support__content__card__item {
    gap: 1.0666666667vw;
    padding: 0.5333333333vw 0;
    font-size: 3.4666666667vw;
    line-height: 1.38;
    letter-spacing: 0.1em;
  }
  .drbr-brand .drbr-support__content__card__item::before {
    width: 3.2vw;
    height: 3.2vw;
    margin-top: 0.8vw;
  }
  .drbr-brand .drbr-support__content__card__figure {
    padding: 0 3.2vw 3.2vw;
  }
  .drbr-brand .drbr-support__link__button {
    padding: 3.1333333333vw 0;
    width: 87.2vw;
    height: 9.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .drbr-brand .drbr-pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .drbr-brand .drbr-sp-none {
    display: none;
  }
}

/*-----------------------
追加調整
-----------------------*/
@media screen and (min-width: 1081px) {
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > figure {
    width: 500px;
  }
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > .drbr-photos__column {
    width: 515px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > figure {
    width: 47vw;
  }
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > .drbr-photos__column {
    width: 48.4vw;
  }
}
@media screen and (max-width: 768px) {
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > figure {
    width: 42vw;
  }
  .drbr-brand .drbr-photos .drbr-photos__container.two-columns > .drbr-photos__column {
    width: 41.3vw;
  }
  .drbr-brand .drbr-photos__column .drbr-photos__image + .drbr-photos__image {
    margin-top: 2vw;
  }
}

/*# sourceMappingURL=drbr-brand.css.map */
