/* 共通 */
.serif {
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
}

.c-title {
  font-weight: 300;
}

.page-second p:not(.c-btn),
.page-third p:not(.c-btn) {
  line-height: 1.8;
}

.btnWH {
  border: 0.5px solid #fff;
  border-radius: 100px;
  display: inline-block;
  margin-top: 15px;
  width: 229px;
  text-align: center;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-second .c-btn,
.page-third .c-btn {
  max-width: 385px;
}

.c-btn a {
  font-size: 18px;
  padding: 1.2vw 3vw;
}

.page-third .c-content + .c-content {
  margin-top: 13vw;
}

/* ふわっとフェードイン */

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.second {
  transition: 3s;
}

.fadeIn_up.third {
  transition: 5s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* =============== */

@media (max-width: 767px) {
  main.page-third p:not(.c-btn) {
    font-size: 14px;
  }

  .btnWH {
    width: 100%;
  }

  .c-btn a {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-third .c-content + .c-content {
    margin-top: 100px;
  }

  .c-btnArea.padding {
    padding: 0 5vw;
  }
}

/* メインビジュアル */

.p-third-intro__catch {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.p-third-intro__catch span {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 6vw, 72px);
  font-weight: bold;
  text-shadow: 3px 3px 37px rgba(255, 255, 255, 0.35);
}

.p-third-intro__catch .subtitle {
  position: relative;
  color: #fff;
  font-size: clamp(16px, 3vw, 30px);
  display: block;
  margin-top: 30px;
  padding-left: 165px;
  font-weight: 300;
}

.p-third-intro__catch .subtitle::before {
  position: absolute;
  content: "";
  width: 147px;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-third-intro__day {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .p-third-intro__catch .subtitle {
    padding-left: 0;
  }

  .p-third-intro__catch .subtitle::before {
    top: -16px;
    transform: none;
    width: 69px;
  }

  .p-third-intro__catch .subtitle {
    margin-top: 45px;
  }

  .p-third-intro {
    height: 85svh;
  }

  .p-third-intro__day {
    margin-top: 20px;
  }

  .p-third-intro__title {
    margin-bottom: 0;
  }
}

/* イベントの説明 */

.p-third-explain {
  overflow: hidden;
  margin-top: 5vw;
}

.p-third-explain__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-third-explain__img {
  position: relative;
  flex: 1;
  margin-top: -5vw;
}

.p-third-explain__img .img01 {
  position: absolute;
  right: -5vw;
  top: 0;
  max-width: 28vw;
}

.p-third-explain__img .img02 {
  position: absolute;
  right: 0;
  top: 18vw;
  max-width: 30vw;
}

.p-third-explain__img .img03 {
  position: absolute;
  top: 33vw;
  right: -4vw;
  max-width: 16vw;
}

.p-third-explain .c-inner {
  padding-bottom: 20vw;
  margin-top: 5vw;
}

.p-third-intro__text {
  flex: 1.5;
}

h2.serif,
h3.serif {
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 50px;
}

h3.serif {
  font-size: clamp(21px, 2vw, 32px);
  margin-bottom: 20px;
}

.p-third-intro__text p {
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.1em;
}

/* 文字が左から徐々にでる */
.text-anime {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: clamp(18px, 1.5vw, 26px);
  gap: 0.3em;
  margin-top: 10px;
  flex-wrap: wrap;
}

.text-anime.is-active {
  --opacity: 1;
}

.char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}

@media (max-width: 767px) {
  .p-third-explain__wrap {
    flex-wrap: wrap;
    gap: 20px;
  }

  .p-third-intro__text,
  .p-third-explain__img {
    flex: auto;
  }

  .p-third-explain__img .img01 {
    max-width: 329px;
    top: 11vw;
    right: initial;
    left: -7vw;
  }

  .p-third-explain__img .img02 {
    max-width: 286px;
    top: 63vw;
    right: -9vw;
  }

  .p-third-explain__img .img03 {
    max-width: 163px;
    top: 103vw;
    right: initial;
    left: -5vw;
  }

  .p-third-explain .c-inner {
    padding-bottom: 154vw;
  }

  .text-anime {
    gap: 0.7em 0.3em;
  }

  .p-third-intro__text h2 {
    margin-bottom: 24px;
  }

  .fadeIn_up.third {
    transition: 7s;
  }

  .p-third-explain {
    margin-top: 30vw;
  }
}

/* イベントの場所 */

.event_venue .slick-dots {
  bottom: 20px;
  left: 20px;
  right: inherit;
}

.event_venue .slick-dots li button:before {
  background: #fff;
  color: #fff;
}

.event_venue__text h2 {
  margin-bottom: 40px;
}

.event_venue__access {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 22px 29px;
}

.event_venue__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.event_venue__text .c-btn {
  margin-top: 23px;
}

.event_venue__text p.important {
  font-weight: bold;
  margin-top: 1em;
}

.event_venue__access h3 {
  margin-bottom: 15px;
}

.event_venue__access {
  max-width: 300px;
}

.event_venue__access h3,
.event_venue__access p {
  font-size: 14px;
}

.event_venue .slick-slide img {
  max-height: 65vh;
  object-fit: cover;
  width: 100%;
  object-position: bottom;
}

@media (max-width: 767px) {
  .event_venue__access {
    max-width: 100%;
    width: 100%;
  }

  .event_venue__access_btn {
    text-align: center;
  }

  .event_venue .slick-slide img {
    height: 460px;
    object-fit: cover;
  }

  .c-content__slide_img {
    position: relative;
  }

  .c-content__slide_img::after {
    position: absolute;
    content: "";
    background: url(../images/t2_logo.png) no-repeat center/contain;
    width: 83.079px;
    height: 21.755px;
    flex-shrink: 0;
    z-index: 1;
    right: 8px;
    bottom: 8px;
  }

  .event_venue .slick-dots {
    left: 8px;
    bottom: 8px;
  }
}

/* Meet up */

.meetup__title {
  order: 2;
  margin: -5vw 0 0 5vw;
  writing-mode: vertical-rl;
}

section.meetup .c-inner {
  display: grid;
  grid-template-columns: 1fr auto;
}

.meetup__wrap {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.meetup__wrap li {
  width: 100%;
}

.meetup__wrap img {
  margin-bottom: 20px;
  width: 100%;
}

.meetup__wrap_box {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 25px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.meetup__wrap_box h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .meetup__wrap {
    flex-wrap: wrap;
    gap: 30px;
  }

  .meetup__wrap li {
    flex: auto;
  }

  h3.serif {
    margin-bottom: 10px;
  }

  .meetup__wrap img {
    margin-bottom: 15px;
  }

  .meetup__title {
    position: relative;
    z-index: -1;
  }

  .meetup__title::after {
    position: absolute;
    content: "";
    top: 0;
    right: -5vw;
    width: 158px;
    height: 534px;
    background: url(../images/meetup_bg.png) no-repeat center/contain;
  }

  .meetup__wrap_box {
    padding: 15px;
    margin-top: 50px;
  }

  .meetup__wrap_box h4 {
    font-size: 14px;
  }
}

/* レポート */

.report-wrap {
  display: flex;
  gap: 9vw;
  align-items: center;
  margin-bottom: 40px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 4);
}

.scroll-infinity__item > img {
  width: 100%;
}

.report-voice__list p {
  display: block;
  width: 45vw;
  font-size: 18px;
  margin: 40px 0;
  text-align: left;
}

.report-voice__list p.right {
  text-align: right;
  margin-left: auto;
}

.report-voice {
  text-align: center;
}

.report-voice__list p .important {
  font-weight: bold;
}

.report-voice .c-btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .report-wrap {
    flex-wrap: wrap;
    gap: 0;
  }

  .scroll-infinity__item {
    width: calc(100vw / 2);
  }

  .report-voice__list p {
    width: 78vw;
  }

  .scroll-infinity__item > img {
    height: 200px;
    object-fit: cover;
  }
}

/* ファッションショー */

.page-third .p-first-lecture__img img {
  width: 216px;
  height: 216px;
}

.c-member .p-first-lecture__img img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-member__item {
  display: flex;
  gap: 23px;
}

.c-profile {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Noto Sans JP";
  font-size: 12px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 1.4px;
  margin-top: 15px;
}

.p-first-lecture__img {
  flex-shrink: 0;
}

.c-name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 3px;
}

.c-member__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.c-member__list:last-of-type {
  border: none;
}

.c-member__list li {
  width: calc((100% - 60px) / 2);
}

.c-position {
  font-size: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding: 1px 7px;
}

.txt-hide {
  display: none;
}

.list-btn {
  margin-top: 20px;
  margin: auto;
}

.list-btn.is-btn-hidden {
  display: none;
}

.list-btn button {
  cursor: pointer;
  outline: none;
}

.c-member__wrap .more {
  margin: auto;
}

.more::after {
  content: "もっと見る";
  transition: 0.2s;
  -erbkit-transition: 0.2s;
}

.more.on-click::after {
  content: "閉じる";
}

@media (max-width: 767px) {
  .c-member__list li {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
  }

  .c-member__list {
    margin-bottom: 0;
    gap: 0;
  }

  .c-position {
    font-size: 12px;
  }

  .c-member__list li:last-of-type {
    border: none;
  }

  .c-stitle {
    font-size: 18px;
  }

  .c-member__list.line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* スケジュール */

.p-top-schedule__detail {
  margin-bottom: 0;
}

.p-top-schedule__detail li {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
}

.p-top-schedule__detail li:last-of-type {
  border: none;
}

.time-schedule img {
  width: 66px;
}

.schedule-detail .part {
  border: 0.743px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  padding: 6.684px 14.854px;
  justify-content: center;
  align-items: center;
  gap: 7.427px;
  font-size: 14px;
  margin-right: 15px;
}

.schedule-detail h3 {
  font-size: 18px;
}

.schedule-detail .green {
  color: #1de196;
}

.p-top-schedule__btn a {
  border: 1px solid #fff;
  margin-top: 22px;
}

.schedule-detail .logoWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.schedule-detail .logoWrap img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.schedule-detail .wrap {
  display: flex;
  gap: 22px;
}

.schedule-detail .wrap figure {
  width: 30vw;
}

.schedule-detail .wrap .txtWrap {
  flex: 1;
}

.time-schedule {
  flex-shrink: 0;
}

.schedule-detail .orange {
  color: #ff8c00;
}

.p-top-schedule__btn {
  max-width: 250px;
}

.schedule-detail .pink {
  color: #bb007a;
}

.p-top-schedule__detail li:nth-child(n + 2) .part {
  font-size: 21px;
}

.p-top-schedule__detail li:nth-child(n + 2) h3 {
  font-size: 27px;
}

.p-top-schedule__detail .line {
  position: relative;
  padding-left: 44px;
  font-size: 21px;
  margin-left: 10px;
}

.p-top-schedule__detail .line::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  width: 31px;
  height: 1px;
  background-color: #fff;
}

.schedule-detail .important {
  font-family: "Noto Sans JP";
  font-size: 14px;
  margin-left: 15px;
}

.schedule-detail .wrap .txtWrap h4 {
  margin-bottom: 15px;
}

.schedule-detail .wrap .txtWrap .txt {
  margin: 10px 0 15px;
}

.schedule-detail .wrap .txtWrap {
  font-size: 16px;
}

@media (max-width: 767px) {
  .p-top-schedule__detail li {
    gap: 10px;
  }

  .p-top-schedule .c-inner {
    display: block;
  }

  .p-top-schedule__title {
    writing-mode: initial;
    margin: 0;
  }

  .schedule-detail .part {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .schedule-detail .wrap {
    flex-wrap: wrap;
    gap: 15px;
  }

  .schedule-detail .wrap figure,
  .schedule-detail .wrap .txtWrap {
    flex: auto;
  }

  .schedule-detail .wrap .txtWrap {
    font-size: 14px;
  }

  .schedule-detail .logoWrap img {
    width: calc((100% - 5px) / 2);
  }

  .schedule-detail .logoWrap {
    gap: 5px;
  }

  .p-top-schedule__detail li:nth-child(n + 2) .part {
    font-size: 14px;
  }

  .p-top-schedule__detail li:nth-child(n + 2) h3 {
    font-size: 20px;
  }

  .p-top-schedule__detail .line {
    font-size: 14px;
    display: block;
    padding-left: 33px;
  }

  .p-top-schedule__detail .line::before {
    top: 12px;
    width: 25px;
  }

  .schedule-detail h3 {
    font-size: 16px;
  }

  .schedule-detail .important {
    font-size: 14px;
    display: block;
    margin-left: 0;
  }

  .schedule-detail .wrap .txtWrap h4 {
    margin-bottom: 10px;
  }

  .p-top-schedule__btn {
    max-width: 100%;
  }
}

/* バイセルとfinestoneの情報追加 2024.10.21 */

.c-logoWrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.c-logoWrap h3 {
  margin-bottom: 9px;
  font-weight: normal;
}

.c-logoWrap__img {
  flex-shrink: 0;
}

.fashion_logoWrap {
  margin-bottom: 100px;
}

.c-logoWrap__img img {
  width: 239px;
}

@media (max-width: 767px) {
  .c-logoWrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
  }

  .fashion_logoWrap {
    margin-bottom: 50px;
  }
}

/*model page add*/
.p-model {
  padding: 8vw 0 8vw;
}

.p-model h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

.p-model__position {
  text-align: center;
}

.p-model__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-model__list li {
  background: #fff;
  padding: 20px;
  color: #000;
}

.p-model__box {
  display: flex;
  gap: 10px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 8px 0;
  margin: 5px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.p-model__sns img {
  width: 24px;
  vertical-align: middle;
}

.p-model__name {
  font-size: 20px;
  font-weight: 500;
}

.p-model__detail {
  font-size: 14px;
}

.p-model__img {
  margin: 0 auto 10px;
  text-align: center;
}

@media (max-width: 900px) {
  .p-model__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .p-model {
    padding: 80px 0;
  }

  .p-model__list {
    grid-template-columns: 1fr;
  }

  .p-model__name {
    font-size: 18px !important;
  }
}

/* 中本追加 2024.10.31 */

.p-top-sponser,
.p-top-support {
  margin-bottom: 10vw;
}

.p-top-sponser img {
  width: calc((100% - 120px) / 6);
}

@media (max-width: 767px) {
  .p-top-sponser,
  .p-top-support {
    margin-bottom: 20vw;
  }

  .p-top-sponser img {
    width: calc((100% - 20px) / 3);
  }

  .p-top-company {
    margin-bottom: 20vw;
  }
}

/* 中本追加 2024.11.01 */

.support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.support__list li {
  width: calc((100% - 80px) / 5);
}

.support__list li img {
  width: 100%;
}

@media (max-width: 767px) {
  .support__list {
    gap: 10px;
  }

  .support__list li {
    width: calc((100% - 20px) / 3);
  }
}

#thirdBanner {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  animation-name: scale_anime;
  transform: scale(0.9, 0.9);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

#thirdBanner img {
  max-width: 230px;
  width: 15vw;
}

@keyframes scale_anime {
  100% {
    transform: scale(1, 1);
  }
}

@media (max-width: 767px) {
  #thirdBanner {
    bottom: 10px;
    right: 10px;
  }

  #thirdBanner img {
    width: 37vw;
  }
}

.to-model .p-top-schedule__btn {
  margin-left: auto;
}

.c-btnArea {
  padding: 0 5vw;
}

/* スケジュールにブースロゴ追加 */

.p-top-schedule__booth .support__list {
  gap: 10px;
}

.p-top-schedule__booth .support__list li {
  width: calc((100% - 100px) / 11);
}

@media (max-width: 767px) {
  .p-top-schedule__booth .support__list {
    gap: 5px;
    margin-bottom: 60px;
  }

  .p-top-schedule__booth .support__list li {
    width: calc((100% - 15px) / 4);
  }
}
/* 終了 */
.end {
  width: 100%;
  max-width: 500px;
  padding: 30px 50px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
}

.end strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}
