@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --c-white: #FFFFFF;
  --c-red: #E7380D;
  --c-gray: #5D5D5D;
  --c-black: #363636;
}

body {
  font-family: "Noto Sans", sans-serif;
  background: #FFFFFF;
  line-height: 2.5;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}
@media only screen and (max-width: 767px) {
  body {
    line-height: 2;
    font-size: 14px;
  }
}

main {
  display: block;
}

select::-ms-expand {
  display: none;
}

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

a {
  color: var(--c-link);
  text-decoration: none;
}

picture {
  display: block;
}

img {
  vertical-align: top;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  outline: none;
  vertical-align: top;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
}

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

._fw-medium {
  font-weight: 500 !important;
}

._fw-bold {
  font-weight: 700 !important;
}

._ta_l {
  text-align: left !important;
}

._ta_c {
  text-align: center !important;
}

._ta_r {
  text-align: right !important;
}

._va_t {
  vertical-align: top !important;
}

._va_m {
  vertical-align: middle !important;
}

._va_b {
  vertical-align: bottom !important;
}

._display_none {
  display: none !important;
}

@media print, (min-width: 768px) {
  ._pc-display_none, .sp-only, .pc-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  ._sp-display_none, .pc-only, .sp-hide {
    display: none !important;
  }
}

.d-b {
  display: block !important;
}

.d-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .sp-d-ib {
    display: inline-block;
  }
}

._sr_only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

._wb_keep-all {
  word-break: keep-all;
}

._ws_nowrap {
  white-space: nowrap;
}

._letter-spacing_0 {
  letter-spacing: 0 !important;
}

._width_full {
  width: 100% !important;
}

._justyfy_start {
  justify-content: flex-start !important;
}

._justyfy_center {
  justify-content: center !important;
}

._justyfy_end {
  justify-content: flex-end !important;
}

._outline_none {
  outline: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.3s ease-out, visibility 0.3s;
}
.is-scroll .site-header {
  visibility: visible;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .site-header {
    left: 8px;
    right: 8px;
  }
}
.site-header__inner {
  padding: 12px 24px;
  max-width: 500px;
  width: fit-content;
  margin-inline: auto;
  background: #fff;
  border-radius: 0 0 10px 10px;
  display: grid;
  align-items: center;
  grid-template-columns: 160px 1fr 38px;
  gap: 0 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .site-header__inner {
    padding: 12px 12px 12px 16px;
    max-width: unset;
    width: 100%;
    grid-template-columns: 140px 1fr 38px;
  }
}
.site-header__name {
  font-size: 10px;
  font-weight: bold;
  color: var(--c-black);
}
@media only screen and (max-width: 767px) {
  .site-header__name {
    opacity: 0;
    visibility: hidden;
  }
}
.site-header__button {
  aspect-ratio: 1/1;
  width: 100%;
  background: #363636;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-header__button > span {
  width: 20px;
  height: 1px;
  background: #fff;
  transition: 0.3s transform ease-out;
  transform-origin: center center;
}
.site-header__button > span + span {
  margin-top: 5px;
}
[data-menuopen=true] .site-header__button > span:nth-child(1) {
  transform: translateY(3px) rotate(25deg);
}
[data-menuopen=true] .site-header__button > span:nth-child(2) {
  transform: translateY(-3px) rotate(-25deg);
}
.site-header__menu {
  position: absolute;
  top: 0;
  background: #fff;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 0 10px 10px;
  display: none;
  max-height: calc(100svh - 10px);
  overflow: auto;
  overscroll-behavior-y: contain;
}
.site-header__menu-inner {
  padding: 86px 20px 50px;
}
@media only screen and (max-width: 767px) {
  .site-header__menu-inner {
    padding: 184px 20px 126px;
  }
}
.site-header__list {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-inline: auto;
}
.site-header__list-item + .site-header__list-item {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .site-header__list-item + .site-header__list-item {
    margin-top: 40px;
  }
}
.site-header__list-link {
  font-size: 14px;
  font-weight: bold;
  color: var(--c-red);
  margin-left: 26px;
  display: block;
  width: fit-content;
  transition: 0.3s color, border 0.3s;
  border-bottom: 2px solid transparent;
  position: relative;
}
.site-header__list-link::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background: url(/brandvision2035/assets/images/menu_icon.svg) no-repeat center center;
  position: absolute;
  left: -26px;
  top: calc(50% - 8px);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s;
}
.site-header__list-link:hover {
  color: var(--c-black);
  border-color: var(--c-red);
}
.site-header__list-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}

:where(footer img) {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer {
  background-color: #fff;
  padding: 98px 30px 18px;
  position: sticky;
  top: 0;
}

.footer img {
  display: inline-block;
}

.footerInfo {
  margin-bottom: 34px;
}

.footerInfo__logo {
  margin-bottom: 12px;
  text-align: center;
}

.footerInfo__logo img {
  width: 304px;
}

.footerInfo__txt {
  margin-bottom: 4px;
  font-size: 12px;
  text-align: center;
}

.footerGroup {
  margin: auto;
  width: 1020px;
  padding: 34px 0 0 0;
  border-top: 1px #d0d4d8 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerGroup__ttl {
  width: 236px;
  font-size: 19px;
  font-weight: 500;
  margin-right: 80px;
}

.footerGroupSch {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: auto;
}

.footerGroupSch__item {
  margin: 0;
  padding: 0;
}

.footer .copyright {
  margin-top: 66px;
  font-size: 12px;
  text-align: center;
}

.footer .copyright a {
  color: #000;
  text-decoration: none;
}

.footer .copyright a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1240px) {
  .footerInfo__logo img {
    width: 24vw;
  }
  .footerInfo__txt {
    font-size: 1vw;
  }
  .footerGroup {
    width: 84vw;
  }
  .footerGroup__ttl {
    width: 22vw;
    font-size: 1.7vw;
    margin-right: none;
  }
  .footerGroupSch {
    width: auto;
  }
  .footerGroupSch__item {
    margin: 0 10px 0 0;
  }
  .footerGroupSch__item:last-child {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 8px 36px;
  }
  .footerInfo {
    margin-bottom: 24px;
  }
  .footerInfo__logo img {
    width: 184px;
  }
  .footerInfo__txt {
    font-size: 10px;
  }
  .footerGroup {
    width: auto;
    padding: 14px 0 0 0;
    display: block;
  }
  .footerGroup__ttl {
    margin: 0 auto 14px;
    width: auto;
    font-size: 12px;
    text-align: center;
  }
  .footerGroupSch {
    margin: 0;
    display: block;
  }
  .footerGroupSch__item {
    margin: 0 0 10px;
    text-align: center;
  }
  .footerGroupSch__item img {
    width: auto;
    height: 26px;
  }
  .footerGroupSch__item:last-child {
    margin: 0;
  }
  .footer .copyright {
    margin-top: 34px;
    font-size: 10px;
  }
  .footer .copyright a:hover {
    text-decoration: none;
  }
}
.mv {
  aspect-ratio: 1366/768;
  width: 100%;
  max-height: 100svh;
  min-height: 500px;
  position: sticky;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .mv {
    height: 100svh;
  }
}
.mv__inner {
  height: 100%;
}
.mv__inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section {
  background-color: var(--c-white);
  color: var(--c-red);
  padding: 70px 0;
  position: sticky;
  top: -1px;
  min-height: 100vh;
  min-height: 100lvh;
  display: flex;
  margin-bottom: max(50vh, 200px);
}
.section#roadto2025 {
  margin-bottom: max(40vh, 200px);
}
@media only screen and (max-width: 767px) {
  .section#roadto2025 {
    margin-bottom: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .section {
    height: auto;
    padding: 60px 0;
    min-height: 100vh;
    min-height: 100svh;
  }
}
.section--red {
  background-color: var(--c-red);
  color: var(--c-white);
}
.section__inner {
  max-width: 1260px;
  width: 100%;
  padding: 0 20px;
  margin-inline: auto;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .section__inner {
    width: 100%;
  }
}
.section__contents {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 130px);
}
@media only screen and (max-width: 767px) {
  .section__contents {
    height: auto;
  }
}

.news-section {
  padding: 140px 0 110px;
}
@media only screen and (max-width: 767px) {
  .news-section {
    padding: 80px 0 60px;
  }
}

.primary-heading {
  position: relative;
  font-weight: bold;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .primary-heading {
    margin-bottom: 50px;
  }
}
.primary-heading__text {
  position: relative;
  font-size: 16px;
}
.primary-heading__text::before {
  content: "";
  bottom: -10px;
  left: 0;
  position: absolute;
  width: calc(100% + 47vw);
  height: 2px;
  background: var(--c-red);
  margin-left: calc(50% - 50vw);
}
.section--red .primary-heading {
  color: var(--c-white);
}
.section--red .primary-heading .primary-heading__text::before {
  background: var(--c-white);
}

.secondary-heading {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: var(--c-red);
  margin-bottom: 78px;
}
@media only screen and (max-width: 767px) {
  .secondary-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.noto-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.text-link {
  text-align: center;
  margin: 60px 0;
}
.text-link__body {
  font-weight: bold;
  position: relative;
}
.text-link__body::before {
  content: "";
  bottom: -6px;
  left: -20px;
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--c-red);
  opacity: 0;
  transition: width 0.3s, opacity 0.3s;
}
.text-link__body .text {
  position: relative;
}
.text-link__body .text::before {
  content: "";
  top: 6px;
  left: -20px;
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(/brandvision2035/assets/images/icon-more.svg) no-repeat;
  transition: transform 0.3s;
}
.text-link__body:hover::before {
  width: calc(100% + 24px);
  opacity: 1;
}
.text-link__body:hover .text {
  color: var(--c-black);
}
.text-link__body:hover .text::before {
  transform: rotate(360deg);
}

.lead-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .lead-grid {
    flex-direction: column;
  }
}
@media print, (min-width: 768px) {
  .lead-grid__item:first-child {
    max-width: 50%;
    margin-right: 6.97917vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-grid__item:first-child {
    margin: 0 0 50px;
    max-width: 322px;
  }
}
@media print, (min-width: 768px) {
  .lead-grid__item:last-child {
    max-width: 50%;
  }
}
.lead-grid__text {
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .lead-grid__text {
    font-size: 14px;
    line-height: 2.5;
  }
}

.contents-flex01 {
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .contents-flex01 {
    flex-direction: column;
  }
}
.contents-flex01__item:first-child {
  max-width: 50%;
  margin-right: 6.97917vw;
}
@media only screen and (max-width: 767px) {
  .contents-flex01__item:first-child {
    max-width: 100%;
    margin: 0 0 65px;
    margin-right: 0;
  }
}
.contents-flex01__item:last-child {
  width: 100%;
}
@media print, (min-width: 768px) {
  .contents-flex01__item:last-child {
    align-self: center;
    max-width: 50%;
  }
}
.contents-flex01__img {
  aspect-ratio: 600/598;
  max-width: 600px;
  border-radius: 20px;
  border: 1px solid var(--c-red);
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contents-flex01__img {
    aspect-ratio: 350/561;
    max-width: 350px;
    margin-inline: auto;
  }
}
.contents-flex01__img img {
  position: absolute;
  aspect-ratio: 476/325;
  width: 79.3333333333%;
  max-width: 476px;
  left: 5%;
  top: 6.0200668896%;
}
@media only screen and (max-width: 767px) {
  .contents-flex01__img img {
    aspect-ratio: 301/375;
    width: 85.7142857143%;
    max-width: 300px;
    left: 5.7142857143%;
    top: 4.8128342246%;
  }
}
.contents-flex01__img svg {
  aspect-ratio: 628/826;
  width: 70.6666666667% !important;
  max-width: 424px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100% !important;
}
@media only screen and (max-width: 767px) {
  .contents-flex01__img svg {
    width: 87.1428571429% !important;
    max-width: 305px;
    height: auto !important;
  }
}
.contents-flex01__img.js-lottie img {
  opacity: 0;
  transition: opacity 0.5s linear 2s;
}
.contents-flex01__img.js-lottie.is-play img {
  opacity: 1;
}
.contents-flex01__text {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .contents-flex01__text {
    line-height: 2.5;
  }
}

.contents-flex02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.contents-flex02__heading {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .contents-flex02__heading {
    font-size: 30px;
  }
}
.contents-flex02__text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contents-flex02__text {
    font-size: 14px;
    line-height: 2.5;
  }
}

.article-box {
  position: sticky;
  top: 80px;
}
@media only screen and (max-width: 767px) {
  .article-box {
    margin-left: 20px;
  }
}
.article-box + .article-box {
  margin-top: max(100vh, 400px);
}
.article-box__inner {
  background-color: var(--c-white);
  max-width: 960px;
  margin-inline: auto;
  position: relative;
  padding: 36px 20px 36px 100px;
  border-radius: 20px;
  filter: drop-shadow(0 0 1px var(--c-red));
  border: 1px solid var(--c-red);
}
@media only screen and (max-width: 767px) {
  .article-box__inner {
    padding: 30px 18px 60px 18px;
  }
}
.article-box__number {
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: bold;
  font-size: 30px;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-box__number::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--c-red);
  border-radius: 100%;
  clip-path: polygon(0 0, 20px 0, 20px 100%, 0% 100%);
}
@media only screen and (max-width: 767px) {
  .article-box__number {
    transform: none;
    top: 30px;
    left: -33px;
  }
  .article-box__number::before {
    clip-path: polygon(0 0, 33px 0, 33px 100%, 0% 100%);
  }
}
.article-box__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .article-box__grid {
    flex-direction: column;
  }
}
.article-box__content {
  color: var(--c-red);
  margin-right: 40px;
  width: 52%;
}
@media only screen and (max-width: 767px) {
  .article-box__content {
    margin-right: 0;
    width: auto;
  }
}
.article-box__heading {
  font-size: clamp(40px, 4.44vw, 50px);
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .article-box__heading {
    font-size: 30px;
  }
}
.article-box__text {
  line-height: 2;
  margin-top: 20px;
  font-weight: bold;
}
.article-box__img {
  width: calc(48% - 40px);
  aspect-ratio: 590/492;
}
@media only screen and (max-width: 767px) {
  .article-box__img {
    width: 100%;
  }
}
.article-box__img svg {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 590/492;
}
@media print, (min-width: 768px) {
  .article-box__img svg {
    width: 110% !important;
    transform: translate3d(-30%, 0px, 0px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .article-box__img {
    max-width: unset;
  }
}

.news-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}
@media only screen and (max-width: 767px) {
  .news-box {
    grid-template-columns: 1fr;
    gap: 40px 20px;
  }
}
.news-box__link {
  max-width: 380px;
  color: var(--c-red);
}
@media only screen and (max-width: 767px) {
  .news-box__link {
    max-width: 100%;
  }
}
.news-box__link:hover .news-box__item::after {
  left: 100%;
}
.news-box__link:hover .news-box__img img {
  transform: scale(1.1);
}
.news-box__link:hover .news-box__more {
  color: var(--c-black);
}
.news-box__link:hover .news-box__more .text::before {
  transform: rotate(360deg);
}
.news-box__link:hover .news-box__heading {
  color: var(--c-red);
}
@media only screen and (max-width: 767px) {
  .news-box__link + .news-box__link {
    margin-top: 32px;
  }
}
.news-box__item {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .news-box__item {
    height: auto;
    display: grid;
    grid-template-areas: "img heading" "date more";
    padding-bottom: 10px;
  }
}
.news-box__item::before {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--c-red);
}
.news-box__item::after {
  content: "";
  bottom: 0;
  left: -100%;
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transition: left 0.2s;
}
.news-box__img {
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .news-box__img {
    display: inline-block;
  }
}
.news-box__img img {
  border-radius: 10px;
  transition: transform 0.2s;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .news-box__img img {
    aspect-ratio: 156/103;
    object-fit: cover;
  }
}
.news-box__heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: var(--c-gray);
  max-width: 314px;
  margin: 32px auto 26px;
}
@media only screen and (max-width: 767px) {
  .news-box__heading {
    margin: 0 0 0 14px;
    font-size: 14px;
  }
}
.news-box__date {
  font-family: roboto, sans-serif;
  font-size: 12px;
  font-weight: bold;
  margin-top: auto;
  margin-left: 33px;
}
@media only screen and (max-width: 767px) {
  .news-box__date {
    margin-left: 0;
    margin-top: 14px;
  }
}
.news-box__more {
  font-family: roboto, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .news-box__more {
    margin-right: 8px;
    margin-top: 14px;
  }
}
.news-box__more .text {
  position: relative;
}
.news-box__more .text::before {
  content: "";
  top: 2px;
  left: -20px;
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(/brandvision2035/assets/images/icon-more.svg) no-repeat;
  transition: transform 0.3s;
}

.pagination {
  margin-top: 60px;
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__item {
  margin: 0 5px;
}
.pagination .pager {
  width: 29px;
  height: 29px;
  border: 1px solid #363636;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}
.pagination .pager:hover {
  opacity: 0.7;
}
.pagination .pager.current {
  pointer-events: none;
  background-color: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.pagination .pager.ellipsis {
  border: none;
  padding-bottom: 8px;
  pointer-events: none;
}
