@charset "UTF-8";
:root {
  --main-color: #1A99A4;
  --sub-color: ;
  --font-mincho: "游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
}

html {
  font-size: 62.5%;
}

body {
  color: #fff;
  background-color: #1f1f1f;
  font-family: "游ゴシック", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@font-face {
  font-family: "Karma";
  src: url(../font/Karma.ttf);
}
@font-face {
  font-family: "Now";
  src: url(../font/Now-Thin.otf);
}
#About {
  margin-top: -250px;
  padding-top: 250px;
}

p {
  font-size: 1.6rem;
}

nav {
  position: fixed;
  z-index: -10;
  background-color: #1f1f1f;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

nav.ovh {
  opacity: 1;
  z-index: 10;
}

nav ul {
  height: auto;
  display: flex;
  flex-direction: column;
}

nav ul a {
  display: block;
  text-align: center;
  font-family: Now;
  font-size: 20px;
  padding: 10px 0;
  transition: 0.4s;
}

nav ul a:hover {
  opacity: 0.5;
}

.toggle {
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  z-index: 201;
  position: fixed;
  right: 20px;
  top: 20px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #000;
  border-radius: 50%;
}

.toggle p {
  width: 100%;
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding-left: 3px;
  margin-top: 3px;
  font-family: inherit;
}

.toggle .toggle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.toggle .t-line {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  background-color: #fff;
  margin: 7px 5px 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle.change {
  background-color: #fff;
}

.toggle.change .t-line {
  background-color: #000;
}

.toggle.change .t-line:nth-of-type(1) {
  width: 30px;
  -webkit-transform: rotate(-45deg) translate(-3px, 2px);
  transform: rotate(-45deg) translate(-3px, 2px);
}

.toggle.change .t-line:nth-of-type(2) {
  width: 30px;
  -webkit-transform: rotate(45deg) translate(-4px, -5px);
  transform: rotate(45deg) translate(-4px, -5px);
}

footer .f-para {
  height: 540px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .f-para::before {
  content: "";
  width: 240px;
  height: 100%;
  background-color: #1f1f1f;
  position: absolute;
  top: 0;
  right: 0;
}

footer .f-para::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

footer .f-para .ttl {
  width: 100%;
  max-width: 1000px;
}

footer .f-para .ttl h2 {
  font-family: Now;
  font-size: 40px;
}

footer .f-para .ttl p {
  padding-top: 20px;
  letter-spacing: 4px;
  line-height: 2;
}

footer .f-para .attachment {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  z-index: -2;
}

footer .f-para .attachment .clip {
  display: block;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  height: 100%;
}

footer .f-para .attachment .clip img {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  height: auto;
  left: 0;
  top: 0;
  pointer-events: none;
}

footer .under {
  width: 100%;
  background-color: #1f1f1f;
  padding: 150px 0 60px;
}

footer .under .logo {
  font-size: 45px;
  font-family: Karma;
  transition: 0.4s;
  display: block;
  text-align: center;
}

footer .under .logo:hover {
  opacity: 0.5;
}

footer .under p {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

a.btn-svg {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  letter-spacing: 4px;
  font-weight: normal;
  line-height: 54px;
  width: 204px;
  height: 54px;
}

a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #fff;
  stroke-width: 1;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}

.btn-area {
  width: 100%;
  padding: 0 20px 120px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-flat {
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  line-height: 45px;
  font-size: 1.4rem;
}
.btn-flat span {
  position: relative;
  padding: 0 30px;
}
.btn-flat::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(-98%);
  transform: translateX(-98%);
  background: #fff;
}
.btn-flat:hover {
  color: #000;
}
.btn-flat:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.btn-flat:hover .dli-chevron-round-right {
  color: #000;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 8px;
  height: 8px;
  transform: translateX(-25%) rotate(45deg);
  margin-top: -3px;
  margin-left: 15px;
  transition: 0.4s;
}

.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.5px;
}

@media (max-width: 1024px) {
  footer .f-para {
    padding: 0 20px;
  }
  footer .f-para::before {
    width: 120px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .toggle {
    width: 40px;
    height: 40px;
  }
  .toggle .t-line {
    width: 20px;
    margin: 5px 5px 2px;
  }
  .toggle.change .t-line:nth-of-type(1) {
    width: 25px;
    -webkit-transform: rotate(-45deg) translate(-1px, 2px);
    transform: rotate(-45deg) translate(-1px, 2px);
  }
  .toggle.change .t-line:nth-of-type(2) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(-4px, -5px);
    transform: rotate(45deg) translate(-4px, -5px);
  }
}
@media (max-width: 580px) {
  footer .f-para::before {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */