@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  background-color: #1E2227;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #FFFFFF;
}

li {
  list-style: none;
}

a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="pass"], input[type="email"], select, textarea,
input[type="text"]:active, input[type="number"]:active, input[type="tel"]:active, input[type="pass"]:active, input[type="email"]:active, select:active, textarea:active,
input[type="text"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="pass"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
  border: none;
  color: #FFFFFF;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

button:focus, button:active, button:hover {
  outline: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 780px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 780px) {
  .sp {
    display: block;
  }
}

.blank {
  display: none;
}

@media only screen and (max-width: 780px) {
  .blank {
    display: block;
  }
}

body.menu {
  overflow: hidden;
}

* {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

@font-face {
  font-family: 'DIN Alternate Bold';
  font-style: normal;
  font-weight: normal;
  src: url("../font/DINAlternate-Bold.woff") format("woff");
}

#company, #contact, #thanks {
  padding: 14rem 0 0;
}

@media only screen and (max-width: 780px) {
  #company, #contact, #thanks {
    padding: 9rem 0 0;
  }
}

#company h1, #contact h1, #thanks h1 {
  width: 15%;
  margin: 0 auto 12rem;
}

@media only screen and (max-width: 780px) {
  #company h1, #contact h1, #thanks h1 {
    width: 40vw;
    margin: 0 auto 9rem;
  }
}

#company .button a, #contact form .button, #thanks .button {
  width: 66vw;
  display: block;
  border: solid 0.1rem #FFFFFF;
  text-align: center;
  padding: 3rem 0;
  margin: 0 auto;
  transition: all .4s ease;
  opacity: 1;
}

@media only screen and (max-width: 780px) {
  #company .button a, #contact form .button, #thanks .button {
    width: 90%;
  }
}

#company .button a span, #contact form .button span, #thanks .button span {
  height: 2.3rem;
  display: inline-block;
  margin: 0 0 .5rem;
}

@media only screen and (max-width: 780px) {
  #company .button a span, #contact form .button span, #thanks .button span {
    height: 2rem;
  }
}

#company .button a span img, #contact form .button span img, #thanks .button span img {
  width: auto;
  height: 100%;
}

#company .button a:hover, #contact form .button:hover, #thanks .button:hover {
  background-color: #324E76;
  transition: all .4s ease;
  cursor: pointer;
}

.inview[data-animation="opacity"] {
  opacity: 0;
  transition: all 2s ease;
}

.inview[data-animation="opacity"].opacityactive {
  opacity: 1;
  transition: all 2s ease;
}

.inview[data-animation="right"] {
  transform: translateX(5%);
  opacity: 0;
  transition: all 1s ease;
}

.inview[data-animation="right"].rightactive {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation="left"] {
  transform: translateX(-5%);
  opacity: 0;
  transition: all 1s ease;
}

.inview[data-animation="left"].leftactive {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation="bottom"] {
  transform: translateY(30%);
  opacity: 0;
  transition: all 1s ease;
}

.inview[data-animation="bottom"].bottomactive {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation="top"] {
  transform: translateY(-30%);
  opacity: 0;
  transition: all 1s ease;
}

.inview[data-animation="top"].topactive {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease;
}

* {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

@font-face {
  font-family: 'DIN Alternate Bold';
  font-style: normal;
  font-weight: normal;
  src: url("../font/DINAlternate-Bold.woff") format("woff");
}

header {
  width: 17%;
  position: fixed;
  bottom: 17.3vh;
  right: 0;
  z-index: 1000;
}

@media only screen and (max-width: 780px) {
  header {
    width: 100%;
    height: 5rem;
    padding: 5vw 5% 0;
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 781px) {
  header #header-logo {
    width: 6rem;
    transform: translateY(-50%);
    position: fixed;
    top: 4rem;
    left: 3.6vw;
    opacity: 0;
  }
}

@media only screen and (max-width: 780px) {
  header #header-logo {
    width: 18vw;
    top: 5vw;
    right: 5%;
  }
}

header h2 {
  display: none;
}

header nav {
  width: 17vw;
  position: fixed;
  bottom: 17.3vh;
  right: 0;
}

header nav ul {
  text-align: right;
}

header nav ul li a {
  display: inline-block;
  font-size: 1.8rem;
  padding: 0 3.4vw 0 0;
  transition: all .6s ease;
}

@media only screen and (max-width: 780px) {
  header nav ul li a {
    font-size: 1.4rem;
    padding: 0 5rem 0 0;
  }
}

header nav ul li a span i {
  height: 2.3rem;
  display: inline-block;
  position: relative;
  margin: 0 0 .7rem 0;
}

@media only screen and (max-width: 780px) {
  header nav ul li a span i {
    height: 2rem;
  }
}

header nav ul li a span i::after {
  content: "";
  width: 3.4vw;
  height: .2rem;
  display: block;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: -4vw;
}

@media only screen and (max-width: 780px) {
  header nav ul li a span i::after {
    width: 5rem;
    right: -6rem;
  }
}

header nav ul li a span i img {
  height: 100%;
}
@media only screen and (max-width:780px) {
  header nav ul li a span i img {
    width: auto;
    height: 100%;
  }
}

header nav ul li a:hover {
  padding: 0 4vw 0 0;
  transition: all .6s ease;
}

@media only screen and (max-width: 780px) {
  header nav ul li a:hover {
    padding: 0 6rem 0;
  }
}

header nav ul li:not(:nth-last-of-type(1)) {
  margin: 0 0 6rem;
}

@media only screen and (max-width: 780px) {
  header nav ul li:not(:nth-last-of-type(1)) {
    margin: 0 0 4rem;
  }
}

@media only screen and (max-width: 780px) {
  header nav {
    display: none;
  }
}

header #menu-button {
  display: none;
}

@media only screen and (max-width: 780px) {
  header #menu-button {
    display: block;
    border: solid 0.1rem #FFFFFF;
    padding: 1.4rem;
    position: absolute;
    top: 5vw;
    right: 5%;
  }
  header #menu-button .open {
    display: block;
  }
  header #menu-button .close {
    display: none;
  }
}

@media only screen and (max-width: 780px) {
  header.active {
    height: 100vh;
    padding: 0 5vw;
    z-index: 1000;
  }
  header.active::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #1E2227;
    transition: all .6s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    opacity: 1;
  }
  header.active h2 {
    width: 26vw;
    display: block;
    margin: 0 auto 7rem;
    position: relative;
    z-index: 1400;
  }
  header.active nav {
    width: 100%;
    display: block;
    position: static;
    bottom: auto;
  }
  header.active nav ul li {
    position: relative;
  }
  header.active nav ul li::before {
    content: "";
    width: 100%;
    height: .2rem;
    display: block;
    background-color: #FFFFFF;
    transform: translateX(-50%);
    position: absolute;
    top: 1rem;
    left: 50%;
    letter-spacing: 0;
    z-index: 1200;
    -webkit-animation: menuAnimation3 .6s ease;
            animation: menuAnimation3 .6s ease;
  }
  header.active nav ul li a {
    width: 100%;
    height: 5rem;
    text-align: center;
    padding: 0;
    z-index: 1400;
  }
  header.active nav ul li a span {
    padding: 0 1rem;
    background-color: #1E2227;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2400;
  }
  header.active nav ul li a span i::after {
    display: none;
  }
  header.active #menu-button {
    padding: 1.4rem 1.3rem;
    z-index: 1400;
  }
  header.active #menu-button .open {
    display: none;
  }
  header.active #menu-button .close {
    display: block;
  }
}

@-webkit-keyframes menuAnimation1 {
  0% {
    transform: translateX(17vw);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes menuAnimation1 {
  0% {
    transform: translateX(17vw);
  }
  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes menuAnimation2 {
  0% {
    transform: translateX(17vw);
  }
  40% {
    transform: translateX(17vw);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes menuAnimation2 {
  0% {
    transform: translateX(17vw);
  }
  40% {
    transform: translateX(17vw);
  }
  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes menuAnimation3 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes menuAnimation3 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

footer {
  text-align: center;
  padding: 6rem 0 4rem;
}

@media only screen and (max-width: 780px) {
  footer {
    padding: 6rem 0 1.4rem;
  }
}

footer p {
  font-size: 1.4rem;
  letter-spacing: .063rem;
}

@media only screen and (max-width: 780px) {
  .top-header {
    height: auto;
    top: auto;
    bottom: 17.3vh;
    padding: 0;
  }
}

@media only screen and (max-width: 780px) {
  .top-header nav {
    width: 100%;
    display: block;
  }
}

.top-header nav ul li:nth-of-type(2) {
  -webkit-animation: menuAnimation1 1s ease-out;
          animation: menuAnimation1 1s ease-out;
}

.top-header nav ul li:nth-of-type(3) {
  -webkit-animation: menuAnimation2 1.4s ease-out;
          animation: menuAnimation2 1.4s ease-out;
}

@media only screen and (max-width: 780px) {
  .top-header nav ul li a span i {
    height: 2rem;
  }
  .top-header nav ul li a span i img {
    width: auto;
    height: 100%;
  }
}

#top {
  width: 100%;
  height: 100vh;
}

#top h1 {
  width: 18.6vw;
  transform: translateY(-50%);
  position: fixed;
  top: 50%;
  left: 12.4%;
}

@media only screen and (max-width: 780px) {
  #top h1 {
    width: 40vw;
    transform: translateX(-50%);
    top: 6.6rem;
    left: 50%;
  }
}

#top .mainvisual {
  width: calc(100vh - 2rem);
  height: calc(100vh - 2rem);
  background-image: url(../images/mainvisual.png);
  background-size: contain;
  background-position: center;
  border-radius: 50%;
  transform: translateY(-50%);
  position: fixed;
  top: 50%;
  left: 25%;
  z-index: -1;
  opacity: 1;
  -webkit-animation: topAnimation1 4s ease-out;
          animation: topAnimation1 4s ease-out;
}

@media only screen and (max-width: 780px) {
  #top .mainvisual {
    width: 112vw;
    height: 112vw;
    top: 60%;
    left: -20%;
  }
}

#top .mainvisual::before {
  content: "";
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  display: block;
  background: radial-gradient(circle, rgba(193, 136, 84, 0) 0%, rgba(193, 136, 84, 0.4) 30%, #1e2227 70%, #1e2227 100%);
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
}

@-webkit-keyframes topAnimation1 {
  0% {
    opacity: 0;
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes topAnimation1 {
  0% {
    opacity: 0;
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.top-footer {
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 781px) {
  .company-header nav ul li:nth-of-type(1) {
    -webkit-animation: menuAnimation1 1s ease-out;
            animation: menuAnimation1 1s ease-out;
  }
}

@media only screen and (min-width: 781px) {
  .company-header nav ul li:nth-of-type(3) {
    -webkit-animation: menuAnimation2 1.4s ease-out;
            animation: menuAnimation2 1.4s ease-out;
  }
}

#company .company-detail {
  margin: 0 0 17rem;
}

@media only screen and (max-width: 780px) {
  #company .company-detail {
    padding: 0 5%;
    margin: 0 0 12rem;
  }
}

#company .company-detail dl dt {
  color: #A2A4A8;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 .5rem;
}

#company .company-detail dl dd {
  font-size: 1.6rem;
  text-align: center;
}

#company .company-detail dl dd p {
  display: flex;
  justify-content: center;
  letter-spacing: .07em;
  margin: 0 0 .5rem;
}

#company .company-detail dl dd i {
  color: #A2A4A8;
  font-style: inherit;
  padding: 0 1rem 0 0;
}

@media only screen and (max-width: 780px) {
  #company .company-detail dl dd i {
    min-width: 4rem;
  }
}

@media only screen and (max-width: 780px) {
  #company .company-detail dl dd span {
    text-align: left;
  }
}

#company .company-detail .link_insta {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
}

#company .company-detail dl:not(:nth-last-of-type(1)) {
  margin: 0 0 3.3rem;
}

#company .company-figure {
  display: flex;
  justify-content: center;
  margin: 0 0 20rem;
}

@media only screen and (max-width: 780px) {
  #company .company-figure {
    display: block;
    margin: 0 0 17rem;
  }
}

#company .company-figure li {
  width: 23%;
  margin: 5rem 0 0;
}

@media only screen and (max-width: 780px) {
  #company .company-figure li {
    width: 90%;
    margin: 0 auto 0 0;
  }
}

#company .company-figure li:nth-of-type(2) {
  margin: 0 4.1%;
}

@media only screen and (max-width: 780px) {
  #company .company-figure li:nth-of-type(2) {
    margin: 1.8rem auto;
  }
}

@media only screen and (max-width: 780px) {
  #company .company-figure li:nth-of-type(3) {
    margin: 0 0 0 auto;
  }
}

#company .company-about {
  text-align: center;
  margin: 0 0 20rem;
}

#company .company-about h2 {
  font-size: 2.2rem;
  margin: 0 0 3.5rem;
}

#company .company-about p {
  color: #A2A4A8;
}

#company .company-about p:not(:nth-last-of-type(1)) {
  margin: 0 0 3.3rem;
}

@media only screen and (min-width: 781px) {
  .contact-header nav ul li:nth-of-type(1) {
    -webkit-animation: menuAnimation1 1s ease-out;
            animation: menuAnimation1 1s ease-out;
  }
}

@media only screen and (min-width: 781px) {
  .contact-header nav ul li:nth-of-type(2) {
    -webkit-animation: menuAnimation2 1.4s ease-out;
            animation: menuAnimation2 1.4s ease-out;
  }
}

#contact h2 {
  font-size: 2.2rem;
  text-align: center;
  margin: 0 auto 3rem;
}

#contact form dl {
  width: 46.8%;
  margin: 0 auto 2.3rem;
}

@media only screen and (max-width: 780px) {
  #contact form dl {
    width: 90%;
  }
}

#contact form dl dt {
  font-size: 1.6rem;
  margin: 0 0 1.3rem;
}

#contact form dl dd input {
  width: 100%;
  background-color: rgba(169, 172, 175, 0.2);
  border: solid 0.1rem #FFFFFF;
  border-radius: .2rem;
  padding: .5rem 1rem;
}

#contact form dl dd textarea {
  width: 100%;
  height: 12rem;
  background-color: rgba(169, 172, 175, 0.2);
  border: solid 0.1rem #FFFFFF;
  padding: .5rem 1rem;
}

#contact form dl dd .error {
  display: none;
  color: #FFFFFF;
  background-color: #CE4343;
  border: solid 0.1rem #CE4343;
  padding: .5rem;
  margin: .5rem 0 0;
}

#contact form dl dd .error.active {
  display: block;
}

#contact form dl:nth-last-of-type(1) {
  margin: 0 auto 8.8rem;
}

#contact form dl.shirt dd input {
  width: 62.5%;
}

@media only screen and (max-width: 780px) {
  #contact form dl.shirt dd input {
    width: 80%;
  }
}

#contact form dl.required dt::before {
  content: "必須";
  width: auto;
  height: 100%;
  display: inline-block;
  background-color: #CE4343;
  border-radius: .2rem;
  color: #FFFFFF;
  padding: 0 1rem .2rem;
  margin: 0 1.5rem 0 0;
}

#thanks h2 {
  font-size: 2.2rem;
  text-align: center;
  margin: 0 auto 3rem;
}

@media only screen and (max-width: 780px) {
  #thanks h2 {
    width: 90%;
    margin: 0 auto 3rem;
  }
}

#thanks h3 {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 2rem;
}

@media only screen and (max-width: 780px) {
  #thanks h3 {
    width: 90%;
    margin: 0 auto 2rem;
  }
}

#thanks p {
  color: #A2A4A8;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 2rem;
}

@media only screen and (max-width: 780px) {
  #thanks p {
    width: 90%;
    margin: 0 auto 2rem;
  }
}

#thanks p:nth-of-type(2) {
  margin: 0 auto 8.8rem;
}

@media only screen and (max-width: 780px) {
  #thanks p:nth-of-type(2) {
    margin: 0 auto 8.8rem;
  }
}

/*# sourceMappingURL=maps/style.css.map */
