@charset "UTF-8";
html, body {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: .1em;
  color: #000;
  background: #fff;
}

main {
  display: block;
  /* for IE */
}

a:link,
a:visited,
a:before,
a:after,
a img {
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

a:hover img {
  opacity: .8;
}

*:focus {
  outline: none;
}

section {
  position: relative;
}

article {
  max-width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }

  .sp {
    display: none !important;
  }

  body, html {
    min-width: 1100px;
  }

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.reveal {
  opacity: 0;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.reveal-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  translate: 0 10px;
}
.reveal.is-animate {
  opacity: 1 !important;
  translate: 0 !important;
  -webkit-filter: blur(0) !important;
          filter: blur(0) !important;
}

.bg-snowfall {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg-snowfall .snow {
  background: url("../images/akamaru.svg");
  background-size: contain;
  position: absolute;
  -webkit-animation: snowFall 30s linear;
          animation: snowFall 30s linear;
}

@-webkit-keyframes snowFall {
  /* 初め */
  0% {
    top: 0;
    translate: 0 -100%;
  }
  10% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  30% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    translate: 0;
  }
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    top: 100%;
    translate: 0 100%;
  }
}

@keyframes snowFall {
  /* 初め */
  0% {
    top: 0;
    translate: 0 -100%;
  }
  10% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  30% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    translate: 0;
  }
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    top: 100%;
    translate: 0 100%;
  }
}
.loading-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 2024;
}
.loading-wrap .loading {
  overflow: hidden;
}
.loading-wrap .loading figure {
  width: 3000px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-animation: marubatsusankaku 0.27s ease-in infinite 0s forwards;
          animation: marubatsusankaku 0.27s ease-in infinite 0s forwards;
  visibility: hidden;
  line-height: 0;
  scale: 0.01;
}
.loading-wrap .loading figure img {
  width: 100%;
}
.loading-wrap .loading figure:nth-child(2) {
  -webkit-animation-delay: 0.09s;
          animation-delay: 0.09s;
}
.loading-wrap .loading figure:nth-child(3) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.loading-wrap .loading figure:nth-child(4) {
  opacity: 0;
}
.loading-wrap .loaded figure {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}
.loading-wrap .loaded figure:nth-child(4) {
  opacity: 1;
  visibility: visible;
  scale: 0.01;
  -webkit-animation: buru 0.3s forwards 0s, akamaru 1s forwards 1s;
          animation: buru 0.3s forwards 0s, akamaru 1s forwards 1s;
}
.loading-wrap .loaded figure:nth-child(4) .line {
  content: "";
  width: 900px;
  height: 200px;
  background: #ff0000;
  position: absolute;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  border-radius: 1000px;
  top: 0%;
  left: 100%;
  -webkit-animation: pa-n .4s forwards 0s;
          animation: pa-n .4s forwards 0s;
}
.loading-wrap .loaded figure:nth-child(4) .line01 {
  rotate: 0;
  translate: 100px 400px;
}
.loading-wrap .loaded figure:nth-child(4) .line02 {
  rotate: -45deg;
  translate: -50px 50px;
}
.loading-wrap .loaded figure:nth-child(4) .line03 {
  rotate: -90deg;
  translate: -350px -200px;
}

@-webkit-keyframes marubatsusankaku {
  0% {
    visibility: visible;
    z-index: 100;
  }
  33.3% {
    visibility: visible;
    z-index: 100;
  }
  33.4% {
    visibility: hidden;
    z-index: 0;
  }
  100% {
    visibility: hidden;
    z-index: 0;
  }
}

@keyframes marubatsusankaku {
  0% {
    visibility: visible;
    z-index: 100;
  }
  33.3% {
    visibility: visible;
    z-index: 100;
  }
  33.4% {
    visibility: hidden;
    z-index: 0;
  }
  100% {
    visibility: hidden;
    z-index: 0;
  }
}
@-webkit-keyframes akamaru {
  0% {
    scale: 0.01;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 0;
  }
}
@keyframes akamaru {
  0% {
    scale: 0.01;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 0;
  }
}
@-webkit-keyframes buru {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes buru {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes pa-n {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  10% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  11% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: scaleX(100%);
            transform: scaleX(100%);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scaleX(150%);
            transform: scaleX(150%);
    opacity: 0;
  }
}
@keyframes pa-n {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  10% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  11% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: scaleX(100%);
            transform: scaleX(100%);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scaleX(150%);
            transform: scaleX(150%);
    opacity: 0;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@-webkit-keyframes fuwafuwa-big {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -30px;
  }
}
@keyframes fuwafuwa-big {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -30px;
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes lengthen {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes lengthen {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
header {
  position: fixed;
  top: 25px;
  width: 100%;
  z-index: 1987;
}
header nav {
  display: table;
  margin: 0 auto;
}
header nav ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 5px;
  border-radius: 1000px;
  overflow: hidden;
}
header nav ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(235, 235, 235, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: -1;
}
header nav ul li {
  height: 100%;
}
header nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 1em;
  font-family: logo-line-std, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  letter-spacing: normal;
  border-radius: 1000px;
}
header nav ul li a:hover {
  background: #f00;
  color: #fff;
}

article {
  padding-bottom: 100px;
}
article h2 {
  font-size: 60px;
  font-family: logo-line-std, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 40px;
  letter-spacing: .15em;
}
article h2 strong {
  color: #ff0000;
}
article h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.8;
}
article h3 strong {
  color: #ff0000;
}
article .copy {
  font-size: 18px;
  line-height: 3;
}
article .copy strong {
  color: #ff0000;
}
article .video-test {
  position: relative;
  width: calc(800px + (100% - 800px) / 2);
  margin: 0 0 0 auto;
  height: 300px;
  overflow: hidden;
}
article .video-test video {
  position: absolute;
  width: 100%;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
article #mv {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-bottom: 150px;
}
article #mv .logo {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: 2s fuwafuwa infinite ease-in-out;
          animation: 2s fuwafuwa infinite ease-in-out;
}
article #mv .scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  translate: -50%;
  font-size: 14px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
article #mv .scroll::after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #000;
  position: absolute;
  left: 50%;
  top: 100%;
  margin: 10px 0 0 -5px;
  -webkit-animation: 1s scroll infinite ease-in-out;
          animation: 1s scroll infinite ease-in-out;
}
article #philosophy {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 300px;
  padding: 0 0 100px;
}
article #philosophy .philosophy-title {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
article #philosophy .philosophy-catch {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
article #philosophy h2 {
  padding-top: 290px;
  margin-bottom: 90px;
}
article #philosophy h3 {
  text-align: center;
}
article #philosophy .copy {
  margin-top: 40px;
  text-align: center;
  line-height: 2.3;
}
article #philosophy .bg {
  width: 400px;
  position: absolute;
  right: 50%;
  bottom: 0;
  margin-right: 100px;
  opacity: 0.1;
  -webkit-animation: 2.5s fuwafuwa infinite ease-in-out 2s;
          animation: 2.5s fuwafuwa infinite ease-in-out 2s;
}
article #philosophy .bg-video {
  width: 94%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
article #philosophy .bg-video .video {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  aspect-ratio: 1 / 1;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  overflow: hidden;
  border-radius: 10px;
}
article #philosophy .bg-video .video:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transform: translate(-10px, 40px) skewX(-10deg);
          transform: translate(-10px, 40px) skewX(-10deg);
}
article #philosophy .bg-video .video:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transform: translate(0, -20px) skewX(-10deg);
          transform: translate(0, -20px) skewX(-10deg);
}
article #philosophy .bg-video .video video {
  position: absolute;
  inset: 0;
  width: 120%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(-8%) skewX(10deg);
          transform: translateX(-8%) skewX(10deg);
}
article #philosophy .bg-video.reveal {
  opacity: 1;
}
article #philosophy .bg-video.reveal .video {
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  translate: 0 60px;
}
article #philosophy .bg-video.reveal .video:nth-child(2) {
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
  translate: 0 -60px;
}
article #philosophy .bg-video.reveal .video:nth-child(3) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
article #philosophy .bg-video.reveal.is-animate .video {
  opacity: 0.5 !important;
  translate: 0 !important;
}
article #p2p {
  margin-bottom: 200px;
}
article #p2p h2 {
  text-align: center;
}
article #p2p h3 {
  text-align: center;
}
article #p2p .copy {
  text-align: center;
  margin-top: 30px;
}
article #p2p .p2p-list {
  max-width: 1110px;
  margin: 100px auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  opacity: 1;
}
article #p2p .p2p-list.is-animate li {
  opacity: 1;
  translate: 0;
}
article #p2p .p2p-list.is-animate li::after {
  -webkit-animation: .5s lengthen forwards ease-in-out;
          animation: .5s lengthen forwards ease-in-out;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
article #p2p .p2p-list li {
  --delay: 0s;
  /* カスタムプロパティ（CSS変数） */
  --before-delay: 0s;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: var(--delay);
          transition-delay: var(--delay);
  translate: 0 20px;
}
article #p2p .p2p-list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  height: 100px;
  -webkit-animation: 3s fuwafuwa infinite ease-in-out;
          animation: 3s fuwafuwa infinite ease-in-out;
}
article #p2p .p2p-list li a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
article #p2p .p2p-list li a::after {
  content: "";
  position: absolute;
  width: 133px;
  height: 100px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  background: url("../images/triangle.svg") no-repeat center;
  background-size: 100%;
  opacity: 0.15;
}
article #p2p .p2p-list li::after, article #p2p .p2p-list li::before {
  content: "";
  display: block;
  width: 78px;
  height: 5px;
  border-radius: 10px;
  background: #000;
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  translate: -50% -50%;
  rotate: 45deg;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
article #p2p .p2p-list li::before {
  content: none;
}
article #p2p .p2p-list li:nth-child(2n) {
  padding-top: 180px;
}
article #p2p .p2p-list li:nth-child(2n)::after, article #p2p .p2p-list li:nth-child(2n)::before {
  rotate: -45deg;
}
article #p2p .p2p-list li:nth-child(2n) a {
  -webkit-animation-duration: 2.9s;
          animation-duration: 2.9s;
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}
article #p2p .p2p-list li:nth-child(3n) a {
  -webkit-animation-duration: 3.3s;
          animation-duration: 3.3s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
article #p2p .p2p-list li:nth-child(4n) a {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
article #p2p .p2p-list li:nth-child(5n) a {
  -webkit-animation-duration: 3.1s;
          animation-duration: 3.1s;
}
article #p2p .p2p-list li:nth-child(6n) a {
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
}
article #p2p .p2p-list li:nth-child(7n) a {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
}
article #p2p .p2p-list li:last-child::after, article #p2p .p2p-list li:last-child::before {
  content: none;
}
article #p2p .note {
  font-size: 11px;
  text-align: center;
}
article #works {
  width: 100%;
  margin: 0 auto 200px;
  padding: 150px 0;
  background: #f8f8f8;
  overflow: hidden;
}
article #works .inner {
  max-width: 1100px;
  margin: 0 auto;
}
article #works .text {
  text-align: right;
  margin-bottom: 100px;
}
article #works .text h2 {
  margin-bottom: 20px;
}
article #works .text .copy {
  line-height: 2;
}
article #works .works-slide .swiper {
  overflow: visible;
  padding: 0 40px;
}
article #works .works-slide .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
article #works .works-slide .swiper-slide {
  width: 300px;
  margin-right: 50px;
}
article #works .works-slide .swiper-slide:last-child {
  margin-right: 0;
}
article #works .works-slide .swiper-slide a {
  container-type: inline-size;
  position: relative;
  display: block;
  width: auto;
  aspect-ratio: 9 / 16;
  height: 460px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 10px;
}
article #works .works-slide .swiper-slide a img {
  position: absolute;
  left: 0;
  top: 100%;
  height: 100cqw;
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  rotate: -90deg;
}
article #works .works-slide .swiper-slide h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
article #works .works-slide .swiper-slide p {
  font-size: 14px;
}
article #works .works-slide .ul-reveal li {
  position: relative;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  margin-top: 20px;
  -webkit-animation: 3s fuwafuwa infinite ease-in-out;
          animation: 3s fuwafuwa infinite ease-in-out;
}
article #works .works-slide .ul-reveal li:nth-child(2n) {
  margin-top: 75px;
  -webkit-animation-duration: 2.9s;
          animation-duration: 2.9s;
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}
article #works .works-slide .ul-reveal li:nth-child(3n) {
  -webkit-animation-duration: 3.3s;
          animation-duration: 3.3s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
article #works .works-slide .ul-reveal li:nth-child(4n) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
article #works .works-slide .ul-reveal li:nth-child(5n) {
  -webkit-animation-duration: 3.1s;
          animation-duration: 3.1s;
}
article #works .works-slide .ul-reveal li:nth-child(6n) {
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
}
article #works .works-slide .ul-reveal li:nth-child(7n) {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
}
article #works .works-slide.is-animate .ul-reveal li {
  opacity: 1;
  translate: 0;
}
article #about {
  max-width: 1100px;
  margin: 0 auto 300px;
}
article #about .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
article #about .inner .text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
article #about .inner .text h2 {
  text-align: left;
  margin-bottom: 40px;
}
article #about .inner .img {
  width: 100%;
  text-align: center;
  -webkit-animation: 3s fuwafuwa infinite ease-in-out;
          animation: 3s fuwafuwa infinite ease-in-out;
}
article #about .inner .img img {
  width: 300px;
}
article #about .profile {
  max-width: 800px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
}
article #about .profile dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 80px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}
article #about .profile dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 200px);
  height: 80px;
  font-size: 15px;
  border-bottom: 1px solid #ccc;
}
article #about .profile dd .gmap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 1em;
  background: #f0f0f0;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  font-size: 15px;
  border-radius: 1000px;
  gap: 8px;
  margin-left: 15px;
}
article #about .profile dd .gmap::before {
  content: "";
  width: 10px;
  height: 15px;
  background: url("../images/ico_gmap.svg") no-repeat;
  background-size: cover;
  -webkit-transition: .2s;
  transition: .2s;
}
article #about .profile dd .gmap:hover::before {
  translate: 0 -2px;
}
article #contact {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 100px;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 80px 0 100px;
}
article #contact .copy {
  line-height: 2;
  font-size: 16px;
}
article #contact .form {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
}
article #contact .form .form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
article #contact .form .form-block p {
  width: 100%;
}
article #contact .form .form-block p.form-hd {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 70px;
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  margin-bottom: 50px;
}
article #contact .form sup {
  font-size: .5em;
  top: -1em;
}
article #contact .form input, article #contact .form textarea {
  width: 100%;
  background: #fff;
  letter-spacing: .1em;
  border-radius: 10px;
}
article #contact .form input {
  line-height: 70px;
  padding: 0 1em;
}
article #contact .form textarea {
  padding: 1em;
  height: 200px;
}
article #contact .form .privacy {
  margin-top: 60px;
  text-align: center;
}
article #contact .form .privacy .privacy-cont {
  width: 520px;
  height: 300px;
  margin: 0 auto 30px;
  padding: 35px 30px 20px;
  overflow: auto;
  text-align: left;
  background: #fff;
  border-radius: 10px;
}
article #contact .form .privacy .privacy-cont h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
}
article #contact .form .privacy .privacy-cont h4 {
  font-size: 12px;
  font-weight: 600;
}
article #contact .form .privacy .privacy-cont p {
  font-size: 12px;
  margin-bottom: 1.5em;
}
article #contact .form .privacy span.wpcf7-list-item {
  margin: 0;
}
article #contact .form input[type='checkbox'] {
  display: none;
}
article #contact .form input[type='checkbox'] + span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 10px 0 30px;
  position: relative;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
}
article #contact .form input[type='checkbox'] + span::before {
  border: 1px solid #4d4d4d;
  background: #fff;
  border-radius: 5px;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
article #contact .form input[type='checkbox'] + span::after {
  border-right: 2px solid #313131;
  border-bottom: 2px solid #313131;
  content: '';
  display: block;
  height: 10px;
  width: 6px;
  left: 7px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
article #contact .form input[type='checkbox']:checked + span::after {
  opacity: 1;
}
article #contact .form .submit-btn {
  display: table;
  margin: 50px auto 0;
  position: relative;
}
article #contact .form .submit-btn #form_submit {
  position: relative;
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .15em;
  background: transparent;
  color: #fff;
  background: #000;
  border-radius: 1000px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
article #contact .form .submit-btn #form_submit:disabled {
  opacity: 0.4;
}
article #contact .form .submit-btn .wpcf7-spinner {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 5px 0;
}
article #contact .form input[type='button'] {
  text-decoration: underline;
  color: #313131;
  font-size: 15px;
  font-weight: bold;
  background: none;
  text-align: center;
  border: none;
}
article #contact .form .wpcf7-not-valid-tip {
  margin-top: 5px;
}
article #contact .form .wpcf7 form .wpcf7-response-output {
  margin: 2em auto 1em;
  text-align: center;
  font-size: 12px;
  padding: 0.5em;
}
article #contact .about-recaptcha {
  font-size: 9px;
  text-align: center;
}

/* modal parts */
.modal-content {
  height: auto;
  max-height: 80%;
  width: 90%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  position: fixed;
  display: none;
  z-index: 10000;
  margin: 0;
  overflow: visible;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-scrolling: touch;
  background: #fff;
  border-radius: 20px;
}
.modal-content .modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 40px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
.modal-content .p2p-logo {
  width: 210px;
  height: 145px;
}
.modal-content .p2p-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.modal-content .p2p-detail {
  width: 280px;
  text-align: left;
}
.modal-content .p2p-detail .company {
  font-size: 14px;
  margin-bottom: 10px;
}
.modal-content .p2p-detail .name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.modal-content .p2p-detail .pos {
  font-size: 14px;
  font-weight: 600;
}
.modal-content .p2p-detail .website {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 38px;
  padding: 0 1em;
  background: #f4f4f4;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .05em;
  font-size: 15px;
  border-radius: 1000px;
  gap: 8px;
  margin-top: 20px;
}
.modal-content .p2p-detail .website::before {
  content: "";
  width: 9px;
  height: 9px;
  background: url("../images/akamaru.svg") no-repeat;
  background-size: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.modal-content .p2p-detail .website:hover::before {
  scale: 1.5;
}

.modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1C1C1C;
  opacity: 0.85;
}

.modal-open:hover {
  cursor: pointer;
}

.modal-close {
  display: table;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
  font-size: 22px;
}
.modal-close:hover {
  cursor: pointer;
}

.crossbtn {
  position: absolute;
  width: 34px;
  height: 34px;
  top: -10px;
  right: -10px;
  background: #f4f4f4;
  border-radius: 50%;
  z-index: 10;
}
.crossbtn::before, .crossbtn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  left: 50%;
  top: 50%;
}
.crossbtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.crossbtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

footer {
  text-align: center;
  padding-bottom: 20px;
}
footer .symbol {
  width: 80px;
  margin: 0 auto 30px;
}
footer .copyright {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .02em;
}

@media screen and (max-width: 767px) {
  .hamburger-btn {
    position: fixed;
    left: 50%;
    bottom: 3dvh;
    width: 120px;
    height: 50px;
    translate: -50%;
    z-index: 2025;
    border-radius: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .hamburger-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(235, 235, 235, 0.8);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    z-index: -1;
  }
  .hamburger-btn .hamburger-line {
    position: relative;
    width: 15px;
    /* クリックエリアの横幅*/
    height: 12px;
    /* クリックエリアの高さ*/
    margin: 0;
    -webkit-transition: .5;
    transition: .5;
  }
  .hamburger-btn .hamburger-line .line {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: block;
    width: 15px;
    /* 横幅 */
    height: 2px;
    /* 1本辺りの高さ */
    border-radius: 1000px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #000;
  }
  .hamburger-btn .hamburger-line .line_01 {
    top: 0%;
  }
  .hamburger-btn .hamburger-line .line_02 {
    top: 50%;
  }
  .hamburger-btn .hamburger-line .line_03 {
    top: 100%;
  }
  .hamburger-btn .btn-text {
    position: relative;
    width: 4.5em;
    height: 100%;
    font-family: logo-line-std, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 14px;
    text-align: center;
  }
  .hamburger-btn .btn-text span {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .hamburger-btn .btn-text span.close {
    opacity: 0;
  }
  .hamburger-btn.is-active {
    bottom: 5dvh;
  }
  .hamburger-btn.is-active .hamburger-line .line_01 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
            transform: translate(-50%, -50%) rotate(225deg);
  }
  .hamburger-btn.is-active .hamburger-line .line_02 {
    opacity: 0;
  }
  .hamburger-btn.is-active .hamburger-line .line_03 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
            transform: translate(-50%, -50%) rotate(135deg);
    margin-left: 0;
  }
  .hamburger-btn.is-active .btn-text .close {
    opacity: 1;
  }
  .hamburger-btn.is-active .btn-text .menu {
    opacity: 0;
  }

  header {
    position: fixed;
    top: 25px;
    width: 100%;
    z-index: 1987;
  }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 90%;
    height: 95dvh;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    padding-bottom: 50px;
  }
  header nav.opened {
    opacity: 1;
    visibility: visible;
  }
  header nav ul {
    position: relative;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    height: 20em;
    max-height: 90%;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
  }
  header nav ul::before {
    content: none;
  }
  header nav ul li {
    height: auto;
  }
  header nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0 1em;
    color: #fff;
    font-size: 16px;
    letter-spacing: normal;
    border-radius: 1000px;
  }
  header nav ul li a:hover {
    background: #f00;
    color: #fff;
  }

  article {
    padding-bottom: 50px;
  }
  article h2 {
    font-size: 40px;
    font-family: logo-line-std, sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-bottom: 20px;
    letter-spacing: .1em;
  }
  article h3 {
    font-size: 17px;
    letter-spacing: .1em;
  }
  article #mv {
    position: relative;
    margin-bottom: 150px;
    height: 100svh;
  }
  article #mv .logo {
    width: 150px;
    top: 45%;
  }
  article #mv .scroll {
    position: absolute;
    bottom: 18vh;
    font-size: 14px;
  }
  article #mv .scroll::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 10px 0 0 -5px;
  }
  article #philosophy {
    position: relative;
    width: 90%;
    margin: 0 auto 100px;
    padding: 0 0 40px;
  }
  article #philosophy h2 {
    padding-top: 120px;
    margin-bottom: 60px;
  }
  article #philosophy h3 {
    font-size: 22px;
  }
  article #philosophy .copy {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2;
  }
  article #philosophy .bg-video {
    width: 100%;
    gap: 0.5rem;
  }
  article #philosophy .bg-video .video {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    aspect-ratio: 3 / 4;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
    overflow: hidden;
    border-radius: 5px;
  }
  article #philosophy .bg-video .video:nth-child(2) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-transform: translate(-6px, 30px) skewX(-10deg);
            transform: translate(-6px, 30px) skewX(-10deg);
  }
  article #philosophy .bg-video .video:nth-child(3) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-transform: translate(0, -15px) skewX(-10deg);
            transform: translate(0, -15px) skewX(-10deg);
  }
  article #philosophy .bg-video .video video {
    width: 123%;
    -webkit-transform: translateX(-9%) skewX(10deg);
            transform: translateX(-9%) skewX(10deg);
  }
  article #philosophy .bg-video.reveal {
    opacity: 1;
  }
  article #philosophy .bg-video.reveal .video {
    translate: 0 30px;
  }
  article #philosophy .bg-video.reveal .video:nth-child(2) {
    translate: 0 -30px;
  }
  article #philosophy .bg-video.reveal.is-animate .video {
    opacity: 0.5 !important;
    translate: 0 !important;
  }
  article #philosophy .bg {
    width: 80%;
    position: absolute;
    right: auto;
    left: -20%;
    bottom: 8%;
    margin-right: 0;
  }
  article #p2p {
    margin-bottom: 100px;
  }
  article #p2p h2 {
    text-align: center;
    font-size: 36px;
  }
  article #p2p h3 {
    text-align: center;
  }
  article #p2p .copy {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
  }
  article #p2p .p2p-list {
    width: 80%;
    margin: 80px auto 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 0;
    opacity: 1;
  }
  article #p2p .p2p-list.is-animate li {
    opacity: 1;
    translate: 0;
  }
  article #p2p .p2p-list.is-animate li::before {
    -webkit-animation: .5s lengthen forwards ease-in-out;
            animation: .5s lengthen forwards ease-in-out;
    -webkit-animation-delay: var(--before-delay);
            animation-delay: var(--before-delay);
  }
  article #p2p .p2p-list li {
    width: 50%;
    position: relative;
    opacity: 0;
    translate: 0 20px;
  }
  article #p2p .p2p-list li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100px;
    -webkit-animation: 3s fuwafuwa infinite ease-in-out;
            animation: 3s fuwafuwa infinite ease-in-out;
  }
  article #p2p .p2p-list li a img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  article #p2p .p2p-list li a::after {
    content: "";
    position: absolute;
    width: 133px;
    height: 100px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    background: url("../images/triangle.svg") no-repeat center;
    background-size: 100%;
    opacity: 0.15;
  }
  article #p2p .p2p-list li::before {
    content: "";
    display: block;
    width: 58px;
    height: 5px;
    border-radius: 10px;
    background: #000;
    position: absolute;
    top: 50%;
    left: calc(100% + 25px);
    translate: -50% -20px;
    rotate: 45deg;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  article #p2p .p2p-list li::after {
    content: none;
  }
  article #p2p .p2p-list li:nth-child(2n) {
    padding-top: 150px;
  }
  article #p2p .p2p-list li:nth-child(2n)::before {
    rotate: 135deg;
    top: calc(100% + 5px);
    left: auto;
    right: calc(100% - 35px);
    translate: 50% 0;
  }
  article .modal-content {
    height: auto;
    max-height: 80%;
    width: 90%;
    max-width: 600px;
    top: 50%;
    left: 50%;
    position: fixed;
    display: none;
    z-index: 10000;
    margin: 0;
    overflow: visible;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    overflow-scrolling: touch;
    background: #fff;
    border-radius: 20px;
  }
  article .modal-content .modal-inner {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
  }
  article .modal-content .p2p-logo {
    width: 150px;
    height: 150px;
  }
  article .modal-content .p2p-logo img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  article .modal-content .p2p-detail {
    width: 80%;
    text-align: left;
  }
  article .modal-content .p2p-detail .company {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article .modal-content .p2p-detail .name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  article .modal-content .p2p-detail .pos {
    font-size: 13px;
    font-weight: 600;
  }
  article .modal-content .p2p-detail .website {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 38px;
    padding: 0 1em;
    background: #f4f4f4;
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .05em;
    font-size: 15px;
    border-radius: 1000px;
    gap: 8px;
    margin-top: 20px;
  }
  article .modal-content .p2p-detail .website::before {
    content: "";
    width: 9px;
    height: 9px;
    background: url("../images/akamaru.svg") no-repeat;
    background-size: cover;
    -webkit-transition: .3s;
    transition: .3s;
  }
  article .modal-content .p2p-detail .website:hover::before {
    scale: 1.5;
  }
  article #works {
    width: 100%;
    margin: 0 auto 50px;
    padding: 100px 0;
    background: #f8f8f8;
  }
  article #works .inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  article #works .text {
    width: 90%;
    margin: 0 auto 50px;
  }
  article #works h2 {
    text-align: right;
    margin-bottom: 60px;
  }
  article #works .copy {
    font-size: 16px;
  }
  article #works .works-slide {
    overflow: hidden;
    padding-top: 20px;
  }
  article #works .works-slide .swiper {
    overflow: visible;
    padding: 0 40px;
  }
  article #works .works-slide .swiper-wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  article #works .works-slide .swiper-slide {
    width: 70%;
    margin-right: 50px;
  }
  article #works .works-slide .swiper-slide:last-child {
    margin-right: 0;
  }
  article #works .works-slide .swiper-slide a {
    container-type: inline-size;
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    aspect-ratio: 9 / 16;
    margin-bottom: 40px;
    overflow: hidden;
  }
  article #works .works-slide .swiper-slide a img {
    position: absolute;
    height: auto;
    width: auto;
    height: 100cqw;
    max-width: none;
    border-radius: 10px;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    rotate: -90deg;
  }
  article #works .works-slide .swiper-slide h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  article #works .works-slide .swiper-slide p {
    font-size: 11px;
  }
  article #about {
    max-width: 1100px;
    margin: 0 auto 100px;
  }
  article #about .inner {
    width: 90%;
    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: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 50px;
  }
  article #about .inner .text {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 60px;
  }
  article #about .inner .text h2 {
    text-align: left;
    margin-bottom: 40px;
  }
  article #about .inner .text .copy {
    font-size: 14px;
    line-height: 2;
  }
  article #about .inner .img {
    width: 70%;
    text-align: center;
  }
  article #about .inner .img img {
    width: 100%;
  }
  article #about .profile {
    width: 80%;
    margin: 0 auto;
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #ccc;
  }
  article #about .profile dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
    padding-top: 20px;
    margin-bottom: 10px;
  }
  article #about .profile dd {
    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  article #about .profile dd .gmap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 12em;
    height: 2.5em;
    padding: 0 1em;
    font-size: 14px;
    border-radius: 1000px;
    gap: 8px;
    margin-left: 0;
    margin-top: 10px;
  }
  article #about .profile dd .gmap::before {
    content: "";
    width: 10px;
    height: 15px;
    background: url("../images/ico_gmap.svg") no-repeat;
    background-size: cover;
    -webkit-transition: .2s;
    transition: .2s;
  }
  article #about .profile dd .gmap:hover::before {
    translate: 0 -2px;
  }
  article #contact {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    border-radius: 20px;
    background: #f5f5f5;
    padding: 50px 0;
  }
  article #contact .copy {
    line-height: 2;
    font-size: 13px;
  }
  article #contact .form {
    width: 85%;
    margin: 30px auto 0;
    text-align: left;
  }
  article #contact .form .form-block {
    display: block;
    margin-bottom: 20px;
  }
  article #contact .form .form-block p {
    width: 100%;
  }
  article #contact .form .form-block p.form-hd {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 1.5;
    font-size: 14px;
    width: 100%;
    margin-bottom: 10px;
  }
  article #contact .form sup {
    font-size: .5em;
    top: -1em;
  }
  article #contact .form input, article #contact .form textarea {
    font-size: 13px;
    width: 100%;
    background: #fff;
    letter-spacing: .1em;
    border-radius: 10px;
  }
  article #contact .form input {
    line-height: 40px;
    padding: 0 1em;
  }
  article #contact .form textarea {
    padding: 1em;
    height: 150px;
  }
  article #contact .form .privacy {
    margin-top: 60px;
    text-align: center;
  }
  article #contact .form .privacy .privacy-cont {
    width: 100%;
    height: 150px;
    margin: 0 auto 30px;
    padding: 30px 30px 20px;
    overflow: auto;
    text-align: left;
    background: #fff;
    border-radius: 10px;
  }
  article #contact .form .privacy .privacy-cont h3 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5em;
  }
  article #contact .form .privacy .privacy-cont h4 {
    font-size: 11px;
    font-weight: 600;
  }
  article #contact .form .privacy .privacy-cont p {
    font-size: 11px;
    margin-bottom: 1.5em;
  }
  article #contact .form .privacy span.wpcf7-list-item {
    margin: 0;
  }
  article #contact .form input[type='checkbox'] {
    display: none;
  }
  article #contact .form input[type='checkbox'] + span {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 10px 0 30px;
    position: relative;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: normal;
  }
  article #contact .form input[type='checkbox'] + span::before {
    border: 1px solid #4d4d4d;
    background: #fff;
    border-radius: 5px;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  article #contact .form input[type='checkbox'] + span::after {
    border-right: 2px solid #313131;
    border-bottom: 2px solid #313131;
    content: '';
    display: block;
    height: 10px;
    width: 6px;
    left: 7px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 45%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  article #contact .form input[type='checkbox']:checked + span::after {
    opacity: 1;
  }
  article #contact .form .submit-btn {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px auto 0;
    position: relative;
  }
  article #contact .form .submit-btn #form_submit {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .15em;
    background: transparent;
    color: #fff;
    background: #000;
    border-radius: 1000px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  article #contact .form .submit-btn #form_submit:disabled {
    opacity: 0.4;
  }
  article #contact .form .submit-btn .wpcf7-spinner {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 5px 0;
  }
  article #contact .form input[type='button'] {
    text-decoration: underline;
    color: #313131;
    font-size: 15px;
    font-weight: bold;
    background: none;
    text-align: center;
    border: none;
  }
  article #contact .form .wpcf7-not-valid-tip {
    margin-top: 5px;
  }
  article #contact .form .wpcf7 form .wpcf7-response-output {
    margin: 2em auto 1em;
    text-align: center;
    font-size: 12px;
    padding: 0.5em;
  }
  article #contact .about-recaptcha {
    font-size: 9px;
    text-align: center;
  }

  footer {
    text-align: center;
    padding-bottom: 100px;
  }
  footer .symbol {
    width: 80px;
    margin: 0 auto 30px;
  }
  footer .copyright {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .02em;
  }
}

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