@charset "UTF-8";
.SiteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  overflow-x: hidden;
}

.slick-track {
  margin: unset;
}

.clearfix::after, .slick-track::after {
  content: "";
  display: block;
  clear: both;
}

.float_left {
  float: left;
}
.float_left:nth-child(odd) {
  margin-right: 0.75rem;
}
@media screen and (max-width: 991px) {
  .float_left:nth-child(odd) {
    margin-right: 0;
  }
}
.float_left:nth-child(even) {
  margin-left: 0.75rem;
}
@media screen and (max-width: 991px) {
  .float_left:nth-child(even) {
    margin-left: 0;
  }
}
.float_left_padding_left {
  padding-left: 2.5rem !important;
}
@media screen and (max-width: 991px) {
  .float_left_padding_left {
    padding: 0;
  }
}

/*フェードイン*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scroll_up {
  transition: 1.1s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.scroll_left {
  transition: 1.1s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.scroll_right {
  transition: 1.1s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.ofelia_Regular {
  font-family: "ofelia-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ofelia_Middle {
  font-family: "ofelia-text", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ofelia_Bold {
  font-family: "ofelia-text", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m_plus_1p_Regular {
  font-family: "m-plus-1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m_plus_1p_Middle {
  font-family: "m-plus-1p", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m_plus_1p_Bold {
  font-family: "m-plus-1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sp {
  display: none;
}

.inner {
  width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1919px) {
  .inner {
    width: 100%;
  }
}

/*ナビゲーション*/
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  width: 187.5px;
  height: 375px;
  top: 0;
  right: 0;
  background-color: rgba(15, 10, 9, 0.9);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uq_spNavi_screen.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

.navigation {
  padding: 0;
  text-align: center;
}

.navigation_item {
  font-size: 18px;
  margin-bottom: 20px;
}

.navigation_item > a {
  color: #000;
  text-decoration: none;
}

.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* メニューのデザイン*/
.site-header a {
  margin-right: 0;
}

.hnav_1 {
  width: 136px;
  margin: 0 auto;
  text-align: right;
  font-size: 20px;
  padding: 15px 0;
}

.hnav_2 {
  width: 136px;
  margin: 15px auto 0 auto;
  text-align: right;
  font-size: 1.25rem;
  padding-top: 15px;
  border-top: 2px solid #fff;
}

.hnav_1 a {
  color: #fff;
}
.hnav_1 a .twitter_img {
  width: 34px;
  display: block;
  margin: 30px 0 0 auto;
}

.hnav_2 a {
  color: #fff;
}

.close {
  width: 30px;
  display: block;
  margin: 1.25rem 1.75rem 0 auto;
}

/* モーダル外側を覆う要素 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(241, 241, 242, 0.9);
  z-index: 10;
  width: 635px;
  height: 716px;
  padding: 35px 1.75rem 3rem 1.75rem;
  border: 1px solid #000;
}
@media screen and (max-width: 765px) {
  .modal {
    width: 90%;
    height: 90%;
  }
}
.modal.show {
  display: block;
}
.modal-alert {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(241, 241, 242, 0.9);
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem 1.75rem;
  border: 3px solid #000;
}
.modal-alert p {
  line-height: 3rem;
  font-size: 1.5rem;
}
.modal_content {
  width: 100%;
  white-space: pre-wrap;
  padding-right: 0.5rem;
}

/* モーダル内部 */
.modal-content {
  display: block;
  justify-content: center;
  align-items: center;
  height: calc(100% - 39px);
}

/* コンテンツを表示する要素 */
.modal-body {
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.modal-body .news_day {
  margin-bottom: 22px;
}
@media screen and (max-width: 765px) {
  .modal-body .news_day {
    font-size: 14px;
    line-height: 1.25rem;
    margin-bottom: 11px;
  }
}
.modal-body .news_title {
  font-size: 22px;
  padding-bottom: 11px;
  border-bottom: 2px solid #000;
  line-height: 30px;
  margin-bottom: 11px;
}
@media screen and (max-width: 765px) {
  .modal-body .news_title {
    font-size: 14px;
    line-height: 1.25rem;
  }
}
.modal-body .news_body {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}
.modal-body .news_body p br {
  display: none;
}
@media screen and (max-width: 765px) {
  .modal-body .news_body {
    font-size: 11px;
    line-height: 1.25rem;
  }
}
.modal-body .news_txt_link {
  font-size: 18px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 600px) {
  .modal-body .news_txt_link {
    font-size: 11px;
  }
}
.modal-body .news_txt_link .link_img {
  width: 29px;
  height: 29px;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .modal-body .news_txt_link .link_img {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
}

.modal-close {
  width: 100px;
  height: 39px;
  text-align: center;
  display: block !important;
  margin: 0 auto;
  border: 1px solid #ccc;
}

.first_view {
  position: relative;
  margin-bottom: 450px;
}
@media screen and (max-width: 991px) {
  .first_view {
    margin-bottom: 82px;
  }
}
.first_view .mv_img {
  width: 1636px;
  height: 100%;
}
@media screen and (max-width: 1636px) {
  .first_view .mv_img {
    width: 100%;
  }
}
.first_view .mv_img.pc {
  display: block;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 600px) {
  .first_view .mv_img.pc {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .first_view .mv_img.sp {
    display: block;
    margin: 50px 0 0 45px;
  }
}
.first_view .autograph_img {
  position: absolute;
  top: 1.5rem;
  left: 121px;
  width: 416px;
}
.first_view .autograph_img.pc {
  display: block;
}
@media screen and (max-width: 1100px) {
  .first_view .autograph_img.pc {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .first_view .autograph_img.sp {
    display: block;
    width: 167.5px;
    top: 12px;
    left: 10px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 600px) {
  .first_view .autograph_img.sp {
    top: -2.5rem;
  }
}
.first_view .title_img {
  width: 250px;
  position: absolute;
  right: 0;
  margin-top: -54.5px;
}
@media screen and (max-width: 991px) {
  .first_view .title_img.sp {
    display: block;
  }
}
.first_view .news {
  width: 1650px;
  height: 620px;
  background: rgba(245, 246, 247, 0.5);
  padding: 70px 88px 120px 160px;
  position: absolute;
  bottom: -190px;
}
@media screen and (max-width: 1800px) {
  .first_view .news {
    width: calc(100% - 155px);
    margin-right: 155px;
    padding: 70px 88px 120px 88px;
  }
}
@media screen and (max-width: 1100px) {
  .first_view .news {
    padding: 70px 88px;
    min-height: 377.59px;
    height: 100%;
  }
}
@media screen and (max-width: 991px) {
  .first_view .news {
    padding: 30px 25px;
    width: calc(100% - 45px);
    margin-left: 45px;
    position: unset;
  }
}
@media screen and (max-width: 600px) {
  .first_view .news {
    padding: 30px 10px 10px 1.5rem;
  }
}
.first_view .news_inner {
  display: flex;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .first_view .news_inner {
    display: block;
  }
}
.first_view .news_inner .twitter_img {
  width: 2.5rem;
  display: block;
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .twitter_img {
    display: none;
  }
}
.first_view .news_inner .news_list {
  padding: 0 2.5rem 0 156px;
}
@media screen and (max-width: 1800px) {
  .first_view .news_inner .news_list {
    width: calc(100% - 2.5rem - 105px);
    padding: 0 2.5rem 0 5rem;
  }
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .news_list {
    width: 100%;
    padding: 0 1.75rem;
  }
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_list {
    padding: 0;
  }
}
.first_view .news_inner .news_list .news_link {
  display: flex;
  padding: 25px 0;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.first_view .news_inner .news_list .news_link:hover {
  opacity: 0.5;
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_list .news_link {
    display: block;
    padding: 0.75rem 0;
  }
}
.first_view .news_inner .news_list .news_link .news_day {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 135px;
}
@media screen and (max-width: 1650px) {
  .first_view .news_inner .news_list .news_link .news_day {
    margin-right: 67.5px;
  }
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .news_list .news_link .news_day {
    font-size: 11px;
    margin-right: 17px;
  }
}
@media screen and (max-width: 765px) {
  .first_view .news_inner .news_list .news_link .news_day {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_list .news_link .news_day {
    margin-bottom: 0.5rem;
  }
}
.first_view .news_inner .news_list .news_link .news_title {
  width: calc(100% - 220px);
  display: inline-block;
}
@media screen and (max-width: 1650px) {
  .first_view .news_inner .news_list .news_link .news_title {
    width: calc(100% - 152.5px);
  }
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .news_list .news_link .news_title {
    width: calc(100% - 75.3px);
  }
}
@media screen and (max-width: 765px) {
  .first_view .news_inner .news_list .news_link .news_title {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_list .news_link .news_title {
    width: 100%;
  }
}
.first_view .news_inner .news_list button {
  display: none;
}
.first_view .news_inner .news_list_link {
  width: 105px;
  height: 44px;
  text-align: center;
  display: block;
  border: 2px solid #000;
  font-size: 18px;
  padding: 10px 0;
  color: #000;
  margin: auto 0 0 auto;
}
@media screen and (max-width: 765px) {
  .first_view .news_inner .news_list_link {
    font-size: 11px;
    width: 75px;
    height: 30px;
    padding: 7.5px 0;
  }
}
.first_view .news_inner .news_txt_link {
  font-size: 18px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_txt_link {
    font-size: 11px;
  }
}
.first_view .news_inner .news_txt_link .link_img {
  width: 29px;
  height: 29px;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .first_view .news_inner .news_txt_link .link_img {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
}
.first_view .news_inner .news_img {
  position: absolute;
  width: 73px;
  bottom: -88px;
  right: -200px;
}
@media screen and (max-width: 1100px) {
  .first_view .news_inner .news_img {
    bottom: -70px;
  }
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .news_img.pc {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .first_view .news_inner .news_img.sp {
    width: 38px;
    display: block;
    left: -70px;
    top: 33%;
  }
}
.first_view .menu {
  width: 820px;
  height: 160px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  padding: 60px 0 45px 52px;
}
.first_view .menu_list {
  border-bottom: 2px solid #000;
  display: flex;
}
.first_view .menu_list_item {
  margin-right: 110px;
  font-size: 1.5rem;
  padding-bottom: 30px;
}
.first_view .menu_list_item:first-child {
  margin-left: 45px;
}
.first_view .menu_list_item a {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.first_view .menu_list_item a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1350px) {
  .first_view .menu {
    display: none;
  }
}
.first_view .hamburger_menu {
  display: none;
}
@media screen and (max-width: 1350px) {
  .first_view .hamburger_menu {
    width: 30px;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    display: block;
    z-index: 1;
  }
  .first_view .hamburger_menu img {
    width: 100%;
  }
}

.second_view {
  position: relative;
}
.second_view .profile_img_view {
  position: relative;
  margin: 0 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.second_view .profile_txt_img1 {
  width: 76px;
  position: absolute;
  bottom: 70px;
  left: -120px;
}
@media screen and (max-width: 1793px) {
  .second_view .profile_txt_img1 {
    display: none;
  }
}
.second_view .profile_txt_img2 {
  width: 76px;
  position: absolute;
  bottom: 70px;
  left: 37px;
  display: none;
}
@media screen and (max-width: 1793px) {
  .second_view .profile_txt_img2 {
    display: block;
  }
}
@media screen and (max-width: 765px) {
  .second_view .profile_txt_img2 {
    width: 34px;
    top: 31px;
    bottom: 0;
    left: unset;
    right: 0;
  }
}
.second_view .profile_img {
  width: 1636px;
  height: 100%;
}
.second_view .profile_img.pc {
  display: block;
}
@media screen and (max-width: 765px) {
  .second_view .profile_img.pc {
    display: none;
  }
}
@media screen and (max-width: 765px) {
  .second_view .profile_img {
    width: 100%;
    height: 378px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
  .second_view .profile_img.sp {
    display: block;
  }
}
.second_view .profile_list {
  background: rgba(241, 242, 243, 0.9);
  width: 722px;
  height: 562px;
  position: absolute;
  right: 0;
  bottom: -53px;
  padding: 92px 92px 89px 92px;
}
@media screen and (max-width: 765px) {
  .second_view .profile_list {
    width: calc(100% - 55px);
    margin-left: 55px;
    padding: 43px 30px;
    height: auto;
    bottom: -159px;
  }
}
.second_view .profile_list .flex {
  display: flex;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 765px) {
  .second_view .profile_list .flex {
    margin-bottom: 14px;
  }
}
.second_view .profile_list .flex:last-child {
  margin-bottom: 0;
}
.second_view .profile_list_ttl {
  font-size: 18px;
  width: 75px;
  margin-right: 80px;
}
@media screen and (max-width: 765px) {
  .second_view .profile_list_ttl {
    font-size: 13px;
    width: 55px;
    margin-right: 18px;
  }
}
.second_view .profile_list_txt {
  font-size: 18px;
}
@media screen and (max-width: 765px) {
  .second_view .profile_list_txt {
    font-size: 13px;
    width: calc(100% - 73px);
  }
}

.third_view {
  margin-top: 354px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .third_view {
    margin-top: 217px;
  }
}
@media screen and (max-width: 765px) {
  .third_view {
    margin-top: 285.5px;
  }
}
.third_view .voice {
  width: 1295px;
  height: 375px;
  position: relative;
  background: #f1f2f3;
  padding: 53px 214px 23px 247px;
}
.third_view .voice.pc {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1565px) {
  .third_view .voice.pc {
    width: 80%;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 1350px) {
  .third_view .voice.pc {
    padding-left: 120px;
  }
}
@media screen and (max-width: 1100px) {
  .third_view .voice.pc {
    width: calc(100% - 1.25rem);
  }
}
@media screen and (max-width: 991px) {
  .third_view .voice.pc {
    padding: 1.75rem;
    margin-left: 1.25rem;
    width: calc(100% - 1.25rem);
    height: 100%;
  }
}
@media screen and (max-width: 765px) {
  .third_view .voice.pc {
    padding: 36px 1.25rem 30px 23px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .third_view .voice.pc {
    margin-left: 10px;
    width: calc(100% - 10px);
    padding: 36px 10px 30px 10px;
  }
}
.third_view .voice_inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.third_view .voice .voice_img {
  width: 350px;
  height: 45.17px;
  position: absolute;
  left: -270px;
}
.third_view .voice .voice_img.pc {
  display: block;
}
@media screen and (max-width: 1350px) {
  .third_view .voice .voice_img.pc {
    left: 0;
    top: -65px;
  }
}
@media screen and (max-width: 991px) {
  .third_view .voice .voice_img.pc {
    width: 338px;
    height: auto;
  }
}
@media screen and (max-width: 765px) {
  .third_view .voice .voice_img.pc {
    width: 168.5px;
    height: auto;
    top: -40.25px;
    left: 0;
  }
}
.third_view .voice .voice_list {
  display: flex;
}
.third_view .voice .voice_list > div {
  padding-right: 110px;
}
@media screen and (max-width: 1355px) {
  .third_view .voice .voice_list > div {
    padding-right: 65px;
  }
}
@media screen and (max-width: 1100px) {
  .third_view .voice .voice_list > div {
    padding-right: 80px;
  }
  .third_view .voice .voice_list > div:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .third_view .voice .voice_list > div:first-child {
    padding-right: 40px;
  }
}
.third_view .voice .voice_list .voice_item {
  display: flex;
  align-items: center;
  margin-bottom: 37px;
}
.third_view .voice .voice_list .voice_item .playback {
  display: block;
}
.third_view .voice .voice_list .voice_item .stop {
  display: none;
}
.third_view .voice .voice_list .voice_item.playing .playback {
  display: none;
}
.third_view .voice .voice_list .voice_item.playing .stop {
  display: block;
}
.third_view .voice .voice_list .voice_item .playback, .third_view .voice .voice_list .voice_item .stop {
  width: 23px;
  height: 23px;
  margin-right: 4px;
  cursor: pointer;
}
@media screen and (max-width: 765px) {
  .third_view .voice .voice_list .voice_item .playback, .third_view .voice .voice_list .voice_item .stop {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.third_view .voice .voice_list .voice_item .playback img, .third_view .voice .voice_list .voice_item .stop img {
  width: 100%;
  height: 100%;
}
.third_view .voice .voice_list .voice_item:nth-child(9), .third_view .voice .voice_list .voice_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 765px) {
  .third_view .voice .voice_list .voice_item.items_start {
    align-items: start;
    margin-bottom: 29.41px;
  }
}
.third_view .voice .voice_list .voice_item.items_start:last-child {
  margin-bottom: 0;
}
.third_view .voice .voice_list .voice_item p {
  font-size: 18px;
}
@media screen and (max-width: 765px) {
  .third_view .voice .voice_list .voice_item p {
    font-size: 0.75rem;
  }
  .third_view .voice .voice_list .voice_item p .sp {
    display: block;
  }
}

.four_view {
  margin-top: 253px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .four_view {
    margin-top: 161px;
  }
}
@media screen and (max-width: 765px) {
  .four_view {
    margin-top: 186px;
  }
}
.four_view .bg_four_view {
  width: calc(100% - 117px);
  height: 110px;
  background: #f1f2f3;
  position: absolute;
  z-index: -1;
  top: -3rem;
}
@media screen and (max-width: 991px) {
  .four_view .bg_four_view.sp {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .four_view .bg_four_view {
    width: calc(100% - 58px);
  }
}
.four_view .year_menu {
  background: #f8f8f8;
  width: 1560px;
  height: 120px;
  padding: 35px 3rem;
  margin: 0 0 0 auto;
  display: flex;
}
@media screen and (max-width: 1717px) {
  .four_view .year_menu {
    width: calc(100% - 155px);
    overflow-x: scroll;
  }
}
@media screen and (max-width: 991px) {
  .four_view .year_menu {
    display: none;
  }
}
.four_view .year_menu_link {
  font-size: 1.5rem;
  line-height: 36px;
  padding: 0 0.5rem 15px 0.5rem;
  margin-right: 1.75rem;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.four_view .year_menu_link:hover {
  opacity: 0.5;
}
.four_view .year_menu_link.active {
  border-bottom: 1px solid #000;
}
.four_view .year_menu_link:last-child {
  margin-right: 0;
}
.four_view .performance {
  width: 1720px;
  height: 877px;
  padding: 60px 60px 145px 60px;
  margin: 1.5rem auto 0 auto;
}
@media screen and (max-width: 1720px) {
  .four_view .performance {
    margin-right: 55px;
    width: calc(100% - 55px);
  }
}
@media screen and (max-width: 1500px) {
  .four_view .performance {
    width: calc(100% - 160px);
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 1183px) {
  .four_view .performance {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .four_view .performance {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 60px 22px 65px 22px;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance {
    padding-top: 36px;
  }
}
.four_view .performance_inner {
  width: 95%;
}
@media screen and (max-width: 1500px) {
  .four_view .performance_inner {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .four_view .performance_inner {
    display: block;
  }
}
.four_view .performance_inner nav {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 1rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.four_view .performance .category_ttl {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .four_view .performance .category_ttl {
    min-height: 4.5rem;
  }
}
@media screen and (max-width: 991px) {
  .four_view .performance .category_ttl {
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 2.5rem;
    min-height: 3rem;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .category_ttl {
    padding-left: 1rem;
    min-height: 2rem;
  }
}
.four_view .performance .category_ttl .category {
  width: 14px;
  display: block;
  margin-right: 10px;
}
.four_view .performance .category_ttl .category_img {
  width: 100%;
}
.four_view .performance .category_ttl .ttl {
  width: calc(100% - 1.75rem);
  line-height: 1.5rem;
}
@media screen and (max-width: 765px) {
  .four_view .performance .category_ttl .ttl {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}
.four_view .performance .pagination {
  display: flex;
  position: relative;
  align-items: center;
}
.four_view .performance .pagination-container {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 1rem;
}
.four_view .performance .pagination li {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  margin-right: 50px;
  font-size: 18px;
}
.four_view .performance .pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 2.5rem;
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li a {
    line-height: 30px;
  }
}
.four_view .performance .pagination li:first-child {
  display: none;
}
.four_view .performance .pagination li:last-child {
  display: none;
}
.four_view .performance .pagination li.prev {
  border: none;
}
.four_view .performance .pagination li.prev a {
  content: url("../images/pc/left-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li.prev a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .pagination li.prev a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.four_view .performance .pagination li.prev.disabled a {
  content: url("../images/pc/left-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li.prev.disabled a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .pagination li.prev.disabled a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li {
    width: 30px;
    height: 30px;
    margin-right: 1.25rem;
  }
}
.four_view .performance .pagination li.next {
  margin-right: 0;
  border: none;
}
.four_view .performance .pagination li.next a {
  content: url("../images/pc/right-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0;
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li.next a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .pagination li.next a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.four_view .performance .pagination li.next.disabled a {
  content: url("../images/pc/right-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .four_view .performance .pagination li.next.disabled a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .pagination li.next.disabled a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 765px) {
  .four_view .performance .pagination li {
    display: none;
  }
  .four_view .performance .pagination li.prev, .four_view .performance .pagination li.next {
    display: block;
  }
  .four_view .performance .pagination li.prev {
    margin-right: 2.5rem !important;
  }
}
.four_view .performance .pagination li.navi-active {
  background: #999;
  border: none;
}
.four_view .filmography_img {
  position: absolute;
  width: 73px;
  right: 89px;
  bottom: 1rem;
}
.four_view .filmography_img.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .four_view .filmography_img.pc {
    display: none;
  }
}
.four_view .filmography_img.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .four_view .filmography_img.sp {
    display: block;
    width: 350px;
    top: -4rem;
    left: 10px;
    bottom: unset;
  }
}
@media screen and (max-width: 1900px) {
  .four_view .filmography_img {
    right: 55px;
  }
}

.five_view {
  margin-top: 273px;
  display: flex;
  background: linear-gradient(to right, #f1f2f3 0, #f1f2f3 277px, #FFF 277px, #FFF 100%);
  position: relative;
}
@media screen and (max-width: 1570px) {
  .five_view {
    padding-top: 75px;
  }
}
@media screen and (max-width: 991px) {
  .five_view {
    background: linear-gradient(to right, #fafafa 0, #fafafa 243px, #FFF 243px, #FFF 100%);
  }
}
@media screen and (max-width: 765px) {
  .five_view {
    margin-top: 87.5px;
    padding-top: 38px;
  }
}
@media screen and (max-width: 600px) {
  .five_view {
    background: linear-gradient(to right, #fafafa 0, #fafafa 121.5px, #FFF 121.5px, #FFF 100%);
  }
}
.five_view .contact_gray {
  width: 277px;
  height: 100%;
  padding: 235px 2.5rem 235px 160px;
  display: block;
}
@media screen and (max-width: 1570px) {
  .five_view .contact_gray {
    display: none;
  }
}
.five_view .contact_gray_img {
  display: block;
  width: 78px;
}
.five_view .contact_gray_img_sp {
  width: 495px;
  display: none;
  position: absolute;
  top: -37px;
  left: 1.25rem;
}
@media screen and (max-width: 1570px) {
  .five_view .contact_gray_img_sp {
    display: block;
  }
}
@media screen and (max-width: 765px) {
  .five_view .contact_gray_img_sp {
    width: 244px;
  }
}
.five_view .form {
  width: 1545px;
  padding-left: 120px;
}
@media screen and (max-width: 1920px) {
  .five_view .form {
    padding-right: 120px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1300px) {
  .five_view .form {
    width: 90%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 765px) {
  .five_view .form {
    padding: 0;
  }
}
.five_view .form_inner {
  width: 1045px;
}
@media screen and (max-width: 1300px) {
  .five_view .form_inner {
    width: 100%;
  }
}
.five_view .form_inner .main_ttl {
  font-size: 1.25rem;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .main_ttl {
    font-size: 13px;
    text-align: left;
    margin-bottom: 19px;
  }
}
.five_view .form_inner .sub_ttl {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 84px;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .sub_ttl {
    font-size: 10px;
    text-align: left;
    margin-bottom: 45px;
  }
}
.five_view .form_inner .flex {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .flex {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .five_view .form_inner .flex {
    margin-bottom: 30px;
  }
}
.five_view .form_inner .flex .ttl {
  font-size: 18px;
  width: 290px;
  margin-top: 18px;
  margin-right: 10px;
  display: flex;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .flex .ttl {
    margin-bottom: 1.75rem;
    font-size: 0.75rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .five_view .form_inner .flex .ttl {
    margin-bottom: 9px;
  }
}
.five_view .form_inner .flex .ttl.mb_1 {
  margin-bottom: 122px;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .flex .ttl.mb_1 {
    margin-bottom: 1.75rem;
  }
}
@media screen and (max-width: 600px) {
  .five_view .form_inner .flex .ttl.mb_1 {
    margin-bottom: 9px;
  }
}
.five_view .form_inner .flex .ttl span {
  display: block;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .flex .ttl span {
    margin-right: 0.5rem;
    font-size: 0.75rem;
  }
}
.five_view .form_inner .flex .input_err {
  width: calc(100% - 300px);
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .flex .input_err {
    width: 100%;
  }
}
.five_view .form_inner .flex .input_txt {
  width: 740px;
  height: 60px;
  padding: 0 0.75rem;
  background: #f1f1f1;
}
@media screen and (max-width: 1300px) {
  .five_view .form_inner .flex .input_txt {
    width: 100%;
  }
}
.five_view .form_inner .flex .textarea_txt {
  width: 740px;
  height: 450px;
  padding: 0.75rem;
  background: #f1f1f1;
}
@media screen and (max-width: 1300px) {
  .five_view .form_inner .flex .textarea_txt {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .five_view .form_inner .flex .textarea_txt {
    height: 250px;
  }
}
.five_view .form_inner .flex .err_txt {
  font-size: 0.75rem;
  color: #f00;
  margin-top: 0.5rem;
}
.five_view .form_inner .btn_area {
  margin: 137px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .btn_area {
    margin: 67px auto 0 auto;
  }
}
.five_view .form_inner .btn_area .btn {
  border: 2px solid #000;
  background: #FFF;
  width: 318px;
  height: 75px;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .five_view .form_inner .btn_area .btn {
    font-size: 0.75rem;
    width: 156px;
    height: 44.5px;
  }
}

.footer {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 350px 0 50px 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 97.5px 0 35px 0;
    font-size: 9px;
  }
}

/* プルダウンの見た目を設定する */
.custom-select {
  display: none;
  position: relative;
  border-radius: 4px;
  width: 210px;
  height: 39px;
  text-align: center;
  line-height: 39px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .custom-select {
    display: block;
  }
}
.custom-select::after {
  content: "";
  background: url(../images/sp/triangle.png) no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 0.75rem;
  top: 14px;
}

/* 選択されたオプションの見た目を設定する */
.select-selected {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.select-selected br {
  display: none;
}

/* マウスが親要素に乗ったときにオプションリストを表示する */
.custom-select:hover .select-options {
  display: block !important;
}

/* オプションリストの見た目を設定する */
.select-options {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

/* オプションの見た目を設定する */
.select-option {
  width: 100%;
  display: block;
  padding: 8px;
  cursor: pointer;
}
.select-option:hover {
  background-color: #f2f2f2;
}

/* 選択されたオプションの見た目を設定する */
.select-option.selected {
  background-color: #f2f2f2;
}

/* 選択されたオプションの値を表示する */
.selected-value {
  margin-top: 8px;
}

.newslist_view {
  position: relative;
}
.newslist_view .newslist_img {
  width: 960px;
  margin: 0 0 500px auto;
}
.newslist_view .newslist_img.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .newslist_view .newslist_img.pc {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .newslist_img.sp {
    display: block;
    width: 50%;
    margin: 50px 0 0 auto;
  }
}
.newslist_view .news_img {
  position: absolute;
  width: 300px;
  display: block;
  left: -2.5rem;
  top: -137px;
}
@media screen and (max-width: 1100px) {
  .newslist_view .news_img {
    top: -109px;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .news_img {
    width: 142.5px;
    top: -46px;
    left: -0.5rem;
  }
}
.newslist_view .autograph_img {
  position: absolute;
  top: 22px;
  left: 100px;
  width: 273px;
}
.newslist_view .autograph_img.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .newslist_view .autograph_img.pc {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .autograph_img.sp {
    display: block;
    width: 167.5px;
    top: -2.5rem;
    left: 10px;
  }
}
@media screen and (max-width: 991px) and (max-width: 600px) {
  .newslist_view .autograph_img.sp {
    width: 109px;
  }
}
.newslist_view .name_img {
  position: absolute;
  top: -3rem;
  left: 180px;
  width: 130px;
}
@media screen and (max-width: 991px) {
  .newslist_view .name_img {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .newslist_view .name_img {
    left: 125px;
  }
}
.newslist_view .news {
  width: 1500px;
  background: rgba(245, 246, 247, 0.5);
  padding: 100px 120px 65px 120px;
  position: absolute;
  top: 500px;
  left: 0;
  right: 0;
  margin: 0 auto;
  min-height: 1310px;
}
@media screen and (max-width: 1544px) {
  .newslist_view .news {
    margin: 0 1.25rem;
    width: calc(100% - 2.5rem);
  }
}
@media screen and (max-width: 1100px) {
  .newslist_view .news {
    padding: 70px 88px 65px 88px;
    min-height: 1276px;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .news {
    padding: 30px 25px 65px 25px;
    width: calc(100% - 2.5rem);
    top: 35%;
    min-height: 1226px;
  }
}
@media screen and (max-width: 600px) {
  .newslist_view .news {
    padding: 30px 10px;
    min-height: 1024px;
  }
}
.newslist_view .news_inner {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .newslist_view .news_inner {
    display: block;
  }
}
.newslist_view .news_inner .twitter_img {
  width: 2.5rem;
  display: block;
}
@media screen and (max-width: 991px) {
  .newslist_view .news_inner .twitter_img {
    display: none;
  }
}
.newslist_view .news_inner .news_list {
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .newslist_view .news_inner .news_list {
    padding: 0 1.75rem;
  }
}
.newslist_view .news_inner .news_list button {
  display: none;
}
.newslist_view .news_inner .news_list .news_link {
  display: flex;
  min-height: 70px;
  padding: 5px 0;
  line-height: 2;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .newslist_view .news_inner .news_list .news_link {
    display: block;
    padding: 0.75rem 0;
  }
}
.newslist_view .news_inner .news_list .news_link .news_day {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 135px;
}
@media screen and (max-width: 1650px) {
  .newslist_view .news_inner .news_list .news_link .news_day {
    margin-right: 67.5px;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .news_inner .news_list .news_link .news_day {
    font-size: 11px;
    margin-right: 17px;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news_inner .news_list .news_link .news_day {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  .newslist_view .news_inner .news_list .news_link .news_day {
    margin-bottom: 0.5rem;
  }
}
.newslist_view .news_inner .news_list .news_link .news_title {
  width: calc(100% - 220px);
  display: inline-block;
}
@media screen and (max-width: 1650px) {
  .newslist_view .news_inner .news_list .news_link .news_title {
    width: calc(100% - 152.5px);
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .news_inner .news_list .news_link .news_title {
    width: calc(100% - 75.3px);
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news_inner .news_list .news_link .news_title {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .newslist_view .news_inner .news_list .news_link .news_title {
    width: 100%;
  }
}
.newslist_view .news_inner .news_list_link {
  width: 140px;
  height: 2.5rem;
  text-align: center;
  display: block;
  border: 2px solid #000;
  font-size: 18px;
  padding: 10px 0;
  color: #000;
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 765px) {
  .newslist_view .news_inner .news_list_link {
    font-size: 11px;
    width: 75px;
    height: 30px;
    margin-top: 2.5rem;
    padding: 7.5px 0;
  }
}
.newslist_view .news_inner .news_list nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.newslist_view .news_inner .news_txt_link {
  font-size: 18px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 600px) {
  .newslist_view .news_inner .news_txt_link {
    font-size: 11px;
  }
}
.newslist_view .news_inner .news_txt_link .link_img {
  width: 29px;
  height: 29px;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .newslist_view .news_inner .news_txt_link .link_img {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
}
.newslist_view .news .pagination {
  display: flex;
  position: relative;
  align-items: center;
}
.newslist_view .news .pagination-container {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 1rem;
}
.newslist_view .news .pagination li {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  margin-right: 50px;
  font-size: 18px;
}
.newslist_view .news .pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 2.5rem;
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li a {
    line-height: 30px;
  }
}
.newslist_view .news .pagination li:first-child {
  display: none;
}
.newslist_view .news .pagination li:last-child {
  display: none;
}
.newslist_view .news .pagination li.prev {
  border: none;
}
.newslist_view .news .pagination li.prev a {
  content: url("../images/pc/left-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li.prev a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news .pagination li.prev a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.newslist_view .news .pagination li.prev.disabled a {
  content: url("../images/pc/left-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li.prev.disabled a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news .pagination li.prev.disabled a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li {
    width: 30px;
    height: 30px;
    margin-right: 1.25rem;
  }
}
.newslist_view .news .pagination li.next {
  margin-right: 0;
  border: none;
}
.newslist_view .news .pagination li.next a {
  content: url("../images/pc/right-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0;
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li.next a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news .pagination li.next a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.newslist_view .news .pagination li.next.disabled a {
  content: url("../images/pc/right-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .newslist_view .news .pagination li.next.disabled a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news .pagination li.next.disabled a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .news .pagination li {
    display: none;
  }
  .newslist_view .news .pagination li.prev, .newslist_view .news .pagination li.next {
    display: block;
  }
  .newslist_view .news .pagination li.prev {
    margin-right: 2.5rem !important;
  }
}
.newslist_view .news .pagination li.navi-active {
  background: #999;
  border: none;
}
.newslist_view .menu {
  width: 820px;
  height: 160px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  padding: 60px 0 45px 52px;
}
.newslist_view .menu_list {
  border-bottom: 2px solid #000;
  display: flex;
}
.newslist_view .menu_list_item {
  margin-right: 110px;
  font-size: 1.5rem;
  padding-bottom: 30px;
}
.newslist_view .menu_list_item:first-child {
  margin-left: 45px;
}
.newslist_view .menu_list_item a {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.newslist_view .menu_list_item a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1350px) {
  .newslist_view .menu {
    display: none;
  }
}
.newslist_view .hamburger_menu {
  display: none;
}
@media screen and (max-width: 1350px) {
  .newslist_view .hamburger_menu {
    width: 30px;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    display: block;
    z-index: 1;
  }
  .newslist_view .hamburger_menu img {
    width: 100%;
  }
}
.newslist_view .pagination {
  display: flex;
  position: relative;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 55px auto 0 auto;
}
@media screen and (max-width: 1100px) {
  .newslist_view .pagination {
    margin-top: 1.5rem;
  }
}
.newslist_view .pagination .page-item {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  margin-right: 50px;
}
.newslist_view .pagination .page-item a, .newslist_view .pagination .page-item span {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 2.5rem;
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item a, .newslist_view .pagination .page-item span {
    line-height: 30px;
  }
}
.newslist_view .pagination .page-item:first-child {
  border: none;
}
.newslist_view .pagination .page-item:first-child span {
  content: url("../images/pc/left-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item:first-child span {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .pagination .page-item:first-child span {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.newslist_view .pagination .page-item:first-child a {
  content: url("../images/pc/left-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item:first-child a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .pagination .page-item:first-child a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item {
    width: 30px;
    height: 30px;
    margin-right: 1.25rem;
  }
}
.newslist_view .pagination .page-item:last-child {
  margin-right: 0;
  border: none;
}
.newslist_view .pagination .page-item:last-child span {
  content: url("../images/pc/right-grey.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item:last-child span {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .pagination .page-item:last-child span {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
.newslist_view .pagination .page-item:last-child a {
  content: url("../images/pc/right-black.png");
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 991px) {
  .newslist_view .pagination .page-item:last-child a {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .pagination .page-item:last-child a {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
  }
}
@media screen and (max-width: 765px) {
  .newslist_view .pagination .page-item {
    display: none;
  }
  .newslist_view .pagination .page-item:first-child, .newslist_view .pagination .page-item:last-child {
    display: block;
  }
  .newslist_view .pagination .page-item:first-child {
    margin-right: 2.5rem;
  }
}
.newslist_view .pagination .page-item.active {
  background: #999;
}

.tab {
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.tab-relative {
  position: relative;
}

.tab-menu {
  display: flex;
}

.tab-item:not(:first-child) {
  border-left: none;
}

/* コンテンツは原則非表示 */
.tab-content {
  display: none;
}

/* .showがついたコンテンツのみ表示 */
.tab-content.show {
  display: block;
}

.anime-btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative !important;
  overflow: hidden !important;
  /*ボタンの形状*/
  text-decoration: none !important;
  border: 1px solid #000 !important; /* ボーダーの色と太さ */
  text-align: center !important;
  outline: none !important;
  /*アニメーションの指定*/
  transition: ease 0.2s !important;
  color: #000 !important;
}

/*ボタン内spanの形状*/
.anime-btn span {
  position: relative !important;
  z-index: 3 !important; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #000 !important;
}

.anime-btn:hover span {
  color: #fff !important;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#slide-line {
  position: absolute;
  bottom: 34px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  #slide-line {
    display: none;
  }
}

.slide-arrow {
  position: absolute;
  bottom: -2rem;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.prev-arrow {
  left: 2.5rem;
}

.next-arrow {
  left: 7.5rem;
}

.slick-slide {
  min-height: 672px;
}
@media screen and (max-width: 991px) {
  .slick-slide {
    min-height: 583px;
  }
}

.slide-dots {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5rem auto 0 auto;
}
@media screen and (max-width: 991px) {
  .slide-dots {
    margin: 1.25rem auto 0 auto;
  }
}

.slide-dots li {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slide-dots li button::before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-dots .slick-active button::before {
  opacity: 0.75;
  color: black;
}/*# sourceMappingURL=style.css.map */