@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

/* 共通 ここから
---------------------------------------------------------*/
* {
  font-family: 'Noto Sans JP', sans-serif;
}



/* header ここから
---------------------------------------------------------*/
.header {
  background-color: rgba(24, 24, 24, .8);
  width: 100%;
  position: fixed;
  top: 0;
  color: #f2eeee;
  padding: 30px 0;
  z-index: 1000;
}

.header__logos {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;

}
.header__logo {
  width: 50px;
}

.header__text {
  margin-left: 8px;
  font-size: 24px;
}

.header__container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
}
.header__list {
  display: flex;
  gap: 20px;
}
.header__list-item {
  list-style: none;
  font-size: 24px;
}

.header__list-item a {
  color: #fff;
  text-decoration: none;

}

.header__list-item a:hover {
  opacity: .8;
  transition: .3s;
}

/* mainページ ここから
---------------------------------------------------------*/
.top {
  width: 100%;
}
.top__container {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.top__title {
  font-size: 80px;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  color: #f8f88b;
  letter-spacing: .3em;
  position: fixed;
  top: 40vh;
}

.char {
  transform: translateY(300px);
  transition: 0.5s;
  cursor: default;
}

.line {
  background-color: rgba(24, 24, 24, .8);
  text-align: center;
}

/* aboutページ ここから
---------------------------------------------------------*/

.about {
  background-color: #302b2b;
  color: #f3f1d8;
  height: 100vh;
  width: 100%;
  overflow: auto;
}

.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  padding: 25vh 0 0;
  justify-content: space-between;
}

.about__myself-bg {
  background-color: rgb(37, 36, 36);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.about__myself {
  position: absolute;
  top: 0;
  width: 100%;

}

.about__text-group {
  width: 60%;
  font-size: 20px;
  margin: 0 20px;
  line-height: 1.8;
}

/* contactページ ここから
---------------------------------------------------------*/
.contact {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #f3f1d8;
  padding-bottom: 20px;
}

.contact__container {
  max-width: 1100px;
  padding-top: 175px;
  margin: auto;
}

.contact__text-group {
  margin: 0 20px;
}

.required {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 10px;
  cursor: default;
  vertical-align: middle;
  border-radius: 4px;
}

.contact__text {
  margin-bottom: 20px;
}

label {
  display: inline-block;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px ;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 150px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;

}

button:hover {
  opacity: .8;
  transition: .3s;
}

/* ロード ここから
---------------------------------------------------------*/

.load {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  position: absolute;
  z-index: 10000;

}

.loaded {
  opacity: 0;
  transition: .8s;
  z-index: -1000;
}

/* works ここから
---------------------------------------------------------*/

.works {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #fff;

}

.works__container {
  max-width: 1100px;
  padding-top: 250px;
  margin: auto;
}
.works__title {
  font-size: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.works__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 20px;
  padding-bottom: 40px;
}

.works__group {
  min-height: 600px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(24, 24, 24, .1);
}

.works__sample-mv {
  width: 100%;
}

.works__group:hover .works__sample-mv {
  transform: scale(1.2);
  transition: .3s;
}

.works__img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.works__group-title {
  padding: 25px 0 25px 10px;
  font-size: 24px;
}

.works__group-text {
  padding: 0 10px;
  line-height: 1.8;
}


@media screen and (max-width: 768px) {
  /* header ここから
---------------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  color: #f2eeee;
  padding: 5vw 0;
  z-index: 1000;
}

.header__logos {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.header__logo {
  width: 6vw;
}

.header__text {
  margin-left: 8px;
  font-size: 4vw;
}

.header__container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 5vw;
}
.header__list {
  visibility: hidden;
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  padding: 27vw 0;
  left: 0;
  top: 0;
  background-color: #333;
  z-index: 10000;
}

.header__list-sp {
  display: flex;
  position: fixed;
  top: 5vw;
  right: 3vw;
  flex-direction: column;
  height: 6vw;
  justify-content: space-between;
  z-index: 100000;
}

.header__list-sp:hover {
  cursor: pointer;
}

.header__list-sp > span {
  width: 7.6vw;
  height: calc(100% - 5.1vw);
  background-color: #fff;
  display: block;
}
  
.header__list-item {
  list-style: none;
  font-size: 9vw;
  text-align: center;
  padding-top: 6vw;
}

.header__list-item a {
  color: #fff;
  text-decoration: none;

}

.header__list-item a:hover {
  opacity: .8;
  transition: .3s;
}

/* mainページ ここから
---------------------------------------------------------*/
.top {
  width: 100%;
}
.top__container {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.top__title {
  font-size: 12vw;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  color: #f8f88b;
  letter-spacing: .3em;
  position: fixed;
  top: 40vh;
}

.char {
  transform: translateY(300px);
  transition: 0.5s;
  cursor: default;
}

.line {
  background-color: rgba(24, 24, 24, .8);
  text-align: center;
}

/* aboutページ ここから
---------------------------------------------------------*/

.about {
  background-color: #302b2b;
  color: #f3f1d8;
  height: auto;
  width: 100%;
  overflow: auto;
  min-height: 100vh;
}

.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  padding: 15vh 0 0;
  justify-content: normal;
  flex-direction: column-reverse;
  gap: 6vw;
}

.about__myself-bg {
  background-color: rgb(37, 36, 36);
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 auto 6vw;
}

.about__myself {
  position: absolute;
  top: 0;
  width: 100%;

}

.about__text-group {
  width: auto;
  font-size: 3vw;
  margin: 0 4vw;
  line-height: 1.8;
  padding-bottom: 20px;
}

/* contactページ ここから
---------------------------------------------------------*/
.contact {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #f3f1d8;
  padding-bottom: 20px;
}

.contact__container {
  max-width: 1100px;
  padding-top: 175px;
  margin: auto;
}

.contact__text-group {
  margin: 0 3vw;
  font-size: 5vw;
}

.required {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 10px;
  cursor: default;
  vertical-align: middle;
  border-radius: 4px;
}

.contact__text {
  margin-bottom: 4vw;
}

label {
  display: inline-block;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px ;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 150px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;

}

button:hover {
  opacity: .8;
  transition: .3s;
}

/* ロード ここから
---------------------------------------------------------*/

.load {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  position: absolute;
  z-index: 10000;

}

.loaded {
  opacity: 0;
  transition: .8s;
  z-index: -1000;
}

/* works ここから
---------------------------------------------------------*/

.works {
  min-height: 100vh;
  width: 100%;
  background-color: #302b2b;
  color: #fff;

}

.works__container {
  max-width: 1100px;
  padding-top: 34vw;
  margin: auto;
}
.works__title {
  font-size: 8vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}

.works__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 5vw 5vw;
  padding-bottom: 2vw;
}

.works__group {
  text-decoration: none;
  color: #fff;
  background-color: rgba(24, 24, 24, .1);
  min-height: 100vw;
}

.works__sample-mv {
  width: 100%;
}

.works__group:hover .works__sample-mv {
  transform: scale(1.2);
  transition: .3s;
}

.works__img-box {
  width: 100%;
  height: 50vw;
  overflow: hidden;
}

.works__group-title {
  padding: 2vw 0 2vw 1vw;
  font-size: 5vw;
}

.works__group-text {
  padding: 0 1vw;
  line-height: 1.8;
  font-size: 3vw;
}
}