@charset "UTF-8";
/* -------- style.cssReset --------*/
.assignment {
  background: none !important;
}

.bgFixed {
  position: relative;
  padding: 1em;
}

.bgFixed::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(/wp-content/themes/twentytwentyone/assets/images/section_background-image.webp) center/cover no-repeat;
  z-index: -1;
}

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------- Top --------*/
.top-logo {
  padding: 0;
  margin-bottom: 3rem;
}
.top-logo img {
  max-width: 265px;
}

.fv__contentsArea {
  height: 100vh;
  padding: 2rem auto;
}

.videoArea {
  width: 100%;
  height: 100vh;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.videoArea .fv__video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.stickyButton {
  writing-mode: vertical-rl;
  color: #333;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.75);
  padding: 3rem 0.75rem;
  border-radius: 10px 0 0 10px;
  letter-spacing: 3px;
  position: fixed;
  right: 0;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .stickyButton {
    display: none;
  }
}

.videoArea::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.75;
}

.c-mainSection__imageSide {
  perspective: 1250px;
  overflow: hidden;
  width: 60%;
  border-radius: 40px;
}
@media screen and (max-width: 1000px) {
  .c-mainSection__imageSide {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-mainSection__imageSide {
    width: 100%;
  }
}
.c-mainSection__imageSide img {
  position: relative;
  z-index: 1;
}

.c-mainSection__videoImageSide {
  position: absolute;
  z-index: 0;
  width: 115%;
  top: 14%;
  left: 0%;
  transform: rotateY(40deg);
}

.c-mainSection__videoImageCenter {
  position: absolute;
  z-index: 0;
  width: 180%;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.c-mainSection__videoImageCenterFull {
  position: absolute;
  z-index: 0;
  width: 220%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* -------- company --------*/
.company {
  background: #232323;
}
.company .companyInfoWrap {
  margin: 3rem auto;
  max-width: 400px;
}
.company .companyInfoWrap dl {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding: 0 2rem 1rem;
}
@media screen and (max-width: 768px) {
  .company .companyInfoWrap dl {
    padding: 0 1rem 1rem;
  }
}
.company .companyInfoWrap dl dt {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #ddd;
}
.company .companyInfoWrap dl dd {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  color: #eee;
}
@media screen and (max-width: 768px) {
  .company .companyInfoWrap dl dd {
    padding-left: 0;
    margin-left: 10px;
  }
}

/* -------- terms & Privacy --------*/
.termsPrivacy {
  background: #232323;
}
.termsPrivacy .termsPrivacyWrap {
  margin: 3rem auto;
  max-width: 800px;
  line-height: 160%;
}
.termsPrivacy .termsPrivacyWrap h2 {
  font-weight: 700;
  font-size: 110%;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3rem;
  margin: 4rem auto 0.3rem;
  color: #ddd;
}
.termsPrivacy .termsPrivacyWrap h3 {
  margin-bottom: 0.3rem;
  color: #ddd;
  font-size: 100%;
}
.termsPrivacy .termsPrivacyWrap p, .termsPrivacy .termsPrivacyWrap ol {
  margin-bottom: 1rem;
  color: #eee;
  font-size: 90%;
}
.termsPrivacy .termsPrivacyWrap p {
  margin-left: 0.5rem;
}
.termsPrivacy .termsPrivacyWrap p:last-child {
  text-align: right;
  margin-top: 5rem;
}
.termsPrivacy .termsPrivacyWrap ol {
  margin-left: 1.5rem;
  list-style: auto;
}
.termsPrivacy .termsPrivacyWrap ol ol {
  margin-left: 3rem;
}
.termsPrivacy .termsPrivacyWrap li {
  margin-bottom: 0.5rem;
}
.termsPrivacy .termsPrivacyWrap a {
  color: #ddd;
}
.termsPrivacy .termsPrivacyWrap a:hover {
  opacity: 0.75;
}

/* -------- Q&A --------*/
.qa {
  background: #000;
  /* アコーディオンが開いた時にアイコンをアニメーションさせます */
  /* --------アコーディオンの中身のスタイル-------- */
}
.qa details {
  max-width: 800px;
  margin: 0 auto;
  line-height: 160%;
}
.qa h2 {
  text-align: center;
}
.qa .summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.qa summary {
  color: #999;
  display: block;
}
.qa summary::-webkit-details-marker, .qa summary::marker {
  display: none !important;
}
.qa .icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
.qa details[open] .icon {
  transform: rotate(180deg);
}
.qa .icon::before, .qa .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #fff;
}
.qa .icon::before {
  left: 0;
  transform: rotate(45deg);
}
.qa .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.qa details[open] .summary_inner::after {
  animation: 0.4s open-animation forwards;
}
@keyframes open-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.qa .content {
  padding: 0.5rem 3rem 2.5rem;
  line-height: 160%;
}

.lease-table div {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .lease-table div {
    width: 100%;
  }
}
.lease-table div p {
  text-align: center;
  padding: 1rem;
  margin-bottom: 2rem;
}
.lease-table div table {
  width: 100%;
  border: none;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  overflow: hidden;
}
.lease-table div table .bL-none {
  border-left: none;
}
.lease-table div table .bR-none {
  border-right: none;
}
.lease-table div table .bB-none {
  border-bottom: none;
}
.lease-table div table th {
  background: rgba(38, 38, 38, 0.8);
}
.lease-table div table td {
  background: rgba(0, 0, 0, 0.2);
}
.lease-table div table th, .lease-table div table td {
  padding: 1rem;
}
.lease-table div table .mainHead {
  border: none;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
}/*# sourceMappingURL=style_02.css.map */