@charset "utf-8";

/* 変数 */
:root {
  --ff-yumin: "游明朝体", "Yu Mincho", YuMincho, serif;
  --ff-yugo: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --ff-play: "Playfair Display", serif;
  --theme-color1: #980B1D;
}

/* RESET */
#aceg-lbusiness h1,
#aceg-lbusiness h2,
#aceg-lbusiness h3,
#aceg-lbusiness h4,
#aceg-lbusiness h5,
#aceg-lbusiness h6 {
  all: unset;
}
#aceg-lbusiness h2 span {
  all: unset;
}

/* BASE */
#aceg-lbusiness {
  color: #221815;
  overflow: hidden;
}
#aceg-lbusiness img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
#aceg-lbusiness * {
  word-break: break-word;
}

/* ---------------------------------------
 アニメーション指定
---------------------------------------- */
@keyframes BottomIn {
  0%   { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}
@keyframes LeftIn {
  0%   { opacity: 0; transform: translateX(-80px);}
  100% { opacity: 1; transform: translateX(0);}
}
@keyframes RightIn {
  0%   { opacity: 0; transform: translateX(80px);}
  100% { opacity: 1; transform: translateX(0);}
}
@keyframes ZoomIn {
  0%   { opacity: 0; transform: scale(0.8,0.8);}
  100% { opacity: 1; transform: scale(1.0,1.0);}
}
@keyframes LineGrow {
  0%   { height: 0;}
  100% { height: 35px;}
}
@keyframes Around {
  0%   { transform: rotateY(180deg);}
  100% { transform: rotateY(360deg);}
}
@keyframes Float {
	0%   { bottom: 0;}
	50%  { bottom: -6px;}
	100% { bottom: 0;}
}
@keyframes FadeIn {
	0%   { opacity: 0;}
	100% { opacity: 100%;}
}
@keyframes infinity-scroll-left {
  from { transform: translateX(0);}
  to { transform: translateX(-100%);}
}
*.bottomIn {
  opacity: 0;
  transform: translateY(40px);
}
*.animation-start.bottomIn {
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
*.leftIn {
  opacity: 0;
  transform: translateX(-80px);
}
*.animation-start.leftIn {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: LeftIn;
}
*.rightIn {
  opacity: 0;
  transform: translateX(80px);
}
*.animation-start.rightIn {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: RightIn;
}
*.fadeIn {
  opacity: 0;
}
*.animation-start.fadeIn {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FadeIn;
}

/* MV */
#aceg-lbusiness .mv {
  background-image: url('/img/usr/event/aceg-lbusiness/mv-bg_02.jpg');
  background-size: cover;
  color: #fff;
  padding: 155px 95px 175px;
}
#aceg-lbusiness .mv-txt {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 17px;
}
#aceg-lbusiness .mv-txt-logo {
}
#aceg-lbusiness .mv-txt-main {
  font-family: var(--ff-play);
  font-size: 64px;
  letter-spacing: .05em;
  line-height: 1.234;
}
#aceg-lbusiness .mv-txt-sub {
  font-family: var(--ff-yumin);
  font-size: 23px;
  letter-spacing: .05em;
  padding-left: 9px;
}

/* MV直下 */
#aceg-lbusiness .mvbtm {
  background-color: #F6F2EC;
  padding-top: 44px;
}
#aceg-lbusiness .mvbtm-lead {
  font-family: var(--ff-yugo);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2.067;
  text-align: center;
}

/* アンカーリンク */
#aceg-lbusiness .sec-nav {
  background: linear-gradient(180deg, #F6F2EC 0%, #F6F2EC 44%, transparent 44%, transparent 100%);
  padding-bottom: 80px;
}
#aceg-lbusiness .nav-ancs {
  display: flex;
  justify-content: center;
}
#aceg-lbusiness .nav-anc {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  min-width: 200px;
  text-decoration: none!important;
  position: relative;
}
#aceg-lbusiness .nav-anc::before {
  content: '';
  background-color: currentColor;
  height: 57px;
  width: 2px;
  position: absolute;
  bottom: -57px;
  left: 50%;
  translate: -50%;
  transition: height .2s, bottom .2s;
}
#aceg-lbusiness .nav-anc:hover::before {
  height: 65px;
  bottom: -65px;
}
#aceg-lbusiness .nav-anc::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.14em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  bottom: -59px;
  left: 50%;
  translate: -50%;
  transition: bottom .2s;
}
#aceg-lbusiness .nav-anc:hover::after {
  bottom: -67px;
}
#aceg-lbusiness .nav-anc-img {
  margin-bottom: 17px;
}
#aceg-lbusiness .nav-anc-img img {
  transition: scale .2s;
}
#aceg-lbusiness .nav-anc:hover .nav-anc-img img {
  scale: 1.1;
}
#aceg-lbusiness .nav-anc-txt {
  font-family: var(--ff-yumin);
  font-size: 25px;
  letter-spacing: .05em;
  text-align: center;
  position: relative;
}
#aceg-lbusiness .nav-anc-txt::before {
  content: '';
  background-color: currentColor;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 1px;
  left: 50%;
  translate: -50%;
}
#aceg-lbusiness .nav-anc-txt-hl {
  color: var(--theme-color1);
}

#aceg-lbusiness .sec-brand {
  padding-block: 51px 120px;
}
#aceg-lbusiness .sec-brand-inner > *:last-child {
  margin-bottom: 0;
}
#aceg-lbusiness .brand {
  margin-bottom: 114px;
}
#aceg-lbusiness .brand:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, transparent 49px, #F6F2EC 49px, #F6F2EC 100%);
  padding-bottom: 100px;
}
#aceg-lbusiness .brand-name {
  display: block;
  font-family: var(--ff-play);
  font-size: 65px;
  letter-spacing: .05em;
  padding-left: 20px;
  margin-bottom: 93px;
}
#aceg-lbusiness .brand-name-hl {
  color: var(--theme-color1);
}
#aceg-lbusiness .brand-items {
  counter-reset: num;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 109px 20px;
}
#aceg-lbusiness .brand-item {
  display: flex;
  flex-direction: column;
}
#aceg-lbusiness .brand-item-name {
  counter-increment: num;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
}
#aceg-lbusiness .brand-item-name-en {
  border-bottom: 2px solid currentColor;
  font-family: var(--ff-yumin);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 9px;
  padding-left: 21px;
  position: relative;
  z-index: 0;
}
#aceg-lbusiness .brand-item-name-en::before {
  content: counter(num, decimal-leading-zero);
  color: #ECECEC;
  font-family: var(--ff-yumin);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -.03em;
  position: absolute;
  top: -39px;
  left: 0;
  z-index: -1;
}
#aceg-lbusiness .brand:nth-child(even) .brand-item-name-en::before {
  color: #fff;
}
#aceg-lbusiness .brand-item-name-jp {
  font-family: var(--ff-yugo);
  font-size: 15px;
  font-weight: 500;
  padding-left: 24px;
}
#aceg-lbusiness .brand-item-img {
  text-align: center;
  margin-bottom: 20px;
}
#aceg-lbusiness .brand-item-img img {
  height: auto;
  width: 210px;
}
#aceg-lbusiness .brand-item-detail {
  padding-inline: 30px;
}
#aceg-lbusiness .brand-item-price {
  font-family: var(--ff-yugo);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
#aceg-lbusiness .brand-item-price-tax {
  font-size: 11px;
}
#aceg-lbusiness .brand-item-txt {
  font-family: var(--ff-yugo);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.615;
  margin-bottom: 18px;
}
#aceg-lbusiness .brand-item-btm {
  margin-top: auto;
}
#aceg-lbusiness .brand-item-thumbnails {
  background-color: #F6F2EC;
  padding: 20px 10px;
  margin-bottom: 20px;
}
#aceg-lbusiness .brand:nth-child(even) .brand-item-thumbnails {
  background-color: #F2EADD;
}
#aceg-lbusiness .brand-item-swiper .swiper-slide {
  width: 300px;
}
#aceg-lbusiness .brand-item-swiper .swiper-button-prev,
#aceg-lbusiness .brand-item-swiper .swiper-button-next {
  background-image: url('/img/usr/event/aceg-lbusiness/brand-item-swiper-arrow.png');
  background-size: 100%;
  height: 30px;
  width: 30px;
  top: calc(50% + 7px);
}
#aceg-lbusiness .brand-item-swiper .swiper-button-next {
  rotate: 180deg;
}
#aceg-lbusiness .brand-item-swiper .swiper-button-prev::after,
#aceg-lbusiness .brand-item-swiper .swiper-button-next::after {
  content: none;
}
#aceg-lbusiness .brand-item-swiper .hacobune-video-js {
  background-color: #333;
  padding-top: 100%;
}
#aceg-lbusiness .brand-item-swiper .hacobune-video-js video {
    object-fit: cover;
}
#aceg-lbusiness .brand-item-swiper .hacobune-app-container {
  padding: unset;
}
#aceg-lbusiness .brand-item-swiper .hacobune-unit-video-outline {
  display: none;
}
#aceg-lbusiness .brand-item-link-btn {
  display: flex;
  justify-content: center;
}
#aceg-lbusiness .brand-item-link-btn a {
  background-color: #fff;
  border: 1px solid #221815;
  border-radius: 100px;
  display: inline-block;
  font-family: var(--ff-yumin);
  font-size: 14px;
  letter-spacing: .05em;
  padding: 7px 6px 5px;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
}
#aceg-lbusiness .more-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 120px;
}
#aceg-lbusiness .more-btn {
  background-color: #000000;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-family: var(--ff-yugo);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
  padding: 20px 20px 16px;
  width: 500px;
}
#aceg-lbusiness .more-btn.-theme1 {
  background-color: var(--theme-color1);
}
#aceg-lbusiness a.more-btn {
  transition: opacity .3s;
}
#aceg-lbusiness a.more-btn:hover {
  opacity: .7;
}
#aceg-lbusiness .pickup {
  margin-bottom: 120px;
}
#aceg-lbusiness .pickup-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 38px;
}
#aceg-lbusiness .pickup-title-en {
  font-family: var(--ff-play);
  font-size: 30px;
  letter-spacing: .05em;
}
#aceg-lbusiness .pickup-title-jp {
  font-family: var(--ff-yumin);
  font-size: 14px;
  font-weight: 600;
}
#aceg-lbusiness .pickup-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
#aceg-lbusiness a.pickup-item {
  transition: opacity .3s;
}
#aceg-lbusiness a.pickup-item:hover {
  opacity: .7;
}

/* PC・SP表示切替 */
#aceg-lbusiness .pc-only {
  display: block;
}
#aceg-lbusiness .sp-only {
  display: none;
}

@media (max-width: 767px) {
  /* MV */
  #aceg-lbusiness .mv {
    background-image: url('/img/usr/event/aceg-lbusiness/mv-bg-sp_02.jpg');
    padding: 32.26666666vw 8vw;
  }
  #aceg-lbusiness .mv-txt {
    gap: 11px;
  }
  #aceg-lbusiness .mv-txt-logo {
    width: 48px;
  }
  #aceg-lbusiness .mv-txt-main {
    font-size: 10.133333333vw;
  }
  #aceg-lbusiness .mv-txt-sub {
    font-size: 3.733333333vw;
    padding-left: 4px;
  }

  /* MV直下 */
  #aceg-lbusiness .mvbtm {
    padding-top: 32px;
    padding-inline: 4.266666666vw;
  }
  #aceg-lbusiness .mvbtm-lead {
    font-size: 3.733333333vw;
    line-height: 2.214;
  }

  /* アンカーリンク */
  #aceg-lbusiness .sec-nav {
    background: linear-gradient(180deg, #F6F2EC 0%, #F6F2EC 40%, transparent 40%, transparent 100%);
    padding-top: 11px;
    padding-bottom: 38px;
    padding-inline: 5.33333333vw;
  }
  #aceg-lbusiness .nav-ancs {
    justify-content: space-between;
  }
  #aceg-lbusiness .nav-anc {
    min-width: 23.733333333vw;
  }
  #aceg-lbusiness .nav-anc::before {
    height: 34px;
    width: 1px;
    bottom: -33px;
    transition: unset;
  }
  #aceg-lbusiness .nav-anc:hover::before {
    height: 34px;
    bottom: -33px;
  }
  #aceg-lbusiness .nav-anc::after {
    width: .5em;
    height: .5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    bottom: -34px;
  }
  #aceg-lbusiness .nav-anc:hover::after {
    bottom: -34px;
  }
  #aceg-lbusiness .nav-anc-img {
    margin-bottom: 11px;
  }
  #aceg-lbusiness .nav-anc:nth-child(1) .nav-anc-img img {
    width: 80px;
  }
  #aceg-lbusiness .nav-anc:nth-child(2) .nav-anc-img img {
    width: 81px;
  }
  #aceg-lbusiness .nav-anc:nth-child(3) .nav-anc-img img {
    width: 53px;
  }
  #aceg-lbusiness .nav-anc:hover .nav-anc-img img {
    scale: 1;
  }
  #aceg-lbusiness .nav-anc-txt {
    font-size: 4.266666666vw;
    letter-spacing: .02em;
  }
  #aceg-lbusiness .nav-anc-txt::before {
    height: 1px;
  }

  #aceg-lbusiness .sec-brand {
    padding-block: 33px 120px;
  }
  #aceg-lbusiness .brand {
    margin-bottom: 60px;
  }
  #aceg-lbusiness .brand + .brand {
    margin-top: 100px;
  }
  #aceg-lbusiness .brand:nth-child(even) {
    background: linear-gradient(180deg, transparent 0%, transparent 41px, #F6F2EC 41px, #F6F2EC 100%);
    padding-bottom: 83px;
  }
  #aceg-lbusiness .brand-name {
    font-size: 50px;
    padding-left: 7px;
    margin-bottom: 78px;
  }
  #aceg-lbusiness .brand-items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #aceg-lbusiness .brand-item-name {
    gap: 10px;
  }
  #aceg-lbusiness .brand-item:nth-child(even) .brand-item-name {
    align-items: end;
  }
  #aceg-lbusiness .brand-item-name-en {
    border-bottom: 1px solid currentColor;
    padding-left: 29px;
  }
  #aceg-lbusiness .brand-item:nth-child(even) .brand-item-name-en {
    padding-right: 29px;
    padding-left: 0;
  }
  #aceg-lbusiness .brand-item-name-en::before {
    left: 11px;
  }
  #aceg-lbusiness .brand-item:nth-child(even) .brand-item-name-en::before {
    left: -20px;
  }
  #aceg-lbusiness .brand-item-name-jp {
    padding-left: 30px;
	font-size: 13px;
  }
  #aceg-lbusiness .brand-item:nth-child(even) .brand-item-name-jp {
    padding-right: 30px;
    padding-left: 0;
  }
  #aceg-lbusiness .brand-item-detail {
    padding-inline: 8vw;
  }
  #aceg-lbusiness .brand-item-thumbnails {
    padding: 20px 0;
  }
  #aceg-lbusiness .brand-item-swiper .swiper-slide {
    width: 250px;
  }
  #aceg-lbusiness .brand-item-swiper .hacobune-app-container {
    width: 100%;
  }
  #aceg-lbusiness .brand-item-swiper .hacobune-unit-video {
    margin: unset;
  }
  #aceg-lbusiness .more-btns {
    gap: 20px;
    margin-bottom: 120px;
    margin-inline: 5.33333333vw;
  }
  #aceg-lbusiness .more-btn {
    font-size: 14px;
    padding: 16px 16px 13px;
    width: 100%;
  }
  #aceg-lbusiness .pickup {
    margin-bottom: 78px;
  }
  #aceg-lbusiness .pickup-items {
    grid-template-columns: unset;
    grid-auto-columns: 160px;
    grid-auto-flow: column;
    column-gap: 15px;
    padding-inline: 13px;
    overflow-x: auto;
  }
#aceg-lbusiness .brand-item-price {
  font-size: 15px;
}
#aceg-lbusiness .brand-item-txt {
  font-size: 15px;
}
  /* PC・SP表示切替 */
  #aceg-lbusiness .pc-only {
    display: none;
  }
  #aceg-lbusiness .sp-only {
    display: block;
  }
}