@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  width: 100vw;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  margin: 0;
  color: #222222;
  background-color: #ffffff;
  font-weight: 100;
}

/* ローディング画面 */
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #222222;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  color: #ffffff;
  font-size: 3em;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading p {
  width: 120px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  border-right: 1px solid #ffffff58;
  animation: typing 1.5s steps(10), blink 0.5s steps(1) infinite alternate;
}

@keyframes typing {
  0% {
    width: 0;
  }
}
@keyframes blink {
  50% {
    border-right-color: transparent;
  }
}

/* ヘッダー */
header {
  width: 100vw;
}

.global-menu ul {
  position: absolute;
  top: 6vh;
  right: 1vw;
  display: flex;
  position: fixed;
  z-index: 10;
}

.header-logo {
  font-size: 2em;
  position: absolute;
  top: 4vh;
  left: 4vw;
  color: #222222;
  font-weight: 100;
}

header a {
  color: #222222;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.3em;
}

.bg-is-black header a {
  color: #ffffff;
}

header li {
  list-style: none;
  padding: 0 1vw;
  cursor: pointer;
}

header a:hover {
  font-size: 1.5em;
  transition: all 0.5s;
}

/* ハンバーガーメニュー */

.happy-set {
  display: none;
}

.bg-is-black .drawer-open span,
.bg-is-black .drawer-open span::before,
.bg-is-black .drawer-open span::after {
  background-color: #ffffff;
}

.drawer {
  position: fixed;
  z-index: 100;
  height: 5vh;
  width: 100vw;
}
.drawer-hidden {
  display: none;
}

.happy-set {
  position: absolute;
  left: 88vw;
  top: 50%;
}

.drawer-open {
  display: flex;
  height: 30px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

.drawer-open span,
.drawer-open span::before,
.drawer-open span::after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background: rgb(57, 46, 46);
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before {
  bottom: 8px;
}

.drawer-open span:after {
  top: 8px;
}

#drawer-check:checked ~ .drawer-open span {
  background-color: rgba(255, 255, 255, 0);
}

#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #ffffff;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

.drawer-content {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  background-color: #222222;
  top: 0;
  left: 100%;
  z-index: 99;
  transition: 0.5s;
}

.drawer-item {
  padding-bottom: 5px;
}
.drawer-list {
  padding: 10% 5%;
}
.drawer-item a {
  font-size: 2.5em;
  color: #ffffff;
  text-decoration: none;
}

.drawer-item a:hover {
  font-size: 2.8em;
  cursor: pointer;
  transition: all 0.5s;
}

#drawer-check:checked ~ .drawer-content {
  left: 0;
}

/* メインビジュアル */
.top {
  height: 900px;
  width: 100vw;
}

.main-image {
  width: 95vw;
  height: auto;
  padding-top: 15vh;
  display: block;
  margin: 0 auto;
}

/* iPhone用 */
.top-text {
  display: none;
  font-size: 1.7em;
  width: 90vw;
  margin-left: 5%;
}

.iphonegrapher {
  font-weight: 600;
  padding-bottom: 15px;
  font-size: 20px;
}

.section-title {
  font-weight: 100;
}

/* ABOUT */
.about {
  width: 100vw;
  height: 2000px;
  color: #ffffff;
  transform: translateX(100px);
  opacity: 0;
  transition: all ease 2s;
  background-color: #222222;
}

.about.is-active {
  opacity: 1;
  transform: none;
}

.reel iframe {
  display: block;
  margin: 0 auto;
}

.about-phone {
  display: none;
}

.about-content {
  padding-top: 5vh;
  width: 30vw;
  height: auto;
  font-size: 1.3em;
  float: right;
  margin-right: 3vw;
}

.about h1 {
  font-size: 38em;
  text-align: center;
  padding-top: 10vh;
}

.reel h3 {
  padding: 10vh 0;
  font-weight: 100;
  font-size: 7em;
  text-align: center;
}

.reel {
  width: 100vw;
  padding-bottom: 5vh;
}
.about h2 {
  font-size: 2em;
  margin-bottom: 6vh;
}

.about p {
  font-size: 1.5em;
}

/* WORKS */
.works {
  height: 1700px;
  display: block;
  width: 100vw;
  color: #222222;
  transform: translateX(-100px);
  opacity: 0;
  transition: all ease 2s;
  position: relative;
}

.works.is-active {
  opacity: 1;
  transform: none;
}

.works h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36em;
  color: #222222;
}

.works iframe {
  padding-left: 5vw;
  margin: 3vh 0;
  width: 400px;
  height: 300px;
}

/* 動画の配置 */
.box1,
.box2 {
  font-size: 3em;
  position: absolute;
}

.box1 {
  top: 10%;
  right: 0;
}

.box2 {
  left: 0;
  bottom: 10%;
}

.buissness-insider,
.music-video {
  height: 40%;
  width: 45vw;
  overflow-x: scroll;
  white-space: nowrap;
}

.buissness-insider {
  direction: rtl;
}

.mv {
  padding: left 5vh;
}
.bi {
  padding-left: 20vw;
}

.music-video::-webkit-scrollbar {
  height: 1vh;
  background-color: #aba9a6;
  border-radius: 200px;
}

.music-video::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 200px;
}

.buissness-insider::-webkit-scrollbar {
  height: 1vh;
  background-color: #aba9a6;
  border-radius: 200px;
}

.buissness-insider::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 200px;
}

.click {
  font-size: 3.5em;
  font-weight: bolder;
  display: block;
  width: fit-content;
  position: absolute;
  bottom: 10%;
  right: 5vw;
  text-decoration: none;
  color: #222222;
}

.click:hover {
  text-decoration: underline;
  font-size: 3.5em;
}

/* GALLERY */
.gallery {
  width: 100vw;
  flex-wrap: wrap;
  transform: translateY(100px);
  opacity: 0;
  transition: all ease 2s;
  background-color: #222222;
}

.gallery.is-active {
  opacity: 1;
  transform: none;
}

.gallery h1 {
  padding: 10vh 0;
  font-size: 27em;
  color: #ffffff;
  left: 50%;
  right: 50%;
  margin: auto;
  width: fit-content;
}

.gallery img {
  display: inline-block;
  width: 29%;
  padding: 2%;
}

.gallery-wrapper {
  display: block;
  left: 50%;
  right: 50%;
  margin: auto;
  width: 90%;
  padding-bottom: 20%;
}

/* フッター */
footer {
  position: center bottom;
  height: 40vh;
  width: 100vw;
  display: block;
  position: relative;
}

footer h2 {
  font-size: 3.5em;
  font-weight: 10;
  padding-left: 5vw;
  padding-top: 5%;
}

footer h3 {
  font-weight: 200;
  font-size: 2.5em;
  padding-bottom: 5%;
}

/* CONTACT */
.telmel {
  position: absolute;
  top: 30%;
  right: 10%;
}
footer p {
  padding-bottom: 3%;
  font-size: 1.5em;
}
.tel {
  font-weight: 10;
  font-size: 1em;
}

/* SNSアイコン */
.sns-list ul {
  list-style: none;
  display: flex;
}

.sns-list {
  position: absolute;
  bottom: 10%;
  right: 10%;
}
.sns-list li {
  margin: 1vw;
}

footer a {
  color: #222222;
  text-decoration: none;
  font-size: 2.5em;
}

@media (max-width: 530px) {
  .header-logo {
    font-size: 2.5em;
    top: 3%;
    left: 7%;
  }

  .top {
    height: 480px;
  }

  .main-image {
    width: 90%;
    height: auto;
    padding-bottom: 7%;
    padding-top: 25%;
  }

  /* ハンバーガーメニュー */
  .happy-set {
    display: block;
  }

  .about-pc {
    display: none;
  }

  .reel h3 {
    font-size: 2em;
    padding: 5vh 0 0 0;
  }

  .about iframe {
    width: 320px;
    height: 180px;
    padding-top: 5vh;
  }

  .about-phone {
    display: block;
  }

  .about {
    height: 350px;
  }

  .about iframe {
    width: 320px;
    height: 180px;
  }

  .top-text {
    display: block;
  }

  .works {
    height: 900px;
  }

  .buissness-insider,
  .music-video {
    width: 90vw;
  }

  .box1,
  .box2 {
    font-size: 2em;
  }

  .box1 {
    top: 7%;
  }

  .box2 {
    bottom: 7%;
  }

  .works iframe {
    width: 300px;
    height: 200px;
  }

  .works h1 {
    font-size: 10em;
  }

  .click {
    bottom: 0%;
  }

  .gallery {
    height: 850px;
  }

  .gallery h1 {
    padding: 2vh 0;
    font-size: 8em;
  }

  .gallery-wrapper {
    padding-bottom: 15%;
    height: 600px;
    width: 80%;
    display: block;
    margin: 0 auto;
    overflow-y: scroll;
  }

  .gallery img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .global-menu {
    display: none;
  }

  footer {
    height: 250px;
  }

  footer h2 {
    font-size: 2.5em;
    padding-top: 30px;
  }

  footer h3 {
    font-size: 15px;
    padding-bottom: 2%;
  }

  .telmel {
    position: absolute;
    font-size: 0.8em;
    bottom: 20%;
    left: 5%;
  }
}

@media screen and (min-width: 531px) and (max-width: 729px) {
  .click {
    bottom: 0%;
  }

  .global-menu {
    display: none;
  }

  .header-logo {
    font-size: 2.5em;
    top: 3%;
    left: 7%;
  }

  .happy-set {
    display: block;
  }

  .about-pc {
    display: none;
  }

  .about iframe {
    width: 320px;
    height: 180px;
  }

  .top-text {
    display: block;
    margin-top: 5vh;
  }

  .top {
    height: 600px;
  }

  .main-image {
    width: 90vw;
    padding-top: 15%;
  }

  .about h1 {
    font-size: 16em;
  }

  .about {
    height: 700px;
  }

  .reel h3 {
    font-size: 5em;
  }

  .about iframe {
    width: 500px;
    height: 281px;
  }

  .box2 {
    bottom: 5%;
  }

  .works {
    height: 1300px;
  }
  .works h1 {
    font-size: 15em;
  }

  .gallery {
    height: 1000px;
  }

  .gallery h1 {
    font-size: 12em;
    padding: 0;
  }

  .gallery-wrapper {
    padding-bottom: 15%;
    height: 700px;
    width: 80%;
    display: block;
    margin: 0 auto;
    overflow: scroll;
  }

  .gallery img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  footer {
    height: 50vh;
  }

  footer h2 {
    font-size: 2.5em;
  }
}

@media screen and (min-width: 730px) and (max-width: 1100px) {
  .click {
    bottom: 5%;
  }

  .top {
    height: 600px;
  }

  .main-image {
    width: 90vw;
    padding-top: 17%;
  }

  .about h1 {
    font-size: 22em;
  }

  .about {
    height: 1500px;
  }

  .reel h3 {
    font-size: 50px;
  }

  .about iframe {
    width: 720px;
    height: 405px;
  }

  .box2 {
    bottom: 5%;
  }
  .works h1 {
    font-size: 20em;
  }

  .gallery h1 {
    font-size: 17em;
  }

  .gallery img {
    width: 300px;
    height: 255px;
    padding: 2%;
  }

  .gallery-wrapper {
    width: 660px;
    display: block;
    margin: 0 auto;
  }

  .fotter {
    height: 20vh;
  }
}

@media (min-width: 1600px) {
  .top {
    height: 1100px;
  }

  .about {
    height: 2200px;
  }
  .about h1 {
    font-size: 52em;
  }

  .reel h3 {
    font-size: 7em;
  }

  .works h1 {
    font-size: 42em;
  }

  .works {
    height: 160vh;
  }

  .gallery h1 {
    font-size: 37em;
  }
}
