@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /*16px*62.5%=10px*/
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto;
  box-sizing: border-box;
}

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

a {
  color: #5C5C5C;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  opacity: 1;
  transition: 0.5s;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.head-title {
  font-size: 2.2rem;
  font-family: "Lato", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* aタグクリックアニメーション */
#page-animate::before {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
  z-index: 9999;
  pointer-events: none;
  right: 100%;
  transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-animate::after {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
  z-index: 9999;
  pointer-events: none;
  left: 100%;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-animate.is-slide-in::before {
  right: 0;
}

#page-animate.is-slide::after {
  left: 0;
}

/* btn */
.am-btn {
  border-bottom: solid 1px #707070;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 60px;
}
.am-btn a {
  display: block;
  padding: 10px;
}
.am-btn:hover a {
  padding: 10px 30px;
  opacity: 0.9;
}

.header {
  font-family: "Lato", sans-serif;
  position: fixed;
  padding: 40px 20px;
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease-out;
}
.header.scroll {
  padding: 20px 20px;
}
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.header-inner__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.8rem;
}
@media (max-width: 375px) {
  .header-inner__title {
    letter-spacing: 2px;
    font-size: 1.6rem;
  }
}

.global-nav {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(-225deg, #CBBACC 0%, #2580B3 100%);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding-top: 60px;
  padding-bottom: 100px;
  transition: all 0.5s ease-out;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}

.global-nav.active {
  opacity: 1;
  visibility: visible;
}

.global-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20vh;
}
@media (max-width: 375px) {
  .global-nav-list {
    display: block;
    margin-top: 10vh;
  }
}
.global-nav-list__item a {
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 10px;
}

.sns-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 375px) {
  .sns-list {
    margin-top: 24px;
  }
}
.sns-list__item .fab {
  color: #fff;
  font-size: 2.6rem;
  padding: 8px;
}

.header-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  transition: 0.5s;
  z-index: 200;
  top: 0;
  right: 0;
  cursor: pointer;
}
.header-btn::before {
  transition: all 0.3s cubic-bezier(1, 0, 0.275, 1.195);
  content: "";
  display: block;
  width: 23px;
  height: 5px;
  background: repeating-linear-gradient(90deg, #000, #000 5px, transparent 5px, transparent 9px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header-btn::after {
  transition: all 0.3s cubic-bezier(1, 0, 0.275, 1.195);
  content: "";
  display: block;
  width: 23px;
  height: 5px;
  background: repeating-linear-gradient(90deg, #000, #000 5px, transparent 5px, transparent 9px);
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
.header-btn span {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 1rem;
  text-transform: uppercase;
}
.header-btn .closed {
  display: block;
}
.header-btn .open {
  display: none;
}
.header-btn.active::before {
  display: none;
}
.header-btn.active::after {
  top: 5px;
  background: repeating-linear-gradient(90deg, #fff, #fff 23px, transparent 5px, transparent 9px);
}
.header-btn.active .closed {
  display: none;
}
.header-btn.active .open {
  color: #fff;
  display: block;
}

.hero-sec {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  padding: 20px;
}
@media (max-width: 375px) {
  .hero-sec {
    padding: 10px;
  }
}
.hero-sec__inner {
  background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
  position: relative;
  width: 100%;
  height: 600px;
}
.hero-sec__inner .scroll-btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 10px 48px;
  overflow: hidden;
  color: #fff;
  writing-mode: vertical-lr;
}
.hero-sec__inner .scroll-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #707070;
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes sdl {
  0% {
    opacity: 1;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  30.1%, 70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes sdl {
  0% {
    opacity: 1;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  30.1%, 70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.hero-box__title {
  font-size: 2.4rem;
  letter-spacing: 12px;
  text-transform: uppercase;
}
.hero-box__sub {
  color: #8d8d8d;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-top: 20px;
}

.works-sec {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 60px 40px 0;
}
@media (max-width: 375px) {
  .works-sec {
    padding: 60px 20px 0;
  }
}

.works-list {
  margin-top: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.works-list::after {
  content: "";
  display: block;
  width: 28%;
}

.works-item {
  width: 28%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .works-item {
    width: 46%;
  }
}
.works-item__img {
  align-items: flex-start;
}
.works-item__img img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .works-item__img img {
    filter: grayscale(0);
    opacity: 1;
  }
}
.works-item__img img:hover {
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
.works-item__img .cat {
  color: #A7D1DC;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
.works-item__title {
  color: #5C5C5C;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 2px;
  margin-top: 20px;
}
.works-item__cap {
  color: #8d8d8d;
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer {
  margin: 120px 0 40px;
  text-align: center;
}
.footer .copyright {
  color: #ccc;
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 2px;
}
.footer .sns-list {
  margin-top: 0;
}
.footer .sns-list__item .fab {
  color: #ccc;
  font-size: 2.2rem;
}

.page-head {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
}
.page-head::before {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 5px 5px 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}
.page-head__img {
  width: 100vw;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-head__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
.page-head__title .sub-title {
  font-size: 1.2rem;
  margin-top: 20px;
}

.page-contents {
  color: #8d8d8d;
  font-size: 1.4rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 80px 20px 0;
}
.page-contents a {
  text-decoration: underline;
  color: #A7D1DC;
}
.page-contents img {
  margin-top: 20px;
}
.page-contents iframe {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-contents iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
  }
}
.page-contents video {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-contents video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
  }
}

.element-head {
  background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
  position: relative;
  width: 100vw;
  height: 280px;
}
.element-head__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}

.element-contents {
  color: #8d8d8d;
  font-size: 1.4rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 80px 20px 0;
}

.about-box {
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .about-box {
    display: block;
  }
}
.about-box__title {
  color: #5C5C5C;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
}
.about-box__title span {
  color: #8d8d8d;
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.about-box__cap {
  margin-left: 80px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .about-box__cap {
    margin-left: 0;
    margin-top: 40px;
  }
}

.form-box dt {
  float: left;
  font-weight: bold;
  padding: 0.5em;
  width: 160px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .form-box dt {
    float: none;
    width: 100%;
    margin-bottom: 0;
  }
}
.form-box dd {
  margin-left: 160px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .form-box dd {
    margin-left: 0;
  }
}

.form-btn {
  background: none;
  border: none;
  border-bottom: solid 1px #707070;
  color: #8d8d8d;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 40px;
  padding: 10px;
  transition: 0.8s;
}
.form-btn:hover {
  color: #5C5C5C;
  padding: 10px 30px;
}

input[type=email],
input[type=tel],
input[type=text],
textarea,
input[type=url] {
  background: #eee;
  border: 1px solid #eee;
  font-size: 1.4rem;
  padding: 0.5em;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */