@charset "UTF-8";
/* --------------- variables --------------------- */
/* Break Point */
/*あとで消す*/
/**/
#header {
  transform: translateY(-100%);
  animation: headerSlideIn 0.8s ease-out forwards;
  animation-delay: 1s;
}
@keyframes headerSlideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
#mv {
  position: relative;
  overflow: hidden;
}
#mv .bgVideo video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100svh;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#mv .mainCatch {
  overflow: hidden;
}
#mv .mainCatch img {
  transform-origin: left;
  animation: slideUp 1s ease-in-out forwards;
}
#mv .mainText {
  font-weight: 400;
  display: inline-flex;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#mv .mainText span {
  width: auto;
  height: auto;
  display: block;
  animation: slideLeft 40s linear infinite;
}
@keyframes grow-shrink {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.topTopics dt {
  color: #fff;
  font-family: "Inter", sans-serif;
}
.topTopics dd a {
  color: #fff;
}

#about {
  color: #fff;
}
#about h2 {
  font-weight: 400;
  font-family: "Archivo Black", sans-serif;
  color: rgba(241, 237, 229, 0.3);
}
#about .aboutWrap .textWrap h3 {
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
}
#about .aboutWrap .textWrap h3 span {
  transform-origin: left;
  transform: translate3d(0, 100%, 0);
  display: block;
}
#about .aboutWrap .textWrap h3 span.active {
  animation: slideUp 1s ease-in-out forwards;
}
#about .aboutWrap .textWrap p {
  overflow: hidden;
}
#about .aboutWrap .textWrap p span {
  transform-origin: left;
  transform: translate3d(0, 100%, 0);
  display: block;
}
#about .aboutWrap .textWrap p span.active {
  animation: slideUp 1s ease-in-out forwards;
}
#about .aboutWrap .textWrap .btn a {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  background-color: rgba(241, 241, 241, 0.8);
  font-weight: 700;
}

#practices h2 {
  font-family: "Archivo Black", sans-serif;
  color: rgba(0, 0, 0, 0.2);
}
#practices .practicesWrap .practicesLink {
  overflow: hidden;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li {
  border-bottom: 1px solid #cecece;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li:last-of-type {
  border-bottom: none;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > div {
  overflow: hidden;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > div a {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate3d(0, 100%, 0);
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > div a.active {
  animation: slideUp 1s ease-in-out forwards;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li .moreall {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border: 1px solid #000;
  flex: none;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > ul li {
  border-bottom: 1px solid #cecece;
  overflow: hidden;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > ul li:last-of-type {
  border-bottom: none;
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a {
  font-weight: 700;
  display: block;
  position: relative;
  transform: translate3d(0, 100%, 0);
}
#practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a.active {
  animation: slideUp 1s ease-in-out forwards;
}

/* fadeIn */
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  @keyframes slideUp {
    0% {
      transform: translate3d(0, 100%, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  #mv {
    width: 100%;
    height: 100svh;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #mv:before {
    content: "";
    display: block;
    width: 100%;
    height: 50vh;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #mv:after {
    content: "";
    display: block;
    width: 100%;
    height: 50vh;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
  }
  #mv .mainCatch {
    position: relative;
    z-index: 3;
  }
  #mv .mainText {
    font-size: 95px;
    gap: 20px;
    position: absolute;
    z-index: 3;
    bottom: 110px;
  }
  #mv .scroll {
    display: none;
  }
  .topTopics {
    padding: 10px 20px 20px;
    position: relative;
    z-index: 3;
    background-position: top 20px left, bottom left;
    margin-top: -1px;
  }
  #about {
    padding: 70px 0 70px;
    background-image: url(../images/home/about_bg_sp.webp), url(../images/home/about_triangle.webp);
    background-repeat: no-repeat;
    background-size: 100% auto, 100px auto;
  }
  #about h2 {
    font-size: 36px;
    padding-left: 20px;
  }
  #about .aboutWrap {
    margin-top: 30px;
    padding-left: 20px;
  }
  #about .aboutWrap + .aboutWrap {
    margin-top: 25px;
  }
  #about .aboutWrap .textWrap {
    padding-right: 20px;
    margin-top: -16px;
  }
  #about .aboutWrap .textWrap h3 {
    font-size: 20px;
  }
  #about .aboutWrap .textWrap p {
    font-size: 13px;
    margin-top: 15px;
  }
  #about .aboutWrap .textWrap .btn {
    margin-top: 30px;
  }
  #about .aboutWrap .textWrap .btn a {
    font-size: 15px;
    max-width: 260px;
    height: 44px;
    border-radius: 22px;
    margin: 0 auto;
  }
  #practices {
    padding: 70px 0 55px;
    background: url(../images/home/practices_bg_sp.webp) no-repeat top right;
    background-size: 100% auto;
    background-color: #f1f1f1;
  }
  #practices h2 {
    font-size: 36px;
    padding: 0 20px;
  }
  #practices .practicesWrap {
    margin-top: 30px;
  }
  #practices .practicesWrap figure img {
    width: 100%;
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #practices .practicesWrap .practicesLink {
    padding: 20px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > div a {
    font-size: 18px;
    padding: 15px 10px;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li .moreall {
    width: 90px;
    height: 23px;
    font-size: 12px;
    border-radius: 12px;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a {
    font-size: 15px;
    padding: 15px 40px 15px 25px;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a:after {
    content: "";
    display: inline-block;
    background: url(../images/common/arrow.webp) no-repeat center/cover;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 15px;
    top: calc(50% - 7px);
  }
  /* fadeIn */
}
@media print, screen and (min-width: 1024px) {
  @keyframes slideUp {
    0% {
      transform: translate3d(0, 100%, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  #mv {
    width: 100%;
    height: 100vh;
  }
  #mv:before {
    content: "";
    display: block;
    width: 100%;
    height: 45vh;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #mv:after {
    content: "";
    display: block;
    width: 100%;
    height: 45vh;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
  }
  #mv .mvInner {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  #mv .mainCatch {
    padding-top: 90px;
    position: relative;
    z-index: 3;
  }
  #mv .mainText {
    font-size: 200px;
    gap: 40px;
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-70%);
  }
  #mv .scroll {
    position: absolute;
    left: 40px;
    bottom: 190px;
    z-index: 3;
    display: inline-block;
    width: 1px;
    height: 150px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
  }
  #mv .scroll:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform-origin: top;
    animation: grow-shrink 2s ease-in-out infinite;
  }
  .topTopics {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    bottom: 15%;
    border-radius: 6px 0 0 6px;
    max-width: 470px;
    z-index: 3;
  }
  .topTopics dt {
    flex: none;
    font-size: 16px;
  }
  .topTopics dd a {
    font-size: 15px;
  }
  .topTopics dd a:hover {
    text-decoration: underline;
  }
  #about {
    padding: 200px 0 190px;
    background-image: url(../images/home/about_bg_pc.webp), url(../images/home/about_triangle.webp);
    background-repeat: no-repeat;
    background-position: top 80px left, bottom left;
  }
  #about .aboutInner {
    padding-left: calc((100% - 1400px) / 2);
  }
  #about h2 {
    font-size: 90px;
    position: absolute;
    top: 0;
    left: 5%;
  }
  #about .aboutWrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    padding-left: 5%;
  }
  #about .aboutWrap + .aboutWrap {
    margin-top: 85px;
  }
  #about .aboutWrap figure {
    width: calc(100% - 405px);
    margin-left: -165px;
  }
  #about .aboutWrap figure img {
    min-height: 608px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
  #about .aboutWrap .textWrap {
    z-index: 2;
  }
  #about .aboutWrap .textWrap h3 {
    font-size: 40px;
    width: 570px;
  }
  #about .aboutWrap .textWrap p {
    margin-top: 20px;
    width: 450px;
  }
  #about .aboutWrap .textWrap .btn {
    margin-top: 30px;
    width: 450px;
  }
  #about .aboutWrap .textWrap .btn a {
    font-size: 16px;
    width: 230px;
    height: 46px;
    border-radius: 24px;
    margin-left: auto;
    transition: 0.5s;
  }
  #about .aboutWrap .textWrap .btn a:hover {
    color: #fff;
    background-color: #a47923;
  }
  #practices {
    padding: 160px 0 150px;
    background: url(../images/home/practices_bg_pc.webp) no-repeat top right;
    background-color: #f1f1f1;
  }
  #practices .practicesInner {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
  }
  #practices h2 {
    font-size: 90px;
  }
  #practices .practicesWrap {
    display: flex;
    gap: 90px;
    margin-top: 60px;
  }
  #practices .practicesWrap figure {
    width: calc(50% - 50px);
  }
  #practices .practicesWrap figure img {
    border-radius: 15px;
  }
  #practices .practicesWrap .practicesLink {
    width: calc(50% - 40px);
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > div a {
    font-size: 24px;
    padding: 25px 20px 25px 25px;
    transition: 0.3s;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > div a:hover {
    background-color: #f7f7f7;
    color: #a47923;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > div a:hover .moreall {
    border: 1px solid #a47923;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li .moreall {
    width: 110px;
    height: 30px;
    font-size: 14px;
    border-radius: 15px;
    transition: 0.3s;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a {
    font-size: 20px;
    padding: 25px 60px 25px 50px;
    transition: 0.3s;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a:after {
    content: "";
    display: inline-block;
    background: url(../images/common/arrow.webp) no-repeat center/cover;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    transition: 0.3s;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a:hover {
    background-color: #f7f7f7;
    color: #a47923;
  }
  #practices .practicesWrap .practicesLink .practicesLinkList > li > ul li a:hover:after {
    background: url(../images/common/arrow_gold.webp) no-repeat center/cover;
  }
  /* fadeIn */
}
@media screen and (min-width: 1024px) and (max-width: 1023px) {
  @keyframes slideUp {
    0% {
      transform: translate3d(0, 100%, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  /* fadeIn */
}
@media screen and (max-width: 1200px) {
  @keyframes slideUp {
    0% {
      transform: translate3d(0, 100%, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  /* fadeIn */
}
@media print, screen and (min-width: 1201px) {
  @keyframes slideUp {
    0% {
      transform: translate3d(0, 100%, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  /* fadeIn */
}
/*# sourceMappingURL=map/home.css.map */
