@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
* html .clearfix {
  height: 1%;
  /*\*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Inline Align ------------------------------------------------------------ */
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}

* {
  box-sizing: border-box;
}

/*common*/
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  color: #fff;
  background: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
}
.is_popup {
  overflow: hidden;
  height: 100vh;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw;
  }
}
@media screen and (max-width: 834px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6667vw;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none;
  }
}
/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}

.agdasima {
  font-family: "Agdasima", sans-serif;
  font-weight: 700;
}

/* !alvark_lp_wrapper
---------------------------------------------------------- */
#alvark_lp_wrapper {
  position: relative;
  z-index: 2;
  padding-top: 7.3rem;
}

/* !header
---------------------------------------------------------- */
#alvark_lp_header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 0 7rem;
  width: 100%;
  background: #000;
}
#alvark_lp_headlogo {
  display: flex;
  align-items: center;
  gap: 0 3.2rem;
  height: 7.3rem;
}
#alvark_lp_headlogo .logo_albark img {
  width: 6.4rem;
}
#alvark_lp_headlogo .logo_shoheikikuchi img {
  width: 11.4rem;
}
.alvark_lp_btn_menu {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 7.3rem;
  height: 7.3rem;
  background: url(../image/ico_menu.svg) no-repeat center #fff;
  background-size: 3.7rem;
}
.alvark_lp_btn_menu.active {
  right: 7rem;
  top: 7rem;
  width: 5rem;
  height: 5rem;
  background-image: url(../image/ico_close.svg);
  background-color: transparent;
  background-size: 100%;
}

#alvark_lp_navi {
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 10rem;
  position: fixed;
  top: 0;
  left: 0;
  transition-duration: 0.3s;
  z-index: 3;
  padding: 7rem 5rem;
  width: 100%;
  max-height: 100vh;
  background: #000;
}
#alvark_lp_navi.open {
  opacity: 1;
  visibility: visible;
}
#alvark_lp_navi ul {
  width: 50%;
  max-width: 40rem;
}
#alvark_lp_navi li {
  height: auto;
  border-top: 1px solid #b3b3b3;
}
#alvark_lp_navi li a {
  align-items: flex-start;
  margin-bottom: 0;
  padding: 1.6rem 0;
  text-align: left;
}
#alvark_lp_navi .eng {
  font-size: 4.8rem;
}
#alvark_lp_navi .jap {
  font-size: 1.4rem;
}

/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {
  #alvark_lp_header {
    padding: 0 1.6rem;
  }
  #alvark_lp_headlogo {
    gap: 0 1.6rem;
    height: 5.3rem;
  }
  #alvark_lp_headlogo .logo_albark img {
    width: 5.4rem;
  }
  #alvark_lp_headlogo .logo_shoheikikuchi img {
    width: 9.7rem;
  }
  .alvark_lp_btn_menu {
    right: 1.6rem;
    width: 2.9rem;
    height: 5.3rem;
    background: url(../image/ico_menu_sp.svg) no-repeat center;
    background-size: 100%;
  }
  .alvark_lp_btn_menu.active {
    right: 1.6rem;
    top: 2.4rem;
    width: 3rem;
    height: 3rem;
  }

  #alvark_lp_navi {
    display: block;
    -webkit-overflow-scrolling: touch;
    padding: 7.8rem 1.6rem;
  }
  #alvark_lp_navi ul {
    width: 100%;
    max-width: inherit;
  }
  #alvark_lp_navi li a {
    padding: 1.6rem 0;
  }
}

/* alvark_lp_footer
-----------------------------------------------------------*/
.alvark_lp_pagetop {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.5rem;
  background: #e60021;
}

.alvark_lp_footIn {
  padding: 7.2rem 5rem 12.6rem;
}
.alvark_lp_footer .snsTit {
  margin-bottom: 2.4rem;
  text-align: center;
  font-weight: 700;
}
.alvark_lp_footer .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}
.alvark_lp_footer .sns a {
  margin: 0 0.8rem;
  width: 17.5rem;
}
.alvark_lp_footer .footlinks {
  margin: 0 auto;
  max-width: 49.8rem;
  width: 100%;
}
.alvark_lp_footer .footlinks h3 {
  display: flex;
  align-items: flex-end;
  margin-bottom: 3.2rem;
  height: 7.7rem;
  color: #e60021;
}
.alvark_lp_footer .footlinks .logo img {
  width: 12.4rem;
}
.alvark_lp_footer .footlinks li {
  margin-top: -1px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.alvark_lp_footer .footlinks li a {
  display: flex;
  align-items: center;
  padding: 1rem 2.4rem 1rem 0.6rem;
  height: 5.6rem;
  background: url(../image/ico_link.svg) no-repeat right 0.8rem center;
  background-size: 0.8rem;
  font-weight: 700;
  font-size: 1.4rem;
}
.alvark_lp_footer .footlinks li .icon {
  width: 2.6rem;
  margin-right: 1.6rem;
}

.alvark_lp_footer .logo {
  margin-top: 5rem;
  text-align: center;
}

.alvark_lp_footer .logo img {
  width: 14rem;
}

.alvark_lp_footer #copyright {
  margin-top: 4rem;
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
}

/*** hover ***/
@media screen and (min-width: 835px) {
  .alvark_lp_footer a:hover {
    opacity: 0.7;
  }
}
/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {
  .alvark_lp_pagetop {
    height: 5.5rem;
  }
  .alvark_lp_footIn {
    padding: 6.4rem 2.5rem 18rem;
  }

  .alvark_lp_footer .snsTit {
    margin-bottom: 1.6rem;
  }
  .alvark_lp_footer .sns {
    margin-bottom: 7.5rem;
  }
  .alvark_lp_footer .sns a {
    margin: 0 0.4rem;
    width: 10.9rem;
  }
  .alvark_lp_footer .footlinks {
    grid-template-columns: repeat(1, 1fr);
    gap: 6.4rem 0;
  }
  .alvark_lp_footer .footlinks h3 {
    display: block;
    height: auto;
    text-align: center;
  }
  .alvark_lp_footer .footlinks h3.flow {
    margin: 0 auto 2.4rem;
    width: 17.7rem;
  }
  .alvark_lp_footer .footlinks h3.logo {
    margin-bottom: 4rem;
  }
  .alvark_lp_footer .footlinks li a {
    font-size: 1.2rem;
  }

  .alvark_lp_footer .logo {
    margin-top: 4.6rem;
  }

  .alvark_lp_footer .logo img {
    width: 12.4rem;
  }

  .alvark_lp_footer #copyright {
    margin-top: 4rem;
  }
}

/* !commom
---------------------------------------------------------- */
.hide {
  display: none;
}

.alvark_lp_inner {
  padding: 0 5rem;
  margin: 0 auto;
  max-width: 85rem;
}
.alvark_lp_inner.inner_big {
  max-width: 100rem;
}

.alvark_lp_hdL {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 4.8rem;
  text-align: center;
}
.alvark_lp_hdL .eng {
  line-height: 0.5 !important;
  text-transform: uppercase;
  color: #e60021;
  font-weight: 400;
  font-size: 13.6rem;
  margin-bottom: 3rem;
}
.alvark_lp_hdL .small {
  font-size: 6.4rem;
}
.alvark_lp_hdL .jap {
  line-height: 1;
  font-weight: 700;
}

.alvark_lp_mainVisual img {
  width: 100%;
}

.alvark_lp_anchorarea {
  position: relative;
}
.alvark_lp_anchorarea .anchor {
  position: absolute;
  top: -7.3rem;
}

.alvark_lp_btn {
  margin-top: 10rem;
  text-align: center;
}
.alvark_lp_btn .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 1rem;
  width: 100%;
  max-width: 38rem;
  height: 6rem;
  background: url(../image/ico_link.svg) no-repeat right 2.4rem center #e60021;
  background-size: 0.8rem;
  box-shadow: 0 0.4rem 0 0 #7f0012;
  font-size: 1.8rem;
  font-weight: 700;
}

.alvark_lp_fixedbg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.alvark_lp_fixedbg img {
  position: sticky;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.alvark_lp_redline {
  border-top: 1.2rem solid #e60021;
}

/*** hover ***/
@media screen and (min-width: 835px) {
  .alvark_lp_btn .btn:hover {
    transform: translateY(0.4rem);
    box-shadow: none;
  }
}
/*** sp ***/
@media screen and (max-width: 834px) {
  .alvark_lp_inner {
    padding: 0 3.2rem;
  }

  .alvark_lp_hdL {
    margin-bottom: 4rem;
  }
  .alvark_lp_hdL .eng {
    font-size: 8rem;
    margin-bottom: 2rem;
  }
  .alvark_lp_hdL .jap {
    font-size: 1.4rem;
  }
  .alvark_lp_hdL .small {
    font-size: 3rem;
  }

  .alvark_lp_btn {
    margin-top: 3.6rem;
  }
  .alvark_lp_btn .btn {
    height: 4.8rem;
    background-position: right 1.6rem center;
    box-shadow: 0 0.4rem 0 0 #7f0012;
    font-size: 1.6rem;
  }

  .alvark_lp_anchorarea .anchor {
    top: -5.3rem;
  }

  .alvark_lp_redline {
    border-top-width: 0.8rem;
  }
}
@media screen and (max-width: 374px) {
  .alvark_lp_inner {
    padding: 0 1.6rem;
  }
}

/* !page
---------------------------------------------------------- */
.alvark_lp_toptxt {
  padding: 12rem 0;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 2rem;
}
.alvark_lp_toptxt p + p {
  margin-top: 3.2rem;
}

.alvark_lp_profile {
  padding: 12rem 0;
  background: #1c1c1c;
}
.alvark_lp_profile .display {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.alvark_lp_profile .display .photo {
  position: relative;
  z-index: 2;
  width: calc(50% - 0.5rem);
}
.alvark_lp_profile .display .photo:before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.2);
  filter: blur(57.8553581237793px);
}
.alvark_lp_profile .display .pic {
  margin: 0 auto;
  max-width: 24.5rem;
}
.alvark_lp_profile .display .sign {
  position: absolute;
  left: 0;
  bottom: 4.3rem;
  width: 22.3rem;
}
.alvark_lp_profile .display .info {
  width: calc(45% - 0.5rem);
}
.alvark_lp_profile .player_info {
  display: flex;
  gap: 0 1.6rem;
  margin-bottom: 3.6rem;
}
.alvark_lp_profile .player_info .number {
  line-height: 0.88;
  font-size: 7.2rem;
}
.alvark_lp_profile .player_info .name .eng {
  line-height: 0.8;
  font-size: 4.8rem;
}
.alvark_lp_profile .player_info .name .jap {
  font-weight: 700;
}
.alvark_lp_profile .display .info table {
  width: 100%;
  border-top: 1px solid #e60021;
  line-height: 1.285;
  font-size: 1.4rem;
}
.alvark_lp_profile .display .info tr {
  border-bottom: 1px solid #e60021;
}
.alvark_lp_profile .display .info th {
  padding: 1.2rem 1rem 1.2rem 0;
  height: 4rem;
  width: 8.8rem;
  color: #e60021;
  font-weight: 700;
}
.alvark_lp_profile .display .info td {
  padding: 1.3rem 0;
  height: 4rem;
  font-weight: 500;
}

.alvark_lp_message {
  position: relative;
  z-index: 2;
  padding: 12rem 0;
}
.alvark_lp_message .bg_imgs {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.alvark_lp_message .bg_imgs .bg {
  position: absolute;
  opacity: 0.6;
  width: 47.6rem;
}
.alvark_lp_message .bg_imgs .bg1 {
  right: 0;
  top: 12rem;
}
.alvark_lp_message .bg_imgs .bg2 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.alvark_lp_message .bg_imgs .bg3 {
  right: 0;
  bottom: 12rem;
}
.alvark_lp_message .txt {
  line-height: 2;
  letter-spacing: 0.03em;
}
.alvark_lp_message .txt p + p {
  margin-top: 3.2rem;
}
.alvark_lp_message .sign_name {
  margin-top: 2.4rem;
  text-align: right;
}
.alvark_lp_message .sign_name img {
  max-width: 42rem;
}

.alvark_lp_news {
  padding: 12rem 0;
  background: #1c1c1c;
}
.alvark_lp_news_list li + li {
  border-top: 1px solid;
}
.alvark_lp_news_list li a {
  display: flex;
  padding: 1.6rem 0;
}
.alvark_lp_news_list .dt {
  padding: 0.2rem 0 0 1.6rem;
  width: 11.6rem;
  background: url(../image/ico_news.svg) no-repeat left center;
  background-size: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.alvark_lp_news_list .dd {
  width: calc(100% - 11.6rem);
}

.alvark_lp_messages {
  position: relative;
  z-index: 2;
  padding: 12rem 0;
}
.alvark_lp_messages_hd {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0 auto 4rem;
  max-width: 64.8rem;
  height: 8.4rem;
  text-align: center;
  background: url(../image/bg_message_midashi_pc.svg) no-repeat center;
  background-size: 100%;
  font-size: 1.8rem;
  font-weight: 700;
}
.alvark_lp_messages_hd .foucs {
  display: block;
  font-size: 2.6rem;
}
.alvark_lp_messages .former_teammates {
  overflow: hidden;
}
.alvark_lp_messages .teammates {
  margin-top: 8rem;
}

.alvark_lp_messages_swiper {
  position: relative;
}
.alvark_lp_messages_swiper .swiper-slide {
  transition-duration: 0.5s;
  transform: scale(0.9, 0.9);
  width: 64.5rem;
}
.alvark_lp_messages_swiper .swiper-slide-active {
  transform: scale(1, 1);
}
.messages_player {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 3.2rem 3.2rem;
  background: #fff;
  color: #000;
}
.messages_player:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 8rem solid #000;
  border-right: 8rem solid transparent;
}
.messages_player .tit {
  position: relative;
  margin-bottom: 1.6rem;
  padding: 1.6rem 0 1.6rem 6rem;
  line-height: 1.34;
  font-size: 1.8rem;
  font-weight: 700;
}
.messages_player .step {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.7;
  -webkit-text-stroke: 1px #fff;
  color: #e60021;
  font-size: 8rem;
  font-weight: 400;
}
.messages_player .movie {
  position: relative;
  padding-top: 56%;
  margin-bottom: 2rem;
}
.messages_player .movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.messages_player .info {
  font-size: 1.4rem;
}
.messages_player .member {
  margin-bottom: 2rem;
}
.messages_player .member .name {
  font-size: 2rem;
  font-weight: 700;
}

.swiper-function-ctrl {
  position: relative;
  margin: 3.2rem auto 0;
  padding: 1.6rem 0;
  max-width: 64.5rem;
  border-top: 1px solid;
}
.swiper-function-ctrl .swiper-pagination {
  margin: 0;
  position: static;
  width: calc(100% - 13rem);
  text-align: left;
  color: #fff;
  font-size: 3.2rem;
}
.swiper-function-ctrl .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 0.45rem !important;
  width: auto;
  height: auto;
  background: none;
}
.swiper-function-ctrl .swiper-pagination-bullet-active {
  background: none;
  color: #e60021;
}
.swiper-function-ctrl .swiper-button-prev:after,
.swiper-function-ctrl .swiper-button-next:after {
  display: none;
}
.swiper-function-ctrl .swiper-button-prev,
.swiper-function-ctrl .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 5.6rem;
  height: 5.6rem;
  background: no-repeat center;
  background-size: 100%;
}
.swiper-function-ctrl .swiper-button-prev {
  left: auto;
  right: 7.2rem;
  background-image: url(../image/ico_swiper_prev.png);
}
.swiper-function-ctrl .swiper-button-next {
  right: 0;
  background-image: url(../image/ico_swiper_next.png);
}

.alvark_lp_messages .teammates ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.alvark_lp_messages .teammates li {
  text-align: center;
  font-size: 1.2rem;
}
.alvark_lp_messages .teammates li .img {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}
.alvark_lp_messages .teammates li .img img {
  object-fit: cover;
  transition-duration: 0.3s;
}
.alvark_lp_messages .teammates li .img:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../image/ico_modal.svg) no-repeat center;
  background-size: 100%;
}
.alvark_lp_messages .look_more {
  display: none;
}

.fancybox-content {
  padding: 2rem 8.8rem;
}
.fancybox-navigation .fancybox-button {
  display: none;
}
.fancybox_display {
  margin: 0 auto;
  width: 70rem;
}
.fancybox_display .img {
  text-align: center;
}
.fancybox_display .img img {
  height: 100vh;
  max-height: 46.7rem;
}
.fancybox_display .info {
  padding: 1.2rem 0.8rem 0;
  line-height: 2;
}
.fancybox_btnctrl .btn_gallery {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 8.5rem);
  width: 6.4rem;
  height: 6.4rem;
  background: no-repeat center;
  background-size: 100%;
  border-radius: 50%;
}
.fancybox_btnctrl .btn_disable {
  pointer-events: none;
  opacity: 0.7;
}
.fancybox_btnctrl .btn_prev {
  left: 0;
  background-image: url(../image/ico_swiper_prev.png);
}
.fancybox_btnctrl .btn_next {
  right: 0;
  background-image: url(../image/ico_swiper_next.png);
}
.fancybox_btnctrl {
  margin-top: 4rem;
}
.fancybox_btnctrl .close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  margin: 0 auto;
  max-width: 25rem;
  height: 6.4rem;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2.1rem;
}

.alvark_lp_ceremony {
  z-index: 2;
  padding: 12rem 0;
  background: linear-gradient(180deg, #000000 0%, #1c1c1c 100%);
}
.alvark_lp_ceremony .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  text-align: right;
}
.alvark_lp_ceremony .bg img {
  width: 100%;
}

.alvark_lp_ceremony .display .img {
  margin: 0 auto 2rem;
  max-width: 72rem;
}
.alvark_lp_ceremony .display .info {
  text-align: center;
  line-height: 2;
  font-weight: 700;
}
.ceremony_gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.7rem;
  margin-top: 4.8rem;
}
.ceremony_gallery li a {
  display: block;
  overflow: hidden;
  position: relative;
}
.ceremony_gallery li img {
  transition-duration: 0.3s;
}
.ceremony_gallery li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.4rem;
  height: 3.4rem;
  background: url(../image/ico_modal.svg) no-repeat center;
  background-size: 100%;
}

.alvark_lp_awards {
}

.alvark_lp_stats {
  z-index: 2;
  padding: 12rem 4.6rem;
  background: linear-gradient(180deg, #000000 0%, #1c1c1c 100%);
}
.alvark_lp_stats .bg {
  position: absolute;
  top: 13.4rem;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90rem;
}
.alvark_lp_stats .table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
.alvark_lp_stats .table th {
  width: 4%;
  background: #e60021;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.alvark_lp_stats .table td {
  padding: 0 0.2rem;
  background: #000;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.alvark_lp_stats .table .total td:first-child {
  text-align: center;
}
.alvark_lp_stats .table .total td {
  text-align: right;
}

.alvark_lp_movie {
  overflow: hidden;
  padding: 12rem 0;
  background: linear-gradient(180deg, #000000 0%, #1c1c1c 100%);
}
.alvark_lp_movie_swiper .swiper-slide {
  transition-duration: 0.5s;
  transform: scale(0.9, 0.9);
  width: 64.5rem;
}
.alvark_lp_movie_swiper .swiper-slide-active {
  transform: scale(1, 1);
}
.alvark_lp_movie_swiper .movie {
  position: relative;
  padding-top: 55.81%;
  border: 2px solid #e60021;
  display: block;
}
.alvark_lp_movie_swiper .movie iframe,
.alvark_lp_movie_swiper .movie img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alvark_lp_gallery {
  padding: 12rem 0;
}
.alvark_lp_gallery .gallery_flow {
  position: relative;
  padding-left: 11.6rem;
}
.alvark_lp_gallery .gallery_flow:before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 1rem;
  bottom: 0;
  width: 2rem;
  background: #d9d9d9;
}
.gallery_flow .part + .part {
  margin-top: 4rem;
}
.gallery_company {
  position: relative;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.gallery_company:before {
  content: "";
  position: absolute;
  left: -11.6rem;
  top: 0;
  width: 7.6rem;
  height: 3.6rem;
  background: url(../image/icon_gallery_pre.svg) no-repeat left center;
  background-size: 100%;
}
.gallery_company .date {
  margin-left: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.gallery_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  position: relative;
}
.gallery_list:before {
  content: "";
  position: absolute;
  left: -10.8rem;
  top: 0;
  height: 100%;
  width: 2rem;
  background: url(../image/icon_flow_arr.svg) no-repeat center;
  background-size: 100%;
}
.gallery_list li a {
  display: block;
  overflow: hidden;
  position: relative;
}
.gallery_list li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.4rem;
  height: 3.4rem;
  background: url(../image/ico_modal.svg) no-repeat center;
  background-size: 100%;
}
.gallery_list li img {
  object-fit: cover;
  transition-duration: 0.3s;
  width: 100%;
  height: 100%;
}

.alvark_lp_goods {
  padding: 12rem 0;
  background: url(../image/bg_goods_pc.jpg) no-repeat center;
  background-size: cover;
}

/*** hover ***/
@media screen and (min-width: 835px) {
  .fancybox_btnctrl .close:hover {
    background: #fff;
    color: #333;
  }

  .alvark_lp_messages .teammates li a:hover .img img,
  .alvark_lp_ceremony .ceremony_gallery li a:hover img,
  .gallery_list li a:hover img {
    transform: scale(1.1, 1.1);
  }
}
/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {
  .alvark_lp_toptxt {
    padding: 5.6rem 0 8rem;
    font-size: 1.4rem;
  }
  .alvark_lp_toptxt p + p {
    margin-top: 2.8rem;
  }

  .alvark_lp_profile {
    padding: 8rem 0;
  }
  .alvark_lp_profile .display {
    display: block;
    position: relative;
  }
  .alvark_lp_profile .display .photo {
    margin: 0 auto 3.6rem;
    width: auto;
    max-width: 30.8rem;
  }
  .alvark_lp_profile .display .info {
    width: auto;
  }
  .alvark_lp_profile .display .pic {
    margin: 0 0 0 auto;
    max-width: 15.3rem;
  }
  .alvark_lp_profile .player_info {
    display: block;
    position: absolute;
    left: 2.4rem;
    top: 0;
    margin-bottom: 0;
  }
  .alvark_lp_profile .player_info .number {
    margin-bottom: 1.2rem;
    font-size: 5.6rem;
  }
  .alvark_lp_profile .player_info .name .eng {
    margin-bottom: 0.8rem;
    font-size: 4rem;
  }
  .alvark_lp_profile .display .sign {
    left: 1.3rem;
    bottom: 2.9rem;
    width: 17.5rem;
  }
  .alvark_lp_profile .display .info td {
    font-size: 1.2rem;
  }

  .alvark_lp_message {
    padding: 8rem 0;
  }
  .alvark_lp_message .bg_imgs .bg {
    opacity: 1;
    width: 28.5rem;
  }
  .alvark_lp_message .bg_imgs .bg1 {
    top: 20.5rem;
  }
  .alvark_lp_message .bg_imgs .bg3 {
    bottom: 18rem;
  }
  .alvark_lp_message .alvark_lp_hdL .eng {
    font-size: 6.8rem;
  }
  .alvark_lp_message .txt p + p {
    margin-top: 2.8rem;
  }
  .alvark_lp_message .sign_name {
    margin-top: 2rem;
  }
  .alvark_lp_message .sign_name img {
    max-width: 21.8rem;
  }

  .alvark_lp_news {
    padding: 8rem 0;
  }
  .alvark_lp_news_list li a {
    display: block;
  }
  .alvark_lp_news_list .dt {
    display: block;
    padding: 0 0 0 1.6rem;
    margin-bottom: 0.6rem;
    width: auto;
    font-size: 1.2rem;
  }
  .alvark_lp_news_list .dd {
    display: block;
    width: auto;
  }

  .alvark_lp_messages {
    padding: 8rem 0;
  }
  .alvark_lp_messages_hd {
    padding: 1rem;
    margin: 0 -2.2rem 2.4rem;
    height: 6rem;
    background-image: url(../image/bg_message_midashi_sp.svg);
    font-size: 1.1rem;
  }
  .alvark_lp_messages_hd .foucs {
    font-size: 1.6rem;
  }
  .alvark_lp_messages_swiper .swiper-slide {
    transform: scale(1, 1);
    width: 31.1rem;
    height: auto;
  }
  .messages_player {
    padding: 2rem 1.8rem 2.8rem;
    height: 100%;
  }
  .messages_player .tit {
    margin-bottom: 1.4rem;
    padding: 1.4rem 0 1.4rem 4.8rem;
    font-size: 1.6rem;
  }
  .messages_player .step {
    font-size: 6.6rem;
  }
  .messages_player .movie {
    margin-bottom: 1.2rem;
  }
  .messages_player .add {
    font-size: 1.2rem;
  }
  .messages_player .member {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
  .messages_player .member .name {
    font-size: 1.6rem;
  }

  .swiper-function-ctrl {
    margin-top: 2.4rem;
    padding: 2.4rem 0;
    max-width: 31rem;
  }
  .swiper-function-ctrl .swiper-pagination {
    width: calc(100% - 10rem);
    font-size: 2.4rem;
  }
  .swiper-function-ctrl .swiper-button-prev,
  .swiper-function-ctrl .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
  .swiper-function-ctrl .swiper-button-prev {
    right: 5.6rem;
  }

  .alvark_lp_messages .teammates {
    margin-top: 4rem;
  }
  .alvark_lp_messages .teammates ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .alvark_lp_messages .teammates li {
    display: none;
    text-align: left;
  }
  .alvark_lp_messages .teammates li:nth-child(1),
  .alvark_lp_messages .teammates li:nth-child(2),
  .alvark_lp_messages .teammates li:nth-child(3),
  .alvark_lp_messages .teammates li:nth-child(4),
  .alvark_lp_messages .teammates li:nth-child(5),
  .alvark_lp_messages .teammates li:nth-child(6) {
    display: block;
  }
  .alvark_lp_messages .teammates .is-columns li {
    display: block;
  }
  .alvark_lp_messages .teammates li .img:after {
    width: 2.4rem;
    height: 2.4rem;
  }
  .alvark_lp_messages .look_more {
    margin-top: 2.4rem;
    text-align: center;
  }
  .alvark_lp_messages .look_more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 4.8rem;
    width: 27.5rem;
    background: #e60021;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .alvark_lp_messages .look_more a:after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 0.8rem;
    background: url(../image/ico_down.svg) no-repeat center;
    background-size: 100%;
  }

  .fancybox-content {
    padding: 1.6rem;
  }
  .fancybox_display {
    width: 31.1rem;
  }
  .fancybox_display .img img {
    max-height: 29.9rem;
    height: auto;
  }
  .fancybox_btnctrl {
    position: relative;
  }
  .fancybox_btnctrl .btn_gallery {
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
  }
  .fancybox_btnctrl .close {
    max-width: 18rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }

  .alvark_lp_ceremony {
    padding: 8rem 0;
  }
  .alvark_lp_ceremony .alvark_lp_hdL .eng {
    font-size: 6.3rem;
  }
  .alvark_lp_ceremony .display .img {
    margin-bottom: 3.2rem;
  }
  .alvark_lp_ceremony .display .info {
    text-align: left;
  }
  .ceremony_gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.4rem;
  }
  .ceremony_gallery li a:after {
    width: 2.4rem;
    height: 2.4rem;
  }

  .alvark_lp_awards .alvark_lp_hdL .eng {
    font-size: 5rem;
  }

  .alvark_lp_stats {
    padding: 8rem 0;
  }
  .alvark_lp_stats .bg {
    top: 1.5rem;
    max-width: 37.5rem;
    margin-left: 10rem;
  }
  .alvark_lp_stats .table {
    padding: 0 1.6rem;
    overflow-x: auto;
  }
  .alvark_lp_stats .table table {
    min-width: 120rem;
  }

  .alvark_lp_movie,
  .alvark_lp_gallery {
    padding: 8rem 0;
  }
  .alvark_lp_movie_swiper .swiper-slide {
    transform: scale(1, 1);
    width: 31rem;
  }

  .alvark_lp_gallery .alvark_lp_inner {
    padding: 0 1.5rem;
  }
  .alvark_lp_gallery .gallery_flow {
    padding-left: 3.6rem;
  }
  .alvark_lp_gallery .gallery_flow:before {
    left: 0.5rem;
    top: 1rem;
    width: 1.6rem;
  }
  .gallery_flow .part + .part {
    margin-top: 3.2rem;
  }
  .gallery_company {
    margin-bottom: 1.2rem;
    padding-left: 1.6rem;
    font-size: 1.8rem;
  }
  .gallery_company:before {
    left: -3.6rem;
    width: 4.2rem;
    height: 2.6rem;
    background-size: auto 100%;
  }
  .gallery_company .date {
    font-size: 1.4rem;
  }
  .gallery_list:before {
    left: -3.1rem;
    width: 1.6rem;
  }
  .gallery_list li a:after {
    width: 2.4rem;
    height: 2.4rem;
  }

  .alvark_lp_goods {
    padding: 8rem 0;
    background-image: url(../image/bg_goods_sp.jpg);
  }
  .alvark_lp_goods .alvark_lp_btn {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 599px) {
  .alvark_lp_stats .bg {
    margin: 0;
  }
}
