/*
 * common
 */
.for-pc {
  display: block !important;
}

.for-sp {
  display: none !important;
}

@media(max-width:992px) {
  .for-pc {
    display: none !important;
  }

  .for-sp {
    display: block !important;
  }
}

h2 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: #FFF;
}

.main-wrapper {
  width: 100%;
  /* max-width: 750px; */
  background-color: #FFFFFF;
  margin: 0 auto;
  overflow: hidden;
  font-family: var(--font-family-2);
}

.main-wrapper.underlayer {
  margin-top: 125px;
}

@media(max-width:992px) {
  .main-wrapper.underlayer {
    margin-top: 0;
  }
}

.wrapper-width {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.top-title {
  width: 100%;
  border-bottom: 1px solid;
  padding-left: 10px;
}

@media(max-width:992px) {
  .top-title {
    padding-left: 0;
  }
}

.top-title span {
  position: relative;
  padding-left: 15px;
}


.top-title span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #FFF;
  transform: translate(-50%, -50%) rotate(-70deg);
  transform-origin: center;
  pointer-events: none;
}

@media(max-width:992px) {
  .top-title span {
    padding-left: 0;
  }

  .top-title span::before {
    display: none;
  }
}

.top-title.color-sub {
  color: var(--txt-color-1);
  border: none;
}

.top-title.color-sub.pickupcast {
  color: var(--sub-color-12);
}

.top-title.color-sub.access {
  color: var(--txt-color-6);
}

@media(max-width:992px) {
  .top-title.color-sub {
    color: #FFF;
  }

  .top-title.color-sub span {
    color: var(--txt-color-1);
    display: block;
  }
}

.underlayer-titles {
  text-align: center;
  position: relative;
}

.underlayer-titles::after {
  content: "";
  position: absolute;
  background: var(--txt-color-1);
  height: 1px;
  width: 150px;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.underlayer-title {
    color: var(--sub-color-6);
}

.underlayer-titles p {
  color: var(--txt-color-1);
}

.underbar-titles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--txt-color-1);
  position: relative;
}

.underbar-titles.pickupcast {
  border-bottom: 1px solid var(--sub-color-12);
}

.underbar-titles.access {
  border-bottom: 1px solid var(--txt-color-6);
}

@media(max-width:992px) {
  .underbar-titles {
    align-items: flex-end;
    padding-bottom: 10px;
  }
}

.underbar-titles a {
  white-space: nowrap;
}

.js-ellipsis {
  position: relative;
  display: block;
  /* white-space: nowrap; */
  overflow: hidden;
  padding-right: 1em;
}

.js-ellipsis.is-truncated::after {
  content: '...';
  position: absolute;
  bottom: 0;
}

.txt-underline-yellow {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.txt-underline-yellow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 16px;
  background-color: var(--sub-color-3);
  z-index: -1;
  opacity: 0.7;
}

.fuwafuwa {
  transition: transform 1s ease-out;
  will-change: transform;
}