@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background: #E7E7EC;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* フェードイン(初期値) */
.fadein {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.fadein.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.p-breadcrumb {
  margin-top: 35px;
}
.p-breadcrumb a {
  font-size: 1.6rem;
  font-family: "Poppins", "Noto Sans JP", serif;
  font-weight: 800;
  font-style: italic;
  color: #000;
  text-decoration: underline;
}
.p-breadcrumb span {
  font-size: 1.6rem;
  font-family: "Poppins", "Noto Sans JP", serif;
  font-weight: 800;
  font-style: italic;
  color: #000;
}

.c_btn {
  display: block;
  font-size: 1.7rem;
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
  color: #000;
  text-align: center;
  border: 2px solid #000;
  padding: 15px 0;
  width: 270px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c_btn {
    font-size: 1.4rem;
    width: 230px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 45px 50px 20px;
  /* menu */
}
header .header_right ul li {
  margin: 0 0 10px;
}
header .header_right ul li a {
  width: 100%;
  display: block;
  font-size: 1.7rem;
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
  color: #000;
}
header .menu-icon {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
header .menu-icon .bar {
  display: block;
  width: 29px;
  height: 2px;
  background-color: #000;
  margin: 5px 0;
  transition: 0.4s;
}
header .menu-icon p {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
header .menu-icon.open .bar1 {
  transform: rotate(-45deg) translate(-2px, 2px);
}
header .menu-icon.open .bar2 {
  transform: rotate(45deg) translate(-3px, -3px);
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  header .header_left {
    width: 30%;
  }
}

.nav-menu {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 120px 20px 0;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu ul li {
  margin: 20px 0;
}
.nav-menu ul li a {
  color: #000;
  font-size: 2.5rem;
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}
.nav-menu.open {
  transform: translateX(0%);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

footer {
  background: #000;
  padding: 100px 5% 60px;
}
footer .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .flex .logo {
  width: 30%;
}
footer .flex .right {
  width: 65%;
}
footer .flex .right ul {
  display: flex;
  justify-content: flex-end;
}
footer .flex .right ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 30px;
}
footer .flex .right ul li a {
  display: block;
  width: 100%;
}
footer .flex .right .bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
footer .flex .right .bottom a {
  font-size: 1.6rem;
  font-family: "Poppins", serif;
  font-style: italic;
  color: #C5C5C5;
  text-decoration: underline;
}
footer .flex .right .bottom p {
  font-size: 1.6rem;
  font-family: "Poppins", serif;
  font-style: italic;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 60px 5% 35px;
  }
  footer .flex {
    flex-direction: column;
    position: relative;
  }
  footer .flex .logo {
    width: 100%;
    order: 2;
  }
  footer .flex .right {
    width: 100%;
  }
  footer .flex .right ul {
    flex-direction: column;
  }
  footer .flex .right ul li {
    margin-left: 0;
    margin-bottom: 35px;
  }
  footer .flex .right .bottom {
    justify-content: flex-start;
    margin: 20px 0 50px;
  }
  footer .flex .right .bottom a {
    font-size: 1.4rem;
  }
  footer .flex .right .bottom p {
    font-size: 1.4rem;
    margin-left: 0;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.home .inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .home .inner {
    width: 90%;
  }
}
.home h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 90px;
}
.home h2 img {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .home h2 {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  .home h2 img {
    height: 40px;
    width: 100%;
  }
}
.home #first-visit-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease;
}
.home #first-visit-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.home #first-visit-overlay h1 {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.5s ease, filter 1.5s ease;
  width: 80%;
  margin: 0 auto;
}
.home #first-visit-overlay.show h1 {
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.5s;
}
.home .bg {
  background: url(../img/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100vh;
  width: 100%;
}
.home .fv {
  height: 100vh;
  position: relative;
}
.home .fv .inner {
  max-width: 90%;
}
.home .fv p {
  font-size: 1.6rem;
  font-family: "Poppins", serif;
  font-style: italic;
  font-weight: 800;
}
.home .fv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.home .about {
  padding-top: 200px;
  background: #E7E7EC;
  position: relative;
}
.home .about .flex {
  display: flex;
  justify-content: space-between;
}
.home .about .flex .left {
  width: 65%;
}
.home .about .flex .left h3 {
  font-size: 7.1rem;
  font-weight: 800;
  line-height: 1.3;
}
.home .about .flex .right {
  width: 35%;
}
.home .about .flex .right p {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.8;
}
.home .about .about_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}
.home .about .about_img img {
  height: 182px;
}
@media screen and (max-width: 768px) {
  .home .about {
    padding-top: 165px;
  }
  .home .about .flex {
    flex-direction: column;
  }
  .home .about .flex .left {
    width: 100%;
    margin-bottom: 170px;
  }
  .home .about .flex .left h3 {
    font-size: 5.5rem;
  }
  .home .about .flex .right {
    width: 100%;
  }
  .home .about .flex .right p {
    font-size: 1.7rem;
  }
  .home .about .about_img {
    bottom: auto;
    top: 600px;
    width: 100%;
  }
  .home .about .about_img img {
    height: 104px;
  }
}
.home .work {
  padding: 300px 0 290px;
  background: #E7E7EC;
}
.home .work .work_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.home .work .work_list::after {
  display: block;
  content: "";
  width: 32%;
}
.home .work .work_list .work_item {
  margin-bottom: 60px;
  width: 32%;
}
.home .work .work_list .work_item a {
  display: block;
  width: 100%;
}
.home .work .work_list .work_item a h3 {
  font-size: 1.7rem;
  font-weight: 900;
  font-family: "Poppins", "Noto Sans JP", serif;
  font-style: italic;
  color: #000;
  margin-top: 5px;
}
.home .work .work_list .work_item a .tag {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Poppins", serif;
  font-style: italic;
  color: #000;
}
@media screen and (max-width: 768px) {
  .home .work {
    padding: 200px 0 150px;
  }
  .home .work .work_list {
    margin-bottom: 60px;
  }
  .home .work .work_list .work_item {
    margin-bottom: 40px;
    width: 100%;
  }
}
.home .company {
  padding: 300px 0 150px;
  background: #404040;
}
.home .company h2 {
  color: #fff;
}
.home .company dl {
  max-width: 925px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 2px solid #fff;
}
.home .company dl dt, .home .company dl dd {
  font-size: 1.4rem;
  padding: 35px 0;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}
.home .company dl dt {
  padding-left: 100px;
}
.home .company dl dd {
  padding-left: 20%;
}
@media screen and (max-width: 768px) {
  .home .company {
    padding: 100px 0 55px;
  }
  .home .company dl {
    max-width: 100%;
    margin: 0 auto;
  }
  .home .company dl dt {
    padding-left: 0;
  }
  .home .company dl dd {
    padding-left: 20%;
  }
}
.home .contact {
  padding: 300px 0;
  background: #404040;
}
.home .contact h2 {
  color: #fff;
}
.home .contact .inner {
  max-width: 925px;
  margin: 0 auto;
}
.home .contact .info {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin: -50px 0 50px;
}
.home .contact form {
  border: 1px solid #fff;
}
.home .contact table {
  margin: 60px auto 0;
  width: 70%;
}
.home .contact table th {
  text-align: left;
  padding: 0 0 15px;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.home .contact table td {
  margin-bottom: 30px;
}
.home .contact table td input {
  color: #fff;
  font-size: 1.4rem;
  background: #636363;
  padding: 15px 3%;
  width: 94%;
  border: none;
}
.home .contact table td textarea {
  color: #fff;
  font-size: 1.4rem;
  background: #636363;
  padding: 15px 3%;
  width: 94%;
  border: none;
}
.home .contact table th, .home .contact table td {
  display: inline-block;
  width: 100%;
}
.home .contact .provacy {
  width: 70%;
  margin: 55px auto;
}
.home .contact .provacy .provacy_box {
  height: 200px;
  overflow-y: scroll;
  background: #636363;
  padding: 30px 20px 20px;
}
.home .contact .provacy .provacy_box p {
  font-size: 1.3rem;
  color: #fff;
}
.home .contact .provacy .provacy_box p span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.home .contact .provacy .asterisk {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 25px;
}
.home .contact .contact_submit {
  margin: 0 auto;
}
.home .contact .contact_submit input {
  background: inherit;
  display: block;
  font-size: 1.7rem;
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  padding: 15px 0;
  width: 270px;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .home .contact {
    padding: 100px 0;
  }
  .home .contact .inner {
    max-width: 90%;
  }
  .home .contact .info {
    font-size: 1.3rem;
    margin: -30px 0 30px;
  }
  .home .contact table {
    margin: 50px auto 0;
    width: 90%;
  }
  .home .contact table th {
    padding: 0 0 10px;
  }
  .home .contact .provacy {
    width: 90%;
    margin: 30px auto;
  }
  .home .contact .provacy .provacy_box {
    height: 230px;
  }
  .home .contact .provacy .asterisk {
    font-size: 1.2rem;
  }
  .home .contact .contact_submit input {
    font-size: 1.4rem;
    width: 230px;
  }
}

.archive .work .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.archive .work h1 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin: 140px auto 90px;
}
.archive .work h1 img {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 10px;
}
.archive .work .work_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.archive .work .work_list::after {
  display: block;
  content: "";
  width: 32%;
}
.archive .work .work_list .work_item {
  margin-bottom: 60px;
  width: 32%;
}
.archive .work .work_list .work_item a {
  display: block;
  width: 100%;
}
.archive .work .work_list .work_item a h3 {
  font-size: 1.7rem;
  font-weight: 900;
  font-family: "Poppins", "Noto Sans JP", serif;
  font-style: italic;
  color: #000;
  margin-top: 5px;
}
.archive .work .work_list .work_item a .tag {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Poppins", serif;
  font-style: italic;
  color: #000;
}
@media screen and (max-width: 768px) {
  .archive .work .inner {
    width: 90%;
  }
  .archive .work h1 {
    font-size: 1.7rem;
    margin: 100px auto 40px;
  }
  .archive .work h1 img {
    height: 40px;
  }
  .archive .work .work_list .work_item {
    margin-bottom: 40px;
    width: 100%;
  }
}

.single_works {
  padding: 180px 0;
}
.single_works .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.single_works .single_content {
  border-top: 2px solid #ACACAC;
  padding-top: 60px;
  margin-top: 20px;
  text-align: center;
}
.single_works .single_content .tag {
  font-size: 2.1rem;
  font-weight: 800;
  font-family: "Poppins", serif;
  font-style: italic;
}
.single_works .single_content h1 {
  font-size: 6.1rem;
  font-weight: 800;
}
.single_works .single_content .date {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Poppins", serif;
  font-style: italic;
}
.single_works .single_content h2 {
  font-size: 2.7rem;
  font-weight: 900;
  margin: 70px 0 25px;
}
.single_works .single_content .text {
  font-size: 1.7rem;
  font-weight: 700;
}
.single_works .single_content .link {
  display: block;
  font-size: 1.7rem;
  color: #000;
  font-weight: 700;
  margin-top: 100px;
}
.single_works .single_content .img {
  margin: 100px 0 55px;
}
.single_works .single_content .img img {
  margin-bottom: 40px;
}
.single_works .single_content .movie {
  margin-bottom: 55px;
}
.single_works .single_content .movie iframe {
  width: 100%;
  height: 65vh;
}
@media screen and (max-width: 768px) {
  .single_works {
    padding: 180px 0;
  }
  .single_works .inner {
    max-width: 90%;
  }
  .single_works .single_content {
    padding-top: 40px;
  }
  .single_works .single_content .tag {
    font-size: 1.4rem;
  }
  .single_works .single_content h1 {
    font-size: 3.5rem;
  }
  .single_works .single_content .date {
    font-size: 1.2rem;
  }
  .single_works .single_content h2 {
    font-size: 1.8rem;
    margin: 45px 0 25px;
  }
  .single_works .single_content .text {
    font-size: 1.4rem;
  }
  .single_works .single_content .img {
    margin: 80px 0 40px;
  }
  .single_works .single_content .img img {
    margin-bottom: 30px;
  }
  .single_works .single_content .movie {
    margin-bottom: 40px;
  }
  .single_works .single_content .movie iframe {
    width: 100%;
    height: 25vh;
  }
}

.thanks {
  padding: 100px 0;
}
.thanks .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.thanks h1 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin: 140px auto 90px;
}
.thanks h1 img {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 10px;
  filter: invert(1);
}
.thanks p {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .thanks .inner {
    width: 90%;
  }
  .thanks h1 {
    font-size: 1.7rem;
    margin: 100px auto 40px;
  }
  .thanks h1 img {
    width: 100%;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */