@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #f4eded;
  line-height: 1.8;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 598px) {
  body {
    font-size: 1.4rem;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
}

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

ol, ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a, button {
  font-size: 1em;
}
a.text-link, button.text-link {
  position: relative;
  padding-bottom: 0.4rem;
}
a.text-link::before, button.text-link::before {
  background: #08dcc4;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
@media (hover: hover) {
  a.text-link:hover::before, button.text-link:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
  }
}
a.button-link, button.button-link {
  background: #f4eded;
  color: #2a2a2a;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
a.button-link::after, button.button-link::after {
  background: #2a2a2a;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
a.button-link:hover, button.button-link:hover {
  color: #f4eded;
}
a.button-link:hover::after, button.button-link:hover::after {
  transform: scale(1, 1);
}

.section-titlebox {
  display: flex;
  font-weight: 700;
  line-height: 1;
}
.section-titlebox::before {
  content: "";
}
@media (min-width: 1024px) {
  .section-titlebox::before {
    border-left: solid 6px #2a2a2a;
    padding-right: 4.2rem;
  }
}
@media (max-width: 1023px) {
  .section-titlebox::before {
    border-left: solid 4px;
    padding-right: 2rem;
  }
}
.section-titlebox .en {
  margin-bottom: 1em;
}
.section-titlebox .ja {
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .section-titlebox .ja {
    font-size: 2.4rem;
  }
}

.section-textbox {
  flex: 3;
}

@media (max-width: 1023px) {
  .group-wrapper {
    padding: 4rem 2rem 0;
  }
}

.screen {
  display: flex;
  flex-direction: column;
}

header {
  width: calc(100% - 6rem);
  left: 0;
  right: 0;
  position: fixed;
  top: -8rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: 9fr 4rem;
  align-items: center;
  background-color: #2a2a2a;
  z-index: 10;
  transition: all 0.5s ease;
}
@media (min-width: 1024px) {
  header {
    border-radius: 4px;
    padding: 1.2rem 4rem;
    padding-left: calc((100% - 102.4rem) / 2 + 4.8rem - 3rem);
  }
}
@media (max-width: 1023px) {
  header {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    width: 768px;
  }
}
@media (max-width: 767px) {
  header {
    width: calc(100% - 2rem);
  }
}
header.fixed {
  top: 2rem;
  opacity: 1;
}
@media (min-width: 1024px) {
  header.fixed {
    padding-left: calc((100% - 102.4rem) / 2 + 4.8rem - 3rem);
  }
}
header h1 {
  font-size: 0;
  margin-right: 4rem;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  header h1 {
    width: 38%;
  }
}
header .pc-navblock {
  display: flex;
  font-size: 0.9em;
}
header .pc-navblock a {
  color: #f4eded;
}
header .pc-nav {
  display: block;
}
@media (max-width: 1023px) {
  header .pc-nav {
    display: none;
  }
}
header .pc-nav a:not(:last-child) {
  margin-right: 2rem;
}

.sm-nav {
  height: 100%;
  display: flex;
}
@media (min-width: 1024px) {
  .sm-nav {
    display: none;
  }
}

.nav {
  display: flex;
  position: fixed;
  justify-content: space-between;
  top: 0;
  right: -100vh;
  width: 42%;
  height: 100vh;
  background-color: #2a2a2a;
  transition: right 500ms ease;
  z-index: 10;
  padding-left: 3rem;
  padding-top: 8.2rem;
}
@media (max-width: 767px) {
  .nav {
    width: 68%;
  }
}
.nav a {
  margin-bottom: 4rem;
  position: relative;
  display: block;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.nav img {
  position: absolute;
  right: 0rem;
  width: 60%;
  bottom: 8rem;
  opacity: 0.6;
}

.menu {
  width: 6rem;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 20;
}
.menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f4eded;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu span:nth-of-type(1) {
  transform: translateY(-5px);
}
.menu span:nth-of-type(3) {
  transform: translateY(5px);
}
.menu.close-menubutton {
  width: 2.8rem;
  margin: 0 0 0 auto;
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
  position: absolute;
  top: 4rem;
  right: ３３rem;
}
.menu.close-menubutton span {
  background-color: white;
  transition: transform 250ms ease;
}
.menu.close-menubutton span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
.menu.close-menubutton span:nth-of-type(2) {
  display: none;
}
.menu.close-menubutton span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}

.menu.open ~ .nav {
  transition: right 500ms ease;
  right: 0;
}
.menu.open {
  width: 2.8rem;
  margin: 0 0 0 auto;
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
}
.menu.open span {
  background-color: white;
  transition: transform 250ms ease;
}
.menu.open span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
.menu.open span:nth-of-type(2) {
  display: none;
}
.menu.open span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}

#mask {
  display: none;
  transition: all 0.5s;
}

.open#mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 0;
  cursor: pointer;
}

.mv {
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .mv {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    width: 1024px;
    border-left: 1px #2a2a2a solid;
    border-right: 1px #2a2a2a solid;
  }
}
@media (min-width: 768px) {
  .mv {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}
.mv-group {
  padding: 8rem 0;
}
@media (max-width: 1023px) {
  .mv-group {
    padding: 12vw 0 10vw;
  }
}
@media (max-width: 598px) {
  .mv-group {
    padding: 3rem 0 2rem;
  }
}
.mv-group-logo {
  width: 40%;
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .mv-group-logo {
    margin-bottom: 2rem;
  }
}
.mv-group-text {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .mv-group-text {
    padding-left: 4.8rem;
  }
}
@media (max-width: 1023px) {
  .mv-group-text {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.mv-group-text .text01 {
  font-size: 5.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .mv-group-text .text01 {
    font-size: 4.6rem;
  }
}
@media (max-width: 598px) {
  .mv-group-text .text01 {
    font-size: 3.2rem;
  }
}
.mv-group-logo .logo {
  background-color: #2a2a2a;
  padding: 2rem 6rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.8rem;
}
.mv-group-logo .logo .images {
  width: 90%;
}
.mv-group-images {
  font-size: 0;
}
@media (max-width: 1023px) {
  .mv-group-images {
    text-align: center;
  }
}
.mv-group-images::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  transform: skewY(-24deg) translateY(120px);
  z-index: -1;
}
@media (min-width: 1024px) {
  .mv-group-images::after {
    transform: skewY(-12deg) translateY(394px);
  }
}
@media (max-width: 1023px) {
  .mv-group-images::after {
    transform: skewY(-14deg) translateY(328px);
  }
}
@media (max-width: 598px) {
  .mv-group-images::after {
    transform: skewY(-14deg) translateY(350px);
  }
}

.about-wrapper {
  border-top: 1px #7f7878 solid;
}
.about-box {
  background-color: #2a2a2a;
}
@media (max-width: 1023px) {
  .about-box {
    padding: 4rem 3rem;
  }
}
@media (min-width: 1024px) {
  .about-img {
    padding-left: 6rem;
  }
}
@media (max-width: 1023px) {
  .about-img {
    margin: 0 auto;
    width: 20vw;
  }
}
.about-textbox {
  color: #f4eded;
}
@media (min-width: 768px) {
  .about-textbox {
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .about-textbox {
    width: 1024px;
    margin: 0 auto;
    border-left: 1px #7f7878 solid;
    border-right: 1px #7f7878 solid;
    padding: 8rem 12rem;
  }
}
.about-title {
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1023px) {
  .about-title {
    text-align: center;
  }
}
.about-title .en {
  display: block;
}
.about-title .ja {
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .about-title .ja {
    font-size: 2.4rem;
  }
}
.about-subtext {
  display: block;
}
.about-text {
  margin-top: 2em;
}
@media (max-width: 1023px) {
  .about-text {
    margin-top: 2rem;
  }
}

.work-wrapper {
  border-top: 1px #7f7878 solid;
  background-color: #f4eded;
}
@media (min-width: 768px) {
  .work-box {
    border-left: 1px #7f7878 solid;
    border-right: 1px #7f7878 solid;
    width: 1024px;
    margin: 0 auto;
    padding: 8rem 8rem 8rem 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    -moz-column-gap: 4em;
         column-gap: 4em;
    align-items: start;
    width: 768px;
  }
}
@media (min-width: 1024px) {
  .work-box {
    width: 1024px;
  }
}
@media (max-width: 767px) {
  .work-box {
    margin: 0 1rem;
    padding: 4.8rem 0;
    border-left: 1px #7f7878 solid;
    border-right: 1px #7f7878 solid;
  }
}
.work-contents .title {
  font-weight: 700;
}
.work-contents + .work-contents {
  margin-top: 2em;
}
.work-contents-images {
  margin-top: 4em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 4em;
       column-gap: 4em;
  align-items: center;
}
@media (max-width: 1023px) {
  .work-contents-images {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.work-contents-images .image04 {
  width: 82%;
}

.form-group label {
  display: block;
  font-weight: 700;
}
.form-group input {
  height: 4rem;
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  font-size: 1em;
}
.form-group textarea {
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  width: 100%;
  min-height: 12rem;
  resize: vertical;
  padding: 1.2rem 1.2rem;
  font-size: 1em;
}
.form-group textarea::-moz-placeholder {
  color: #7f7878;
}
.form-group textarea::placeholder {
  color: #7f7878;
}
.form-group + .form-group {
  margin-top: 2em;
}
.form-group.button-group {
  text-align: center;
}

.contact-block a, .contact-block button {
  display: block;
  padding: 0 12px;
  overflow: hidden;
  letter-spacing: 0.1em;
  color: #f4eded;
  pointer-events: all;
  border-color: #2a2a2a;
  border-radius: 4px;
  font-weight: 700;
}
.contact-block .text-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-block .after {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.contact-block .before {
  display: flex;
  align-items: center;
}
.contact-block .before span,
.contact-block .after span {
  line-height: 1.1;
  transition: color 0.2s ease-out;
  line-height: 1.6;
}
.contact-block .after span {
  transform: translateY(100%);
}
.contact-button {
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.8rem;
  display: inline-block;
  margin-top: 4rem;
  background-color: #2a2a2a;
}
@media (max-width: 1023px) {
  .contact-button {
    display: flex;
    justify-content: center;
  }
}

.footer {
  margin-top: auto;
  background-color: #2a2a2a;
  padding: 1.8% 0 1.8% 2em;
}
@media (max-width: 1023px) {
  .footer {
    padding: 3rem 3.1rem;
    position: relative;
  }
}
@media (min-width: 768px) {
  .footer-box {
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .footer-box {
    width: 1024px;
  }
}
.footer-group {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .footer-group {
    align-items: center;
  }
}
@media (max-width: 1023px) {
  .footer-group {
    align-items: end;
  }
}
.footer-menu {
  font-size: 0.92em;
}
@media (min-width: 1024px) {
  .footer-menu {
    display: flex;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.footer-menu a {
  color: #f4eded;
}
@media (max-width: 1023px) {
  .footer-menu a {
    margin-bottom: 0.8rem;
    display: block;
  }
}
.footer-images {
  width: 12%;
  opacity: 0.6;
}
@media (max-width: 1023px) {
  .footer-images {
    position: absolute;
    right: 0rem;
    width: 32%;
  }
}
.footer-logo {
  width: 14%;
}
@media (max-width: 1023px) {
  .footer-logo {
    width: 28%;
  }
}
.footer .copyright {
  font-size: 0.8em;
  color: #7f7878;
}

.completed-box {
  min-height: 89vh;
  align-items: start;
}
@media (min-width: 1024px) {
  .completed-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px #7f7878 solid;
    border-right: 1px #7f7878 solid;
    width: 1024px;
    margin: 0 auto;
    padding: 0 8rem;
  }
}
@media (max-width: 1023px) {
  .completed-box {
    padding-top: 7rem;
    margin: 0 1rem;
    padding: 4.8rem 0;
    border-left: 1px #7f7878 solid;
    border-right: 1px #7f7878 solid;
  }
}
.completed-textbox {
  text-align: center;
}
.completed-title {
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 2rem;
}
.completed-image {
  width: 40%;
}

.topbutton {
  border: 1px solid #2a2a2a;
  display: block;
  padding: 0.8rem;
  width: 40%;
  margin: 4rem auto 0;
  border-radius: 4px;
}

.error-title {
  font-size: 8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .error-title {
    font-size: 4.8rem;
  }
}

.error-icon {
  width: 13rem;
  opacity: 0.8;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .error-icon {
    width: 8rem;
  }
}/*# sourceMappingURL=style.css.map */