@charset "UTF-8";

/* ===============================================
# bddvd
=============================================== */
.txt-scale {
  display: block;
  -webkit-transform: scale(1, 1.2);
  transform: scale(1, 1.2);
}

.p-bddvd {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.-subLoadComplete .p-bddvd {
  -webkit-animation: ani-fadein 0.8s cubic-bezier(0.02, 0.88, 0.58, 1) 0s 1 normal forwards;
  animation: ani-fadein 0.8s cubic-bezier(0.02, 0.88, 0.58, 1) 0s 1 normal forwards;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98), -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
}

.p-bddvd {
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-bddvd {
    max-width: 1200px;
    min-height: 260px;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd {
    padding: 0 4vw;
    margin-top: 30px;
  }
}

.p-bddvd__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-bddvd__in {
    margin: 40px 3.33333vw 0;
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-bddvd__nav {
  width: 322px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 769px) {
  .p-bddvd__nav--stickey {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }
}

.p-bddvd__nav--subttl>span {
  background: #333;
  padding: 4px;
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--subttl>span {
    -webkit-transform: translate(0, 3px) scale(0.7);
    transform: translate(0, 3px) scale(0.7);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--cont.-half {
    width: calc(50% - 5px);
  }

  .p-bddvd__nav--cont.-half:first-child {
    margin-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--cont.-full {
    width: 100%;
  }
}

.p-bddvd__nav--list {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .-full .p-bddvd__nav--list {
    padding: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--list {
    padding: 5px;
    margin-bottom: 5px;
  }
}

.p-bddvd__nav--item:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .-full .p-bddvd__nav--item {
    width: calc(50% - 5px);
    border: 1px solid #333;
    padding: 5px;
    margin-bottom: 10px;
  }

  .-full .p-bddvd__nav--item:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}

.p-bddvd__nav--item a {
  position: relative;
  display: block;
  background: #FFF;
  overflow: hidden;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  padding: 13px 20px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--item a {
    font-size: 10px;
    padding: 6px 9px;
  }
}

.p-bddvd__nav--item a span {
  position: relative;
  color: #000;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  z-index: 11;
}

.p-bddvd__nav--item a::before {
  content: '';
  display: block;
  width: 100%;
  height: 56px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  z-index: 10;
}

.p-bddvd__nav--item a::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  -webkit-mask-size: 9px 9px;
  mask-size: 9px 9px;
  -webkit-mask-image: url(../../assets/img/common/icon/icon-arrow.svg);
  mask-image: url(../../assets/img/common/icon/icon-arrow.svg);
  background-color: #000;
  position: absolute;
  bottom: 10px;
  right: 10px;
  -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, background-color .3s ease;
  transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  z-index: 11;
}

@media screen and (max-width: 768px) {
  .p-bddvd__nav--item a::after {
    width: 5px;
    height: 5px;
    -webkit-mask-size: 5px 5px;
    mask-size: 5px 5px;
    bottom: 5px;
    right: 5px;
  }
}

.p-bddvd__nav--item a.is-active::before,
.p-bddvd__nav--item a:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.p-bddvd__nav--item a.is-active::after,
.p-bddvd__nav--item a:hover::after {
  -webkit-transform: translate(5px, 5px);
  transform: translate(5px, 5px);
  background-color: #fff;
}

@media screen and (max-width: 768px) {

  .p-bddvd__nav--item a.is-active::after,
  .p-bddvd__nav--item a:hover::after {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
}

.p-bddvd__nav--item a.is-active span,
.p-bddvd__nav--item a:hover span {
  color: #FFF;
}

@media screen and (min-width: 769px) {
  .p-bddvd__content {
    width: calc(100% - 322px - 50px);
    min-height: calc(100vh + 10px);
    margin-left: 50px;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }
}

.p-bddvd__content--item {
  display: none;
}

.p-bddvd__content--ttl {
  position: relative;
  margin-bottom: -1px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__content--ttl {
    margin-bottom: -1px;
  }
}

.p-bddvd__content--ttl::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 14.168%;
  background: url("../../assets/img/bddvd/bddvd_ttl.svg") no-repeat left center/contain;
}

.p-bddvd__content--detailTop {
  padding: 10px;
  border: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .p-bddvd__content--detailTop {
    padding: 6px;
  }
}

.p-bddvd__title {
  background: #FFF;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-bddvd__title {
    padding: 7px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-bddvd__title--subttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__title--subttl {
    margin-right: 0px;
  }
}

.p-bddvd__title--subttl>span {
  display: block;
  padding: 4px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__title--subttl>span {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left;
    transform-origin: left;
    padding-top: 2px;
  }
}

@media screen and (min-width: 769px) {
  .p-bddvd__title--ttl {
    width: calc(100% - 115px - 24px);
  }
}

@media screen and (max-width: 768px) {
  .p-bddvd__title--ttl {
    width: calc(100% - 110px - 5px);
  }
}

.p-bddvd__title--ttl {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-bddvd__title--ttl {
    font-size: 10px;
    line-height: 2;
  }
}

.p-bddvd__title--img {
  margin-top: 8px;
}

.p-bddvd__title--img img {
  display: block;
  margin: 0 auto;
}

.p-bddvd__detail {
  border: 1px solid #333;
  padding: 10px;
  margin-top: -1px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__detail {
    padding: 6px;
  }
}

.p-bddvd__detail a {
  text-decoration: underline;
}

.p-bddvd__detail--ttl {
  padding: 20px;
  margin-bottom: 36px;
  background: #FFF;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

@media screen and (max-width: 768px) {
  .p-bddvd__detail--ttl {
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 10px;
  }
}

.p-bddvd__detail--itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__detail--itemList {
    gap: 16px;
  }
}

.p-bddvd__detail--name {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__detail--name {
    font-size: 10px;
    margin-bottom: 7px;
  }
}

.p-bddvd__pkgDetail {
  margin-top: 40px;
  margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
  .p-bddvd__pkgDetail {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 2;
  }
}

.p-bddvd__pkgDetail--txt {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-bddvd__pkgDetail--txt {
    font-size: 10px;
    line-height: 1.6;
  }
}

.p-bddvd__pkgDetail--txt span.txt-inline {
  display: block;
  padding-left: 3em;
  text-indent: -3em;
}

@media screen and (max-width: 768px) {
  .p-bddvd__Event {
    font-size: 12px;
  }
}

.p-bddvd__Event--ttl {
  background: #fff;
  margin-bottom: 32px;
  color: #000;
  text-align: center;
  font-size: 20px;
  letter-spacing: .06em;
  font-family: "Oswald", sans-serif;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .p-bddvd__Event--ttl {
    padding: 12px 0;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1;
  }
}

.p-bddvd__Event--txt {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-bddvd__Event--txt {
    font-size: 10px;
    line-height: 2;
  }
}

.p-bddvd__Event__wrap{
  padding: 30px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-bddvd__Event__wrap {
    font-size: 10px;
    padding: 20px;
  }
}

.p-bddvd__Event__e1{
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.p-bddvd__Event__e3{
  display: block;
  padding-left: 3.5em;
  text-indent: -3.5em;
}