@charset "utf-8";

.dxc__hero {
  margin: 0px 0 0;
  height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
}
.dxc__hero__wrapper {
  height: 100%;
  overflow: hidden;
}
.dxc__hero__inner {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  background: #fff;
  background-position: center bottom;
  background: center top/cover no-repeat;
  background-size: 120%; /*サイズをひきのばす*/
  animation: bgmove 25s ease infinite;
}
@keyframes bgmove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 12% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@media (max-width: 640px) {
  @keyframes bgmove {
    0% {
      background-position: 40% 0%;
    }
    50% {
      background-position: 60% 0%;
    }
    100% {
      background-position: 40% 0%;
    }
  }
}
.dxc__hero__inner::after {
  content: "";
  display: block;
  width: 100%; /* 幅を親要素と同じに設定 */
  height: 100%; /* 高さを親要素と同じに設定 */
  position: absolute;
  top: 0;
  left: 0; /* 左端から開始させるために追加 */
  background-image: radial-gradient(#000000 30%, transparent 30%);
  background-color: #bcbcbc;
  background-position: 0 0;
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  transform: scale(1.03);
}
.slick-initialized .slick-slide {
  display: block;
}
.dxc__hero__inner:focus {
  outline: none;
}
.dxc__hero__img {
  position: relative;
  z-index: 0;
}
.dxc__hero__info {
  margin: 10% 10% 0;
}

@media (max-width: 950px) {
  .dxc__hero__info {
    margin: 25% 5% 0;
  }
  .dxc__hero__inner {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh);
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200%; /*サイズをひきのばす*/
  }
}

@media (max-width: 640px) {
  .dxc__hero__info {
    margin: 25% 5% 0;
  }
  .dxc__hero__inner {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh);
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 340%; /*サイズをひきのばす*/
  }
  .dxc__hero {
    height: calc(90vh);
  }
  .slick-list,
  .dxc__hero__wrapper {
    height: 100%;
  }
  .dxc__hero__inner {
    background-position: top;
  }
}
/* #renewalよりコピー  */
.header {
  transition: 0.5s all ease;
  transform: translateY(-60px);
  background-color: #ffffffe0;
}
.header.show {
  transform: translateY(0);
}

.top__main {
  position: relative;
  width: 100%;
  height: 90vh;
}

.top__main2 {
  position: relative;
  padding: 0%;
  box-sizing: border-box;
  height: 120px;
  bottom: 0px;
}
.top__main3 {
  position: relative;
  padding: 0%;
  box-sizing: border-box;
  height: 10vh;
}

.top__main__bar {
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  left: 0;
  background: #333333;
  z-index: 1;
}
@media (max-width: 640px) {
  .top__main {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .top__main2 {
    display: none;
  }
  .top__main__bar {
    width: 20px;
  }
}

.top__main__btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.top__main__btn a {
  display: block;
  position: relative;
  width: 100%;
  transition: 0.3s all ease;
}
.top__main__btn a:hover {
  padding-bottom: 80px;
}

.top__main__btn__name {
  display: inline-block;

  font-size: 85px;
  color: #333333;
  padding-bottom: 30px;
  font-weight: bold;
}
@media (max-width: 640px) {
  .top__main__btn a:hover {
    padding-bottom: 0;
  }
  .top__main__btn__name {
    font-size: 42px;
    line-height: 1.05em;
    font-weight: bold;
  }
}

.top__main__btn__name hr {
  display: block;
  margin: 10px 0 0;
  height: 4px;
  width: 0;
  background: #fb2f21;
  border: none;
  transition: 0.3s all ease;
}
.top__main__btn a:hover .top__main__btn__name hr {
  width: 100%;
}
.top__main__btn__name hr.show {
  width: 100%;
}
@media (max-width: 640px) {
  .top__main__btn__name hr {
    margin: 5px 0 0;
    transition: 0.5s all ease;
  }
}

.top__main__btn__sub {
  display: block;
  position: absolute;
  top: 120px;
  left: 5px;
  font-size: 20px;
  color: #333;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s all ease;
  font-weight: bold;
  line-height: 1.25em;
}
.top__main__btn a:hover .top__main__btn__sub {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .top__main__btn__sub {
    opacity: 1;
    transform: translateY(0);
    font-size: 13px;
    top: 100px;
    line-height: 1.3em;
  }
  .top__main__btn a:hover .top__main__btn__name hr {
    width: 0;
  }
  .top__main__btn__sub.show {
    top: 125px;
  }
}

.top__main__logo_hero {
  display: block;
  width: 255px;
  padding-left: 0px;
}
.top__main__logo_hero img {
  width: 100%;
}

.top__main__logo_hero2 {
  display: block;
  width: 255px;
  padding-right: 0px;
}
.top__main__logo_hero2 img {
  width: 100%;
}

.top__main__menu {
  position: absolute;
  width: calc(100% - 0px);
  bottom: 35%;
}
.top__main__menu ul {
  display: flex;
  margin: 20px 0 0;
  padding-left: 5%;
  padding-right: 5%;
}
.top__main__menu ul li {
  margin: 0 20px 0 0;
}
.top__main__menu ul li:last-child {
  margin: 0 0 0 auto;
}
.top__main__menu ul li a {
  font-size: 12px;
}
@media (max-width: 640px) {
  .top__main__menu {
    position: absolute;
    width: 100%;
    bottom: 0px;
  }
  .top__main__logo_hero {
    width: 280px;
  }
  .top__main__logo_hero img {
    width: 70%;
  }

  .top__main__logo_hero2 {
    width: 280px;
  }
  .top__main__logo_hero2 img {
    width: 70%;
  }

  .top__main__menu ul {
    display: none;
  }
}

.top__main__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__main__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  opacity: 0;
  transition: 1s all ease;
}
.top__main__bg img.show {
  visibility: visible;
  opacity: 1;
}

.top__news {
  width: 90%;
  max-width: 800px;
  margin: 20px auto 0;
  padding: 0 0;
}
.top__news ul li {
  margin: 0 0 40px;

  border-bottom: solid 1px;
  padding: 20px;
  border-color: #000000;
}
.top__news ul li a {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
  display: flex;
}
.top__news ul li a div p {
  font-size: 12px;
  font-weight: normal;
  margin-top: 10px;
}
.top__news ul li div:first-child {
  margin: 0 50px 0 0;
  font-size: 12px;
  font-weight: normal;
}

@media (max-width: 640px) {
  .top__news ul li span {
    display: block;
    margin: 0 0 5px 0;
  }
  .top__news ul li {
    margin: 0 0 40px;
  }
  .top__news ul li a {
    display: block;
  }
  .top__news ul li div:first-child {
    margin: 0 0 15px 0;
  }
  .top__news {
    width: 80%;
  }
}

.top__news__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #3b2f54;
  border: solid 1px #3b2f54;
  border-radius: 5px;
  width: 200px;
  height: 40px;
  margin: 60px auto 0;
}

.top__about {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 100px 0 0;
}
.top__about dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.8em;
}
.top__about dt {
  width: 150px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px;
}
.top__about dt span {
  font-weight: normal;
  font-size: 12px;
}
.top__about dd {
  width: calc(100% - 100px);
  color: #333;
  margin: 0 0 20px;
}

.top__access {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 100px 0 0;
}
.top__access__wrapper {
  display: flex;
  margin: 0 0 60px;
  padding: 0 0 40px;
  border-bottom: 0.5px solid #333333;
}
.top__access__box {
  width: 50%;
  color: #333;
}

top__access__wrapper:last-child {
  border: none;
}

top__access__wrapper:last-child top__access__box:first-child {
  width: calc(100% - 250px);
}
top__access__wrapper:last-child top__access__box:last-child {
  width: 250px;
}

@media (max-width: 640px) {
  .top__access__wrapper {
    display: block;
    margin: 0 0 60px;
    padding: 0 0 40px;
    border-bottom: 0.5px solid #333;
  }
  .top__access__box {
    width: 100%;
    color: #333;
  }
  top__access__wrapper:last-child top__access__box:first-child {
    width: 100%;
  }
  top__access__wrapper:last-child top__access__box:last-child {
    width: 100%;
  }
}

.top__access__title {
  font-size: 21px;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.4em;
}
.top__access__head {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px;
}
.top__access__text {
  font-size: 14px;
  line-height: 1.8em;
  margin: 0 0 20px;
}
top__access__wrapper:last-child top__access__title {
  font-size: 18px;
}
top__access__wrapper:last-child top__access__head {
  font-size: 12px;
}
top__access__wrapper:last-child top__access__text {
  font-size: 12px;
}

.top__access__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  border: solid 0.5px #333;
  border-radius: 100px;
  width: 200px;
  height: 40px;
  margin: 20px auto 0;
  background: white;
}

/*hero動画再生*/
.top__hero_mov {
  width: 100%;

  height: calc(100vh - 120px);
  overflow: hidden;

  background-color: #000000;
}
.top__hero_mov video {
  width: 100%;
  overflow: hidden;

  position: relative;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.top__hero_mov-inner {
  position: absolute;
  left: 7%;
  top: 8%;
  color: #fff;
  text-align: left;
  z-index: 999;
  text-shadow: #333333c1 0.1em 0.1em 0.1em;
}
.top__hero_mov-inner2 {
  position: absolute;
  right: 7%;
  bottom: 20%;
  color: #fff;
  text-align: right;
  z-index: 999;
  text-shadow: #333333c1 0.1em 0.1em 0.1em;
}
.top__hero_mov-title {
  font-size: 34px;
  font-weight: normal;
  margin-top: 10px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  font-family: "Futura-medium";
}

.top__hero_mov-title2 {
  margin-top: 40px;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0em;
}

.top__hero_mov-text {
  margin: 40px 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}

@media (max-width: 950px) {
  .top__hero_mov video {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .top__hero_mov {
    width: 100%;
    height: calc(100vh - 20vh);
  }

  .top__hero_mov video {
    width: 105%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .top__hero_mov-inner {
    bottom: 15%;
    right: 6%;
  }
  .top__hero_mov-inner2 {
    bottom: 15%;
    right: 6%;
  }
  .top__hero_mov-title {
    font-size: 27px;
    margin-top: 5px;
  }
  .top__hero_mov-title2 {
    font-size: 27px;
  }
  .top__hero_mov-text {
    font-size: 15px;
    line-height: 1.5em;
    margin: 5% 0 0;
  }
}

.top__wrapper__head {
  margin: 0px 0 0;
  font-size: 20px;
  line-height: 1.2em;
  font-weight: bold;
}

.top__wrapper__text {
  font-size: 15px;
  line-height: 1.4em;
  font-weight: normal;
  width: calc(100% - 20px);
  margin-bottom: 30px;
}

.top__wrapper__text span {
  padding: 0 0 0;
  font-weight: normal;
}

.top__wrapper__block {
  width: calc(100% / 2 - 5%);
  margin: 0 2% 5%;
  position: relative;
}
.top__wrapper__block3 {
  width: calc(100% / 3 - 4%);
  margin: 0 2% 5%;
  position: relative;
  text-align: center;
}

@media (max-width: 640px) {
  .top__wrapper__block {
    width: 100%;
  }
  .top__wrapper__block:first-child {
    width: 100%;
    margin: 0;
  }
  .top__wrapper__block3 {
    width: 85%;
    text-align: center;
    margin: 0 auto;
  }
}
.top__wrapper__img {
  width: 100%;
  margin: 10px 0 15px;
  bottom: 0;
  transition: all 0.5s;
  cursor: pointer; /* リンクの上にカーソルがあるときに、カーソルを指の形にする */
  height: auto; /* または適切な値に設定 */
  position: relative;
}
.top__wrapper__img__none {
  width: 100%;
  margin: 10px 0 15px;
  bottom: 0;
  position: relative;
}
.top__wrapper__img img {
  width: 100%;
  position: relative; /* z-indexを有効にするためには、positionがstatic以外である必要があります */
  z-index: 990; /* 例として大きな値を設定 */
  height: auto; /* 画像が元のアスペクト比を保持するように設定 */
}
.gradient3 {
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;

  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  /*背景色*/
  background: linear-gradient(to right, #44ea76 0%, #39fad7 80%, #39fad7 100%);
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;
}
/*hoverした際のスケールで全体を拡大し影を付ける*/
.top__wrapper__img:hover {
  transform: scale(1.03);
}

.u-border-radius_img img {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.393) 4px 4px 4px;
}
.slick-dots {
  bottom: 8%;
}
.slick-initialized .slick-slide {
  display: block;
}

.news_flex {
  display: flex;
}
span.date {
  margin-right: 40px;
}
@media (max-width: 640px) {
  .news_flex {
    flex-direction: column;
  }
}

.sales-detail__pdf-wrap {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  gap: 20px;
}
.sales-detail__pdf-btn {
  border: 1px solid #000000;
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: rgb(250, 250, 250);
  text-align: center;
}
.sales-detail__member-btn {
  border: 1px solid #000000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: rgb(0, 0, 0);
}
@media (max-width: 640px) {
  .sales-detail__pdf-wrap {
    position: relative;
    top: inherit;
    left: inherit;
    display: inline-flex;
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 640px) {
.sp__menu{
  display: none;
}
#top-head{
  margin-top: -30px!important;

}
}