@charset "euc-jp";

/*リセットcss*/
body {
  min-width: 100% !important;
}

div#container {
  margin-bottom: 0;
  padding: 73px 0 0;
  width: 100%;
  max-width: 1920px;
  color: #ffffff;
}

#header {
  width: 100% !important;
  max-width: 1920px;
}

#new_footer {
  width: 100%;
  padding-top: 0;
}

#new_footer hr.top_line {
  margin-top: 0;
}

#footer_main h3 {
  padding-top: 15px;
}


.event-detail {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック","Yu Gothic","メイリオ",Meiryo,sans-serif;
  text-align: center;
}

/* hero */
.hero-wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-height: 927px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_hero.png) center 73px no-repeat;
  background-size: 1920px;
  background-attachment: fixed;
}

.hero-wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  content: "";
  width: 100%;
  height: 460px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/img_hero_bottom.png) center top no-repeat;
  background-size: cover;
}

.hero {
  display: block;
  width: 100%;
  max-width: 1793px;
  margin: 0 auto;
  padding: 0 !important;
  overflow: hidden;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}

.hero__image.is_active {
  animation: fadein .7s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* section */
.section.is_introduction {
  padding: 0 0 80px;
  background: linear-gradient(to bottom, rgba(60,9,79,1) 0%, rgba(60,9,79,1) 7%, rgba(60,9,79,0.5) 30%, rgba(60,9,79,0) 100%), url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_pattern_asanoha_purple.png);
}

.section.is_performer-message {
  padding: 80px 0;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_pattern_ichimatsu.png);
}

.section.is_event {
  padding: 80px 0;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_pattern_asanoha_black.png);
}

.section.is_member-message {
  padding: 80px 0;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_pattern_sayagata.png);
}

.section-inner {
  opacity: 0;
  transform: translateY(10px);
  backface-visibility: hidden;
}

.section.is_active .section-inner {
  animation: slideup .7s forwards;
}

@keyframes slideup {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-inner-title {
  margin: 0 auto 40px;
  font-size: 40px;
  font-family: "游明朝体","游明朝","YuMincho","Yu Mincho","ヒラギノ明朝 ProN","Hiragino Mincho ProN","MS P明朝",serif;
  letter-spacing: 0.1em;
  text-align: center;
}

.section-inner-title::after {
  display: block;
  content: "";
  width: 250px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, #f6dda3 50%, rgba(0,0,0,0) 100%);
}

.section-inner-title__inner {
  background: linear-gradient(to bottom, #fef617 0%, #fffecd 11%, #fffc8a 28%, #ffffff 47%, #fffc8a 56%, #f6cb02 73%, #fee613 85%, #f6c101 100%);
  -webkit-background-clip: text;
  color: rgba(255,252,138,0);
}


/* 挨拶文 */
.section-inner-data__text {
  margin-bottom: 40px;
  font-size: 20px;
  font-family: "游明朝体","游明朝","YuMincho","Yu Mincho","ヒラギノ明朝 ProN","Hiragino Mincho ProN","MS P明朝",serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.section-inner-data__text:last-of-type {
  margin-bottom: initial;
}

.text.is_emphasis {
  font-weight: bold;
  color: #ffff00;
}


/* お祝いメッセージ */
.performer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-between;
  max-width: 1145px;
  margin: 0 auto;
  list-style-type: none;
}

.performer-list-item {
  box-sizing: border-box;
  width: 230px;
  height: 280px;
  margin: 50px 0;
  padding: 14px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_performer_list.png) no-repeat;
  border-radius: 4px;
  box-shadow: 4px 6px 6px rgba(22,17,1,0.4);
  transition: all 300ms 0s ease;
  cursor: pointer;
}

.performer-list-item__image {
  display: block;
  width: 198px;
  height: 198px;
  margin-bottom: 10px;
  border: 2px solid #a18328;
}

.performer-list-item__text {
  width: 202px;
  height: 40px;
  margin: 0 auto;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_performer_list.png) no-repeat;
  background-position: 0 -300px;
  font-size: 14px;
  line-height: 40px;
  color: #ffffff;
}

.performer-list-item:hover {
  transform: scale(1.1);
  filter: brightness(120%);
  transition: all 300ms 0s ease;
}



/* イベント一覧 */
.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  list-style-type: none;
}

.event-list-item {
  box-sizing: border-box;
  margin: 75px 0;
}

.event-list-item-inner {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 488px;
  padding: 0 20px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_event_list_frame.png) center 0 repeat-y;
  transition: all 300ms 0s ease;
}

.event-list-item-inner::before {
  position: absolute;
  top: -35px;
  left: 0;
  content: "";
  display: block;
  width: 488px;
  height: 35px;
  background-image: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_event_list.png);
}

.event-list-item-inner::after {
  position: absolute;
  bottom: -36px;
  left: 0;
  content: "";
  display: block;
  width: 488px;
  height: 36px;
  background-image: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_event_list.png);
  background-position: 0 -36px;
}

.event-list-item-inner:link, .event-list-item-inner:visited {
  text-decoration: none;
  color: inherit;
}

.event-list-item-inner:hover {
  text-decoration: inherit;
}

.event-list-item-inner.is_disabled {
  pointer-events: none;
}

.event-list-item-inner__time {
  position: relative;
  height: 48px;
  margin-bottom: 16px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_event_list.png);
  background-position: 50px -90px;
  font-size: 16px;
  font-weight: bold;
  line-height: 36px;
  color: #362100;
}

.event-list-item-inner__image {
  display: block;
  width: 100%;
  margin: 0 auto 16px;
}

.event-list-item-inner__text {
  margin-bottom: 10px;
  font-size: 14px;
  text-align: initial;
}

.event-list-item-inner__link {
  position: relative;
  width: fit-content;
  margin-left: auto;
  padding-right: 20px;
  border-bottom: 1px solid #d2be6a;
  font-size: 14px;
  color: #d2be6a;
}

.event-list-item-inner__link::after {
  position: absolute;
  top: 2px;
  right: -3px;
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-left: 9px solid #d2be6a;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
}



/*会員様メッセージ*/
.member-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  list-style-type: none;
}

.member-list-item {
  box-sizing: border-box;
  width: 100%;
  max-width: 317px;
  margin: 50px 12px;
  padding: 16px;
  background-color: #ffffff;
  border: 3px solid #cab467;
  text-align: initial;
  color: #362100;
}

.member-list-item__title {
  height: 40px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/img_member_list_title_item.png) left bottom no-repeat;
  background-size: 50%;
  font-size: 16px;
}

.member-list-item__text {
  margin-bottom: 16px;
  background: linear-gradient(180deg, transparent 0%, transparent 97%, #ece8db 97%, #ece8db 100%);
  background-size: 100% 2.5em;
  font-size: 14px;
  line-height: 2.5;
  overflow: hidden;
}

.member-list-item__name {
  font-size: 14px;
  text-align: right;
}



/*ダイアログ*/
.dialog-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
}

.dialog-wrap-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.dialog {
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 102;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: 840px;
  padding: 46px 72px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_dialog_upper_left.png) top left no-repeat, url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_dialog_upper_right.png) top right no-repeat, url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_dialog_lower_left.png) bottom left no-repeat, url(https://assets.chatpia.jp/common/event/img/18th_anniversary/bg_dialog_lower_right.png) bottom right no-repeat, #f0ead7;
  border: 10px solid #d0c18d;
}

.dialog-item__name {
  width: 264px;
  height: 49px;
  margin: 0 auto 16px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_dialog.png) no-repeat;
  background-size: cover;
  font-size: 22px;
  line-height: 49px;
  color: #ffffff;
}

.dialog-item__title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-left: 26px;
  font-size: 16px;
  font-weight: bold;
  color: #937720;
}

.dialog-item__title::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "";
  width: 22px;
  height: 16px;
  background: url(https://assets.chatpia.jp/common/event/img/18th_anniversary/sprite_dialog.png) no-repeat;
  background-size: 264px auto;
  background-position: 0 -55px;
}

.dialog-item__title::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 260px;
  height: 2px;
  margin: 4px auto 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, #937720 50%, rgba(0,0,0,0) 100%);
}

.dialog-item-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 36px auto 32px;
}

.dialog-item-data-inner {
  box-sizing: border-box;
  display: block;
  width: 202px;
  height: 202px;
  margin: 0 20px 20px 0;
  border: 2px solid #a18328;
}

.dialog-item-data-inner:link, .dialog-item-data-inner:visited {
  text-decoration: none;
  color: inherit;
}

.dialog-item-data-inner:hover {
  text-decoration: none;
  color: inherit;
}

.dialog-item-data-inner__image {
  box-sizing: border-box;
  display: block;
  width: 100%;
}

.dialog-item-data__text {
  width: 440px;
  height: 310px;
  font-size: 16px;
  text-align: initial;
  color: #362100;
  overflow-y: auto;
}

.dialog-item-data__text::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.dialog-item-data__text::-webkit-scrollbar-track {
  background: #f0ead7;
}

.dialog-item-data__text::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(161,131,40,0.3);
}

.dialog-item__close {
  box-sizing: border-box;
  width: 160px;
  height: 40px;
  margin: 0 auto;
  background-color: #a18328;
  outline: 1px solid #a18328;
  outline-offset: 2px;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
}

.dialog-performer-message-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  cursor: pointer;
}

.dialog-performer-message-arrow.is_prev {
  left: -120px;
}

.dialog-performer-message-arrow.is_prev::before {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #f3ecd2;
}

.dialog-performer-message-arrow.is_prev::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #f3ecd2;
}

.dialog-performer-message-arrow.is_next {
  right: -120px;
}

.dialog-performer-message-arrow.is_next::before {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #f3ecd2;
}

.dialog-performer-message-arrow.is_next::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #f3ecd2;
}


@media (max-width: 1080px) {
  .performer-list {
    max-width: 900px;
  }

  .event-list {
    justify-content: center;
    max-width: 900px;
  }

  .member-list {
    justify-content: center;
    max-width: 500px;
  }

  .member-list-item {
    margin: 50px 0;
  }
}

@media (max-width: 768px) {
  .performer-list {
    max-width: 680px;
  }
}

@media (min-width: 1921px) {
  .hero-wrap {
    background-size: cover;
  }

  .hero-wrap:after {
    background-size: 100%;
  }
}
