@charset "UTF-8";
/* =========================================
  common
========================================== */
/* common */
#areaWrapper, #fw-tokyo-third {
  width: 100% !important;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  margin: 0;
}

.fw-sp {
  display: none;
}

/* lang */
.fw-change {
  display: block;
  word-wrap: break-word;
}

.fw-ja {
  font-size: 16px;
}

.fw-en {
  display: none;
  font-size: 18px;
  line-height: 1.4;
  word-break: break-word;
}

/* =========================================
  contents
========================================== */
#byr {
  border-bottom: 1px solid #ccc;
  padding-top: 80px;
}

.section {
  padding: 120px 0;
}
.section__title {
  font-family: "Oswald", serif;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.section__more {
  text-align: center;
}
.section__more-link {
  display: inline-block;
  width: 327px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 56px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 0;
  margin-top: 40px;
  transition: all 0.2s ease-out;
}
.section__more-link:link, .section__more-link:visited {
  color: #333;
}
.section__more-link-text {
  position: relative;
  padding-right: 22px;
}
.section__more-link-text::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(-45deg);
  transition: all 0.2s ease-out;
}
.section__more-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #333;
}
.section__more-link:hover .section__more-link-text::after {
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
}

.fw-viewmore {
  text-align: center;
}
.fw-viewmore__text-link {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px solid #333;
  padding: 0 9px 7px 0;
  cursor: pointer;
}
.fw-viewmore__text-link:link, .fw-viewmore__text-link:visited {
  color: #333;
}
.fw-viewmore__text-link::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
}
.fw-viewmore__text-link.fw-viewmore__text-link--external::after {
  transform: rotate(-45deg);
}
.fw-viewmore__text-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.fw-viewmore__note {
  margin-top: 12px;
}
.fw-viewmore__note-item {
  color: #717171;
  font-size: 12px;
}

.fade-in {
  opacity: 0;
}
.fade-in.inview {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* youtube */
.fw-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* swiper */
.fw-swiper {
  position: relative;
}
.fw-swiper__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 67px;
  height: 67px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.06);
  background-image: url(https://brandavenue.r10s.jp/img/library/contents/fashionweek/20250212/icon_arrow_slide.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: auto 0;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
}
.fw-swiper__arrow--prev {
  left: 0;
  transform: rotate(180deg);
}
.fw-swiper__arrow--next {
  right: 0;
}
.fw-swiper__arrow.swiper-button-disabled {
  display: none;
}
.fw-swiper__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.fw-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ebebeb;
  margin-right: 12px;
  opacity: 1;
}
.fw-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #333;
}
.fw-swiper__pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

/* =========================================
  hero
========================================== */
.fw-hero {
  max-width: 1440px;
  margin: 20px auto 0;
}
.fw-hero__title {
  color: #fff;
  font-family: "Oswald", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 60px;
  text-align: center;
  background-color: #333;
}
.fw-hero__title-img {
  width: 431px;
  margin-right: 16px;
}
.fw-hero__block {
  display: flex;
  justify-content: center;
}
.fw-hero__item {
  position: relative;
}
.fw-hero__item--2 {
  max-width: 720px;
}
.fw-hero__item--3 {
  max-width: 480px;
}
.fw-hero__item-link {
  display: block;
}
.fw-hero__item-link:hover {
  opacity: 0.7;
}
.fw-hero__item-link-img {
  width: 100%;
}
.fw-hero__item-link-text {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 125px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.fw-hero__item-link-text .fw-change {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 20px 32px 0 0;
}
.fw-hero__item-link-text .fw-change::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}

/* =========================================
  nav
========================================== */
.fw-nav__wrap {
  max-width: 1060px;
  box-sizing: border-box;
  padding: 0 30px;
  margin: 24px auto 0;
}
.fw-nav__lang {
  display: flex;
  align-items: center;
}
.fw-nav__lang-btn {
  color: #717171;
  font-size: 14px;
  cursor: pointer;
}
.fw-nav__lang-btn.js-en::before {
  content: "/";
  display: inline-block;
  color: #717171;
  margin: 0 4px;
}
.fw-nav__lang-btn.is-active {
  color: #333;
  font-weight: 700;
}
.fw-nav__lang-btn:not(.is-active):hover {
  opacity: 0.7;
}
.fw-nav__items {
  display: none;
}

.fw-nav.is-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background-color: #fff;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.12);
}
.fw-nav.is-active .fw-nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 95px;
  margin: 0 auto;
}
.fw-nav.is-active .fw-nav__items {
  display: flex;
  flex-grow: 1;
}
.fw-nav.is-active .fw-nav__items-btn {
  border-left: 1px solid #ccc;
  flex: 1;
}
.fw-nav.is-active .fw-nav__items-btn-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  color: #717171;
  font-size: 14px;
}
.fw-nav.is-active .fw-nav__items-btn-link.is-current {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: #333;
}
.fw-nav.is-active .fw-nav__items-btn-link.is-current:hover {
  background-color: #333;
}
.fw-nav.is-active .fw-nav__items-btn-link:hover {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: #717171;
}
.fw-nav.is-active + #byr {
  margin-top: 45px;
}

/* =========================================
  about
========================================== */
.byr-about {
  width: 800px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.byr-about__logo {
  text-align: center;
  margin-bottom: 64px;
}

.fw-about {
  width: 800px;
  padding-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}
.fw-about__logo {
  text-align: center;
  margin-bottom: 64px;
}
.fw-about__text {
  margin-bottom: 64px;
}

/* =========================================
  brands
========================================== */
.brands-about__logo {
  text-align: center;
}
.brands-about__logo img {
  width: 270px;
}
.brands-about__movie {
  width: 800px;
  margin: 40px auto;
}
.brands-about__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.brands-about__schedule {
  width: 800px;
  text-align: center;
  margin: 0 auto;
}
.brands-about__schedule-title {
  font-family: "Jost", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}
.brands-about__schedule-text {
  font-size: 16px;
}

.byr-img-layout {
  height: 640px;
  background-color: #333;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 120px;
}
@media screen and (max-width: 1440px) {
  .byr-img-layout {
    height: 540px;
  }
}
.byr-img-layout__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .byr-img-layout__block {
    max-width: 1000px;
  }
}
.byr-img-layout__title {
  color: #fff;
  width: 420px;
  text-align: left;
  margin-left: 160px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1440px) {
  .byr-img-layout__title {
    width: 355px;
    margin-left: 0;
  }
}
.byr-img-layout__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 640px;
}
@media screen and (max-width: 1440px) {
  .byr-img-layout__img {
    width: 540px;
  }
}
.byr-img-layout__img img {
  width: 100%;
}
.byr-img-layout__text {
  width: 420px;
  margin-left: 160px;
  margin-bottom: 80px;
}
.byr-img-layout__text .fw-change {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .byr-img-layout__text {
    width: 355px;
    margin-bottom: 20px;
    margin-left: 0;
  }
}

.brands-designer.byr-img-layout {
  margin-top: 274px;
}
@media screen and (max-width: 1440px) {
  .brands-designer.byr-img-layout {
    height: 700px;
    margin-top: 134px;
  }
}
.brands-designer.byr-img-layout .byr-img-layout__block {
  align-items: flex-end;
}
.brands-designer.byr-img-layout .byr-img-layout__title {
  width: 580px;
  margin-left: 0;
  margin-right: 160px;
}
@media screen and (max-width: 1440px) {
  .brands-designer.byr-img-layout .byr-img-layout__title {
    width: 420px;
    margin-right: 0;
  }
}
.brands-designer.byr-img-layout .byr-img-layout__img {
  left: 0;
  bottom: 0;
  width: 530px;
}
@media screen and (max-width: 1440px) {
  .brands-designer.byr-img-layout .byr-img-layout__img {
    width: 475px;
  }
}
.brands-designer.byr-img-layout .byr-img-layout__text {
  width: 580px;
  margin-left: 0;
  margin-right: 160px;
  margin-bottom: 0;
}
.brands-designer.byr-img-layout .byr-img-layout__text .brands-designer__text {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
}
.brands-designer.byr-img-layout .byr-img-layout__text .fw-ja {
  margin-bottom: 80px;
}
@media screen and (max-width: 1440px) {
  .brands-designer.byr-img-layout .byr-img-layout__text {
    width: 420px;
    margin-right: 0;
  }
}

.brands-exclusive {
  background-color: #f7f7f7;
}
.brands-exclusive .section__title {
  margin-bottom: 24px;
}
.brands-exclusive__text {
  width: 1000px;
  text-align: center;
  margin: 0 auto 40px;
}
.brands-exclusive__list-wrap {
  padding-bottom: 32px;
  overflow: hidden;
}
.brands-exclusive__list {
  display: flex;
}
.brands-exclusive__list-item {
  width: 320px;
  overflow: hidden;
}
.brands-exclusive__link {
  display: block;
}
.brands-exclusive__link-img {
  width: 100%;
  transition: all 0.25s ease-out;
}
.brands-exclusive__link-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-sizing: border-box;
  padding: 32px 20px 16px;
}
.brands-exclusive__link-text p {
  font-size: 16px;
}
.brands-exclusive__link-text p:first-child {
  font-weight: 500;
}
.brands-exclusive__link:hover img {
  opacity: 0.9;
  transform: scale(1.1);
}
.brands-exclusive .js-exclusive-arrow-prev {
  left: 12%;
}
.brands-exclusive .js-exclusive-arrow-next {
  right: 12%;
}
.brands-exclusive .brands-exclusive__note-wrap {
  text-align: center;
  margin-top: 40px;
}
.brands-exclusive .brands-exclusive__note {
  display: inline-block;
}
.brands-exclusive .brands-exclusive__note-item {
  color: #717171;
}
.brands-exclusive .brands-exclusive__note-item.fw-ja {
  font-size: 12px;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.brands-exclusive .brands-exclusive__note-item.fw-en {
  font-size: 14px;
  text-align: left;
}

.brands-popular {
  width: 1000px;
  margin: 0 auto;
}
.brands-popular__tab {
  display: flex;
  margin-bottom: 40px;
}
.brands-popular__tab-btn {
  width: 100%;
  color: #717171;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.brands-popular__tab-btn.is-active {
  color: #333;
  font-weight: 600;
  border-bottom: 2px solid #333;
}
.brands-popular__item {
  display: none;
}
.brands-popular__item.is-active {
  display: block;
}

#bodySearchResultField .searchInfoBody {
  width: 1000px;
  margin: 0;
}
#bodySearchResultField .searchInfoBody ul {
  justify-content: center;
}
#bodySearchResultField .searchInfoBody ul li {
  margin-bottom: 0;
}

/* =========================================
  latest
========================================== */
.byr-latest {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.byr-latest__column-list-item {
  width: 180px;
  margin-right: 24px;
}
.byr-latest__column:nth-child(5) {
  margin-right: 0;
}
.byr-latest__column-link {
  display: block;
  transition: opacity 0.2s ease-out;
}
.byr-latest__column-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.byr-latest__column-date {
  display: flex;
  flex-direction: column;
}
.byr-latest__column-img {
  order: 1;
}
.byr-latest__column-sub-title {
  order: 2;
  color: #717171;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 16px;
}
.byr-latest__column-title {
  color: #333;
  font-size: 14px;
  order: 3;
  margin-top: 8px;
}

/* =========================================
  LIVE配信
========================================== */
/* common */
.fw-collection {
  width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.fw-collection__head .section__title {
  margin-bottom: 8px;
}
.fw-collection__head-text {
  text-align: center;
  margin-bottom: 48px;
}
.fw-collection__head-text .fw-ja {
  font-size: 26px;
  font-weight: 500;
}
.fw-collection__head-text .fw-en {
  font-size: 28px;
  font-weight: 500;
}
.fw-collection__comingsoon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background-color: #333;
}
.fw-collection__comingsoon-box-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.fw-collection__footer {
  margin-top: 16px;
}
.fw-collection__note-item {
  color: #717171;
  margin-bottom: 4px;
}
.fw-collection__note-item.fw-ja {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
.fw-collection__note-item.fw-en {
  font-size: 14px;
}

/* =========================================
  schedule
========================================== */
/* common */
.fw-schedule {
  background-color: #333;
}
.fw-schedule__inner {
  width: 1000px;
  margin: 0 auto;
}
.fw-schedule__head {
  text-align: center;
  margin-bottom: 48px;
}
.fw-schedule__head .section__title {
  color: #fff;
  margin-bottom: 8px;
}
.fw-schedule__head-date {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}
.fw-schedule__head-note {
  margin-top: 16px;
}
.fw-schedule__head-note .fw-ja {
  color: #fff;
  font-size: 12px;
}
.fw-schedule__head-note .fw-en {
  color: #fff;
  font-size: 14px;
}
.fw-schedule__comingsoon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 158px;
  border: solid 1px #717171;
  box-sizing: border-box;
  margin: 0 auto;
}
.fw-schedule__comingsoon-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.fw-schedule__main .fw-swiper__arrow {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.fw-schedule__main .fw-swiper__pagination .swiper-pagination-bullet {
  background-color: #717171;
}
.fw-schedule__main .fw-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #ebebeb;
}
.fw-schedule__list {
  align-items: stretch;
}
.fw-schedule__list-wrap {
  padding-bottom: 56px;
  margin: 0 45px;
  overflow: hidden;
}
.fw-schedule__list-item {
  height: auto;
}
.fw-schedule__list-item-inner {
  border: solid 1px #717171;
  box-sizing: border-box;
  padding: 32px 24px;
}
.fw-schedule__list-head {
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.fw-schedule__list-head-day {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}
.fw-schedule__list-head-week {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}
.fw-schedule__list-content {
  display: flex;
  gap: 32px;
  border-bottom: solid 1px #717171;
  padding: 0 10px 16px;
  margin-bottom: 16px;
}
.fw-schedule__list-content:last-child {
  margin-bottom: 0;
}
.fw-schedule__list-content-time {
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.fw-schedule__list-content-description {
  flex-grow: 1;
}
.fw-schedule__list-content-link {
  display: block;
}
.fw-schedule__list-content-link .fw-schedule__list-content-en {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.fw-schedule__list-content-link .fw-schedule__list-content-en:after {
  content: "";
  position: absolute;
  top: 9px;
  right: -18px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-45deg);
}
.fw-schedule__list-content-link:hover {
  text-decoration: none;
}
.fw-schedule__list-content-link:hover .fw-schedule__list-content-en {
  text-decoration: none;
}
.fw-schedule__list-content-link:link, .fw-schedule__list-content-link:visited {
  color: #fff;
}
.fw-schedule__list-content-en {
  position: relative;
  color: #fff;
  font-size: 14px;
}
.fw-schedule__list-content-ja {
  color: #fff;
  font-size: 13px;
  margin-top: 2px;
}
.fw-schedule__list-content-streaming {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  border: 1px solid #fff;
  padding: 0px 12px 4px;
  margin-top: 8px;
}

/* =========================================
  snap
========================================== */
.fw-snap {
  background-color: #f7f7f7;
}
.fw-snap__head {
  margin-bottom: 40px;
}
.fw-snap__head-title {
  width: 380px;
  margin: 0 auto 24px;
}
.fw-snap__head-title img {
  width: 100%;
}
.fw-snap__head-text {
  text-align: center;
  margin-bottom: 40px;
}
.fw-snap__main {
  width: 1000px;
  margin: 0 auto;
}
.fw-snap__main .js-snap-arrow-prev {
  left: 0;
}
.fw-snap__main .js-snap-arrow-next {
  right: 0;
}
.fw-snap__list {
  display: flex;
}
.fw-snap__list-wrap {
  width: 910px;
  padding-bottom: 40px;
  margin: 0 auto;
  overflow: hidden;
}
.fw-snap__list-item {
  width: 293px;
  transition: opacity 0.2s ease-out;
}
.fw-snap__list-item-link {
  display: block;
}
.fw-snap__list-item-link img {
  width: 100%;
}
.fw-snap__list-item-link:hover {
  opacity: 0.7;
}
.fw-snap__modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1600;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out 0.2s;
}
.fw-snap__modal.is-open {
  opacity: 1;
  visibility: visible;
}
.fw-snap__modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.fw-snap__modal-inner {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  width: 732px;
  margin: auto;
  transform: translateY(-50%);
}
.fw-snap__modal-content {
  overflow: hidden;
}
.fw-snap__modal-list-item {
  display: flex;
  justify-content: center;
}
.fw-snap__modal-img {
  width: 350px;
}
.fw-snap__modal-img img {
  width: 100%;
}
.fw-snap__modal-description {
  width: 240px;
  margin-left: 32px;
}
.fw-snap__modal-description-text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.fw-snap__modal-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 15px;
  height: 26px;
  margin: auto 0;
  cursor: pointer;
}
.fw-snap__modal-arrow:hover {
  opacity: 0.7;
}
.fw-snap__modal-arrow--prev {
  left: -32px;
  transform: rotate(180deg);
}
.fw-snap__modal-arrow--next {
  right: -32px;
}
.fw-snap__modal-arrow.swiper-button-disabled {
  display: none;
}
.fw-snap__modal-close {
  position: absolute;
  top: -54px;
  right: -35px;
  z-index: 2;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.fw-snap__modal-close:hover {
  opacity: 0.7;
}
.fw-snap__modal-pagination {
  position: absolute;
  top: -52px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 19px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

/* =========================================
  archive
========================================== */
.fw-archive {
  width: 1000px;
  padding-bottom: 0;
  margin: 0 auto;
}
.fw-archive .fw-archive-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 8px;
}
.fw-archive .fw-archive-wrap .fw-archive__season {
  width: calc((100% - 16px) / 3);
}
.fw-archive .fw-archive-wrap .fw-archive__season-link:hover {
  opacity: 0.7;
}
.fw-archive .fw-archive-wrap .fw-archive__season-img {
  display: flex;
  justify-content: center;
}
.fw-archive .fw-archive-wrap .fw-archive__season-img img {
  width: 100%;
}
.fw-archive .fw-archive-wrap .fw-archive__season-text {
  font-size: 18px;
  text-align: center;
}

/* =========================================
  instagram
========================================== */
.fw-instagram__block {
  width: 800px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  padding: 40px 78px;
  margin-right: auto;
  margin-left: auto;
}
.fw-instagram__head {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.fw-instagram__head-logo {
  width: 28px;
  margin-right: 8px;
}
.fw-instagram__head-logo img {
  width: 100%;
}
.fw-instagram__head-title {
  font-size: 14px;
  font-weight: 700;
}
.fw-instagram__main {
  position: relative;
}
.fw-instagram__main-text .fw-ja {
  font-size: 16px;
  font-weight: 700;
}
.fw-instagram__main-text .fw-en {
  font-size: 18px;
  font-weight: 700;
}
.fw-instagram__main-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  background-color: #333;
  transition: opacity 0.2s ease-out;
}
.fw-instagram__main-btn:link, .fw-instagram__main-btn:visited {
  color: #fff;
}
.fw-instagram__main-btn-text {
  position: relative;
  padding-right: 22px;
  transition: all 0.2s ease-out;
}
.fw-instagram__main-btn-text::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-45deg);
}
.fw-instagram__main-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* =========================================
  pagetop
========================================== */
/* page-top */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 190%;
}

#page-top a {
  display: block;
  width: 46px;
  padding: 10px 0;
  border: 1px solid #333;
  border-radius: 45px;
  color: #333 !important;
  text-align: center;
  text-decoration: none;
  background: #fff;
  line-height: normal;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Helvetica, \\30D2ラギノ角ゴProN W3, Hiragino Kaku Gothic Pro, Meiryo, sans-serif;
}

#page-top a:hover {
  background: #333 none repeat scroll 0 0;
  color: #fff !important;
  opacity: 0.7;
  text-decoration: none;
}

/* =========================================
  Nps
========================================== */
.Nps,
.Inquiry,
.Thanks {
  border-top: 1px solid #333 !important;
  color: #000 !important;
}

.Nps .NpsRadioWithLabel label {
  color: #333 !important;
}

.Nps .NpsRadioWithLabel:nth-child(1) label {
  border: 2px solid #ebebeb !important;
}

.Nps .NpsRadioWithLabel:nth-child(2) label {
  border: 2px solid #b6b6b6 !important;
}

.Nps .NpsRadioWithLabel:nth-child(3) label {
  border: 2px solid #828282 !important;
}

.Nps .NpsRadioWithLabel:nth-child(4) label {
  border: 2px solid #4d4d4d !important;
}

.Nps .NpsRadioWithLabel:nth-child(5) label {
  border: 2px solid #000 !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label:hover {
  color: #fff !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label.NpsRadioWithLabel_color-EC0606__c-jHm:hover {
  background-color: #ebebeb !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label.NpsRadioWithLabel_color-EF0AA1__a0ZK\+:hover {
  background-color: #b6b6b6 !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label.NpsRadioWithLabel_color-0085C7__pTIBF:hover {
  background-color: #828282 !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label.NpsRadioWithLabel_color-B87100__5BbVx:hover {
  background-color: #4d4d4d !important;
}

.NpsRadioWithLabel_wrapper__VhJnb > input + label.NpsRadioWithLabel_color-009500__cUA0n:hover {
  background-color: #000 !important;
}

.Primary_wrapper__g-fB9 .Primary_button__b28Uk.Primary_primary__U4wsd {
  border: none !important;
  background-color: #828282 !important;
}

.rexSurveyNamespace input:checked + label::before {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.rexSurveyNamespace img {
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.Inquiry.StyledBoxPopup [data-testid=HeaderCloseBar] {
  background: #828282 !important;
}

.message-text-0,
.Nps-StyledMessage {
  word-break: break-word !important;
}