@charset "utf-8";

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
    "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  font-size: 12px;
  /* 案件によって
  text-align: justify;
  text-justify: distribute;
  word-break: normal;
  line-break: strict;
*/
  color: #000;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.u_hidden {
  display: none;
}

.is_effect.effect_active {
  animation: fadein 1.5s ease forwards;
}

.is_effect.reverse.effect_active {
  animation: fadein_reverse 1.5s ease forwards;
}

@keyframes fadein {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadein_reverse {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.pc { display: none; }
.sp { display: block; }

/*-------------------h_title------------------*/
.h_title {
  text-align: center;
}

.h_title span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 19px;
}

.h_title span::after,
.h_title span::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 90%;
  background: #666;
}

.h_title span::before {
  left: 0;
}

.h_title span::after {
  right: 0;
}

/*-------------------btn_primary------------------*/
.btn_primary {
  width: 100%;
  max-width: 125px;
  height: 20px;
  margin: 0 auto;
}

.btn_primary a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn_primary a span {
  position: relative;
  z-index: 1;
}

.btn_primary a::before,
.btn_primary a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.btn_primary a::before {
  left: -50%;
  transform: skewX(-50deg);
  background: #666;
}

.btn_primary a::after {
  left: 50%;
  transform: skewX(-50deg);
  background: #4d4d4d;
}

/*-------------------header------------------*/
#header {
  height: 50px;
  width: 100%;
  max-width: 1040px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 25px;
  z-index: 10;
  cursor: pointer;
}

#header .hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  transition-duration: 0.5s;
  z-index: 10;
}

#header .hamburger.open .icon {
  transition-duration: 0.5s;
}

#header .hamburger.open .icon:before {
  transform: rotateZ(135deg) scaleX(0.6) translate(4.5px, -4.5px);
}

#header .hamburger.open .icon:after {
  transform: rotateZ(-135deg) scaleX(0.6) translate(4.5px, 4.5px);
}

#header .hamburger .icon {
  transition-duration: 0.5s;
  position: absolute;
  height: 0px;
  width: 30px;
  top: 30px;
  background-color: #000;
}

#header .hamburger .icon:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #000;
  content: "";
  top: -20px;
}

#header .hamburger .icon:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #000;
  content: "";
  top: -10px;
}

#header .menu {
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 72px;
  padding-bottom: 35px;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

#header .menu.opend {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

#header .menu nav {
  width: 94%;
  max-width: 220px;
  margin: 0 auto;
  padding-left: 4px;
}

#header .menu_list {
  margin-bottom: 23px;
}

#header .menu_item {
  margin-bottom: 23px;
}

#header .menu_item:last-child {
  margin-bottom: 0;
}

#header .menu_item a {
  color: #666;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#header .menu_note {
  margin: 0;
}

/*-------------------idx_mainvisual------------------*/
#idx_mainvisual {
  margin-top: 50px;
}

#idx_mainvisual .inner {
  width: 100%;
  max-width: 100%;
}

#idx_mainvisual .top_slider {
  overflow: hidden;
  width: 100vw;
  max-height: 576px;
  height: 75.021vw;
  margin: 0 auto;
}

#idx_mainvisual .mainvisual_contain .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#idx_mainvisual .mainvisual_contain figure {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#idx_mainvisual .inner img {
  max-height: 100%;
  width: 100%;
}

/*-------------------idx_about------------------*/
#idx_about {
  padding-top: 26px;
  padding-bottom: 74px;
}

#idx_about .inner {
  padding: 0 22.5px;
}

#idx_about .about_desc {
  margin-bottom: 28px;
}

#idx_about .about_desc p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: 0.025em;
  line-height: 2.08;
}

#idx_about .about_desc p:last-child {
  margin-bottom: 0;
}

#idx_about .about_lumine {
  border: 1px solid #000;
  padding: 18px 15px 15px;
  position: relative;
  width: 88%;
  max-width: 420px;
  margin: 0 auto 32px;
}

#idx_about .about_lumine::before,
#idx_about .about_lumine::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #fff transparent transparent transparent;
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 1;
}

#idx_about .about_lumine::after {
  border-width: 0 0 18px 18px;
  border-color: transparent transparent #fff transparent;
  top: auto;
  left: auto;
  bottom: -2px;
  right: -2px;
}

#idx_about .about_lumine_content {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 8px;
}

#idx_about .about_lumine_block {
  margin-bottom: 25px;
}

#idx_about .about_lumine_block:last-child {
  margin-bottom: 0;
}

#idx_about .about_lumine_title {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

#idx_about .about_lumine_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #000;
  pointer-events: none;
  z-index: -1;
}

#idx_about .about_lumine_title span {
  background: #fff;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
}

#idx_about .about_lumine_desc p {
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  margin: 0 auto 7px;
  text-align: center;
}

#idx_about .about_lumine_desc p.small {
  font-size: 14px;
}

#idx_about .about_lumine_desc p:last-child {
  margin-bottom: 0;
}

#idx_about .about_lumine_desc.free {
  margin-top: 20px;
  text-align: center;
}
#idx_about .about_lumine_desc.free span {
  display: inline-block;
  padding: 3px 5px;
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
  border: #000 1px solid;
}

#idx_about .about_lumine_cut {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 17px;
  height: 17px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#idx_about .about_lumine_cut.bottom {
  top: auto;
  left: auto;
  bottom: -1px;
  right: -1px;
}

#idx_about .about_lumine_cut.bottom i {
  top: auto;
  bottom: 0;
}

#idx_about .about_lumine_cut i {
  display: block;
  height: 30px;
  width: 1px;
  background: #000;
  transform: rotate(45deg);
  position: relative;
  top: 1px;
}

#idx_about .about_art {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

#idx_about .about_art_ttl {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 2px;
}

#idx_about .about_art_details {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 22px 0 16px 25px;
  position: relative;
}

#idx_about .about_art_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

#idx_about .about_art_item:last-child {
  margin-bottom: 0;
}

#idx_about .about_art_img {
  margin-right: 23px;
}

#idx_about .about_art_content {
  flex: 1;
}

#idx_about .about_art_title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
}

#idx_about .about_art_text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.0125em;
  text-align: justify;
}

#idx_about .about_art_line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#idx_about .about_art_line i {
  width: 18px;
  height: 1px;
  background: #000;
  display: block;
  transform: rotate(-45deg);
}

#idx_about .about_art_line.bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
}


/*-------------------idx_event------------------*/
#idx_event {
  padding-bottom: 60px;
  overflow: hidden;
}

#idx_event .inner .h_title {
  margin-bottom: 18px;
}

#idx_event .event_item {
  margin-bottom: 72px;
  padding-left: 25px;
}

#idx_event .event_item:last-child {
  margin-bottom: 0;
}

#idx_event .event_item.reverse {
  padding-left: 0;
  padding-right: 25px;
  margin-bottom: 52px;
}

#idx_event .event_item.reverse .event_wrap {
  flex-direction: row-reverse;
  margin-bottom: 10px;
}

#idx_event .event_item.reverse .event_content {
  margin: 26px 0 0 17px;
}

#idx_event .event_item.reverse .event_desc {
  margin-bottom: 0;
}

#idx_event .event_wrap {
  display: flex;
}

#idx_event .event_content {
  flex: 1;
  margin-right: 19px;
}

#idx_event .event_lable {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem;
}

#idx_event .event_lable .event_lable_note {
  position: absolute;
  top: -50px;
  right: -27px;
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: #000;
  padding-top: 12px;
}

#idx_event .event_lable .event_lable_note.line::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

#idx_event .event_lable .event_lable_note.second {
  padding-top: 0;
  top: -21px;
  left: calc(100% + 46px);
}

#idx_event .event_lable .event_lable_note span {
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#idx_event .event_lable .event_lable_note.line span:first-child {
  margin-bottom: 5px;
}

#idx_event .event_lable .event_lable_note i {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #000 transparent transparent transparent;
  transform: rotate(45deg);
  pointer-events: none;
}

#idx_event .event_title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}

#idx_event .event_wrap.custom .event_title {
  margin-right: -130px;
}

/* #idx_event .event_item:last-child .event_time {
  margin-right: -100px;
} */

#idx_event .event_title .size {
  font-size: 18px;
}

#idx_event .event_time {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1.32;
  position: relative;
}
#idx_event .event_item:first-child .event_time {
  border-top: none;
}
#idx_event .event_time > span {
  display: inline-block;
  padding: 0 5px 0 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -0.5rem;
}
#idx_event .event_time .event_time_content,
#idx_event .event_time .event_time_content2 {
  padding: 1.2rem 0 1rem;
}
/* #idx_event .event_time .event_time_content2 {
  display: flex;
} */
#idx_event .event_time .event_time_content2 p {
  margin-right: 8px;
  margin-bottom: 5px;
  margin-top: -0.3rem;
  width: 30px;
}
#idx_event .event_time .event_time_content dl,
#idx_event .event_time .event_time_content2 div dl {
  display: flex;
  margin-bottom: 12px;
}
#idx_event .event_time .event_time_content dl:last-child,
#idx_event .event_time .event_time_content2 div dl:last-child {
  margin-bottom: 0;
}

#idx_event .event_time .event_time_content dl dt,
#idx_event .event_time .event_time_content2 div dl dt {
  width: 55px;
  margin-right: 10px;
}

#idx_event .event_desc .event_desc_title {
  margin-bottom: 11px;
}

#idx_event .event_desc .event_desc_title .bold {
  font-weight: 700;
  text-align: justify;
  line-height: 1.5;
  display: block;
}

#idx_event .event_desc .event_desc_title .medium {
  font-weight: 500;
  font-size: 11px;
  text-align: justify;
  line-height: 1.45;
  letter-spacing: 0.0125em;
}

#idx_event .event_desc .event_desc_txt {
  font-weight: 500;
  line-height: 1.67;
  text-align: justify;
}

#idx_event .event_desc p:last-child {
  margin-bottom: 0;
}

#idx_event .event_block {
  width: 114px;
  transform: translateX(100%);
  opacity: 0;
  position: relative;
}

#idx_event .event_block img {
  max-height: 100%;
  width: 100%;
}

#idx_event .event_wrap.custom .event_block {
  margin-top: 62px;
}

#idx_event .event_item:last-child .event_block {
  margin-top: 132px;
}

#idx_event .event_block p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.0125em;
  margin-top: 5px;
}

/*-------------------idx_artist------------------*/
#idx_artist {
  padding-bottom: 34px;
}

#idx_artist .inner {
  padding: 0 25px;
}
#idx_artist .inner .artist_desc {
  text-align: center;
  margin-bottom: 20px;
}
#idx_artist .h_title {
  margin-bottom: 19px;
}

#idx_artist .artist_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2px;
}

#idx_artist .artist_item {
  width: calc((100% - 25px) / 2);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#idx_artist .artist_item:nth-child(odd) {
  margin-right: 25px;
}

#idx_artist .artist_image {
  width: 100%;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
}

#idx_artist .artist_image img {
  max-height: 100%;
}

#idx_artist .artist_title {
  text-align: center;
  color: #666;
  line-height: 2;
}

#idx_artist .artist_title span {
  border-bottom: 1px solid #666;
}

/*-------------------idx_floor------------------*/
#idx_floor {
  padding-bottom: 83px;
}

#idx_floor .inner {
  padding: 0 22px;
}

#idx_floor .inner .h_title {
  margin-bottom: 21px;
}

#idx_floor .floor_img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

#idx_floor .floor_img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
}

/*-------------------idx_audience------------------*/
#idx_audience {
  padding-bottom: 87px;
}

#idx_audience .inner {
  padding: 0 22px;
}

#idx_audience .audience_inner {
  border: 1px solid #000;
  padding-top: 40px;
  width: 100%;
  margin: 0 auto;
  max-width: 420px;
  margin: 0 auto;
}

#idx_audience .h_title {
  margin-bottom: 21px;
}

#idx_audience .audience_wrap {
  padding: 0 13px 35px;
}

#idx_audience .audience_img {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#idx_audience .audience_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 11px;
}

#idx_audience .audience_desc {
  font-weight: 500;
  letter-spacing: 0.0025em;
  line-height: 1.83;
  text-align: justify;
  margin-bottom: 10px;
}

#idx_audience .audience_lable {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#idx_audience .audience_lable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 150%;
  background: #fff;
  transform: rotate(-42deg);
  transform-origin: top;
  pointer-events: none;
}

#idx_audience .audience_lable p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.285;
  text-align: center;
  position: relative;
  z-index: 1;
}

#idx_audience .audience_content {
  position: relative;
}

#idx_audience .audience_content::before {
  content: "投票方法";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.5;
  background: #000;
  color: #fff;
  padding: 1px 13px 0 11px;
  letter-spacing: 0.1em;
}

#idx_audience .audience_item {
  border-top: 1px solid #000;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 8px;
}

#idx_audience .audience_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #000 transparent transparent transparent;
}

#idx_audience .audience_item p {
  font-weight: 700;
  line-height: 1.4167;
  text-align: center;
}

/*-------------------idx_popup------------------*/
#idx_popup .h_title {
  margin-bottom: 35px;
  padding-bottom: 23px;
  position: relative;
  animation: none;
}

#idx_popup .h_title.effect_active::after {
  animation: fadein 1.5s ease forwards;
}

#idx_popup .h_title::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 0;
  width: calc(100% + 20px);
  height: 5px;
  background: url("../images/top/line_title.png") repeat-x;
  transform: translateX(100%);
  opacity: 0;
}

#idx_popup .inner {
  padding: 0 22px;
  overflow: hidden;
}

#idx_popup .popup_title {
  margin-bottom: 21px;
  margin-left: 3px;
}

#idx_popup .popup_title .small {
  display: block;
  margin-top: 20px;
}

#idx_popup .popup_desc {
  line-height: 1.67;
  letter-spacing: 0.0025em;
  text-align: justify;
  margin-bottom: 47px;
}

#idx_popup .popup_ttl {
  position: relative;
}

#idx_popup .popup_artist {
  position: relative;
  margin-bottom: 32px;
  animation: none;
}

#idx_popup .popup_artist.effect_active::after {
  animation: fadein_reverse 2s ease forwards;
}

#idx_popup .popup_artist::after {
  content: "";
  position: absolute;
  left: -22px;
  top: -24px;
  width: 50%;
  height: 5px;
  background: url("../images/top/line_title.png") repeat-x;
  transform: translateX(-100%);
  opacity: 0;
}

#idx_popup .popup_artist .popup_ttl {
  margin-bottom: 13px;
}

#idx_popup .popup_artist_list {
  margin-bottom: 20px;
}

#idx_popup .popup_artist_item {
  padding-bottom: 9px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #000;
}

#idx_popup .popup_artist_item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

#idx_popup .popup_artist_row {
  display: flex;
}

#idx_popup .last_item .popup_artist_row {
  display: block;
}

#idx_popup .popup_artist_img {
  width: 108px;
  height: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:  0 24px 0 8px;
}

#idx_popup .last_item .popup_artist_img {
  width: 100%;
  height: auto;
  display: block;
  margin:  0 auto;
  text-align: center;
}

#idx_popup .popup_artist_img img {
  max-width: 100%;
}

#idx_popup .popup_artist_content {
  flex: 1;
  margin-top: 5px;
}

#idx_popup .popup_artist_ttl {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 7px;
}

#idx_popup .popup_artist_ttl span {
  font-size: 92.857%;
}

#idx_popup .popup_artist_desc {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

#idx_popup .popup_brand {
  position: relative;
  animation: none;
}

#idx_popup .popup_brand.effect_active::after {
  animation: fadein 2s ease forwards;
}

#idx_popup .popup_brand::after {
  content: "";
  position: absolute;
  left: 169px;
  top: 7px;
  width: calc(100vw - 50px);
  height: 5px;
  background: url("../images/top/line_title.png") repeat-x;
  transform: translateX(100%);
  opacity: 0;
}

#idx_popup .popup_brand .popup_ttl {
  margin-bottom: 17px;
}

#idx_popup .popup_brand_list {
  margin-bottom: 18px;
}

#idx_popup .popup_brand_item {
  padding-bottom: 29px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #000;
}

#idx_popup .popup_brand_item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

#idx_popup .popup_brand_item:not(:first-child) .popup_brand_img {
  max-height: 174px;
}

#idx_popup .popup_brand_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 9px;
}

#idx_popup .popup_brand_title span {
  font-size: 92.857%;
}

#idx_popup .popup_brand_row {
  display: flex;
  justify-content: space-between;
}

#idx_popup .popup_brand_content {
  flex: 1;
  margin-right: 20px;
}

#idx_popup .popup_brand_content_title {
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.0025em;
  margin-bottom: 18px;
}

#idx_popup .popup_brand_content_desc {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
}

#idx_popup .popup_brand_content_desc p {
  margin-bottom: 17px;
}

#idx_popup .popup_brand_content_desc p:last-child {
  margin-bottom: 0;
}

#idx_popup .popup_brand_img {
  width: 100%;
  max-width: 150px;
  max-height: 210px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin: 2px 9px 0 0;
}

#idx_popup .popup_brand_img figcaption {
  margin-top: 5px;
  font-size: 12px;
}
#idx_popup .popup_brand_img img {
  max-height: 100%;
}

#idx_popup .popup_brand_end {
  position: relative;
  animation: none;
  height: 60px;
}
#idx_popup .popup_brand_end.effect_active::after {
  animation: fadein_reverse 2s ease forwards;
}
#idx_popup .popup_brand_end::after {
  content: "";
  position: absolute;
  left: -22px;
  top: -8px;
  width: 75%;
  height: 5px;
  background: url(../images/top/line_title.png) repeat-x;
  transform: translateX(-100%);
  opacity: 0;
}


.btn_second {
  text-align: right;
  margin-right: 6px;
}

.btn_second a {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
}

/*-------------------model------------------*/
#model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  z-index: 20;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 35px 0;
}

#model.open {
  opacity: 1;
  pointer-events: auto;
}

#model.open .model_artist {
  transform: translateY(0);
  opacity: 1;
}

#model .model_artist {
  width: 100%;
  max-width: 285px;
  background: #fff;
  min-height: 380px;
  padding: 24px 30px;
  position: relative;
  transition: all 0.4s ease;
  margin: auto;
  transform: translateY(50px);
  opacity: 0;
}

#model .model_artist_img {
  max-height: 185px;
  height: 185px;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#model .model_artist_img img {
  max-height: 100%;
}

#model .model_artist_title {
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 3px;
}

#model .model_artist_title .jp {
  border-bottom: 1px solid #000;
}

#model .model_artist_title .en {
  display: block;
  font-size: 11px;
  margin-top: 5px;
}

#model .model_artist_desc {
  letter-spacing: 0.0125em;
  line-height: 1.67;
  font-weight: 500;
  text-align: justify;
}

#model .close {
  position: absolute;
  bottom: 5px;
  right: 11px;
  transform: rotate(45deg);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#model .close_icon {
  background: #333;
  height: 15px;
  width: 1px;
  position: absolute;
}

#model .close_icon::after {
  background: #333;
  content: "";
  position: absolute;
  left: -7px;
  top: 7px;
  height: 1px;
  width: 15px;
}

#model .top,
#model .bottom {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

#model .top {
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  top: 10px;
  right: 10px;
}

#model .bottom {
  border-left: 1px solid #808080;
  border-bottom: 1px solid #808080;
  left: 10px;
  bottom: 10px;
}

/*-------------------footer------------------*/
#footer {
  padding: 10px 13px 8px;
}
#footer .inner {
  border-top: #666 1px solid;
  padding-top: 25px;
}
#footer .note {
  margin-bottom: 20px;
  font-size: 12px;
}
#footer .inner2 {
  display: flex;
  justify-content: space-between;
}
#footer .inner .logo {
  width: 89px;
  text-align: left;
}
#footer .inner .copy {
  text-align: right;
  margin-bottom: 5px;
}
