@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-y: scroll !important;
  position: relative;
  /* 親要素に指定 */
}

html {
  font-size: 0.78125vw;
  /* ビューポート幅 1280px のとき 1rem = 10px */
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
    /* 375px時に10px */
  }
}

li {
  list-style: none;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  line-height: 1.6;
  font-weight: bold;
  color: #050408;
}

p {
  line-height: 1.7;
  color: #050408;
}

a,
span {
  display: block;
}

a {
  text-decoration: none;
  color: #050408;
}

.u-hidden-sp{
  display:block;
}

.u-hidden-pc{
  display: none;
}

@media (max-width: 768px) {
  .u-hidden-sp{
    display: none;
  }
  
  .u-hidden-pc{
    display:block;
  }
}

.l-inner {
  max-width: 110rem;
  width: 100%;
  padding: 0 2rem;
  margin: auto;
}

.l-inner.--narrow {
  max-width: 80rem;
  width: 100%;
  padding: 0 2rem;
  margin: auto;
}

/* Layout
* ========================== */

.l-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);  top: 3.4rem;
  top: 3.4rem;
    z-index: 999;
}

.l-header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.l-header__container nav {
  flex: 1;
  width: 100rem;
}

.l-header__container-logo {
  max-width: 6.4rem;
}

.l-header__container-list {
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  background: #000000;
  padding: 2rem 4.8rem;
  border-radius: 3rem;
}

.l-header__container-list-item a {
  color: transparent;
  font-size: 1.4rem;
  background: linear-gradient(to right, rgb(83, 203, 224) 50%, #ffffff 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
}

.l-header__container-list-item a:hover {
  background-position: 0 100%;
}

.l-header__drawer{
  display: none;
}

@media (max-width: 768px) {

  .l-header{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
  }

  .l-header__container{
    display: block;
  }

  .l-header__container-logo {
    max-width: 4.4rem;
}

  /*=========================================
# ハンバーガーメニュー
=========================================*/
.l-header__hamburger {
  position: fixed;
  top: 1.4rem;
  right: 2rem;
  z-index: 150;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.l-header__hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: transform .3s, opacity .3s;
}

.l-header__hamburger span:nth-child(1) { top: 30%; }
.l-header__hamburger span:nth-child(2) { top: 60%; }
.l-header__hamburger span:nth-child(3) { top: 90%; }

/* 開いたときのアニメーション */
.l-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  background-color: #fff;
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  background-color: #fff;
}

/*=========================================
# ドロワーメニュー
=========================================*/
.l-header__drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity .3s, visibility .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 開いたとき */
.l-header__drawer.is-active {
  visibility: visible;
  opacity: 1;
}

/* ナビゲーションリスト */
.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.l-header__drawer-link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
  transition: .3s;
}

.l-header__drawer-link:hover{
  opacity: .7;
}

.l-header__container nav{
  display: none;
}
}

/* header ************************************************/

.l-footer {
  background-color: #000000;
  padding: 4rem 0;
}

.l-footer__flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-footer__flexbox-logo {
  max-width: 6.5rem;
}

.l-footer__flexbox-list {
  display: flex;
  gap: 2rem;
}

.l-footer__flexbox-list-item a {
  color: #fff;
  font-size: 1.8rem;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  transition: .3s;
}

.l-footer__flexbox-list-item a:hover{
  opacity: .7;
}

.l-footer__text {
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.l-footer__text a {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  transition: .3s;
  display: inline-block;
}

.l-footer__text a:hover{
  opacity: .7;
}


small {
  color: #fff;
  padding-top: 2rem;
  display: block;
  border-top: 1px solid #fff;
  font-family: "Fugaz One", serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .l-footer__flexbox-list{
    gap: 1rem;
  }
}



/* footer ************************************************/

.page-top__fv {
  position: relative;
  min-height: 100vh;
  margin: auto;
  overflow: hidden;
}

.bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 2s ease, transform 2s ease;
  /* アニメーションを滑らかにする */
}

.src1 {
  background-image: url(../rebteam-orizin/common/img/fv01.jpg);
}

.src2 {
  background-image: url(../rebteam-orizin/common/img/fv02.jpg);
}

.src3 {
  background-image: url(../rebteam-orizin/common/img/fv03.jpg);
}


.page-top__fv-container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  /* テキストを最前面に表示 */
}

.page-top__fv-container-ttl {
  font-size: 6.4rem;
  text-align: center;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #fff;
  text-shadow: 0px 4px 4px rgb(0, 0, 0, .2);
}

.page-top__fv-container-text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 4px 4px rgb(0, 0, 0, .2);
}

@media (max-width: 768px) {
  .page-top__fv-container-ttl{
    font-size: 4.2rem;
  }
  .page-top__fv-container-text{
    font-size: 1.8rem;
  }
}

/* page-top__fv ------------ */

.page-top__index01 {
  text-align: center;
  background-image: url(../rebteam-orizin/common/img/top__index01-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 5rem 0px;
  margin: 10rem 0;
}

.page-top__index01-ttl {
  font-size: 4rem;
  color: #050408;
  line-height: 1.3;
}

/* .fade-in-blue **************************/


.fade-in-blue {
  opacity: 0;
  /* 初期状態で非表示 */
  transform: translateY(30px);
  /* 下にずらしておく */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-blue.scroll-in {
  opacity: 1;
  /* スクロール時に表示 */
  transform: translateY(0);
  /* 元の位置に戻す */
}

.fade-in-blue span {
  display: inline-block;
  position: relative;
}

.fade-in-blue span,
.fade-in-blue span::after {
  animation-delay: var(--animation-delay, 2s);
  /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1);
  /* 再生される回数 */
  animation-duration: var(--duration, 800ms);
  /* 完了するまでの所要時間 */
  animation-fill-mode: inherit;
  /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  /* タイミングの指定 */
}

.fade-in-blue.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text2;
  white-space: nowrap;
}

.fade-in-blue.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #53cbe0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text2 {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes text-revealer {

  0%,
  50% {
    transform-origin: 0 50%;
  }

  60%,
  100% {
    transform-origin: 100% 50%;
  }

  60% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

/* .fade-in-blue **************************/

.page-top__index01-text {
  font-size: 1.5rem;
  margin-top: 3rem;
  font-weight: bold;
  line-height: 2;
}

@media (max-width: 768px) {
  .page-top__index01 {
    margin: 5rem 0;
    padding: 2.5rem 0px;
    background-size: cover;
  }

  .page-top__index01-ttl {
    font-size: 3.2rem;
  }

  .page-top__index01-text {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
}


/* page-top__index01 ------------ */

.page-top__index02 {
  text-align: center;
  margin: 18rem 0 0 0;
  position: relative;
  min-height: 50rem;
}

.page-top__index02:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 97.5rem;
  height: 54rem;
  top: -5rem;
  background: url(../rebteam-orizin/common/img/bg-texcure02.jpg);
  background-size: cover;
  left: 0;
  z-index: -1;
  box-shadow: 2rem 2rem 0 0rem #53cbe0;
}

.page-top__index02-ttl {
  font-size: 6.4rem;
  font-weight: bold;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  text-align: left;
  color: #050408;
  line-height: 1;
}

.page-top__index02-list {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
  margin-left: 10rem;
}

.page-top__index02-list-item {
  min-width: 30rem;
  min-height: 37rem;
  background-color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-top__index02-list-item.show {
  opacity: 1;
  transform: translateY(0);
}

.page-top__index02-list-item.--bg01 {
  background-image: url(../rebteam-orizin/common/img/bg_01.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index02-list-item.--bg02 {
  background-image: url(../rebteam-orizin/common/img/bg_02.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index02-list-item.--bg03 {
  background-image: url(../rebteam-orizin/common/img/bg_03.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index02-list-item-ttl {
  font-size: 2.4rem;
  color: #fff;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.page-top__index02-list-item-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

  .page-top__index02{
    min-height: auto;
    margin: 9rem 0 0 0;
  }

  .page-top__index02-ttl {
    font-size: 4.2rem;
    text-align: center;
  }

  .page-top__index02-list {
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
  }
  .page-top__index02:before{
    width: 98%;
    height: 108%;
  }
}

/* page-top__index02 ------------ */

.page-top__index03 {
  text-align: center;
  margin: 20rem 0 0 0;
  position: relative;
  min-height: 50rem;
}

.page-top__index03:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 97.5rem;
  height: 64rem;
  top: -5rem;
  background: url(../rebteam-orizin/common/img/bg-texcure02.jpg);
  background-size: cover;
  right: 0;
  z-index: -1;
  box-shadow: -2rem 2rem 0 0 #53cbe0;
  /* 左に影、右には影をつけない */
  width: calc(97.5rem + 2rem);
  /* 影分だけ幅を広げて右側の空きをなくす */
}

.page-top__index03-ttl {
  font-size: 6.4rem;
  font-weight: bold;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  text-align: right;
  color: #050408;
  line-height: 1;
}

.page-top__index03-list {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
  margin-right: 10rem;
}

.page-top__index03-list-item {
  min-width: 46rem;
  min-height: 22rem;
  background-color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-top__index03-list-item.--bg01 {
  background-image: url(../rebteam-orizin/common/img/director_bg.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index03-list-item.--bg02 {
  background-image: url(../rebteam-orizin/common/img/manager_bg.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index03-list-item.show {
  opacity: 1;
  transform: translateY(0);
}

.page-top__index03-list-item-ttl {
  font-size: 2.4rem;
  color: #fff;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0px 1px 1px rgba(1, 1, 1, 0.9);
}

.page-top__index03-list-item-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(1, 1, 1, 0.9);
}

.page-top__index03-list02 {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.page-top__index03-list02-item {
  min-width: 46rem;
  min-height: 22rem;
  background-color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-top__index03-list02-item.--bg01 {
  background-image: url(../rebteam-orizin/common/img/designer_bg.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index03-list02-item.--bg02 {
  background-image: url(../rebteam-orizin/common/img/market_bg.jpg);
  background-size: cover;
  background-position: center;
}

.page-top__index03-list02-item.show {
  opacity: 1;
  transform: translateY(0);
}

.page-top__index03-list02-item-ttl {
  font-size: 2.4rem;
  font-family: "Fugaz One", serif;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}

.page-top__index03-list02-item-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .page-top__index03{
    min-height: auto;
  }
  .page-top__index03-ttl{
    font-size: 4.2rem;
    text-align: center;
  }
  .page-top__index03-list{
    flex-direction: column;
    margin-right: 0;
  }
  .page-top__index03-list02{
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }
  .page-top__index03-list-item{
    min-width: auto;
  }
  .page-top__index03-list02-item{
    min-width: auto;
  }
  .page-top__index03:before{
    width: 98%;
    height: 110%;
  }
}

/* page-top__index03 ------------ */

.page-top__contact {
  text-align: center;
  padding: 20rem 0 15rem 0;
}

.page-top__contact-container {
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: url(../rebteam-orizin/common/img/top-contact-bg.jpg);
  overflow: hidden;
  /* はみ出しを防ぐ */
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  transition: .5s;
}

.page-top__contact-container:hover {
  box-shadow: none;
}

.page-top__contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../rebteam-orizin/common/img/top-contact-bg.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
}

.page-top__contact-container:hover::before {
  transform: scale(1.1);
  /* 拡大 */
}

.page-top__contact-container * {
  position: relative;
  z-index: 2;
}

.page-top__contact-container-content-ttl {
  font-size: 6.4rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  line-height: 1;
}

.page-top__contact-container-content-text {
  font-size: 2.4rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-top__contact{
    padding: 15rem 0 7.5rem 0;
  }
  .page-top__contact-container::before{
    background-position: right;
  }
  .page-top__contact-container-content-ttl{
    font-size: 4.2rem;
  }
  .page-top__contact-container-content-text{
    font-size: 1.8rem;
  }
}

/* page-top__contact ------------ */