@charset "utf-8";
.cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cont__center > * {
  min-height: 0%;
}

.cont__container, .cont__container--small {
  box-sizing: content-box !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .cont__container, .cont__container--small {
    max-width: 94.6666666667vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.cont__container--small {
  max-width: 990px;
}
@media screen and (max-width: 768px) {
  .cont__container--small {
    max-width: 89.3333333333vw;
  }
}

.link {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.link:hover {
  opacity: 0.7;
}

/* common:start */
[v-cloak] {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

.wrapper {
  overflow: hidden;
  opacity: 0;
  transition: 0.2s all;
}

/*------------------------------------------------------------
	animation
------------------------------------------------------------*/
.inview {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.inview.show_up {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.inview.show_down {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.inview.show_left {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}

.inview.show_right {
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.inview.scale_down {
  opacity: 0;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.inview.scale_up {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.inview.on {
  opacity: 1;
}

.inview.on.show_up,
.inview.on.show_down {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.inview.on.show_left,
.inview.on.show_right {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.inview.on.scale_down,
.inview.on.scale_up {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/******************************
    floting
*******************************/
#floating {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

#floating .floating {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}

#floating .floatingMask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 3;
}

#floating .flotBox {
  display: none;
  position: relative;
  height: 100%;
  z-index: 10;
  background-color: rgba(244, 229, 206, 0.45);
}

#floating .flotBox .txt {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

#floating .flotBox .txt p {
  margin: auto;
  width: 92%;
}

#floating .flotBox .txt img {
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  -webkit-transform: scale(1) translateY(5%);
  -ms-transform: scale(1) translateY(5%);
  transform: scale(1) translateY(5%);
  -webkit-transition: transform 0.4s ease, opacity 0.25s ease;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.25s ease;
  transition: transform 0.4s ease, opacity 0.25s ease;
  transition: transform 0.4s ease, opacity 0.25s ease, -webkit-transform 0.4s ease;
}

#floating .flotBox .txt img.anime {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

#floating .flotBox .txt .ttl {
  margin-top: 3%;
}

#floating .flotBox .txt .ttl img {
  -webkit-transform: scale(1.4) translateY(0);
  -ms-transform: scale(1.4) translateY(0);
  transform: scale(1.4) translateY(0);
}

#floating .flotBox .txt .ttl img.anime {
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

#floating .flotBox .txt .ttl img:nth-of-type(1) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

#floating .flotBox .txt .ttl img:nth-of-type(2) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

#floating .flotBox .txt .ttl img:nth-of-type(3) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

#floating .beerMovie {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 5;
}

#floating .beerMovie img {
  width: 100%;
  height: auto;
}

#floating .floating .closeBtn {
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 100;
}

#floating .floating .closeBtn .icnArea {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}

#floating .floating .closeBtn .icnArea::before,
#floating .floating .closeBtn .icnArea::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #987111;
  -webkit-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#floating .floating .closeBtn .icnArea::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

#floating .floating .closeBtn .icnArea::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}

@media screen and (max-width: 769px) {
  #floating .floating .closeBtn {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  #floating .floating .closeBtn .icnArea {
    width: 28px;
    height: 28px;
  }
  #floating .btn {
    height: 28px;
  }
  #floating .btn img {
    height: 10px;
    width: auto;
  }
  #floating .flotBox {
    overflow: hidden;
  }
  #floating .flotBox .txt p.ttl img {
    width: 28%;
  }
  #floating .flotBox .txt p.ttl img:nth-of-type(3) {
    width: 35%;
  }
  #floating .beerMovie {
    width: 178vh;
    height: 100vh;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.wrapper .main_cont .imgcover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

.sp_special_movies .slick-slide .movie_li {
  height: 100%;
}

.sp_special_movies .slick-slide .movie_li .movie_li_img {
  height: 90%;
}

.sp_special_movies .slick-slide .movie_li .movie_li_img2 {
  width: auto;
  height: 20px;
  margin-top: 5px !important;
}

@media screen and (max-width: 769px) {
  .sp_special_movies .slick-slide .movie_li .movie_li_img2 {
    width: auto;
    height: 4.75vw;
    margin-top: 1vw !important;
  }
}
@media screen and (max-width: 429px) {
  .sp_special_movies .slick-slide .movie_li .movie_li_img2 {
    width: auto;
    height: 4.75vw;
    margin-top: 1.5vw !important;
  }
}
/* カルーセル next prev カスタマイズ */
.sp_special_movies .slick-next,
.sp_special_movies .slick-prev {
  top: 45%;
}

.sp_special_movies .slick-next {
  right: 22%;
  right: 22vw;
  width: 6vw;
  height: 10vw;
  height: 9vw;
  background-image: url(/alcohol/beer/ichiban/campaign/is_fuyunoichiban_202302/images/arrow_next.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sp_special_movies .slick-prev {
  left: 23.5%;
  left: 23.5vw;
  width: 6vw;
  height: 9vw;
  background-image: url(/alcohol/beer/ichiban/campaign/is_fuyunoichiban_202302/images/arrow_prev.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}

.sp_special_movies .slick-prev:before,
.sp_special_movies .slick-next:before {
  opacity: 1;
  color: transparent;
}

/* dots overwrite */
.sp_special_movies .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.sp_special_movies .slick-dots li {
  position: relative;
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.sp_special_movies .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.sp_special_movies .slick-dots li button:before {
  font-family: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
}

/* カルーセル dots カスタマイズ */
@media screen and (max-width: 769px) {
  .sp_special_movies .slick-dots {
    bottom: -50px;
  }
}
@media screen and (max-width: 429px) {
  .sp_special_movies .slick-dots {
    bottom: -40px;
  }
}
.sp_special_movies .slick-dots li button:before {
  font-size: 22px;
  opacity: 1;
  color: #b7b7b7;
  background-color: #b7b7b7;
}

.sp_special_movies .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #987110;
  background-color: #987110;
}

.sp_special_movies .slick-dots li {
  margin: 0 8px;
}

.cover_pic {
  position: relative;
  z-index: 5;
}

.cover_pic .cover-bg {
  width: 100% !important;
  height: 90% !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

.wrapper #bnr_area .inner {
  padding: 40px 0;
}

.wrapper #bnr_area .inner ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.wrapper #bnr_area .inner ul li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

.wrapper #bnr_area .inner ul li a {
  display: block;
  height: 114px;
  width: 204px;
}

.wrapper #bnr_area .inner ul li a img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 769px) {
  .wrapper #bnr_area .inner ul li {
    padding: 0 0.6666666667vw;
  }
  .wrapper #bnr_area .inner ul li a {
    display: block;
    height: auto;
    width: 30.6666667vw;
  }
}
.modal-fixed {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .modal-fixed {
    padding-right: 0;
  }
}
.js-fade {
  opacity: 0;
  transition: 0.8s all;
  transform: translateY(5%);
}

.js-fade-active {
  opacity: 1;
  transform: translateX(0) translateY(0) !important;
}

.js-trans {
  transition: 0.5s all;
  opacity: 0;
}
.js-trans-right {
  transform: translateX(250%) translateY(100%);
}
.js-trans-left {
  transform: translateX(-250%) translateY(100%);
}

.js-trans-active {
  opacity: 1;
  transform: translateX(0);
  animation: yurayura 2s linear infinite;
  animation-delay: 0.5s;
}

.js-trans-anim {
  transform-origin: center bottom;
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.imgcover {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 50 !important;
}

/* common:end */
/* mv:start */
.mv {
  background-color: #fbf2e1;
}
.mv__container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.mv__container .slick-dots li button:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #bfc0c0;
  border-radius: 100%;
  opacity: 1;
}
.mv__container .slick-dots li.slick-active button:before {
  background-color: #edb700;
}
.mv__container .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.mv__container .slick-dots {
  bottom: -40px;
}
@media screen and (max-width: 1920px) {
  .mv .mv__container .slick-dots li {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
  .mv .mv__container .slick-dots li button {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
  .mv .mv__container .slick-dots li button:before {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
  .mv .mv__container .slick-dots {
    bottom: -2.0833333333vw;
  }
  .mv .mv__container .slick-dotted.slick-slider {
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv__container .slick-dots li {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
  .mv .mv__container .slick-dots li button {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
  .mv .mv__container .slick-dots li button:before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
  .mv .mv__container .slick-dots {
    bottom: -5.3333333333vw;
  }
  .mv .mv__container .slick-dotted.slick-slider {
    margin-bottom: 6.6666666667vw;
  }
}
.mv__float {
  position: fixed;
  right: 480px;
  top: 252px;
  max-width: 960px;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 1920px) {
  .mv__float {
    right: 25vw;
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__float {
    width: 100%;
    top: 99px;
    right: 0;
  }
}

/* mv:end */
/* lead:start */
.lead {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lead {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.lead__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1440px) {
  .lead__container {
    padding-top: 1.6666666667vw;
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__container {
    padding-top: 5.3333333333vw;
    padding-bottom: 16vw;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
}
.lead__nav {
  display: flex;
  justify-content: space-between;
  max-width: 904px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .lead__nav {
    width: 62.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__nav {
    width: 76.8vw;
    flex-wrap: wrap;
  }
}
.lead__nav-item {
  display: block;
  max-width: 166px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lead__nav-item:nth-child(n+3) {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 1440px) {
  .lead__nav-item {
    width: 11.5277777778vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__nav-item {
    max-width: none;
    width: 34.4vw;
  }
}
.lead__copy {
  max-width: 440px;
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 1440px) {
  .lead__copy {
    width: 30.5555555556vw;
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__copy {
    max-width: none;
    width: 74.8vw;
    margin-top: 15.6vw;
  }
}
.lead__text {
  max-width: 481px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 1440px) {
  .lead__text {
    width: 33.4027777778vw;
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__text {
    max-width: none;
    width: 64.9333333333vw;
    margin-top: 18.6666666667vw;
  }
}
.lead__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lead__ab-container {
    width: 100%;
  }
}
.lead__ab {
  position: absolute;
  max-width: 197px;
  width: 100%;
  right: 0;
  top: 125px;
}
@media screen and (max-width: 1920px) {
  .lead__ab {
    right: 0;
    width: 10.2604166667vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__ab {
    width: 15.8666666667vw;
    top: 52vw;
    right: 13.6vw;
  }
}

/* lead:end */
/* statement:start */
.statement {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .statement {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.statement__container {
  background-image: url(/alcohol/beer/ichiban/images/index/statement_bg.png);
  background-size: 1920px;
  background-position: top center;
  padding-top: 80px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1920px) {
  .statement__container {
    background-size: cover;
  }
}
@media screen and (max-width: 1440px) {
  .statement__container {
    padding-top: 5.5555555556vw;
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .statement__container {
    background-image: url(/alcohol/beer/ichiban/images/index/statement_bg_sp.png);
    padding-top: 11.3333333333vw;
    padding-bottom: 16vw;
  }
}
.statement__title {
  max-width: 723px;
  width: 100%;
  margin: 0 auto 90px;
}
@media screen and (max-width: 1440px) {
  .statement__title {
    max-width: none;
    width: 50.2083333333vw;
    margin-bottom: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .statement__title {
    width: 82.9333333333vw;
    margin-left: 0;
    margin-bottom: 17.3333333333vw;
  }
}
.statement__content {
  max-width: 248px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .statement__content {
    max-width: none;
    width: 17.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .statement__content {
    width: 33.0666666667vw;
  }
}
.statement__ab-container {
  max-width: 1493px;
  width: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.statement__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .statement__ab-container {
    width: 100%;
  }
}
.statement__ab {
  position: absolute;
  max-width: 155px;
  width: 100%;
  left: 0;
  top: -114px;
}
@media screen and (max-width: 1920px) {
  .statement__ab {
    width: 8.0729166667vw;
    left: 0;
    top: -5.9375vw;
  }
}
@media screen and (max-width: 768px) {
  .statement__ab {
    width: 12.9333333333vw;
    left: 2.9333333333vw;
    top: -11.7333333333vw;
  }
}

/* statement:end */
/* evolution:start */
.evolution {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: contain;
  background-position: top center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .evolution {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.evolution__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 1440px) {
  .evolution__container {
    padding: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__container {
    width: 100%;
    padding-top: 13.3333333333vw;
    padding-bottom: 16vw;
  }
}
.evolution__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .evolution__title {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__title {
    margin-bottom: 8vw;
  }
}
.evolution__title-01 {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media scrren and (max-width: 1440px) {
  .evolution__title-01 {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__title-01 {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.evolution__title-02 {
  max-width: 960px;
  width: 100%;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .evolution__title-02 {
    margin-top: 9.7222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__title-02 {
    width: 100%;
    margin-top: 18.6666666667vw;
  }
}
.evolution__image {
  max-width: 842px;
  width: 100%;
  margin: 0 auto 44px;
}
@media screen and (max-width: 1440px) {
  .evolution__image {
    width: 58.4722222222vw;
    margin-bottom: 3.0555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__image {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.evolution__text-01 {
  max-width: 769px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .evolution__text-01 {
    width: 53.4027777778vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__text-01 {
    width: 83.4666666667vw;
  }
}
.evolution__text-02 {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .evolution__text-02 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .evolution__text-02 {
    width: 100%;
  }
}
.evolution__btn {
  display: block;
  max-width: 416px;
  width: 100%;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .evolution__btn {
    width: 28.8888888889vw;
    margin-top: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__btn {
    margin-top: 29.3333333333vw;
    width: 73.0666666667vw;
  }
}
.evolution__ab {
  position: absolute;
  max-width: 316px;
  width: 100%;
  right: 138px;
  top: 210px;
}
@media screen and (max-width: 1920px) {
  .evolution__ab {
    width: 16.4583333333vw;
    right: 7.1875vw;
    top: 10.9375vw;
  }
}
@media screen and (max-width: 768px) {
  .evolution__ab {
    width: 22.6666666667vw;
    top: auto;
    right: 2vw;
    bottom: -10.6666666667vw;
    z-index: 10;
  }
}

/* xxx:end */
/* cm:start */
/***********************
  largeSlider 既存を崩さないために移植
***********************/
#cm {
  padding-bottom: 0;
}

#cm .largeSlider {
  overflow: hidden;
}

#cm .largeSlider .largeSliderInner {
  background: transparent;
}

#cm .largeSlider .slick-list {
  overflow: inherit;
}

#cm .largeSlider h2 {
  margin: 0 auto 3.125%;
  max-width: 960px;
  width: 100%;
}

#cm .largeSlider h2 img {
  margin: 0 auto;
  width: 4.68%;
}

#cm .largeSlider h3 {
  margin: 45px auto 0;
  max-width: 960px;
}

#cm .largeSlider img {
  vertical-align: bottom;
  width: 100%;
}

#cm ul.cmSlider {
  padding-bottom: 50px;
}

#cm ul.cmSlider .slick-arrow:before {
  display: none;
}

#cm ul.cmSlider .slick-arrow {
  position: absolute;
  top: 0;
  font-size: 0;
  line-height: 0;
  width: 5.72%;
  padding-top: 49.89%;
  border: none;
  background-repeat: no-repeat;
  background-color: transparent;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  #cm ul.cmSlider .slick-arrow {
    padding-top: 32.9861111111vw;
  }
}
@media screen and (max-width: 768px) {
  #cm ul.cmSlider .slick-arrow {
    padding-top: 48.8vw !important;
  }
}

#cm ul.cmSlider .slick-arrow:hover {
  cursor: pointer;
}

#cm ul.cmSlider .slick-prev {
  left: 0;
  background-image: url(../images/slick/slider_prev.png);
  background-position: 50% center;
}

#cm ul.cmSlider .slick-next {
  background-image: url(../images/slick/slider_next.png);
  right: 0;
  background-position: 50% center;
}

#cm .largeSlider ul.cmSlider {
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

#cm .largeSlider ul.cmSlider li {
  display: inline-block;
  width: 850px;
  font-size: 112.46%;
  line-height: 1.56;
  background-color: transparent;
}

#cm .largeSlider ul.cmSlider * {
  outline: none;
}

#cm .largeSlider ul.cmSlider li:first-child {
  margin-left: 0;
}

#cm .largeSlider ul.cmSlider li.last {
  margin-bottom: 0;
}

#cm .largeSlider ul.cmSlider li a {
  display: block;
  color: #fff;
  text-align: center;
  transition: opacity 0.5s ease;
}

#cm .largeSlider ul.cmSlider li.slick-active a:hover {
  opacity: 0.85;
}

#cm .largeSlider ul.cmSlider li a p.thumbnail {
  background: #fff;
  position: relative;
  padding-top: 56.3%;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  font-size: 0;
  background-size: cover;
}

.cboxElement:hover {
  text-decoration: underline;
}

#cm .largeSlider:not(.oneItem) ul.cmSlider li a p.thumbnail img {
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s ease;
  backface-visibility: hidden;
  opacity: 1 !important;
}

#cm .largeSlider ul.cmSlider li.slick-center a p.thumbnail img {
  transition: background-color 1s ease;
  background-color: rgba(0, 0, 0, 0);
}

#cm .largeSlider ul.cmSlider li a p.thumbnail:after {
  content: "";
  position: absolute;
  bottom: 5.524%;
  right: 3.125%;
  max-width: 70px;
  max-height: 70px;
  width: 8.23%;
  height: 14.61%;
  background: url(../images/slick/play_pc.png) no-repeat 50% 50%;
  background-size: contain;
  transition: opacity 0.5s ease;
  backface-visibility: hidden;
}

#cm .largeSlider ul.cmSlider li.slick-center a p.thumbnail:after {
  opacity: 1;
  transition: opacity 1s ease;
  backface-visibility: hidden;
}

#cm .largeSlider ul.cmSlider li.slick-center a p.thumbnail img:after {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  left: 0;
  top: 0;
}

#cm .largeSlider ul.cmSlider li a p.title, #cm .largeSlider ul.cmSlider li a p.text {
  margin: 0 auto;
  width: 88%;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

#cm .largeSlider ul.cmSlider li.slick-center a p.title, #cm .largeSlider ul.cmSlider li.slick-center a p.text {
  opacity: 1;
}

#cm .largeSlider ul.cmSlider li a p.title {
  position: relative;
  padding-top: 15px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: bold;
  color: #e98f00;
}
@media screen and (max-width: 1440px) {
  #cm .largeSlider ul.cmSlider li a p.title {
    font-size: 1.5277777778vw;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider ul.cmSlider li a p.title {
    font-size: 4.5333333333vw;
  }
}

#cm .largeSlider ul.cmSlider li a p.text {
  padding-top: 8px;
  padding-bottom: 10px;
  text-align: center;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 1440px) {
  #cm .largeSlider ul.cmSlider li a p.text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider ul.cmSlider li a p.text {
    font-size: 3.7333333333vw;
  }
}

#cm .largeSlider ul.cmSlider li a p.text sup.small {
  font-size: 0.5em !important;
  top: -0.75em;
}

#cm .largeSlider ul.cmSlider li a p.text span {
  font-size: 0.75em;
}

#cm .largeSlider ul.cmSlider .slick-dots {
  padding: 0px 0 40px;
  width: 100%;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

#cm .largeSlider ul.cmSlider .slick-dots li {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background-color: #bfc0c0;
  transition: none;
  margin: 0 5px;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  #cm .largeSlider ul.cmSlider .slick-dots li {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
    margin: 0 0.2083333333vw;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider ul.cmSlider .slick-dots li {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin: 0 1.3333333333vw;
  }
}
#cm .largeSlider ul.cmSlider .slick-dots li:first-child {
  margin-left: 0 !important;
}
#cm .largeSlider ul.cmSlider .slick-dots li:last-child {
  margin-right: 0 !important;
}

#cm .largeSlider ul.cmSlider .slick-dots li:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

#cm .largeSlider ul.cmSlider .slick-dots li.slick-active {
  background-color: #edb700;
}

#cm .largeSlider ul.cmSlider .slick-dots li button {
  display: none;
}

/* newIcon */
#graphickSlider .slideItem.new:after,
#cm .largeSlider ul li.new a .textBlock:after {
  background: url(../images/slick/icon_new.png) no-repeat;
  background-size: contain;
  backface-visibility: hidden;
}

#cm .largeSlider ul li.new a .textBlock {
  position: relative;
}

#cm .largeSlider ul li.new a .textBlock:after {
  position: absolute;
  content: "";
  display: block;
  max-width: 60px;
  width: 7.05%;
  padding-top: 7.05%;
  top: 10px;
  left: 2.35%;
}

#cm .largeSlider ul li.new a .textBlock:after {
  opacity: 0;
  transition: opacity 0.5s ease;
  backface-visibility: hidden;
}

#cm .largeSlider ul li.new.slick-center a .textBlock:after {
  opacity: 1;
  transition: opacity 1s ease;
  backface-visibility: hidden;
}

#cm .largeSlider.oneItem ul li.new a .textBlock:after {
  opacity: 1;
}

/*
#cm .largeSlider ul.cmSlider li.new a p.thumbnail:before{
  position: absolute;
  content:"";
  display:block;
  max-width: 80px;
  max-height: 80px;
  width:9.41%;
  height:16.7%;
  top:4.17%;
  left:2.35%;
}
*/
#cm ul li a p.title img.newIcon {
  display: inline;
  vertical-align: middle;
  max-width: 80px;
  width: 9.55%;
  padding-right: 10px;
  position: relative;
  top: -4px;
}

@media screen and (min-width: 769px) {
  #cm ul.cmSlider .slick-arrow {
    transition: opacity 0.5s ease;
  }
  #cm ul.cmSlider .slick-arrow:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider h2 {
    width: 8.75%;
  }
  #cm .largeSlider h2 img {
    width: 100%;
  }
  #cm .largeSlider h3 {
    margin-top: 6.25%;
  }
  #cm .largeSlider ul.cmSlider {
    margin-top: 3%;
  }
  #cm .largeSlider ul.cmSlider li {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    /*  width:85.93%;*/
    font-size: 92.3%;
    font-size: 3.75vw;
    line-height: 1.5;
  }
  #cm .largeSlider ul.cmSlider li:last-child {
    padding-bottom: 0;
  }
  #cm .largeSlider ul.cmSlider li a p.title {
    font-weight: bold;
  }
  #cm .largeSlider ul.cmSlider li a p.title, #cm .largeSlider ul.cmSlider li a p.text {
    margin: 0 auto;
    width: 92.09%;
  }
  #cm .largeSlider ul.cmSlider li a p.title {
    font-size: 116.66%;
    font-size: 4.37vw;
    padding-top: 3.125%;
    line-height: 1.28;
  }
  #cm .largeSlider ul.cmSlider li a p.text {
    text-align: left;
    padding: 8px 0 10px;
  }
  #cm .largeSlider ul.cmSlider li a p.text br {
    display: none;
  }
  #cm ul.cmSlider .slick-arrow {
    padding-top: 48.43%;
    width: 7.031%;
    border: none;
    background-size: 70%;
  }
  #cm .largeSlider ul.cmSlider li a p.thumbnail:after {
    content: "";
    max-width: 77px;
    max-height: 77px;
    width: 14%;
    height: 24.75%;
    background: url(../images/slick/play_pc.png) no-repeat 50% 50%;
    background-size: contain;
    backface-visibility: hidden;
  }
  #cm .largeSlider ul.cmSlider li a p.text,
  #cm .largeSlider ul.cmSlider .slick-dots {
    padding-bottom: 12%;
  }
  /* newIcon */
  #cm .largeSlider ul.cmSlider li.new a p.thumbnail:before {
    position: absolute;
    content: "";
    display: block;
    max-width: 80px;
    max-height: 80px;
    width: 14.54%;
    height: 25.72%;
    top: 4.17%;
    left: 3.125%;
  }
  #cm .largeSlider ul li.new a .textBlock:after {
    width: 8.05%;
    padding-top: 8.05%;
    top: 3%;
    left: -1%;
  }
  #cm .largeSlider.oneItem ul li.new a .textBlock:after {
    opacity: 1;
  }
  #cm ul li.new a p.title img.newIcon {
    width: 8.55%;
    top: -1px;
  }
  #cm .making ul li a p.thumbnail:before {
    display: none;
  }
}
/* CM WEB */
#cm #cmWeb.oneItem .largeSliderInner {
  background: transparent;
}

#cm #cmWeb.oneItem .largeSliderInner li a {
  background: #c59e3b;
}

#cm #cmWeb.oneItem .largeSliderInner li.slick-current a p.thumbnail img {
  background-color: rgba(0, 0, 0, 0);
  opacity: inherit !important;
}

#cm #cmWeb h2 {
  max-width: 960px;
  width: 100%;
}

#cm #cmWeb h2 img {
  width: 18.02%;
}

#cm #cmWeb ul.cmSlider li.new a p.thumbnail:before {
  display: none;
}

#cm #cmWeb ul li.new a .textBlock:after {
  opacity: 1;
}

#cm #cmWeb.oneItem.largeSlider ul.cmSlider li a {
  margin: 0 auto;
  max-width: 850px;
  width: 88.54%;
}

#cm #cmWeb.oneItem.largeSlider ul.cmSlider li a p.title {
  font-weight: bold;
}

#cm .oneItem.largeSlider ul.cmSlider li a p.title, #cm .oneItem.largeSlider ul.cmSlider li a p.text {
  opacity: 1;
}

#cm #cmWeb.oneItem.largeSlider ul.cmSlider li a p.text {
  padding-bottom: 15px;
}

@media screen and (min-width: 769px) {
  #cm #cmWeb {
    margin-bottom: 84px;
  }
}
@media screen and (max-width: 768px) {
  #cm #cmWeb h2 {
    margin: 0 auto 3.125%;
    width: 31.7%;
  }
  #cm #cmWeb h2 img {
    width: 100%;
  }
  #cm #cmWeb.oneItem.largeSlider ul.cmSlider li a {
    width: 100%;
  }
  #cm #cmWeb.oneItem.largeSlider ul.cmSlider li a p.text {
    margin-bottom: 0;
  }
}
/* end */
/* cmSlider01 */
#cm .largeSlider #cmSlider01,
#cm .largeSlider #cmSlider02 {
  max-width: 950px;
}
@media screen and (max-width: 1440px) {
  #cm .largeSlider #cmSlider01,
  #cm .largeSlider #cmSlider02 {
    width: 65.9722222222vw !important;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider #cmSlider01,
  #cm .largeSlider #cmSlider02 {
    width: 86.6666666667vw !important;
  }
}

#cm .largeSlider.oneItem ul#cmSlider01 li {
  width: 100%;
}

#cm .largeSlider.oneItem .largeSliderInner {
  margin: 0 auto;
  max-width: 850px;
  width: 88.54%;
}

@media screen and (max-width: 768px) {
  #cm .largeSlider.oneItem .largeSliderInner {
    width: 85.93%;
  }
  #cm .largeSlider #cmSlider01 {
    width: 100%;
  }
  #cm .largeSlider ul#cmSlider01.cmSlider li a p.thumbnail:after {
    width: 9.09%;
    height: 16.1%;
    max-width: 50px;
    max-height: 50px;
  }
}
/* end */
#cm .section.profile ul {
  margin-top: 50px;
}

#cm .section.profile ul li {
  display: inline-block;
  vertical-align: top;
  width: 48.4375%;
  margin-left: 3.125%;
  background: url(../images/slick/plate_pc.png) no-repeat 50% 0%;
  padding-top: 0%;
  background-size: 100% 100%;
  position: relative;
}

#cm .section.profile ul li.item {
  margin-bottom: 3.5%;
}

@media screen and (min-width: 769px) {
  #cm .section.profile ul li:nth-last-child(1), #cm .section.profile ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
}
#cm .section.profile ul li.profile01,
#cm .section.profile ul li.profile03,
#cm .section.profile ul li.profile05,
#cm .section.profile ul li.profile06,
#cm .section.profile ul li.profile07,
#cm .section.profile ul li.profile09 {
  margin-left: 0;
}

#cm .section.profile ul li p {
  position: relative;
}

#cm .section.profile ul li p.photo {
  width: 38.70968%;
  padding-top: 3.44%;
  padding-left: 3.44%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
  float: left;
}

#cm .section.profile ul li p.detail {
  float: left;
  padding-right: 3.44%;
  padding-top: 9.67%;
  padding-left: 4.3%;
}

#cm .section.profile ul li.profile06 p.detail {
  width: 100%;
  text-align: center;
  padding: inherit;
  float: none;
  padding-top: 9.67%;
}

#cm .section.profile ul li p.detail span {
  display: block;
  font-size: 20px;
}

#cm .section.profile ul li p.detail span.birthplace {
  font-size: 16px;
}

#cm .section.profile ul li p.detail span.text {
  font-size: 16px;
  margin-top: 10px;
}

#cm .section.compilation h2.cmTitle {
  margin: 0 auto;
  width: 4.68%;
}

/* cmList */
@media screen and (min-width: 769px) {
  /*
  #cm .section.compilation ul#cmList{
    margin-top: 80px;
  }
  */
  #cm .section.compilation ul.cmList li a p.title {
    font-size: 18px;
    font-weight: bold;
  }
  #cm .section.compilation ul.cmList li a p.text {
    font-size: 16px;
  }
}
/* 768以下 */
@media screen and (max-width: 768px) {
  #cm h1 img {
    display: inline-block;
    width: 20.31%;
    height: auto;
  }
  #cm h2 {
    font-size: 16px;
    font-size: 5vw;
    margin-top: 6.25%;
  }
  #cm .section.compilation h2.cmTitle {
    margin: 0 auto;
    width: 8.75%;
  }
  #cm .section.compilation h3 {
    font-size: 13px;
    font-size: 4.0625vw;
    margin-top: 3.75%;
  }
  #cm .section.compilation ul {
    margin-top: 3%;
  }
  #cm .section.compilation ul.cmList {
    margin-top: 3.125%;
    margin-bottom: 7.81%;
  }
  #cm .section.compilation ul li {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 3.125% 6.25%;
    margin: 0;
  }
  #cm .section.compilation ul li:last-child {
    padding-bottom: 0;
  }
  #cm .section.compilation ul li a p.title {
    position: relative;
    font-size: 12px;
    font-size: 3.75vw;
    margin-top: 3.125%;
  }
  #cm .section.compilation ul li a p.text {
    text-align: center;
    padding: 0 0;
    font-size: 3.125vw;
  }
  /* col2 */
  #cm .section.compilation ul.col2 {
    font-size: 0;
    letter-spacing: 0;
  }
  #cm .section ul.col2 li {
    display: inline-block;
    width: 50%;
    padding: 0;
    vertical-align: top;
    /*line-height:1.5;*/
    margin-top: 8.59%;
  }
  #cm .section.making ul.col2 li {
    display: inline-block;
    width: 49.5%;
    margin-left: 0.5%;
    padding: 0;
    vertical-align: top;
    /*line-height:1.5;*/
    margin-top: 8.59%;
  }
  #cm .section.making ul.col2 li:first-child,
  #cm .section.making ul.col2 li:nth-of-type(2n+1) {
    margin-left: 0;
  }
  #cm .section.compilation ul.col2 li:nth-of-type(1), #cm .section.compilation ul.col2 li:nth-of-type(2) {
    margin-top: 0;
  }
  #cm .section.compilation ul.col2 li .text {
    margin-top: 3.12%;
    text-align: left;
  }
  #cm .section.compilation ul.col2 li .text br {
    display: none;
  }
  #cm .section.compilation ul.col2 li .title, #cm .section.compilation ul.col2 li .text {
    padding-left: 3.125%;
    padding-right: 3.125%;
  }
  #cm .section.compilation ul li {
    line-height: 1.5;
  }
  #cm .section.compilation ul li .title {
    margin-top: 6.25%;
    line-height: 1.44;
    font-weight: bold;
  }
  /* end */
  #cm .section.profile ul {
    margin-top: 2.1875%;
  }
  #cm .section.profile ul li {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 3.125% 0;
    margin: 0 0 4.6875%;
    background: url(../images/slick/plate_sp.png) no-repeat 50% 50%;
    background-size: 93.75% 100%;
  }
  #cm .section.profile ul li:last-child {
    margin-bottom: 0;
  }
  #cm .section.profile ul li p.photo {
    width: 37.25%;
  }
  #cm .section.profile ul li p.photo img {
    width: 100%;
  }
  #cm .section.profile ul li p.detail {
    padding-top: 7.67%;
  }
  #cm .section.profile ul li p.detail span {
    font-size: 13px;
    font-size: 4.0625vw;
  }
  #cm .section.profile ul li p.detail span.birthplace {
    font-size: 11px;
    font-size: 3.125vw;
  }
  #cm .section.profile ul li p.detail span.text {
    font-size: 11px;
    font-size: 3.125vw;
    margin-top: 0.78125%;
  }
  #cm .section.compilation .plansPC {
    display: none !important;
  }
  #cm .plansSP {
    width: 98.59%;
    margin: 9.375% auto 0;
  }
}
.detail2 {
  font-size: 115%;
  padding-top: 4.3%;
  padding-right: 3.44%;
  padding-left: 3.44%;
  padding-bottom: 4.73%;
  clear: both;
}

.fontBold {
  font-weight: bold;
}

.kana {
  font-size: 110% !important;
}

.section.graphic {
  padding-top: 0;
}

.section.graphic h3 {
  margin: auto;
}

.section.graphic h3.year.year2018 {
  margin-top: 3.437%;
  margin-bottom: 3.12%;
  width: 23.75%;
}

#press_graphic {
  opacity: 0;
  margin-bottom: 8.33%;
}

#press_graphic ul {
  margin: auto;
  width: 67.81%;
}

#press_graphic ul img {
  width: 100%;
}

#graphickSlider {
  margin-top: 4%;
  background-color: #f6e4b0;
}

#graphickSlider .slideItem {
  position: relative;
}

#graphickSlider .slideItem .img {
  width: 100%;
}

#graphickSlider .slideItem.new:after {
  background: none;
  margin: 5px auto 0px;
  content: "- NEW -";
  line-height: 1;
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  color: red;
  font-size: 25px;
  font-weight: bold;
}

#graphicNavi {
  position: relative;
  background-color: #f6e4b0;
  text-align: center;
  padding: 25px 2.5%;
  padding-top: 15px;
  margin-bottom: 110px;
}

#graphicNavi span {
  display: inline-block;
  padding: 0 40px 0 40px;
  color: #deb351;
  font-size: 130%;
  vertical-align: bottom;
}

#graphicNavi a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-indent: -10000px;
}

#graphicNavi .prev {
  background: url(../images/slick/btn_graphicnavi_prev.png) no-repeat 50% 50%;
  background-size: cover;
}

#graphicNavi .next {
  background: url(../images/slick/btn_graphicnavi_next.png) no-repeat 50% 50%;
  background-size: cover;
}

#headvisual {
  position: relative;
}

#cm .section.compilation #headvisual .graphic {
  opacity: 0;
  -webkit-animation: fadeAnime 1s ease-in forwards;
  animation: fadeAnime 1s ease-in forwards;
}

@media screen and (max-width: 768px) {
  #graphickSlider .slideItem.new:after {
    font-size: 21px;
  }
  #graphicNavi {
    padding-bottom: 21px;
  }
  .section.graphic h3.year.year2018 {
    margin-top: 7.5%;
    margin-bottom: 3%;
    width: 38%;
  }
  #press_graphic {
    margin-bottom: 8.33%;
  }
  #press_graphic ul {
    width: 100%;
  }
}
@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  .detail2 {
    font-size: 1.54vw;
  }
  #cm .section.profile ul li p.detail span {
    font-size: 2vw;
  }
  .kana {
    font-size: 1.54vw !important;
  }
  #cm .section.profile ul li p.detail span.birthplace {
    font-size: 1.54vw;
  }
}
#cm .section.compilation #headvisual .graphic {
  padding-top: 3%;
}

#cm .section.graphic h2 {
  margin-top: 80px;
}

#cm .section.compilation #qualityLink {
  display: block;
}

#cm .section.compilation.making ul {
  text-align: center;
}

@media screen and (min-width: 769px) {
  #cm .section.compilation #headvisual {
    margin-bottom: 8%;
  }
  #cm .section.compilation #headvisual img {
    width: 90%;
    margin: auto;
  }
  #cm .section.compilation #headvisual .imgcover {
    width: 100%;
  }
  .cmRead {
    text-align: center;
    font-size: 16px;
    padding: 20px 0;
  }
  #cm .section.compilation #qualityLink {
    width: 42.71%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #cm .section.compilation #headvisual img {
    width: 98.4%;
    margin: auto;
  }
  #cm .section.compilation #qualityLink {
    width: 83.44%;
    margin: 12% auto 0;
  }
  #cm .section.graphic {
    width: 93.75%;
  }
  .detail2 {
    font-size: 3vw;
    margin-top: 0%;
    padding: 5% 8% 5% 4%;
    display: block;
    box-sizing: border-box;
  }
  #cm .section.profile ul li p.detail span {
    font-size: 4vw;
  }
  .kana {
    font-size: 3vw !important;
  }
  #cm .section.profile ul li p.detail span.birthplace {
    font-size: 3.54vw;
  }
  .cmRead br {
    display: none;
  }
  .cmRead {
    text-align: left;
    font-size: 20px;
    font-size: 3.125vw;
    padding: 20px 3.125%;
  }
  #cm .section.graphic h2 {
    margin-top: 12%;
  }
}
@media screen and (min-width: 769px) {
  .onlySp {
    display: none !important;
  }
  #aMenu ul {
    display: block;
  }
  #product {
    position: absolute;
    top: -143px;
  }
  #making {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .onlyPc {
    display: none !important;
  }
  #aMenu ul {
    display: block;
  }
  #product {
    position: absolute;
    top: -60px;
  }
  #making {
    padding-top: 6%;
  }
}
/* カルーセル next prev カスタマイズ */
.sp_special_movies .slick-next,
.sp_special_movies .slick-prev {
  top: 45%;
}

.sp_special_movies .slick-next {
  right: 22%;
  right: 22vw;
  width: 6vw;
  height: 10vw;
  height: 9vw;
  background-image: url(/alcohol/beer/ichiban/campaign/is_fuyunoichiban_202302/images/arrow_next.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sp_special_movies .slick-prev {
  left: 23.5%;
  left: 23.5vw;
  width: 6vw;
  height: 9vw;
  background-image: url(/alcohol/beer/ichiban/campaign/is_fuyunoichiban_202302/images/arrow_prev.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}

/*------------------------------------------------------------
	cm modal
------------------------------------------------------------*/
#cm_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}

#cm_modal .modal_mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.85);
}

#cm_modal iframe {
  height: 45vw;
  width: 80vw;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* 20231204 更新 */
#cm .largeSlider #cmSlider01.cmSliderToshitsuzero {
  margin-bottom: 0;
}

/* スライダーの内容が一つになった場合 */
#cm .largeSlider.oneItem .largeSliderInner {
  max-width: 100%;
  width: 100%;
}

#cm .largeSlider ul.cmSliderToshitsuzero li a {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

#cm .largeSlider .slick-arrow {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 50px;
  height: auto;
  position: absolute;
  top: 0;
  z-index: 100;
  -webkit-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  transition: 0.3s all !important;
}

#cm .largeSlider .slick-arrow.slick-next::before {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (min-width: 1024px) {
  #cm .largeSlider .slick-arrow:hover.slick-prev {
    -webkit-transform: translate(-25%, 0);
    -ms-transform: translate(-25%, 0);
    transform: translate(-25%, 0);
  }
  #cm .largeSlider .slick-arrow:hover.slick-next {
    -webkit-transform: translate(25%, 0);
    -ms-transform: translate(25%, 0);
    transform: translate(25%, 0);
  }
}
/* 縦型動画 アイコン削除 */
#cm .largeSlider ul.cmSlider li a p.thumbnail.thumbnail-vertical:after {
  content: none;
}

@media screen and (max-width: 1440px) {
  #cm .largeSlider ul.cmSlider .slick-track li {
    width: 58.4027777778vw !important;
  }
}
@media screen and (max-width: 768px) {
  #cm .largeSlider ul.cmSlider .slick-track li {
    width: 86.6666666667vw !important;
  }
}

.cm {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cm {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.cm__container {
  padding: 72px 0 100px;
}
@media screen and (max-width: 1440px) {
  .cm__container {
    padding: 5vw 0 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .cm__container {
    padding: 10.6666666667vw 0 13.3333333333vw;
  }
}
.cm__title {
  max-width: 732px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .cm__title {
    width: 50.8333333333vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .cm__title {
    width: 86.8vw;
    margin-left: 0;
    margin-top: 0 !important;
  }
}
.cm__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .cm__ab-container {
    width: 100%;
  }
}
.cm__ab {
  position: absolute;
  max-width: 197px;
  width: 100%;
  left: 0;
  top: 80%;
}
@media screen and (max-width: 1920px) {
  .cm__ab {
    width: 10.2604166667vw;
    left: 0;
    top: 70%;
  }
}
@media screen and (max-width: 768px) {
  .cm__ab {
    width: 15.8666666667vw;
    left: 2.1333333333vw;
    top: auto;
    bottom: 8vw;
  }
}

/* cm:end */
/* profile:start */
.profile {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
}
@media screen and (max-width: 768px) {
  .profile {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.profile__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 1440px) {
  .profile__container {
    padding: 6.9444444444vw 0;
  }
}
@media screen and (max-width: 768px) {
  .profile__container {
    width: 100%;
    padding-top: 0;
    padding-left: 3.2vw;
    padding-bottom: 16vw;
    padding-right: 3.2vw;
  }
}
.profile__title {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1440px) {
  .profile__title {
    width: 66.6666666667vw;
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .profile__title {
    max-width: none;
    width: 100%;
    margin-bottom: 8vw;
  }
}
.profile__list {
  max-width: 656px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .profile__list {
    width: 58.4722222222vw;
  }
}
@media screen and (max-width: 768px) {
  .profile__list {
    max-width: none;
    width: 93.3333333333vw;
  }
}
.profile__item {
  max-width: 164px;
  width: 100%;
  cursor: pointer;
  border: 3px solid #edb700;
  transition: 0.2s all;
}
.profile__item-image {
  position: relative;
}
.profile__item:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  .profile__item {
    width: 24.152%;
  }
}
@media screen and (max-width: 768px) {
  .profile__item {
    max-width: none;
    width: 29.3333333333vw;
    border-width: 2px;
  }
}
.profile__text-inner {
  max-width: 720px;
  width: 100%;
  padding: 35px 40px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 4px solid #edb700;
}
@media screen and (max-width: 1440px) {
  .profile__text-inner {
    width: 50vw;
    padding: 2.4305555556vw 2.7777777778vw;
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .profile__text-inner {
    margin-top: 12.9333333333vw;
    max-width: none;
    width: 100%;
    border: 2px solid #edb700;
    padding: 3.3333333333vw;
  }
}
.profile__close {
  max-width: 130px;
  width: 100%;
  margin: 50px auto 0;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .profile__close {
    width: 9.0277777778vw;
    margin-top: 3.4722222222vw;
  }
}
@media screen and (max-width: 768px) {
  .profile__close {
    max-width: none;
    width: 22.2666666667vw;
    margin-top: 4.5333333333vw;
  }
}
.profile .detail .fontBold {
  font-size: 20px !important;
}
@media screen and (max-width: 1440px) {
  .profile .detail .fontBold {
    font-size: 1.3888888889vw !important;
  }
}
@media screen and (max-width: 768px) {
  .profile .detail .fontBold {
    font-size: 4vw !important;
  }
}
.profile .detail .kana {
  font-size: 14px !important;
}
@media screen and (max-width: 1440px) {
  .profile .detail .kana {
    font-size: 0.9722222222vw !important;
  }
}
@media screen and (max-width: 768px) {
  .profile .detail .kana {
    font-size: 2.9333333333vw !important;
  }
}
.profile .detail .birthplace {
  display: inline-block;
  font-size: 16px !important;
  margin-top: 0.75em;
}
@media screen and (max-width: 1440px) {
  .profile .detail .birthplace {
    font-size: 1.1111111111vw !important;
  }
}
@media screen and (max-width: 768px) {
  .profile .detail .birthplace {
    font-size: 3.4666666667vw !important;
  }
}
.profile .detail2 {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .profile .detail2 {
    font-size: 1.1111111111vw !important;
  }
}
@media screen and (max-width: 768px) {
  .profile .detail2 {
    font-size: 2.9333333333vw !important;
  }
}
.profile .acc-content {
  display: none;
}
.profile .is-active {
  display: block;
}
.profile .js-inner {
  display: none;
}

/* profile:end */
/* topics:start */
.topics {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topics {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.topics__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 54px 0 0;
}
@media screen and (max-width: 1440px) {
  .topics__container {
    padding: 3.75vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .topics__container {
    width: 100%;
    padding-top: 10.6666666667vw;
  }
}
.topics__title {
  max-width: 732px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .topics__title {
    width: 50.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__title {
    margin-left: 0;
    width: 66.9333333333vw;
  }
}
.topics__bnrs {
  margin-top: 35px;
}
@media screen and (max-width: 1440px) {
  .topics__bnrs {
    margin-top: 2.4305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__bnrs {
    margin-top: 6.6666666667vw;
  }
}
.topics__bnrs-item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 1440px) {
  .topics__bnrs-item:not(:first-child) {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__bnrs-item:not(:first-child) {
    margin-top: 4vw;
  }
}
.topics__bnrs-item-01 {
  max-width: 978px;
  width: 978px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .topics__bnrs-item-01 {
    width: 67.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__bnrs-item-01 {
    max-width: none;
    width: 79.7333333333vw;
  }
}
.topics__bnrs-item-02 {
  max-width: 978px;
  width: 978px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .topics__bnrs-item-02 {
    width: 67.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__bnrs-item-02 {
    max-width: none;
    width: 79.7333333333vw;
  }
}
.topics__bnrs-item-03 {
  max-width: 978px;
  width: 978px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .topics__bnrs-item-03 {
    width: 67.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__bnrs-item-03 {
    max-width: none;
    width: 79.7333333333vw;
  }
}
.topics__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .topics__ab-container {
    width: 100%;
  }
}
.topics__ab {
  position: absolute;
  max-width: 155px;
  width: 100%;
  left: 0;
  top: -114px;
}
@media screen and (max-width: 1920px) {
  .topics__ab {
    width: 8.0729166667vw;
    left: 0;
    top: -5.9375vw;
  }
}
@media screen and (max-width: 768px) {
  .topics__ab {
    width: 12.9333333333vw;
    left: 2.9333333333vw;
    top: 35.0666666667vw;
  }
}

/* topics:end */
/* product:start */
.product {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.product__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
  padding-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1440px) {
  .product__container {
    padding-top: 13.8888888889vw;
    padding-bottom: 1.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .product__container {
    padding-top: 30.6666666667vw;
    padding-bottom: 16vw;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
}
.product__content {
  display: flex;
  align-items: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .product__content {
    width: 44.4444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .product__content {
    flex-direction: column;
    width: 73.0666666667vw;
  }
}
.product__image {
  max-width: 169px;
  width: 100%;
  margin-right: 54px;
}
@media screen and (max-width: 1440px) {
  .product__image {
    width: 11.7361111111vw;
    margin-right: 3.75vw;
  }
}
@media screen and (max-width: 768px) {
  .product__image {
    width: 31.0666666667vw;
    margin-right: 0;
    margin-bottom: 5.3333333333vw;
  }
}
.product__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product__text {
  max-width: 380px;
  width: 100%;
  margin-bottom: 29px;
}
@media screen and (max-width: 1440px) {
  .product__text {
    width: 26.3888888889vw;
    margin-bottom: 2.0138888889vw;
  }
}
@media screen and (max-width: 768px) {
  .product__text {
    width: 62.1333333333vw;
    margin-bottom: 6.4vw;
  }
}
.product__btn {
  max-width: 416px;
  width: 100%;
  transition: 0.2s all;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .product__btn {
    width: 28.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .product__btn {
    width: 73.0666666667vw;
  }
}
.product__btn:hover {
  opacity: 0.75;
}
.product__btn::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(/alcohol/beer/ichiban/images/index/product_arrow.png);
  width: 26px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 49px;
  top: 44px;
  transition: 0.2s all;
}
@media screen and (max-width: 1440px) {
  .product__btn::after {
    width: 1.8055555556vw;
    height: 1.0416666667vw;
    right: 3.4027777778vw;
    top: 3.0555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .product__btn::after {
    background-image: url(/alcohol/beer/ichiban/images/index/product_arrow_sp.png);
    width: 2.8vw;
    height: 1.7333333333vw;
    background-size: cover;
    top: 6.6666666667vw;
    right: 10.2666666667vw;
  }
}
.product__btn-open::after {
  transform: rotateX(180deg);
}
.product__acc {
  display: none;
  max-width: 840px;
  width: 100%;
  padding: 35px 100px 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #edb700;
  background-color: #ffffff;
}
@media screen and (max-width: 1440px) {
  .product__acc {
    width: 58.3333333333vw;
    margin-top: 2.7777777778vw;
    padding: 2.4305555556vw 6.9444444444vw 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc {
    width: 100%;
    border-width: 0.4vw;
    padding: 4.8vw 3.6vw;
    margin-top: 6.6666666667vw;
  }
}
.product__acc h4 {
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .product__acc h4 {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc h4 {
    font-size: 4.8vw;
  }
}
.product__acc h4 .color-ocher {
  color: #edb700;
  display: inline-block;
  padding-right: 0.5em;
}
.product__acc p {
  font-size: 15px;
  margin-top: 1em;
}
@media screen and (max-width: 1440px) {
  .product__acc p {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc p {
    margin-top: 0.75em;
    font-size: 2.9333333333vw;
  }
}
.product__acc p + h4 {
  margin-top: 1.5em;
}
.product__acc-text {
  max-width: 225px;
  width: 100%;
  margin: 55px auto 0;
}
@media screen and (max-width: 1440px) {
  .product__acc-text {
    width: 15.625vw;
    margin-top: 3.8194444444vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc-text {
    width: 40vw;
    margin-top: 9.3333333333vw;
  }
}
.product__acc-image {
  max-width: 618px;
  width: 100%;
  margin: 21px auto 0;
}
@media screen and (max-width: 1440px) {
  .product__acc-image {
    width: 42.9166666667vw;
    margin-top: 1.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc-image {
    width: 58.1333333333vw;
    margin-top: 4vw;
  }
}
.product__acc-close {
  max-width: 130px;
  width: 100%;
  margin: 81px auto 0;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .product__acc-close {
    width: 9.0277777778vw;
    margin-top: 5.625vw;
  }
}
@media screen and (max-width: 768px) {
  .product__acc-close {
    width: 22.2666666667vw;
    margin-top: 8.5333333333vw;
  }
}
.product__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .product__ab-container {
    width: 100%;
  }
}
.product__ab {
  position: absolute;
  max-width: 197px;
  width: 100%;
  right: 0;
  top: -65px;
}
@media screen and (max-width: 1920px) {
  .product__ab {
    width: 10.2604166667vw;
    right: 0;
    top: -3.3854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .product__ab {
    width: 15.8666666667vw;
    right: 2.1333333333vw;
    top: 17.3333333333vw;
  }
}

/* product:end */
/* lineup:start */
.lineup {
  background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg.png);
  background-size: cover;
  background-position: top -1px center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lineup {
    background-image: url(/alcohol/beer/ichiban/images/index/main_cont_bg_sp.png);
    background-size: cover;
  }
}
.lineup__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 135px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1440px) {
  .lineup__container {
    padding-top: 4.1666666667vw;
    padding-bottom: 9.375vw;
  }
}
@media screen and (max-width: 768px) {
  .lineup__container {
    padding-top: 12vw;
    padding-bottom: 16vw;
    padding-left: 0;
    padding-right: 0;
  }
}
.lineup__title {
  max-width: 732px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .lineup__title {
    width: 50.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .lineup__title {
    width: 86.8vw;
    margin-left: 0;
  }
}
.lineup__bnrs {
  max-width: 978px;
  width: 100%;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .lineup__bnrs {
    margin-top: 2.4305555556vw;
    width: 67.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .lineup__bnrs {
    margin-top: 6.6666666667vw;
    width: 79.7333333333vw;
  }
}
.lineup__bnrs-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .lineup__bnrs-item:not(:first-child) {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (max-width: 768px) {
  .lineup__bnrs-item:not(:first-child) {
    margin-top: 4vw;
  }
}
.lineup__ab-container {
  max-width: 1493px;
  width: 77.7604166667%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lineup__ab-container {
    width: 100%;
  }
}
.lineup__ab {
  position: absolute;
  max-width: 197px;
  width: 100%;
  left: 0;
  top: -75px;
}
@media screen and (max-width: 1920px) {
  .lineup__ab {
    width: 10.2604166667vw;
    left: 0;
    top: -3.90625vw;
  }
}
@media screen and (max-width: 768px) {
  .lineup__ab {
    width: 15.8666666667vw;
    left: 2.9333333333vw;
    top: 35.3333333333vw;
  }
}

/* lineup:end */