@charset "UTF-8";
/*----------------------------------
  読み込み中
----------------------------------*/
#loading {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease;
}

.loading-inner {
  text-align: center;
}

.loading-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.loading-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #00BFD3;
}

#loading.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}


body main {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.is-loaded main {
  opacity: 1;
  transform: translateY(0);
}

/*----------------------------------
  KV
----------------------------------*/
.hero{
  position: relative;
  width: 100%;
  margin: 100px auto 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-track{
  display: flex;
  width: max-content;
  height: 100%;
  animation: heroSlide 60s linear infinite;
}

.hero-track img{
  width: 50vw;
  min-width: 700px;
  height: 85vh;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 50px;
  border-radius: 3px;
}

.hero-track video {
  width: 50vw;
  min-width: 700px;
  height: 85vh;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 50px;
  border-radius: 3px;
}

@keyframes heroSlide{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  height: 85vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  position: relative;
  display: inline-block;
  font-size: clamp(50px, 8vw, 95px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 5px 18px rgba(0,0,0,.35),
    0 10px 28px rgba(0,0,0,.15),
    0 2px 6px rgba(0,0,0,.5);
}

.hero-copy p {
  margin-top: 20px;
  font-size: clamp(40px, 1.5vw, 70px);
  font-weight: 500;
  letter-spacing: .15em;
  color: #fff;
  text-shadow:
    0 5px 18px rgba(0,0,0,.35),
    0 10px 28px rgba(0,0,0,.15),
    0 2px 6px rgba(0,0,0,.5);
}

@keyframes flow {
  from {
    background-position: -120% 0;
  }
  to {
    background-position: 220% 0;
  }
}

@media screen and (max-width: 768px) {

  .hero {
    min-height: 65vh;
    height: auto;
    padding-top: 0;
    margin: 0;
	padding-bottom: 50px;
  }

  .hero-inner {
    width: 100%;
    height: 65vh;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-copy {
    width: 100%;
	margin-top: auto;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 47px;
    line-height: 1.05;
  }

  .hero-copy p {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: .08em;
  }

  .hero-track img,
  .hero-track video {
    width: 80vw;
    min-width: unset;
    height: 65vh;
    margin: 0 15px;
    object-fit: cover;
    border-radius: 3px;
  }
}
/*----------------------------------
  NEWS
----------------------------------*/
.news {
  padding:0;
}

.news-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: block;
  justify-content: space-between;
  padding: 0 40px 20px;
}

.news-inner h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2;
}

.news-inner h2 span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  flex: 1;
}

.news-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}


/* RSS */
#feed {
  padding:0 0 10px 20px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

#feed p {
  width: 95%;
  border-bottom: 1px dotted #666;
  padding: 22px 0 20px;
  text-indent: 1em;
}

#feed a {
  text-decoration:none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1em;
  letter-spacing: .1em;
}

#feed a:hover {
  text-decoration:none;
  color: #005A8C;
}

/* view more */
.link-box-l {
  margin: 20px 0;
  text-align: left;
}


@media screen and (max-width: 768px) {
  .news {
    padding: 0;
  }

  .news-inner {
    width: 85%;
    padding: 0;
    display: block;
  }
	
  .news-inner h2 {
    font-size: 50px;
  }
	
  .news-inner h2 span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .1em;
  }
	
  .news-grid {
    display: flex;
    flex-direction: column;
	gap: 20px;
  }

  .news-left {
    display: contents; 
    flex-direction: column;
    gap: 20px;
  }
	
  .news-right {
    order: 2;
  }

  .link-box-l {
    order: 3;
	margin: 0 auto;
	text-align: center;
  }
	
  h2 {
    order: 1;
    margin-bottom: 50px;
  }	

  #feed {
    width: 100%;
    padding: 0;
  }
	
  #feed a {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }
}


#instagram {
    max-width: 1200px;
    margin: 50px auto 0;
}

.elfsight-app-f04aef3d-c135-42e6-91fa-f80e60a043fd a {
    color: #fff;
}

a[href*="elfsight.com/instagram-feed-instashow"] {
    color: #fff;
}


@media screen and (max-width: 768px) {
    #instagram {
        width: 95%;
        padding: 0 10px;
    }
}

/*----------------------------------
  SERVICE
----------------------------------*/
.service {
  width: 100%;
}

.service-bg {
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    #555 0%,
    #333 40%,
    #222 70%,
    #000 100%
  );
}

.service-inner * {
  order: unset;
}

.service-inner {
  position: relative;
  z-index: 1;
  top: 0;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 40px;
  text-align: left;
  padding: 0 40px 40px;
}

.service-inner h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.service-inner h2 span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

.service-inner h2 img {
  width: 120px;
  max-width: 100%;
  margin-bottom: 50px;
}

.service-list {
  width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  max-width: 1300px;
  margin: 50px auto;
  align-items: start;
}

.service-grid li a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.service-grid img,
.service-grid video {
  width: 100%;
  max-width: 310px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  box-shadow: 0 30px 40px -22px rgba(0, 0, 0, 0.8);
}

.service-grid span {
  width: 70%;
  margin-top: 30px;
  line-height: 1.6;
  text-align: left;
}

 .link-box-c {
  width: 100%;
  margin: 50px auto;
  text-align: center;
}


@media screen and (max-width: 768px) {

  .service {
    padding: 0;
  }

  .service-inner {
    width: 100%;
  }

  .service-inner h2 {
    font-size: 50px;
  }

  .service-inner h2 span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .1em;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0;
  }

  .service-grid li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    color: #fff;
    text-decoration: none;
  }

  .service-grid img,
  .service-grid video {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    margin-bottom: 12px;
  }

  .service-grid span {
	width: 100%;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
	margin-bottom: 20px;
  }
}

.daiemon-bg {
  background:#333;
  border-radius: 16px;
  padding: 30px 50px;
  margin-bottom: 50px;
  box-shadow: 0 30px 40px -22px rgba(0, 0, 0, 0.8);
}

.dai-text {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color:#fff;
}

.youtube-wrap {
    width: 80%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 50px;
}

.youtube-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.works-ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.works-ul p {
  width: 100%;
  margin: 8px auto;
  text-align: center;
  color: #fff;
}

.works-ul img {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.works-ul img:hover {
  transform: scale(1.03);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: grid;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 20000;
  padding: 0;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  max-width: 90%;
  text-align: center;
  margin: 0;
  transform: scale(.9);
}

.modal-img {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.modal-caption {
  color: #fff;
  margin-top: 10px;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.show .modal-inner {
  transform: scale(1);
  opacity: 1;
}

.modal-prev,
.modal-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.5);
  border-radius: 50%;

  font-size: 12px;
  color: #fff;

  cursor: pointer;

  line-height: 1;
  z-index: 1000;
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }

.modal-prev::before {
  content: "◀";
}

.modal-next::before {
  content: "▶";
}

.modal-prev,
.modal-next {
  backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
  .daiemon-bg {
    width: 95%;
  }
	
  .youtube-wrap {
    width: 100%;
    }

  .works-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .modal-img {
    max-width: 90vw;
    max-height: 65vh;
	margin: 0 auto;
  }
}


/*----------------------------------
  WORKS
----------------------------------*/
.works {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  z-index: 0;
}

.works-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

.works-inner h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2;
}

.works-inner h2 span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

.scroll-infinity {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.scroll-infinity__wrap {
  display: flex;
  width: max-content;
  animation: infinity-scroll-left 50s linear infinite;
}

.scroll-infinity__list {
  display: flex;
  gap: 50px;
  padding: 40px 25px;
}

.scroll-infinity__item {
  width: 465px;
  flex-shrink: 0;
}

.scroll-infinity__item img {
  width: 100%;
  display: block;
}

.work-card {
  position: relative;
}

.work-card img {
  display: block;
  width: 100%;
  height: auto;
}

.work-card figcaption {
  position: static;
  width: 100%;
  padding: 12px 10px;
  letter-spacing: .1em;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.works-inner,
.scroll-infinity {
  position: relative;
  z-index: 1;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.works-bg-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .works-bg-pc {
    display: none;
  }

  .works-bg-sp {
    display: block;
  }

  .works {
    padding: 20px 0;
  }

  .works-bg {
    object-position: center top;
  }
	
  .works-inner {
    width: 85%;
    padding: 0;
    display: block;
  }

  .works-inner h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
	
  .works-inner h2 span {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .1em;
}
	
  .scroll-infinity {
    padding-bottom: 20px;
  }

  .scroll-infinity__item {
    width: 270px;
  }
	
 .link-box-c {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
}

/*----------------------------------
  RECRUIT
----------------------------------*/
.recruit {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.recruit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.recruit-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.recruit-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recruit-inner h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.recruit-inner h2 span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.recruit-text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 50px;
}

.recruit-bg-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit-bg-pc {
    display: none;
  }

  .recruit-bg-sp {
    display: block;
  }
	
  .recruit-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
	
  .recruit-inner {
	width: 90%;
    padding: 20px;
  }

  .recruit-inner h2 span {
    font-size: 18px;
  }

  .recruit-inner h2 {
    order: 1;
    font-size: 50px;
  }
	
.recruit-left{
  display: flex !important;
  flex-direction: column !important;
}

.recruit-text{
  order: 2;
}

.link-box-l{
  order: 3;
}
}


