@charset "UTF-8";
/*===================================
 *※※※※※※※※※※※※※※※※※※※※※
 *このファイルはSassで管理されているので
 *cssを直接編集しないでください。
 *※※※※※※※※※※※※※※※※※※※※※
 *===================================*/
ul {
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

.hp_fs14 {
  font-size: 14px;
}

.hp_color_pink {
  color: #e85298 !important;
}

* {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-size: 16px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: white;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 20px;
  }
}

.ly_page {
  position: relative;
}
.ly_page::before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -10;
  background-image: url("../img/bg_page.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.ly_main {
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

.bl_btn {
  display: flex;
  justify-content: center;
}
.bl_btn_wrap {
  margin-bottom: 70px;
}
.bl_btn_lead {
  text-align: center;
  margin-bottom: 5px;
  font-size: min(5vw, 20px);
  color: #fff100;
}
@media screen and (min-width: 992px) {
  .bl_btn_lead {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.bl_btn a {
  display: block;
  text-align: center;
  color: #884798;
  width: 95%;
  text-decoration: none;
  font-weight: bold;
  font-size: min(6.25vw, 28px);
  transition: all 0.3s;
  position: relative;
  padding: 15px 10px;
}
@media screen and (min-width: 992px) {
  .bl_btn a {
    font-size: 40px;
    padding: 40px 20px;
  }
}
.bl_btn a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 241, 0, 0.8);
  transform: skew(-10deg);
  mix-blend-mode: multiply;
  transition: all 0.3s;
}
.bl_btn a span {
  position: relative;
  z-index: 5;
  transition: all 0.3s;
}
.bl_btn a::after {
  position: absolute;
  content: "";
  bottom: -5%;
  right: 2%;
  width: min(12.5vw, 60px);
  height: min(15vw, 72px);
  background-image: url("../img/icon_click.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: invert(34%) sepia(21%) saturate(1610%) hue-rotate(242deg) brightness(95%) contrast(88%);
}
@media screen and (min-width: 992px) {
  .bl_btn a::after {
    width: 80px;
    height: 98px;
  }
}
.bl_btn a:hover {
  margin-right: 0;
}
.bl_btn a:hover::before {
  background-color: rgba(255, 255, 255, 0.8);
  left: 20px;
  transform: skew(-20deg);
}
.bl_btn a:hover::after {
  transform: rotate(-15deg);
}
.bl_btn a:hover span {
  margin-left: 15px;
}

.bl_tab {
  display: flex;
  position: sticky;
  top: 55px;
  margin-bottom: 5px;
  z-index: 100;
  justify-content: space-between;
}
.bl_tab_item {
  position: relative;
  width: 33%;
  text-align: center;
  padding: 10px;
  color: #777;
  font-size: min(5vw, 20px);
  transition: all 0.3s;
  font-weight: 700;
}
.bl_tab_item span {
  position: relative;
  z-index: 1;
}
.bl_tab_item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cccccc;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.bl_tab_item.is_active {
  color: rgba(255, 241, 0, 0.95);
}
.bl_tab_item.is_active::after {
  background-color: rgba(85, 69, 139, 0.95);
}

.el_link_img img {
  transition: all 0.3s;
}
.el_link_img:hover img {
  opacity: 0.7;
}

.ly_header {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 999;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 992px) {
  .ly_header {
    height: 70px;
  }
}
.ly_header_logo {
  margin-left: 10px;
  margin-bottom: 0;
}
.ly_header_logo a {
  display: inline-block;
}
.ly_header_logo a:hover img {
  opacity: 0.7;
}
.ly_header_logo img {
  height: 36px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .ly_header_logo img {
    height: 50px;
  }
}
.ly_header_btn {
  margin-right: 10px;
}
.ly_header_btn a {
  color: #884798;
  text-decoration: none;
  background-color: #fff100;
  padding: 8px 30px;
  border-radius: 20px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
}
.ly_header_btn a::after {
  position: absolute;
  content: "";
  top: 53%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  height: 10px;
  width: 10px;
  border-top: 2px solid #884798;
  border-right: 2px solid #884798;
  background-color: transparent;
  transition: all 0.3s;
}
.ly_header_btn a:hover {
  background-color: white;
}
.ly_header_btn a:hover::after {
  right: 0;
  opacity: 0;
}

.bl_hero {
  margin-bottom: 50px;
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  .bl_hero {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .bl_hero {
    display: flex;
    min-height: calc(100vh - 70px);
    flex-wrap: wrap;
    padding-top: 70px;
    margin-bottom: 70px;
  }
}
.bl_hero_img {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1200px) {
  .bl_hero_img {
    flex-shrink: 0;
    width: 50%;
    align-self: center;
    padding: 70px 0 0;
  }
}
.bl_hero_inner {
  position: relative;
  padding: 40px 15px;
}
@media screen and (min-width: 1200px) {
  .bl_hero_inner {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }
}
.bl_hero_inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #55458b 10%, transparent 90%);
  opacity: 0.8;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 1200px) {
  .bl_hero_inner::before {
    width: 100%;
    height: calc(100% + 70px);
    background: linear-gradient(180deg, #55458b 50%, transparent 90%);
  }
}
.bl_hero_title {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .bl_hero_title {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 2vw;
    z-index: 5;
    flex-shrink: 0;
    width: 100%;
    align-self: flex-end;
  }
}
.bl_hero_title img {
  width: min(95vw, 1200px);
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 1200px) {
  .bl_hero_title img {
    width: 100%;
  }
}
.bl_hero_lead {
  position: relative;
  z-index: 5;
  text-align: center;
}
.bl_hero_lead img {
  width: min(95vw, 1200px);
}
.bl_hero_detail {
  width: min(90vw, 1200px);
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .bl_hero_detail {
    width: 80%;
    margin: 0;
    position: relative;
    z-index: 5;
  }
}

.bl_intro {
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .bl_intro {
    margin-bottom: 150px;
  }
}
.bl_intro p {
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .bl_intro p {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .bl_intro p {
    font-size: min(1.66666667vw, 24px);
  }
}

.bl_detail {
  margin-bottom: 70px;
  color: white;
  position: relative;
}
.bl_detail_cont {
  margin-bottom: 30px;
  padding: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_detail_cont {
    padding: 30px 60px;
  }
}
.bl_detail_cont::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #55458b;
  mix-blend-mode: multiply;
  opacity: 0.8;
  box-shadow: 0px 0px 15px rgba(195, 177, 255, 0.8);
}
.bl_detail_head {
  font-size: 20px;
  border-bottom: 2px solid white;
  padding: 5px 5px 10px;
  margin-bottom: 25px;
  font-weight: bold;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .bl_detail_head {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .bl_detail_head {
    font-size: 40px;
  }
}
.bl_detail dl {
  margin-bottom: 35px;
  position: relative;
  z-index: 5;
}
.bl_detail dt {
  color: #884798;
  background-color: white;
  width: 150px;
  padding: 5px 10px;
  margin-bottom: 5px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .bl_detail dt {
    font-size: 20px;
  }
}
.bl_detail dt::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 100%;
  top: 0;
  right: -24px;
  filter: invert(100%) sepia(1%) saturate(1489%) hue-rotate(274deg) brightness(117%) contrast(100%);
  background-image: url("../img/deco_title_right.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .bl_detail dt::after {
    width: 28px;
    right: -28px;
  }
}

.el_detail_title__en {
  font-size: 32px;
  letter-spacing: 3px;
  margin-right: 15px;
}
@media screen and (min-width: 992px) {
  .el_detail_title__en {
    font-size: 40px;
  }
}
.el_detail_title__ja {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .el_detail_title__ja {
    font-size: 16px;
  }
}

.un_detail_schedule {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  padding-top: 15px;
}
.un_detail_schedule dt {
  width: 100%;
  color: #333;
  padding: 10px 15px;
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  .un_detail_schedule dt {
    padding: 30px 80px 0;
  }
}
.un_detail_schedule dt::after {
  display: none;
}

.bl_schedule {
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .bl_schedule {
    padding: 30px 80px;
  }
}
.bl_schedule_item {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_schedule_item {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .bl_schedule_item {
    margin-bottom: 20px;
  }
}
.bl_schedule_time {
  font-weight: bold;
  position: relative;
  display: inline-block;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .bl_schedule_time {
    margin-right: 70px;
    font-size: 16px;
  }
}
.bl_schedule_time::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -60px;
  width: 50px;
  height: 1px;
  background-color: #333;
}
.bl_schedule_content {
  font-size: 16px;
  margin-bottom: 0;
}
.bl_schedule_content span {
  font-weight: 700;
  font-size: 18px;
}

.un_schedule_special {
  background-color: rgba(255, 247, 153, 0.8);
  width: calc(100% + 30px);
  margin-left: -15px;
  padding: 10px 15px;
}

.un_detail_special {
  color: #e85298;
  background-color: rgba(255, 247, 153, 0.9);
  border-radius: 25px;
  padding: 25px 0 15px;
}
.un_detail_special dt {
  background-color: transparent;
  color: #e85298;
  padding: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .un_detail_special dt {
    padding: 15px 80px;
  }
}
.un_detail_special dt::after {
  display: none;
}

.bl_special {
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .bl_special {
    padding: 15px 80px;
  }
}
.bl_special_name {
  margin: 0 0 5px;
}
.bl_special_name span {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .bl_special_name span {
    font-size: 36px;
  }
}
@media screen and (min-width: 992px) {
  .bl_special_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.bl_special_body p {
  line-height: 1.75;
}
@media screen and (min-width: 992px) {
  .bl_special_img {
    flex-shrink: 0;
    width: min(60%, 600px);
  }
}
.bl_special_title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .bl_special_title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .bl_special_title {
    font-size: 28px;
  }
}

.un_detail_exhibition {
  color: #333;
}
.un_detail_exhibition dt {
  font-size: 24px;
  background-color: transparent;
  width: 100%;
  padding: 0;
  color: white;
}
@media screen and (min-width: 992px) {
  .un_detail_exhibition dt {
    font-size: 28px;
  }
}
.un_detail_exhibition dt::after {
  display: none;
}

.bl_exhibition_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bl_exhibition_item {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  flex-shrink: 0;
  padding: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .bl_exhibition_item {
    width: 49%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .bl_exhibition_item {
    width: 24%;
    margin-bottom: 10px;
  }
}
.bl_exhibition_heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .bl_exhibition_heading {
    font-size: 20px;
  }
}
.bl_exhibition_heading a {
  color: #884798;
}
.bl_exhibition_heading a:hover {
  text-decoration: none;
}
.bl_exhibition_content {
  position: relative;
}
.bl_exhibition_content::after {
  position: absolute;
  content: "";
  bottom: -18px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.bl_exhibition_content dt {
  font-size: 14px;
  color: #333;
  font-weight: normal;
  margin-bottom: 0;
}
.bl_exhibition_content dd {
  font-weight: 600;
  font-size: 18px;
}

.bl_booth {
  color: white;
}
.bl_booth_head {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .bl_booth_head {
    font-size: 28px;
  }
}

.bl_inquiry {
  text-align: center;
}
.bl_inquiry_inner {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 30px 0;
  margin: auto;
}

.ly_footer {
  text-align: center;
  padding: 60px 0 25px;
  position: relative;
  z-index: 5;
}
.ly_footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, #55458b 10%, transparent 90%);
  mix-blend-mode: multiply;
}

.un_copyright {
  margin-bottom: 0;
  color: white;
  font-size: 12px;
  position: relative;
  z-index: 10;
}

.un_privacy {
  position: relative;
  z-index: 10;
}
.un_privacy a {
  color: white;
}
.un_privacy a:hover {
  text-decoration: none;
}

.un_page__privacy {
  font-size: 16px;
}
.un_page__privacy .ly_main {
  padding: 100px 0 0;
}
@media screen and (min-width: 1200px) {
  .un_page__privacy .ly_main {
    padding: 130px 0 0;
  }
}
.un_page__privacy .bl_hero {
  height: auto;
  padding: 0 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .un_page__privacy .bl_hero {
    min-height: auto;
  }
}
.un_page__privacy .bl_hero_text {
  margin-bottom: 0;
  font-size: min(6.8965517241vw, 32px);
}
.un_page__privacy .bl_section_title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .un_page__privacy .bl_section_title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .un_page__privacy .bl_section_title {
    font-size: 36px;
  }
}
.un_page__privacy .bl_privacy {
  padding-bottom: 15px;
}
.un_page__privacy .bl_privacy_inner {
  padding: 30px 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .un_page__privacy .bl_privacy_inner {
    padding: 30px;
  }
}
@media screen and (min-width: 992px) {
  .un_page__privacy .bl_privacy_inner {
    padding: 30px 80px;
  }
}
.un_page__privacy .bl_privacy_inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #55458b;
  mix-blend-mode: multiply;
  opacity: 0.8;
  box-shadow: 0px 0px 15px rgba(195, 177, 255, 0.8);
}
.un_page__privacy .bl_privacy_cont {
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.un_page__privacy .bl_privacy_cont:last-of-type {
  margin-bottom: 0;
}
.un_page__privacy .bl_privacy_cont_title {
  margin-bottom: 30px;
  border-left: 10px solid white;
  padding: 5px 0 5px 15px;
  font-weight: 700;
  font-size: 20px;
}
.un_page__privacy .bl_privacy_item {
  margin-bottom: 30px;
}
.un_page__privacy .bl_privacy_item:last-of-type {
  margin-bottom: 0;
}
.un_page__privacy .bl_privacy_item_title {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .un_page__privacy .bl_privacy_item_title {
    font-size: 18px;
  }
}
.un_page__privacy .bl_privacy_item_text {
  margin-bottom: 5px;
}
.un_page__privacy .bl_privacy_item_list li {
  padding-left: 1rem;
  text-indent: -1rem;
  margin-bottom: 5px;
}/*# sourceMappingURL=style.css.map */