@charset "UTF-8";
/* =========================================
line-up
========================================= */
.pg_lineup_header {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 74px;
  padding: 76px 0 67px;
  text-align: center;
}
.pg_lineup_header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 20px;
  margin: 0 auto;
  background: url(../../img/common/title_bg.svg) no-repeat 0 0/contain;
}

.pg_lineup_header_title {
  margin-bottom: 39px;
}
.pg_lineup_header_title .ja {
  display: block;
  padding-left: 0.1em;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.pg_lineup_header_title .en {
  display: block;
  padding-left: 0.1em;
  color: var(--color_accent);
  font-family: var(--font_accent);
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.pg_lineup_header_text {
  padding-left: 0.1em;
  font-size: 1.9rem;
  color: var(--color_accent);
  line-height: 1.75;
  letter-spacing: 0.1em;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_lineup_header {
    margin: 0 15px 38px;
    padding: 44px 0 46px;
  }
  .pg_lineup_header::after {
    width: 10px;
    height: 16px;
  }
  .pg_lineup_header_title {
    position: relative;
    margin-bottom: 30px;
  }
  .pg_lineup_header_title .ja {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  .pg_lineup_header_title .en {
    font-size: 1.3rem;
  }
  .pg_lineup_header_text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
/* =========================================
pg_lineup_body
========================================= */
.pg_lineup_body {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 55px;
}

.pg_lineup_body_text {
  margin-bottom: 44px;
  padding-left: 0.1em;
  text-align: center;
  letter-spacing: 0.1em;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_lineup_body {
    padding-bottom: 70px;
  }
  .pg_lineup_body_text {
    margin-bottom: 15px;
    padding-left: 0.05em;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
/* =========================================
pg_tab_wrap
========================================= */
.pg_tab_wrap {
  overflow: hidden;
}

/* =========================================
pg_tablist
========================================= */
.pg_tablist {
  display: flex;
  flex-wrap: wrap;
  margin: -14px -14px 85px;
}
.pg_tablist li {
  width: 229px;
  margin: 14px;
}

.pg_tablist_button {
  position: relative;
  width: 100%;
  padding: 4px 4px 15px 4px;
  border: 1px solid var(--color_accent);
  border-radius: 5px;
  text-align: center;
  transition: opacity 0.15s;
}
.pg_tablist_button::after {
  content: "";
  display: block;
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 23px;
  height: 23px;
  background: url(../../img/line-up/tab_corner.svg) no-repeat 0 0/contain;
}

.pg_tablist_button[aria-selected=true] {
  opacity: 0.3;
}

.pg_tablist_img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 3px;
}

.pg_tablist_text_ja {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  margin: 0 auto;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.pg_tablist_text_ja::after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: -22px;
  width: 14px;
  height: 14px;
  margin-left: 20px;
  background: url(../../img/common/icon_arrow.svg) no-repeat 0 0/contain;
}

.pg_tablist_text_en {
  display: block;
  padding-left: 0.1em;
  color: var(--color_accent);
  font-family: var(--font_accent);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .pg_tablist_button:hover {
    opacity: 0.6;
  }
  .pg_tablist_button[aria-selected=true]:hover {
    opacity: 0.3;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_tablist {
    margin: 0 0 30px;
  }
  .pg_tablist li {
    width: calc(50% - 22px);
    margin: 0 0 14px 15px;
  }
  .pg_tablist li:nth-child(even) {
    margin: 0 14px 15px;
  }
  .pg_tablist_button {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 3px 3px 10px 3px;
  }
  .pg_tablist_button::after {
    width: 17px;
    height: 17px;
  }
  .pg_tablist_img {
    margin-bottom: 10px;
    border-radius: 3px;
  }
  .pg_tablist_text_ja {
    min-width: 63px;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .pg_tablist_text_ja::after {
    top: 7px;
    right: -10px;
    width: 9px;
    height: 9px;
    margin-left: 10px;
  }
  .pg_tablist_text_en {
    font-size: 1.1rem;
    line-height: 1;
  }
}
/* =========================================
pg_tab_body
========================================= */
.pg_tab_body {
  overflow: hidden;
}

.pg_tabpanel[aria-hidden=true] {
  display: none;
}

.pg_tabpanel[aria-hidden=false] {
  display: block;
  animation: fadeInTab 0.6s;
}

/* fadeInTab ------------------ */
@keyframes fadeInTab {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUpWrap
.pg_tabpanel[aria-hidden=true] .pg_card_wrap {
  transform: translateY(30px);
}

.pg_tabpanel[aria-hidden=false] .pg_card_wrap {
  animation: fadeUpWrap 0.6s;
}
 ------------------ */
/* fadeUpTab
@keyframes fadeUpWrap {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
  }
}
 ------------------ */
/* =========================================
pg_card
========================================= */
.pg_card_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% + 65px);
}

.pg_card {
  width: 290px;
  margin-right: 65px;
  margin-bottom: 44px;
  word-break: break-word;
}

.pg_card_link {
  display: block;
  transition: opacity 0.2s;
}

.pg_card_photo {
  display: block;
  margin-bottom: 15px;
}
.pg_card_photo img {
  border-radius: 5px;
  overflow: hidden;
}

.pg_card_title {
  margin-bottom: 5px;
  font-size: 1.9rem;
  color: var(--color_accent);
  line-height: 1.5;
}
.pg_card_title::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 17px;
  height: 17px;
  background: url(../../img/common/icon_arrow_circle.svg) no-repeat 0 0/contain;
}
.pg_card_title span::after {
  content: "";
  display: inline-block;
  margin-left: -9px;
}

.pg_card_tags {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -5px 3px;
}
.pg_card_tags li {
  width: 65px;
  margin: 5px;
  padding-left: 0.1em;
  line-height: 1.3;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.pg_card_tags .color_01 {
  border: 1px solid rgba(236, 143, 50, 0.5);
  color: #ec8f32;
}
.pg_card_tags .color_02 {
  border: 1px solid rgba(133, 13, 99, 0.5);
  color: var(--color_accent);
}

.pg_card_text {
  font-weight: 400;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_card_wrap {
    display: block;
    width: auto;
    padding: 0 15px;
  }
  .pg_card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .pg_card + .pg_card {
    margin-top: 45px;
  }
}